NetTalk Central

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - kevin plummer

Pages: 1 2 [3] 4 5 ... 79
31
Web Server - Ask For Help / Re: Nettalk 9 Server upgrade issue
« on: June 10, 2016, 12:32:51 AM »
Hi Brad,

I would test a couple of nettalk examples and make sure they run ok. Test 443 and the app that listens on 2 ports like your app. You should make sure you copy the latest ssl dll's into your app folder and the example might need them as well.

Let us know how you get on.

Kev

32
E-Mail - Ask For Help / Re: How to authentication to WebServices
« on: June 08, 2016, 05:12:18 PM »
Hi Robert,

a good place to start is Bruce's excellent clarion live recordings and also check out the show notes on his weekly nettalk webinar.

Cheers,

Kevin

33
Web Server - Ask For Help / Re: XML and Clarion Dates
« on: June 08, 2016, 03:36:59 PM »
Hi Ed,

I think the currenttag or dob1 pstring is not returning what you think it is returning. Add a couple of traces as per below which hopefully will enlighten the situation for you.

p_web._trace('self.CurrentTag=' & self.CurrentTag)
case lower(self.CurrentTag) !this does not work - for some reason - 08/06/2016 - Ed
  of 'dob1' ! if I use CEN_DOB1 here I still get same result
    p_web._trace('dob1 pString=' & pString)
    self.CurrentField = deformat(pString,@d6) ! dd/mm/yyyy
    return ! this is important to avoid the call to PARENT
  end
  parent.AssignField(pString)

34
Web Server - Ask For Help / Re: Nettalk 9 Server upgrade issue
« on: June 06, 2016, 07:19:00 PM »
Hi Brad,

try moving your app and dct to a new development folder and re-compile letting nettalk create a new web folder and clarion copy any dependant files into the folder.

I've had some similar un-explained GPF's.

Hope that helps.

Kev

35
Web Server - Ask For Help / Re: Serving an alternate requested file
« on: May 30, 2016, 04:40:47 PM »
HI Terry,

you may need to specify the content type as well.

p_web.ReplyContentType = 'application/pdf'

36
Web Server - Ask For Help / Re: OT String Theory and UTF8
« on: May 26, 2016, 04:36:33 PM »
Update:

st.ToUnicode(st:EncodeUtf8,st:CP_WINDOWS_1250)

didn't actually work but the following does:

st.encoding = st:EncodeAnsi
st.ToUnicode()     

Thanks Kevin Benson for the above!

37
Web Server - Ask For Help / Re: OT String Theory and UTF8
« on: May 26, 2016, 04:32:38 AM »
for anyone interested Bruce replied to my email and I was missing the 2nd parameter as shown below.

st.ToUnicode(st:EncodeUtf8,st:CP_WINDOWS_1250)

38
Web Server - Ask For Help / OT String Theory and UTF8
« on: May 25, 2016, 08:33:04 PM »
Hi All,

I'm trying to convert some data to make the below US ASCII compatible using string theory but the following does not work. Anyone know what I'm doing wrong?


Field" = 'MIDÁSZ PROPERTY MANAGEMENT KFT ARANY JÁNOS UTCA 15'

        st.SetValue(Field")
        If st.ToUnicode(st:EncodeUtf8) = 0
            Message('error convertring to UTF8. Field=' & Field")
        END
        st.RemoveChars('<13,10><13><10>')
        Field" = st.GetValue()

39
check the filter on the slow view and make upper. make sure it's not doing the filtering locally.

40
search busyhandling on this NG for more info.

41
are you using the MARS and Busyhandling driver strings on your SQL connection?

42
Web Server - Ask For Help / Re: MS-SQL demon select statement
« on: April 19, 2016, 05:16:46 PM »
Hi Parker,

what was your work around?

43
Web Server - Ask For Help / Re: EIP Spinners and double clicking
« on: April 18, 2016, 05:17:20 PM »
There is an option on the template at the browse level to set this off. So you can set it on a browse by browse basis.

44
Web Server - Ask For Help / Re: Export to Excel and Error
« on: April 03, 2016, 02:39:08 PM »
It might be some sort of mathematical notation (exponential?) although I typed it into Excel and it accepted the value. You probably need to nominate the field as Text or add '<39>' before the value. So any number followed by E will probably fail.

45
Web Server - Ask For Help / Re: Export to Excel and Error
« on: March 28, 2016, 03:27:09 PM »
Is the browser timing out before it can serve up the file?

Pages: 1 2 [3] 4 5 ... 79