Questions tagged [soap-client]

An application that calls upon a SOAP server.

A SOAP client is any application that calls upon a server.

Example SOAP Clients

2272 questions
0
votes
2 answers

Stateful SOAP webservice example

I am trying to do a POC where i need to invoke a Stateful SOAP webservice . I need to do a login call first to SOAP webservice and get the session id(or cookie or something like that) and use the session id for making subsequent calls to the…
vignesh d
  • 235
  • 3
  • 6
  • 15
0
votes
0 answers

Laravel storing data using SOAP API

I hope some of you guys can help me I'm new to SOAP API and having rough time. I'm using my client's database (database using soap api), my admin side or backend is laravel. I'm having some trouble with storing data using soap api to my client's…
0
votes
1 answer

Cannot get response from PHP Soapclient

I am trying to fetch response from sending PHP SoapClient request. My understanding is that in Soap, the class exists on the Soap-server and is specified and fetched as an argument to Soapclient, pointing out the wsdl file. I am using following link…
Toolbox
  • 2,333
  • 12
  • 26
0
votes
2 answers

SoapFault exception in bing ads api response while downloading user location performance report with php

I'm trying to download the Bing ads user location performance report. my php code is : define("ADCENTER_API_ENDPOINT", "https://reporting.api.bingads.microsoft.com/Api/Advertiser/Reporting/v13"); define("ADCENTER_API_NAMESPACE",…
0
votes
1 answer

Error Handling and Retry Mechanism for SOAP Web Services Generated with Apache CXF

Can anybody suggest a library or your own method in Java, Im willing to read/explore it myself, on how to handle SOAP interruption errors. For example, if I'm sending data to a website and internet connection is suddenly cut, how to create a Retry…
ReyAnthonyRenacia
  • 17,219
  • 5
  • 37
  • 56
0
votes
0 answers

Php fatal error: soap-error: parsing wsdl. api

I am trying to connect Magento 1 with the other platform for the inventory named "Zoho inventory" via a third-party company "kloudconnector". The API is working fine but I still get this error. We have tried it again getting the error SOAP-ERROR:…
0
votes
1 answer

How to transfer SESSION created in soap server to soap client code?

I've created a non-wsdl soap server with PHP to run functions from all servers I own. There are bunch of problems on this as you can see from my profile but this I hope is solvable. I cannot transfer SESSION data between server and client. Already…
ValDiMagra
  • 73
  • 1
  • 8
0
votes
1 answer

Including XML format in WSDL

My method signature is displayed below: public String test(@WebParam(name = "INPUTPACKET") String inputPacket) the problem being the inputPacket parameter accepts an XML and the WSDL file structure displays inputPacket as string type so how do I…
0
votes
1 answer

PHP SOAPClient consuming MS Dynamics WSDL Methods behind Windows Authentication

I am trying to connect to a web service which requires a windows authentication. I am writing a code in PHP and trying to call methods of MS dynamics 365 wsdl but all I get is Forbidden and 608 error code: There is insufficient account information…
0
votes
0 answers

Synchronous while-loop and array push

I'm new to NodeJS and I'm currently working on node-soap module that can be found from https://github.com/vpulim/node-soap. I'm calling a Web Service by using the referenced module. I need to return the SOAP client's response to user's web browser,…
Mikael H.
  • 23
  • 8
0
votes
0 answers

Javascript soap client, browser ignores cookies

I am trying to work with soap client at the browser. For that, I am using soap js client. I tried to use soap client in the browser. Everything works fine except for session authorization. I have splitted api into 8 services. So I need to create 8…
Taras Halynskyi
  • 149
  • 2
  • 7
0
votes
0 answers

Laravel - Class 'SoapClient' not found

I want to use SoapClient but it returns error: Class 'SoapClient' not found. I have windows+xampp and in my php.ini I coludn't find ;extension=php_soap.dll to uncomment it in order to enable that so I added it in extension=php_soap.dll. It didn't…
kodfire
  • 1,612
  • 3
  • 18
  • 57
0
votes
1 answer

PHP 7.3 SoapClient stream_context (verify_peer) Ignored

I'm in the process of upgrading from PHP 5.6 to PHP 7.3 and it appears that a SoapClient in PHP 7.3 ignores the ssl verify_peer option. In PHP 5.6 the following code executes as it should: $opts = [ 'ssl' => [ 'crypto_method' =>…
Colby Clark
  • 181
  • 1
  • 8
0
votes
1 answer

How to assign a specific host and URI to SoapClient

Attempting to use a SoapClient like a HttpClient. I work in multiple different languages, so I apologize if my code examples flipflop between vb.net and c#. The reason I need to target a specific IP is that I have multiple servers and want to test…
Teddy Higgins
  • 140
  • 10
0
votes
0 answers

SOAP Service request without Root Node

Recently i came across a requirement where a SOAP based web service without having a root node has to be consumed. Below is the request payload which works using SOAPUI
Samy
  • 2,387
  • 2
  • 17
  • 31
1 2 3
99
100