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
5
votes
1 answer

Node.js SOAP Call with Complex Types

I am currently attempting to use node-soap (https://github.com/milewise/node-soap) to make calls to Authorize.net's SOAP server. However, I cannot seem to get my client code pass the proper parameters. I know that the function is calling the server…
Vincent Catalano
  • 2,259
  • 4
  • 22
  • 29
5
votes
1 answer

Custom Endpoint Behavior not being used in WCF Client with Service Reference

I have an issue that I am not quite sure how it started. I am fairly certain it was working fine before, but do not remember making any changes. First, please do not focus too much on the setup unless it is directly impacting why it is not working.…
TheJediCowboy
  • 8,924
  • 28
  • 136
  • 208
5
votes
2 answers

How to extract data from a SOAP response in Java?

I have a client set up to send a request to the National Weather Service SOAP server. I am receiving the response that I expect, but I am unsure as to the best way to extract the data from it that I need. For example, there is a lot of extra data in…
thedude19
  • 2,643
  • 5
  • 34
  • 43
5
votes
1 answer

classmap option not working while using php's SoapClient

Currently I am working on an internal soap service to control some internal processes. Which is normally not all that hard to do. I am however trying to use the soapClient classmap functionality to map objects instead of working with the stdClasses…
Damien Overeem
  • 4,487
  • 4
  • 36
  • 55
5
votes
4 answers

PHP SOAP Client with Special Characters (Encoding)?

I'm trying a SOAP Client with PHP. It is ok as i simply know it. But there is a problem when the Data contains Special Character inside. Special Character like ♫ inside. (It comes as Hex-code  in the data.) Following is the…
夏期劇場
  • 17,821
  • 44
  • 135
  • 217
5
votes
1 answer

Having issue with delphi WSDL importer

I am importing a WSDL provided by third party. but I am not successful with delphi WSDL importer. When I import the WSDL then delphi WSDL importer is hiding the implementation of the classes from the WSDL file.The WSDL file contains some functions…
5
votes
2 answers

generic soap client tool

I have created a soap service which I want to test.But I dont want to create a soap client for testing it.I am looking for some tool which can parse wsdl and give list of parameters which can be inputted and then gives response from soap service. I…
vishesh
  • 2,007
  • 6
  • 32
  • 67
5
votes
1 answer

SOAP client with Ruby and Savon: How to add EncodingType attribute in Nonce element

I need to create a ruby web service client(with Savon) to make a soap call to a web service which requires the EncodingType in the Nonce. So the correct soap message will have the Nonce element like this: ......
Don
  • 555
  • 3
  • 12
5
votes
3 answers

PHP 5.3.6 SoapClient::__doRequest(): SSL: Connection reset by peer

I'm working on consuming a .net web service in php 5.3.6. I'm using SoapClient class to make the connection. It is keep on failing with "SoapClient::__doRequest(): SSL: Connection reset by peer" and "SoapFault Object ( [message:protected] => Error…
user1382774
  • 51
  • 1
  • 2
5
votes
1 answer

PHP SoapClient - Multiple attributes with the same key

I'm using SoapClient, trying to produce something for this specification:
kevinmcg
  • 143
  • 1
  • 7
5
votes
0 answers

How to get the SOAP request message with Java and Axis 1.4

For the purposes of logging, I need to get the content of SOAP request and SOAP response. In general I have 2 alternatives: to extend part of Axis API (BasicHandler) and to create an interceptor, which will log everything for me. or I could to the…
karla
  • 4,506
  • 5
  • 34
  • 39
4
votes
1 answer

Cannot read property 'documentElement' of null

I'm getting this error while invoking a Webservice from Phonegap Android app. 01-13 23:49:52.219: E/Web Console(529): Uncaught TypeError: Cannot read property 'documentElement' of null at file:///android_asset/www/soapclient.js:158 Here is the…
G.S
  • 257
  • 1
  • 4
  • 16
4
votes
2 answers

PHP SoapClient: Action mismatch

I am trying to use the PHP SoapClient extension to communicate with an external SOAP server. This is my code: $this->_client = new SoapClient(SOAP_TAGGING_URL, array( 'trace' => 1, 'soap_version' => SOAP_1_2, 'cache_wsdl' =>…
gattu marrudu
  • 247
  • 4
  • 16
4
votes
1 answer

How to create proper xml for SOAP Client function?

I've spend hours with SOAPClient and still get no result, hope someone can help me. I'm trying to create and send to web-service following code: POST /PortalServices/PortalServices.asmx HTTP/1.1 Host:***.***.com Content-Type: text/xml;…
Sasha Lavasov
  • 91
  • 1
  • 7
4
votes
1 answer

How to stop PHP SoapClient converting s1:char arguments to 0 or 1 in request

PHP's Soap client appears to be handling arguments with type s1:char incorrectly when building the request. The Soap API requires either 'Y' or 'N' but in the request XML I get '0'. (Passing Bool true results in '1' but that isn't accepted as API in…
DavidNorth
  • 450
  • 3
  • 14