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

How to create complex arguments with Zeep (SOAP client for Python) and nest data?

I need to pass some nested data to my SOAP client, I think I know how to create the complex arguments... id = ucmdb.get_type('ns17:ID') Now I want to give some "arguments" to this 'ci', how can I do this? I'll show what I mean with an example using…
5
votes
1 answer

SoapClient call returns 500 Internal Server Error

I am trying to connect to an API using PHP and its built-in SoapClient. I have checked against the url I was given through the ill-formatted documents the client gave and $client->__getFunctions() returns a list of three functions.…
Tim Roberts
  • 1,120
  • 2
  • 9
  • 25
5
votes
6 answers

IRS-A2A BulkRequestTransmitter message not formmatted properly and/or cannot be interpreted

I am receiving the following error when attempting to submit through the BulkRequestTransmitter Web Service. The Composition Guide is less than helpful as far as this message goes, and when I compare my SOAP XML with the SOAP from the Composition…
Russ
  • 678
  • 8
  • 26
5
votes
0 answers

How to allow client to not ignore SOAP Port with "-extension" tag

I'm trying to consume a Web Service running in localhost that has this WSDL "http://localhost:8000/eamsLink/RepositoryService/?wsdl". I ran the command: wsimport -keep -p ws -verbose -wsdllocation…
Zinid
  • 61
  • 7
5
votes
2 answers

Advantage of PHP SoapClient classmap

Can anyone tell me the advantage of using the classmap option within PHP Soapclient? Maybe with some practical examples?
Mart Blegger
  • 113
  • 2
  • 8
5
votes
1 answer

How can I call a SOAP Web Service without Adding Web Reference

I require developing a .NET 4.5 Client for a SOAP based web service. The problem is the company who are developing these SOAP based services do not provide WSDLs. However they do provide the request response schemas (XSD files). Since there are no…
Harindaka
  • 4,658
  • 8
  • 43
  • 62
5
votes
6 answers

Speeding up a soap powered website

We're currently looking into doing some performance tweaking on a website which relies heavily on a Soap webservice. But ... our servers are located in Belgium and the webservice we connect to is locate in San Francisco so it's a long distance…
ChrisR
  • 14,370
  • 16
  • 70
  • 107
5
votes
1 answer

Programmatically download an attachment via Mantis SOAP API?

Successfully using the Mantis SOAP API (aka "MantisConnect") from C#, I can successfully read an issue and also get the download_url field. When trying to download the attachment by something like this: using (var request = new WebClient()) { …
Uwe Keim
  • 39,551
  • 56
  • 175
  • 291
5
votes
2 answers

How can I edit the SOAP envelope and header with Perl's SOAP::Lite?

I'm trying to modify the soapenv:Header to include addressing in my soap request my $header=SOAP::Header->name("Header")->prefix("soap")->uri("http://www.w3.org/2005/08/addressing"); When I send the request: print $soap->call($header,…
Shayne
  • 51
  • 2
5
votes
1 answer

PHP soapCall generates unwanted htmlEntities

My PHP code tries to communicate with a Web Service. I want to send: But PHP sends: <![CDATA[<node> If I send the <-version request in SoapUI, it works fine. If I send the <-version request in SoapUI,…
5
votes
4 answers

Why am I receiving java.lang.NullPointerException rather than soap response?

I am sending the following request to the server, when I copy the request and use the SOAPUI it shows the correct response, but when I use the following code to generate and send it, returns java.lang.NullPointerException on line 50, which…
user1386522
5
votes
3 answers

PHP SoapClient "deserialize error" when passing array in array to a property

I used the SoapClient Library to get data from TecDoc webservices. All of the ws functions work except this special function whose parameter contains an array in an array. Here is my code: $client = new…
dakiquang
  • 684
  • 1
  • 8
  • 24
5
votes
2 answers

Could not find endpoint element with name 'xxxxx' and contract 'yyy' in the ServiceModel client configuration section

I generated a proxy via this command - svcutil.exe /language:cs /out:generatedProxy.cs /config:app.config https://service100.emedny.org:9047/MHService?wsdl and then copied the elements from the resulting app.config into the app.config…
user2603361
  • 61
  • 1
  • 1
  • 4
5
votes
2 answers

Simple soap call is failing (Nodejs, easysoap)

I am having some problems with easysoap (https://npmjs.org/package/easysoap) and I have been unable to find much documentation or people talking about it, so I hope some of you can help: I’m making a simple call like this: var…
Rafa Llorente
  • 447
  • 2
  • 8
  • 18
5
votes
2 answers

ZF2 SOAP "Procedure not present" Error

I'm having serious trouble to solve this issue. I got an APP with 3 modules that got different services to provide by SOAP. What happens is that 2 of them are getting this…