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

called a soap web service which returns a zip file as an attachment. How to unzip it in memory?

I have seen posts about how to unzip files using Java, where the zip file is located somewhere on disk. In my case it's different. I have code which calls a soap web service. The service response includes an attachment which is a zip file. I have…
mchl45
  • 29
  • 6
0
votes
1 answer

How to pass HashMap as parameter in python web service client

I have a Java web service which has a web method with a HashMap as parameter. Now I'm using python to call that service. I use zeep library for web service client. I can call that function but the server doesn't receive my HashMap data. Server says…
Phương Vũ
  • 86
  • 1
  • 6
0
votes
1 answer

SOAP: How to Make Call to CountryInfoService WSDL file in Java e.g. use CapitalCity SOAP Operation

Hi so I managed to generate WSDL Java Classes using Java-WS with the "wsimport" command. The WSDL file is from: http://webservices.oorsprong.org/websamples.countryinfo/CountryInfoService.wso?wsdl The problem is that Im not familiar on how to use…
ReyAnthonyRenacia
  • 17,219
  • 5
  • 37
  • 56
0
votes
0 answers

Generated client code from wsdl does not work

I am creating client for soap service on .Net Core. Code was generated from wsdl https://testfinance.post.ee/finance/erp/erpServices.wsdl Code which should send request var client = new ErpDataExchangeClient( …
dm k
  • 111
  • 3
  • 9
0
votes
2 answers

SOAPFaultException when deployed on Liberty server but works fine in Websphere application server full profile

I am migrating my java enterprise application from WAS8.5 full profile to liberty server. My application code has soap client and required stubs generated from WSDL. I am able to receive response when using WAS8.5 but getting below exceptions…
0
votes
1 answer

Problem in PHP and SOAP-Client Call method two parameters and one ArrayMultidimensional

I have problem with the call to a method of a WebServer that requires three parameters of type String and another that is a sub-element that has another three parameters. I pass everything as a multidimensional array but it does not work. In the…
Sergio
  • 2,369
  • 1
  • 15
  • 22
0
votes
1 answer

Why is program returning Unrecognised Callback while making Call through Soap Service

I have a new spring boot application that is attempting to make a soap call by extending Springs WebServiceGatewaySupport class, but receive "Unrecognised Callback" error. I've tried modifying my getWebService method to use different varieties of…
0
votes
1 answer

SOAP function returns a stdClass

I get an PHP error eveyrtime I try to access to an object property from SOAP WSDL. I guess it's supposed to return an associativeArray type, but I've tried to do a print_r and the stdClass is still there. This is the WSDL structure for the product…
josembell
  • 29
  • 4
0
votes
2 answers

SOAP Client with multiple layers and attributes

I've spent hours trying to figure this out and nothing I've tried from suggestions on SO to PHP.net have worked. I'm trying to get a SOAP Call to work where I have multiple nested levels of XML and there's attributes on the top level as well as sub…
Peter M
  • 3
  • 2
0
votes
0 answers

How to attach file in SOAP request PHP

I have a problem, while trying to attach file to my soap request. I`ve already created a working Class that should handle that request. But I dont know where to attach a file. This is absolutely working raw query was achieved from…
Nkmelnikov
  • 43
  • 6
0
votes
1 answer

Apache cxf can't send MULTIPART_BOUNDARY data

I am trying to send MULTIPART_BOUNDARY data using apache cxf but i can't send it I also have enable MTOM support in CXF client Following is my example public class Test1 { public static void doInvoke() throws Exception { ClassLoader…
Ganesh Gudghe
  • 1,327
  • 1
  • 17
  • 41
0
votes
0 answers

gSOAP client example throws SOAP 1.1 fault SOAP-ENV:Client[no subcode]

I download gsoap_2.8.83 and ran into following soap error when executing the example from the online document. SOAP 1.1 fault SOAP-ENV:Client[no subcode] "Error 200: HTTP 200 OK" Detail: [no detail] The Code is exactly this: //#include…
tedyyu
  • 587
  • 6
  • 12
0
votes
1 answer

Java-Springboot SOAP dynamic client

I am building an app to support SOAP call dynamically. Please suggest me if there is a library in Java Spring-boot I can use and point me to samples if there are any. I was trying to use Apache CXF but it is not working as expected. Example lot if…
0
votes
1 answer

How to attach apache-httpclient-4.x to axis2 stub

I’ve got a problem with my axis2 soap client app (nonprofessional). I used axis2, because the generated client worked out of the box. The CXF or metro clients are throwing a lot of warnings because of policies. The webservice server is generated by…
0
votes
1 answer

PHP SoapClient returning status 200 without any response

I have some issues when trying to perform a soap request to a salesforce api from a php code deployed on an apache 2.4 server (Centos 7). My soap request works fine on localhost running with the php built-in server (php -S 0.0.0.0:8080). Its also…
Géraud Willing B-S
  • 273
  • 1
  • 2
  • 17
1 2 3
99
100