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.


Topics - osquiabro

Pages: 1 ... 8 9 [10] 11
136
Web Server - Ask For Help / yes/no confirmation???
« on: March 27, 2013, 04:06:44 AM »
is possible to implement yes/no confirmation with nettalk??

i have a form and i need when user change a value the system alert before change the value..

137
Web Server - Ask For Help / html5??
« on: March 21, 2013, 03:37:52 AM »
Hi Bruce is in your wishlist html5 y css3 with nettalk?

thanks..

138
Web Server - Ask For Help / NetSimple Object Question
« on: March 14, 2013, 05:55:43 AM »
NetSimple Object only work in a windows?? i try to use in a source procedure with netwebclient.

My intention is call  a webservice via source procedure, is possible??

139
Web Server - Ask For Help / WebService Problem
« on: March 12, 2013, 04:51:53 PM »
i received this error when load webservice:
the PacketReceived return this:

HTTP/1.1 500 Internal Server Error
Cache-Control: private
Content-Length: 53
Content-Type: text/plain; charset=utf-8
Server: Microsoft-IIS/7.5
X-AspNet-Version: 2.0.50727
X-Powered-By: ASP.NET
Date: Wed, 13 Mar 2013 15:18:31 GMT
Connection: close

Request format is invalid: text/xml; charset=utf-8.

My Code:

In saveTweakSettings:

 ! this is a good embed point to set all the xml and soap settings that we require for
  ! this service.

  xmlFile.SOAPEnvelope     = 1                 ! tells xFiles to wrap the XML in a SOAP envelope
  xmlFile.SaveEncoding = 'utf-8'                 ! default is 'ISO-8859-1'
  xmlFile._pfileBoundary = ''                    ! no file boundary tag required by this server
  xmlFile._pRecordBoundary = 'CRIMWebService'
  xmlFile.TagCase = XF:CaseAsIs

  ! the following are default values in XFiles, so don't actually need to be set here,
  ! but are included so you can see what they are, and override them if you wish.

  xmlFile.SOAPEnvelopeBoundaryAttribute = 'xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"'
  xmlFile.SOAPEnvelopeBoundary  = 'soap:Envelope'
  xmlFile.SOAPBodyBoundary      = 'soap:Body'

In my Button

PacketReceived = ''

! Construct the SOAP packet to make a request of the web service
Forecast_Date = FORMAT(Glo:InterestDate,@D06)
PinNumber = Glo:PinNumber
    
xmlFile.save(RequestGroup)
PostString = xmlFile.xmldata

net.CanUseProxy = 1           ! Can use a proxy
net.HeaderOnly   = 0            ! We want the whole page
      
net.AsyncOpenUse = 1          ! Use AsyncOpen 12 seconds (recommended)
net.AsyncOpenTimeOut = 1200   ! Up to 12 seconds to connect
      
net.InActiveTimeout = 9000    ! Set IdleTimeout 90 seconds
net.ConnectionKeepAlive = 0
      
net.ContentType = 'text/xml; charset=utf-8'                              
net.AcceptEncoding = ''
net.ContentLength = Len(Clip(PostString))

! Set the SOAPAction header to tell the web service which method to execute
net.customheader = 'SOAPAction: "http://www.crimpr.net/ws/crimservice.asmx"'

        ! The packet is contstructed, so you can post it to the webservice
PacketSent = PostString

SetCursor(Cursor:Wait)    
net.Post('http://www.crimpr.net/ws/crimservice.asmx/CRIMWebService?', Clip(PostString))
If net.Error
    Message ('Could not be post the SOAP request to this web service. Error ' & net.Error |
        & ': ' & net.InterpretError())
    SetCursor()
end

In PageReceived:

if Self.PageLen > 0
    PacketReceived = self.Page   
    SETCLIPBOARD(PacketReceived)
    DO Process
    ! xml.load(resultGroup,self.page,len(clip(self.page)))
    display()
End
SetCursor()

140
Web Server - Ask For Help / Compile Error:
« on: March 12, 2013, 03:46:26 PM »
i have this errors when compile a project..

