Most voted "soap" questions
SOAP (Simple Object Access Protocol) is a protocol for the exchange of information structured on a decentralized and distributed platform.
Learn more…222 questions
Sort by count of
-
2
votes0
answers146
viewsSoapclient -> Coding problem(Invalid byte 2 of 3-byte UTF-8 Sequence)
I am making a request to a webservice with PHP(Soapclient), and when I have special characters, error/ defrormation occurs. What I’ve already tried: Set the parameter 'encoding'=>'ISO-8859-1' or…
-
2
votes0
answers238
viewsDoubts about Bradesco boleto integration
I’m having doubts about how to integrate this Bradesco payment solution. That’s the documentation I don’t know if it’s via POST, via GET, if it’s via XML. I’m confused.. I tried something like this…
-
2
votes2
answers7845
viewsHow to resolve "Could not create SSL/TLS Secure Channel." error?
In my project, I need to communicate with a Webservice and send data to it. However when I do the envelopment and sent, it shows the following error: "Could not create SSL/TLS Secure Channel.".…
-
2
votes0
answers897
viewsError 500 when consuming Webservice
The code is returning the following error message: An unhandled Exception of type 'System.Net.Webexception' occurred in System.dll Additional information: Remote server returned an error: (500)…
-
2
votes1
answer1818
viewsAuthorization Basic HTTRIO SPC / Delphi
Good morning to all, I wonder if anyone could help me in the following situation: I am doing an integration with the SPC/CDL web service, which requires a basic authentication (HTTP header). I need…
-
2
votes3
answers3159
viewsAdd SOAP Header to SOAP C#
I’m trying to add a header customized in one service SOAP using C#. I’ve searched everything and I can’t find a solution that works. I’m adding the service by Web References of C#. I’ve tried to do…
-
2
votes2
answers1928
viewsConsume Web Service SGS Banco Central Brasil - Dollar Quotation
I was able to generate the (java) client in Eclipse, available in WSDL https://www3.bcb.gov.br/sgspub/JSP/sgsgeral/FachadaWSSGS.wsdl. The following classes were generated: package…
-
2
votes1
answer620
viewsUsing glob in Python
I am mounting a client that will play the found files in a folder for a SOAP Webservice This Webservice has two methods that we will call MET1 and MET2. When found files end with . XML and start…
-
2
votes1
answer67
viewsHow to create optional parameters in Soapserver
I’m using the native class of PHP to create a Soap server. Example: class Bar { public function getDrink($age, $money, $name) { if ($age >= 18 && $money == 5): $drink = "Heineken"; else:…
-
2
votes1
answer2430
viewsConsume Webservice in SOAP with HTTPRIO in DELPHI
I’m having a little trouble with a request via webservice/Soap. I’m trying to feed a function of a WSDL of Vtex through the Delphi and it always returns to me that a value has not been filled in.…
-
2
votes0
answers72
viewsWebservice VB.NET - Return list(of ) without structure TAG
I have a need to generate an XML code returned through a Webmethod() in the following format. Notice the content within the TAG <user_list>, which must have a list(of) or an unassembled…
-
2
votes1
answer886
viewsError during deserialization of the body of the response message to the operation - WSDL
I am new to implementing services as a reference, and I see myself at the moment at a dead end. I can successfully test the call to the service via Postman. It is worth saying that a certificate is…
-
2
votes0
answers155
viewsWSDL soap with PHP giving error
I have the following code try { $client = new SoapClient("link.wsdl"); $function = "METADOPRINCIPAL"; $arguments = array( 'METADOPRINCIPAL' => array( 'Msg' => array( 'Transacao' => array(…
-
2
votes0
answers101
viewsUnexpected end of stream
I’m consuming a webservice on android. But I’m having trouble with the following method: public static SoapObject Retornar_Lista_UFs(int pCodigo_Entidade) { Financeiro_NG oFinanceiro = new…
-
2
votes1
answer212
viewsAdd customizable SOAP Header
I’m consuming a web service SOAP which does not provide any information on Headers, nor of autenticação. I added the same in my project by the tool Add Connected Service in Visual Studio. Looking…
-
1
votes2
answers1924
viewsWeb Service Nusoap Return Error
I’m developing a web service with Nusoap on Laravel 4. The class I’m wearing is the https://github.com/noiselabs/NoiselabsNuSOAPBundle Server Route::any('ws/server', function() { $server = new…
-
1
votes3
answers17687
viewsGet HTML and JS database connection
How to get the connection to the database via SOAP using HTML and Javascript? I use Jquery Mobile. I am Making a login system, and I need to transport the input information to the Worklight Adapter…
-
1
votes1
answer332
viewsWeb service made with Nusoap in PHP. I can’t access in Java
I developed a Webservice in PHP, using the Nusoap library. Webservice is already hosted and working. When I develop a client using PHP, whether using Nusoap or using the native PHP Soap class, I can…
-
1
votes1
answer844
viewsError when viewing Webservice Consultregistration 2
I’m trying to automate Sintegra consultations here at my company. I am trying to implement in VB.NET (company software language), the consultation through the webservice provided by Sefaz…
-
1
votes1
answer857
viewsHandle errors of SOAP
I am consuming a webservice method via Externalobject (imported from "WSDL Import"). In practice, the invocation takes the Id as parameter and the service returns the name of the corresponding file:…
-
1
votes1
answer666
viewsHow to use ksoap2 library
I have the following situation, I have a PHP server: class Teste { function obtemStatus(){ return 'ok'; } } $server = new SoapServer(null, array('uri'=>'http://test-uri/'));…
-
1
votes1
answer2298
viewsPass method parameters through the URL
How do I capture the parameters requested by the URL in a webservice? For example: I have the following webservice: http://localhost/teste/WebService1.asmx/Produto How to pass method parameters…
-
1
votes1
answer1515
viewsError in the use of WS from the IRS, (Rejection: Use only the standard NF-e namespace)
Hello! I am trying to access the SOAP service of approval of the IRS to run the service status query, I have made all possible combinations (including those present in the last manual published) in…
-
1
votes0
answers80
viewsJava SOAP Web Service error in Glassfish
I have the following method in a SOAP Web Service running through Glassfish 4.1.1: @WebService(serviceName = "CalculatorWS") @Stateless() public class CalculatorWS { @WebMethod(operationName =…
-
1
votes1
answer52
viewsNullpointerexception in WSO2 DSS 3.0.0
I am having problems in a Data Service in WSO2 DSS 3.0.0. If I execute the query directly in the database no error happens. The database is a Sybase 12. Could someone help? DBS <data…
-
1
votes0
answers134
viewsXML deserialization in C# is returning null array even when XML has data
I’m trying to deserialize XML <?xml version="1.0" encoding="UTF-8"?> <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"…
-
1
votes0
answers97
viewsMagento - SOAP-ERROR: Parsing WSDL
I am with this error and unfortunately I can not solve the same. Fatal error: Uncaught Soapfault Exception: [WSDL] SOAP-ERROR: Parsing WSDL: Couldn’t load from…
-
1
votes0
answers200
viewsWebservice with PHP + SOAP - Doubt with the return
I’m wearing a webservice to perform CAT52 ordinance file uploads Webservice: https://www.nfp.fazenda.sp.gov.br/ws/arquivocf.asmx?WSDL You are doing all normal communication (at least I think) but…
-
1
votes1
answer407
viewsjasperserver with php
I found a lib in Git https://github.com/adlermedrado/PHP-JasperServer-Integration that allows PHP to connect with Jasperserver ( java’s ireport server ), I already use and works, but I wanted to add…
-
1
votes1
answer395
viewsError deploying SOAP web service with Maven and Apache Tomcat
I built a JAX-WS application by Maven, but I’m unable to deploy it to the Tomcat application server. They follow my artifacts: pom.xml: <project xmlns = "http://maven.apache.org/POM/4.0.0"…
-
1
votes1
answer165
viewsDoubt Receiving parameters (Webservice Soap)
Guys, I’m having doubts in the following scenario: I have this class, it is a webservice (contains the @Webservice method): @WebService(name = "l", targetNamespace = "o") public abstract interface…
-
1
votes0
answers120
viewsPermission error to make a SOAP call with aXMLRPC
Fala galera! I have a virtual store (Magento) in which I am trying to make a request SOAP with ksoap2 on Android. However, when executing the code, it generates an Exception, but the message of this…
-
1
votes0
answers281
viewsHTTP POST for Nota Fiscal
Dear friends, good afternoon. I need to send an XML via post to the webservice function of the São Paulo Fiscal Note. However, XML is correct, it only returns a message that is very generic, so it…
-
1
votes0
answers51
viewsError while fetching HTTP headers in php Web Services
I am learning how to create Web Services and I am making two files in php, server and client. Server.php <?php class functions { function mensagem() { return 'hello server'; } function soma($a,…
-
1
votes1
answer585
viewsGeneration of GNRE Guides for the state of RJ
Good morning, I am carrying out the development of an application that carried out the generation and the sending of GNRE guides to the state of Rio de Janeiro. I have already done the development…
-
1
votes1
answer393
viewsPHP webservice connection occurring Curl ERROR: 35
Hello, I am trying to make a connection to a webservice that uses SSL security, and it is necessary to use a certificate. I was trying initially on a linux server, but now I’m using it on my windows…
-
1
votes1
answer631
viewsSend array data in Webservice made in Nusoap
Talk to you guys, blah? I am developing a php webservice in Soap, I am using the nuSOAP library, the tests with simple type were successful but now I need to test with complex types as bad arrays I…
-
1
votes0
answers285
viewsERR_BAD_SL_CLIENT_AUTH_CERT error while trying to access WSDL
I have a PHP script running on my local machine. The script is consuming a SOAP web service. However I can’t access the WSDL. When trying to open the link to the WSDL directly in the browser, I get…
-
1
votes1
answer314
viewsError in SOAP Request
I’ve been trying to connect in a WSDL, however, unsuccessfully. The web service provider gave me a file xxx.wsdl and passed me the credentials for the connection. I have been trying to do the…
-
1
votes1
answer830
viewsRead XML with Java
I’m using the following code to send a .xml via SOAP package consumirwebserviceporrequisicaoxml; import java.io.ByteArrayInputStream; import java.io.IOException; import java.io.StringWriter; import…
-
1
votes0
answers151
viewsERROR "do not have a Property of the name Return"
Hello, I’m trying to implement a Webservice and I’m having trouble answering. I used Soapui and it’s working. I am at the stage of implementing the Webservice client in the application. When I…
-
1
votes0
answers361
viewsHow to add this header to SOAP?
Hello, I have to do a check in a Web Service where a valid CPF is sent and returns me a true or false according to the validation. I can access the Web Service with the following code: // INICIANDO…
-
1
votes1
answer842
viewsHow to send this XML to webservice via PHP
Good morning, I have the following problem: I need to remove from the city website which companies issued note this month. I did the processes of installing the certificate of the city, and I need…
-
1
votes0
answers834
viewsLogin Webservice PHP + SOAP + CURL + XML + certificate
Good afternoon, I have the following code trying to access the ISS webservice of the city of Curitiba: <?php $xml_data = '<?xml version="1.0" encoding="utf-8"?> <soap:Envelope…
-
1
votes0
answers198
viewsAndroid Retrofit 2 Simple XML Converter Response
I am using Retrofit 2.2.0 and Retrofit Simplexml Converter 2.2.0. I added the simplexmlconverter at the time of the retrofit with the addConverterFactory method. The problem is that when I get the…
-
1
votes1
answer300
viewsHow to feed SELECT with Webservice SOAP in PHP?
I have to list one in a SELECT (html) products of a company using a webservice. Some example code ? Client code: <?php //cliente //inclusao do arquivo NUSOAP require_once('lib/nusoap.php');…
-
1
votes1
answer129
viewsComsumir Web service in SOAP with large volume of data, TIME OUT
I need to take a lot of data from a web service in SOAP, but depending on the query the server does not hold, I have seen in some articles, that this can be solved by compression of xml or sending…
-
1
votes0
answers304
viewsWeb service access with SOAP Headers and Node.js
I am trying to access a webservice using Node.js (with module Node-Soap) and that first I need to login and then in the calls of other methods it is necessary to send the received Header on login. I…
-
1
votes0
answers294
viewsWeb Service Soap Server - WSDL - Java Eclipse
I know that there is already a lot of blog post related to web service in java and also know that there have been many questions with this problem. But I tried every way and I couldn’t fix it, so…
-
1
votes2
answers4766
viewsRegistration of boletos Caixa Webservice SOAP WSDL PHP
Friends, I never worked with WS, but now, as a result of the new changes, I need to register slips that I use on a website. I received a document from CEF but so far I could not make it work. Follow…