Search found 215 matches: soap

Return to advanced search

Re: Soap Web Service - timeout request

Darrell intenta con 'MSXML2.ServerXMLHTTP' que tiene el metodo setTimeouts(lResolve, lConnect, lSend, lReceive) 'MSXML2.XMLHTTP' es distinto de 'MSXML2.ServerXMLHTTP' Yo lo uso asi oHttp := CreateObject( 'MSXML2.ServerXMLHTTP' )oHttp:setTimeouts(  5 * 1000,   5 * 1000,  30 * 1000,  30 * ...
by RSalazarU
Thu Jan 11, 2024 6:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Soap Web Service - timeout request
Replies: 4
Views: 706

Re: Soap Web Service - timeout request

Hi Antonio, Thank you. Question, if I set nSecs = 5 and responses comes back faster, will it still wait 5 seconds or process immediately? Does not wait. Processes immediately. Also for additional information: httprequest method SetTimeOuts( nResolveTimeOut, nConnectTimeOut, nSendTimeOut, nReceiveTi...
by nageswaragunupudi
Tue Jan 09, 2024 4:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Soap Web Service - timeout request
Replies: 4
Views: 706

Re: Soap Web Service - timeout request

Hi Antonio,
Thank you. Question, if I set nSecs = 5 and responses comes back faster, will it still wait 5 seconds or process immediately?
by cdmmaui
Tue Jan 09, 2024 12:47 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Soap Web Service - timeout request
Replies: 4
Views: 706

Re: Soap Web Service - timeout request

Dear Darrell, Please try this: oHttp:Open( 'POST', cURL, .F. ) oHttp:SetRequestHeader( "Content-Type","application/xml") oHttp:SetRequestHeader( "Accept","*/*") oHttp:SetRequestHeader( "Authorization", "Basic "+hb_base64Encode(cCred)) oHttp...
by Antonio Linares
Tue Jan 09, 2024 6:34 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Soap Web Service - timeout request
Replies: 4
Views: 706

Soap Web Service - timeout request

... 'MSXML2.XMLHTTP' ) CATCH oHttp := CreateObject( 'Microsoft.XMLHTTP' ) END cHttpSend := [<?xml version="1.0"?>] cHttpSend += [<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:abc.com:05-OfferToCash:40-LogisticDelivery">] ...
by cdmmaui
Mon Jan 08, 2024 9:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Soap Web Service - timeout request
Replies: 4
Views: 706

Re: XML, CON ARCHIVO ADJUNTO PDF

... Content-Type: application/xop+xml; charset=utf-8; type="text/xml" Content-Transfer-Encoding: 8bit Content-ID: <soapPart> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"><env:Header xmlns:work="http://bea.com/2004/06/soap/workarea/"><cl:token ...
by elmoiquique
Sat Sep 30, 2023 6:22 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: XML, CON ARCHIVO ADJUNTO PDF
Replies: 35
Views: 2295

Webservice de .NET a Fivewin

... ejecutable con esa función en .NET para que pueda hacer una llamada desde mi aplicación en Fivewin con parámetros. También utilizo la aplicación SOAP UI para realizar pruebas y con la cual obtengo una buena respuesta del webservice, debajo el ejemplo de la cadena enviada y la rta desde esa aplicación. ...
by mterraz
Wed Jul 12, 2023 4:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Webservice de .NET a Fivewin
Replies: 2
Views: 585

Usando webservice de un tercero

... "https://tecnixxx.cl/?a=get-fichas&desde=1205569&user=uuuuuuuu&pwd=pppppppppp&xml=1 " Antes me he conectado por SOAP sin problemas y leo algunos datos desde otra webservice, pero esta vez quede en duda si usar CreateObject( "MSXML2.XMLHTTP" ) o CURL ...
by Adolfo
Tue Jun 06, 2023 10:33 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Usando webservice de un tercero
Replies: 4
Views: 416

Solicitud CUFD de impuestos

Buenas estimados Necesito convertir éste código para obtener un código CUFD mediante SOAP <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:siat="https://siat.impuestos.gob.bo/">   <soapenv:Header/>  ...
by acuellar
Tue May 23, 2023 3:52 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Solicitud CUFD de impuestos
Replies: 3
Views: 262

Re: autoGPT for OpenAI

... 2048   }   ENDTEXT Not sure if modifying the max_tokens value may help. Maybe we need to contact OpenAI tech support. Regarding the use of SOAP I don't see any issue with that as we build Windows apps mostly. If a Linux or Mac user wants to use it, then it may get converted into curl. I ...
by Antonio Linares
Fri Apr 28, 2023 8:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: autoGPT for OpenAI
Replies: 15
Views: 1472

Re: autoGPT for OpenAI

... that is fed. #1 -- When you limit tokens, does that limit the answer or does that includes question and answer? #2 -- I noticed you are using SOAP. Will it work with hbCurl.lib? Doesn't it make more sense to use hbCurl.lib that is MS independent? I noticed their samples are Python samples. ...
by reinaldocrespo
Thu Apr 27, 2023 8:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: autoGPT for OpenAI
Replies: 15
Views: 1472

Web Services Security WSS OASIS

Hello, I'm trying to perform an integration with a Brazilian webservice that requires the standard: Web Services Security: 3 SOAP Message Security 1.0 Oasis. And I'm being beaten a lot about this, I'm using CAPICOM.dll and MSXML5.dll to work with the certificate and signature I have ...
by Francisco Valério
Mon Feb 20, 2023 7:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Web Services Security WSS OASIS
Replies: 0
Views: 216

Re: Return Recordset from JSON Restful Web Service

Leandro, Estoy trabajando con Byron en reemplazar SOAP. No manejo PHP, solo ASP.NET. Tenemos muchos ASMX web services, que regresan json (o xml) pero tenemos que definir los datos que regresan. Lo que necesitamos es pasar un Query para SQL y que los ...
by luiscambuston
Mon Jul 18, 2022 6:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Return Recordset from JSON Restful Web Service
Replies: 2
Views: 318

Return Recordset from JSON Restful Web Service

I have been using MS Soap to process SQL queries and it returns a stream which is a recordset and I go on my marry way. However I am finding it very hard to successfully install the MS Soap Toolkit 3.0 on newer workstations. Is it possible ...
by byron.hopp
Fri Jul 15, 2022 5:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Return Recordset from JSON Restful Web Service
Replies: 2
Views: 318

recuperar datos de cuit

... datos de un cuit y lo que me responde no me dice nada. Esto es lo que envío: <?xml version="1.0" encoding="UTF-8"?> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:a5="http://a5.soap.ws.server.puc.sr/"> <soapenv:Header/> ...
by jpcavagnaro
Thu Jun 30, 2022 11:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: recuperar datos de cuit
Replies: 2
Views: 249
Next

Return to advanced search