Most voted "soapclient" questions
24 questions
Sort by count of
-
6
votes1
answer1391
viewsConnection with Webservice SOAP WSDL with XML return
I have the following code that works perfectly. The return of the webservice is a XML, but the return I’m getting is a string. What should I do to receive the XML as return and not a string? $client…
-
4
votes1
answer205
viewsWCF Receive Reply in UTF-8
I’m consuming a Webservice by means of a Console application. I receive an object as a return and in this object I need to read an attribute called ReturnMessage. But the text is disfigured, the…
-
2
votes1
answer255
viewsEFD-Reinf via Postman -> Returns MS0028 error ("The loteEvents parameter was not reported in the service call")
I am using the Postman to understand exactly what needs to be sent in http request. Authentication: In the program Postman I finished the menu Files -> Settings, flap Certificates and informed…
-
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
answer4444
viewsConnection with Webservice SOAP WSDL
I am trying to get an xml from a Webservice Soap wsdl. With the code below I can get a get on your methods. $client = new SoapClient('http://www.roveri.inf.br/ws/cnpj.php?wsdl'); $result =…
-
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
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
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
votes0
answers131
viewsRetrieve information from Webservice
I have to send an Access Token to the webservice, this token should be sent in an XML, like this: POST /webslaptime_deploy/websLapTime.asmx HTTP/1.1 Host: 187.17.175.49 Content-Type: text/xml;…
-
1
votes1
answer556
viewsSoapclient error with php 7.1 on shared server
I have the following code that works perfectly on host location: $wsdl ='http://ws.portaledu.com.br:8051/wsConsultaSQL/MEX?wsdl'; $client = new SoapClient($wsdl,array( 'trace' => true,…
-
1
votes1
answer813
viewsPHP SOAP - SOAP-ERROR
Good afternoon Guys, I’m doing a WEBSERVICE to consume a company API. But with the code below the return is always "SOAP-ERROR: Encoding: Object has no 'Active' Property" I don’t know what else to…
-
1
votes0
answers35
viewsDoubt Code (Charset) Soapclient Laravel
I would like to understand the reason for this difference in a consultation using the SOAP: In an application the SOAP query returns a string in format ASCII, with special characters of shape of ??…
-
0
votes0
answers629
viewsPHP7 SOAP problem
I started a project using php 5.6.26 and managed to communicate with the e-mail server via SOAP without problems. This week I decided to update php to version 7.0.13, and communication via SOAP…
-
0
votes0
answers151
viewsWeb Service SOAP
I’m having a very unusual problem with a SOAP application. I have a simple client to take a consumer test. When I test directly in the service view action returns the result correctly, but when I…
-
0
votes2
answers284
viewsVS 2015 SOAP does not work, but in Soapui works normal
In the company there is a Service available through Webservice SOAP (IBM BPM). I can’t get an answer on VS 2015 using the Web Reference a connection with this service. I always get the answer after…
-
0
votes0
answers135
viewsHow to consume this soapclient webservice in php?
How to consume this soapclient webservice in php ??? tried the code below and gave the following error. Code $client = new SoapClient('http://www.smsviaweb.com.br/SMSVIAWEB.asmx?wsdl'); $params =…
-
0
votes1
answer122
viewsWEB Service SOAP instantiating class
Good afternoon guys, I’m trying to instantiate a class of WS SOAP but this is giving the following error. follows below the code of my method : public void consultaOperadoresSafra(){…
-
0
votes0
answers89
viewsSchema Soap Laravel Problem
Hey there, guys. I’m trying to connect to a Soap webservice using the Laravel. First the webservice is on a vpn, so I need to do a proxy, but I’m having trouble consuming. My mistake is this.…
-
0
votes0
answers182
viewsWRONG PHP XML SOAP UPLOAD
I’m trying to send data to a webservice and I can’t. $url = "http://plataformasintese.com:8085/IntegrationService.asmx?WSDL"; $wsdl = $url; $client = new SOAPClient($wsdl,array("trace" => true,…
-
0
votes0
answers74
viewsHow to consume a SOAP Webservice at Angular 7
Guys, I’m trying to consume a SOAP Webservice in Angular 7, I’m using ngx-Soap in version 0.6.3, but I’m not succeeding, the project runs but when I try to access the resource the browser emits this…
-
0
votes0
answers199
viewsConsume web service with SOAP using PHP
Good afternoon, I’m trying to consume a web service on SOAP TOTVS so far I have the following code. $soapParams = array( 'login' => 'xxxx', 'password' => 'xxxx', 'authentication' =>…
-
0
votes0
answers32
viewsSend file to api SOAP with PHP
I need to send jpg and pdf files eventually to an api. But in the WSDL there is the field: <xs:element minOccurs="0" name="arquivo" type="xs:base64Binary"/> Until then beauty, only it has a…
-
0
votes0
answers21
viewsSoapcliente() PHP query with HTTP URL being consulted via domain with HTTPS SSL - Error 500
I have an internal project in the company, where I perform a query in a SOAP webservice whose URL is at http. I am with a Linux VPS Ubuntu 18 where in the domain linked to the ip of this VPS, a ssl…
-
-2
votes1
answer272
viewsHow to mount an XML string with SOAP?
I don’t know how to ride STRING of XML correct way to send the parameters with xml. According to the documentation the method is called coletar() but I am not able to pass these parameters…