Duplicate symbol: WSAAsyncGetHostByAddr in WS2_32.dll
Duplicate symbol: WSAAsyncGetHostByName in WS2_32.dll
Duplicate symbol: WSAAsyncGetProtoByName in WS2_32.dll
Duplicate symbol: WSAAsyncGetProtoByNumber in WS2_32.dll
Duplicate symbol: WSAAsyncGetServByName in WS2_32.dll
Duplicate symbol: WSAAsyncGetServByPort in WS2_32.dll
Duplicate symbol: WSAAsyncSelect in WS2_32.dll
Duplicate symbol: WSACancelAsyncRequest in WS2_32.dll
Duplicate symbol: WSACancelBlockingCall in WS2_32.dll
Duplicate symbol: WSACleanup in WS2_32.dll
Duplicate symbol: WSAGetLastError in WS2_32.dll
Duplicate symbol: WSAIsBlocking in WS2_32.dll
Duplicate symbol: WSASetBlockingHook in WS2_32.dll
Duplicate symbol: WSASetLastError in WS2_32.dll
Duplicate symbol: WSAStartup in WS2_32.dll
Duplicate symbol: WSAUnhookBlockingHook in WS2_32.dll
Duplicate symbol: __WSAFDIsSet in WS2_32.dll
Duplicate symbol: accept in WS2_32.dll
Duplicate symbol: bind in WS2_32.dll
Duplicate symbol: closesocket in WS2_32.dll
Duplicate symbol: connect in WS2_32.dll
Duplicate symbol: gethostbyaddr in WS2_32.dll
Duplicate symbol: gethostbyname in WS2_32.dll
Duplicate symbol: gethostname in WS2_32.dll
Duplicate symbol: getpeername in WS2_32.dll
Duplicate symbol: getprotobyname in WS2_32.dll
Duplicate symbol: getprotobynumber in WS2_32.dll
Duplicate symbol: getservbyname in WS2_32.dll
Duplicate symbol: getservbyport in WS2_32.dll
Duplicate symbol: getsockname in WS2_32.dll
Duplicate symbol: getsockopt in WS2_32.dll
Duplicate symbol: htonl in WS2_32.dll
Duplicate symbol: htons in WS2_32.dll
Duplicate symbol: inet_addr in WS2_32.dll
Duplicate symbol: inet_ntoa in WS2_32.dll
Duplicate symbol: ioctlsocket in WS2_32.dll
Duplicate symbol: listen in WS2_32.dll
Duplicate symbol: ntohl in WS2_32.dll
Duplicate symbol: ntohs in WS2_32.dll
Duplicate symbol: recv in WS2_32.dll
Duplicate symbol: recvfrom in WS2_32.dll
Duplicate symbol: select in WS2_32.dll
Duplicate symbol: send in WS2_32.dll
Duplicate symbol: sendto in WS2_32.dll
Duplicate symbol: setsockopt in WS2_32.dll
Duplicate symbol: shutdown in WS2_32.dll
Duplicate symbol: socket in WS2_32.dll

141
Web Server - Ask For Help / Locator Type Bug?
« on: March 01, 2013, 09:25:58 AM »
i try to change the locator type to search but nettalk 7.06 always use the Position setting...

142
Web Server - Ask For Help / Mobile Question
« on: February 18, 2013, 03:42:32 PM »
hi , i have a problem with mobile setting, i check a vertical setting in form but only work with desktop no for mobile..

143
Web Server - Ask For Help / Multi SiteHost question
« on: February 13, 2013, 05:02:21 AM »
is possible create multi site without:

Selfservice - 149
WinEvent - 149
GPFReport - 149
HyperActive - 49
MessageBox - 77
FileManager - 349
Insight Graphig - 497
.......................1419

if true how or any example..

144
Web Server - Ask For Help / Refresh a Browse after Change
« on: February 07, 2013, 07:13:54 AM »
How i can refresh a browse after change a record, i have a browse with filter and i need to refresh after chage a record.

145
Web Server - Ask For Help / 7.05??
« on: February 04, 2013, 02:04:32 AM »
web page said 7.05 but after dowload the setup said 7.04..

146
Web Server - Ask For Help / StringTheory Error
« on: January 25, 2013, 12:47:34 PM »
After install las version stringtheory i received this error:

Unknown identifier: PSTR - C:\Program Files\SoftVelocity\Clarion8\Accessory\libsrc\win\StringTheory.clw:1826,32

szMsg = '[st] ' & Clip(pStr)


147
Web Server - Ask For Help / 7.03 Question
« on: January 25, 2013, 08:02:31 AM »
i see in documents Change: ALERT and CONFIRM windows are now done as jQuery Dialogs.

But only work with delete alerts not with others alerts like login failed ect..

148
Web Server - Ask For Help / Focus
« on: January 25, 2013, 03:36:59 AM »
exist a function for set focus via code??

149
Web Server - Ask For Help / defaultfavicon
« on: January 23, 2013, 04:24:45 PM »
how i can change the defaultfavicon.ico?? i create my own favicon but nettalk always use the NT7 favicon.


150
Web Server - Ask For Help / trapping error??
« on: January 23, 2013, 03:58:00 PM »
how i can trapping file manager error, example if i delete a parent record that have multiple childs clarion return a message box with referential integrity error in a server side, but when run as services this error is hiden, is possible to trap the error and return this error with javascript or whatever message??

thanks..

Pages: 1 ... 8 9 [10] 11