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
4
votes
4 answers

How to generate soap request xml from wsdl file in java

I am looking for some java opensource api for generating soap request xml file by passing wsdl_URL and operation name as parameters. Actually soapUI is doing this and I tried to go through the soapUI source code, but I am not able to understand the…
srini
  • 49
  • 1
  • 1
  • 2
4
votes
1 answer

Cannot generate source files from XSD files using Maven?

I have this wsdl schema. I need to generate source code files from that WSDL schema. I tried many many different things, but couldn't get to generate Java stubs. In this post I'll try to outline only the last and most relevant approach I took. Also,…
Wrapper
  • 794
  • 10
  • 25
4
votes
0 answers

php soap client with a local wsdl call

I´m a newbie to soap in php, so I apologize if I´m not precise in my description. I have working soap clients consuming wsdl´s in a providers remote server (eg www.remoteaddress.com/wsdl/webservice.wsdl). I was wondering if I could speed up that…
pablo
  • 41
  • 3
4
votes
4 answers

HTTP response 411: Length Required when communicating with

I am trying to send a soap request and keep getting HTTP response 411 error because of larger size of soap request. In most of the cases soap request length is more that 8k. ERROR MESSAGE 2020-02-27 08:26:09,618 WARNING [100]…
dev
  • 1,343
  • 2
  • 19
  • 40
4
votes
1 answer

Soap request signed by certificate. WS-Security

I received the WSDL which contains the security policy, as for now, judging by the wsdl i found out that it means that i need it to sign with certificate. No token server should be used. What i did: I used cxf wsdl2java to create java classes from…
sadxd
  • 71
  • 1
  • 8
4
votes
0 answers

How to support multiple certificates for CXF client

I have a SOAP-client application that calls a third-party SOAP endpoint and we use SSL to have access to it. Now the certificate is expiring in a few months and we received a new certificate of our third-party. Now we use Apache CXF client for…
KENG_1080
  • 55
  • 5
4
votes
2 answers

Serializing a PHP SOAPClient object

I'm writing a PHP application which uses a number of SOAP web services to gather data. I'm getting significant overheads in instantiating all those objects: in some cases a single line of code $object = new SoapClient($wsdl); can take over three…
Spudley
  • 166,037
  • 39
  • 233
  • 307
4
votes
2 answers

Usage of PHP Soap

I'm triying to insert data a remote server via SOAP. But got the error below: object(stdClass)#3 (1) { ["DataInsertResult"]=> string(51) "Hata : DI - Value cannot be null. Parameter name: s" } Here you can find tehe my code below:
4
votes
1 answer

How to load .keystore with multiple certs in SpringBoot

I am developing Spring Boot Application v2.0. From my Spring Boot App I am sending SOAP Request to get data from Soap WS. I have multiple Soap Request to different Soap Web Services. Every Soap WS has it's own certificate. I used Apache CXF v3.2.4…
I.R.1989
  • 77
  • 1
  • 6
4
votes
0 answers

Why getting uri' must not be empty using JAXB in SpringBoot

I am trying to consume SOAP Web Services in Springboot. so i am trying to hitting the request from SOAP UI and gettingthe error as below: i have provided the Server point even getting the below error. Error: 2018-06-12 15:40:03.725 INFO 2028 ---…
Rajeswari Reddy
  • 193
  • 1
  • 6
  • 24
4
votes
1 answer

Soap client, how to call a function over HTTPS with Basic HTTP Authentication

This problem has been killing me for the entire day. I have a client web service https://*.asmx?WSDL, with Basic HTTP Authentication.. If I use SoapUI to connect to the webservice, everything works perfectly with no errors whatsoever.. The problem…
Tio
  • 556
  • 1
  • 7
  • 26
4
votes
2 answers

How to add file attachment to soap request with node-soap library ?

I need to add an file attachment to a soap request from node.js application. I am able to send request with node-soap library, and now I need to add a file to the request. I did it with a java client or with soapUI, but I have to do it in node.js,…
Antoine
  • 4,456
  • 4
  • 44
  • 51
4
votes
3 answers

Deprecated function: require_once()

Recently, I started converting my Drupal 6 module on PHP 5.2.x to Drupal 7 on PHP 5.3.x, and now I get following warning Deprecated function: Assigning the return value of new by reference is deprecated in require_once() (line 27 of …
Ajinkya Kulkarni
  • 984
  • 2
  • 11
  • 19
4
votes
1 answer

How to send Soap Message to activemq queue?

I'm working on a project that sends soap request to a third party webservice, and I'm a very newbie at java development. So far I have a basic code that creates the soap message, sends it and then receive the response; the message contains an xml…
4
votes
0 answers

How can I configure the Root Element of a node-soap request body?

I'm trying to call a SOAP method using the node-soap package. My service's WSDL is:
cristianzamar
  • 361
  • 4
  • 12