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…
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…
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…
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(
…
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…
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…
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…
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…
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…
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…
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…
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…
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…
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…
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…