Questions tagged as 'soap'

1
answer

WCF Receive UTF-8 Response

I'm consuming a third party Webservice through a Console application . I get an object as a return, and on this object I need to read an attribute called ReturnMessage . However, the text is unconfigured, so it looks like thi...
asked by 25.11.2016 / 12:41
1
answer

Error Querying Web Wervice

I am doing a client query in a web service, I pass the key to see what it returns me saying that I did not pass the key, what can I be doing wrong in the method? This is .xml of the query <soapenv:Envelope xmlns:xsi="http://www.w3....
asked by 28.09.2016 / 15:05
1
answer

Delphi class with optional integer field

The question is: how should I build my TPESSOA class so that the _id_city field can be null. Database Create Table PESSOA ( ID INTEGER NOT NULL, NOME VARCHAR(100) NOT NULL, ID_CIDADE INTEGER) No Dephi TPESSOA = Class(TRemotable)...
asked by 03.11.2015 / 12:23
1
answer

Security attributes in web service

Can you use AuthorizeAttribute in webservice asmx, soap or rest? And custom attributes, like the one below (example only)? [System.AttributeUsage(System.AttributeTargets.Class | System.AttributeTargets.Struct) ] p...
asked by 21.10.2015 / 20:57
1
answer

Error 400 when sending request to ESocial (C #)

I'm getting 400 error response to executing the SOAP request on eSocial servers. The error occurs in this command: using (HttpWebResponse resposta = request.GetResponse() as HttpWebResponse) I installed the certificate chains. I installe...
asked by 10.09.2018 / 15:04
1
answer

Implement Vbscript Post Office Reverse Logic WebService

I'm trying to implement the webservice of reverse mail logistics in vbscript but I always get the error "Error reading XMLStreamReader." Follow the code that is being used. I'm still in development environment. Dim MdbFilePath,ConnectionStr...
asked by 22.02.2017 / 22:14
1
answer

How to send data through the soapUI tool and how to do manual? [closed]

I would like to send information via the soapUI tool to my webService but I do not know how. Many told me to do it manually and I would like to know how to do it both ways!     
asked by 02.03.2015 / 13:11
1
answer

How to retrieve a soapObject from a webservice return

androidHttpTransport.call(SOAP_ACTION4, envelope); SoapObject result = (SoapObject) envelope.getResponse(); System.out.println(result.getProperty("nmConsultor")); return result.toString(); In case I would...
asked by 16.04.2014 / 16:20
1
answer

What is the difference between SOAP and NuSOAP?

I'm having trouble understanding the process of creating a WebService in PHP. I created a server which makes the following call: <?php require_once "lib/nusoap.php"; $soap = new soap_server; $soap->configureWSDL('WS-WebCodeF...
asked by 06.09.2017 / 15:41
1
answer

How to bypass Same-Origin Policy and consume a SOAP webservice with JavaScript

I am building a mobile application using PhoneGap for iOS, Android and Windows Phone and need to connect to a SOAP webservice for various application features. I've been trying to do this with Ajax, but I always have the same problem: hit Sam...
asked by 21.09.2015 / 11:42