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
9
votes
3 answers

PHP SoapClient returns null even thought there was a response

Using the PHP SoapClient, I make a call to the WSDL at https://webservices-test.ede.de:9443/ibis/ws/WS_EXT_ELC?wsdl and I get the following xml response (as indicated by $soapclient->__last_response)
Yirmiyahu Fischer
  • 503
  • 2
  • 9
  • 22
9
votes
1 answer

System property "javax.xml.soap.MessageFactory" for two different soap versions

i need to communicate with two webservices from my application. For one webservice i need to use soap1_1 version and for the other soap version is soap1_2. In this case what should be the value set for the system property…
shaiksha
  • 993
  • 5
  • 17
  • 35
9
votes
6 answers

SoapClient: how to pass multiple elements with same name?

I have following code: $telnums = array(10, 20, 30); $obj = new StdClass(); $obj->telnums = new StdClass(); foreach ($telnums as $telnum) { $obj->telnums = $telnum; } call_user_func(array($this->client, 'createDomain'), new SoapVar($obj,…
Slava Semushin
  • 14,904
  • 7
  • 53
  • 69
9
votes
0 answers

How to change the Soap header message

I have soap request to be sent to the service. Before sending i want to edit the Soap header this is one of…
bpetlur
  • 333
  • 5
  • 16
8
votes
5 answers

Connecting to Magento API with SOAP

I'm trying to follow a tutorail on connecting to magento API with Soap, but am stuck already ? SOAP seems to be installed on my sever as i can browse to the ?wsld and it displays an xml file. I've setup the user and role in magento admin…
Ledgemonkey
  • 7,223
  • 12
  • 36
  • 56
8
votes
6 answers

how to create soap client?

I have SOAP server running. I need to write a SOAP client for the server. Can you please suggest plugin in eclipse or give me the URL related to this? can you please provide me it you have any sample SOAP Client code? My SOAP client should use…
Hemant Metalia
  • 29,730
  • 18
  • 72
  • 91
8
votes
2 answers

What is the difference between BasicHttpBinding and CustomBinding/Soap11?

for the first time we're consuming an SAP NetWeaver web-service on SOAP 1.1 which requires user-name and password authentication over HTTPS. I'm currently prototyping the WCF application and I successfully can consume the SAP web-service with both…
mono68
  • 2,080
  • 19
  • 27
8
votes
2 answers

python zeep: send un-escaped xml as content

I think what I am trying to do is pretty much like github issue in zeep repo --- but sadly there is no response to this issue yet. I researched suds and installed and tried -- did not even get sending parameter to work and thought zeep seems better…
Junchao Gu
  • 1,815
  • 6
  • 27
  • 43
8
votes
6 answers

JAVA - com.sun.xml.internal.messaging.saaj.soap.SAAJMetaFactoryImpl not found

I'm working on an application that consumes a web service using SOAP requests. Sometimes I get this error: filters.LoggerFilter:92 - org.springframework.web.util.NestedServletException: Handler processing failed; nested exception is…
guidev
  • 2,695
  • 2
  • 23
  • 44
8
votes
1 answer

TLS v1.2 ciphers to use in PHP NUSOAP SoapClient

I want to connect to a server that only supports TLS 1.2. What possible ciphers can I specify to stream context in the PHP NUSOAP SoapClient creation?
Kartins
  • 3,469
  • 3
  • 17
  • 17
8
votes
2 answers

Can I force SoapClient to return arrays as arrays?

I am fetching some data using SoapClient. I get this resuls from one of the calls: stdClass Object ( [payTransIncome] => stdClass Object ( [item] => stdClass Object ( [payTransId] =>…
Tom
  • 2,962
  • 3
  • 39
  • 69
8
votes
1 answer

SOAP, WCF, and message signatures

I have a Java (JAX-WS based) SOAP client that I'm trying to get to talk with a (third-party) WCF-based server. I'm finding the sentiment expressed here to be quite accurate. But the goal still remains. So long story short, I can coax a valid…
aroth
  • 54,026
  • 20
  • 135
  • 176
8
votes
2 answers

Custom header using PHP soap functions

I am having a problem getting a custom soap header to work with PHP5. Can anybody guide me please. What I require is something like this myusername mypassword What I get…
Dees
  • 81
  • 1
  • 1
  • 3
8
votes
1 answer

Log SOAP messages from a console application

I'm trying to log the requests and responses (the raw XML SOAP envelope) between a console application developed by me and a specific third party remote SOAP web service to database for audit purposes, and I can't find a way to do it. Ideally what…
Albireo
  • 10,977
  • 13
  • 62
  • 96
8
votes
1 answer

How to get value of a custom Attribute in magento through SOAP API

I am trying to get value of custom attribute of magento products through SOAP api. BUt I am only able to get standard attribute values. I am trying with the code below but it doesnt seem to work. $user = 'user'; $password = 'pass'; $proxy = new…
abnab
  • 846
  • 3
  • 16
  • 32