soap

Workaround for PHP SOAP request failure when wsdl defines service port binding as https and port 80?

前提是你 提交于 2019-12-20 04:26:58
问题 I am consuming a SOAP web service using php5's soap extension. The service' wsdl was generated using Axis java2wsdl, and whatever options are used during generation result in the port binding url being listed as https ://xxx.xxx.xxx.xxx**:80** If I download the wsdl to my server, remove the port 80 specification from the port binding location value, and reference the local file in my soapclient call it works fine. However, if I try to reference it remotely (or download it and reference it

Compress a HttpWebRequest using gzip

喜夏-厌秋 提交于 2019-12-20 04:16:07
问题 I am developing a .NET 4.0 Console Application to serve as a SOAP Web Service client which will send data (POST) through to a third-party. I have no control over the web service on the server-side. The third-party did provide WSDL's to use, and I was able to import them and use them with reasonable success. However, there is a requirement to compress the request message using gzip , and I could not for the life of me figure out how to do that using the proxy services. This topic here on SO,

How to get response from SOAP endpoint in java?

大憨熊 提交于 2019-12-20 03:51:10
问题 I am very new to SOAP, so was looking into some programs online, this is what I came up with but I get a null response, must be some silly thing, but need little help Please take a look at my code and output below. Thanks Code import java.net.URL; import javax.xml.namespace.QName; import javax.xml.soap.MessageFactory; import javax.xml.soap.SOAPBody; import javax.xml.soap.SOAPBodyElement; import javax.xml.soap.SOAPConnection; import javax.xml.soap.SOAPConnectionFactory; import javax.xml.soap

How to send signed messages in BizTalk Server using WS-Security

只谈情不闲聊 提交于 2019-12-20 02:53:59
问题 I want BizTalk to send signed soap messages using WS-Security without encryption. My orchestration is using a dynamic send port. I have tried both, trying to configure a WCF-WSHttp Send Port like this: (temporarily altered my orchestration to use this port rather than a dynamic port) as well as doing it within my orchestration. However I only manage to get my message send out encrypted, or in plain text without being signed or encrypted. Configuring a Send Port. Result: Message gets encrypted

Asynchronous web service SOAP

梦想的初衷 提交于 2019-12-20 02:31:37
问题 I have an interface that I've exposed as a regular SOAP web service. One method of the interface consists for the client to send a file to the server, then the server processes the file and returns a result file. Processing the file may take some time, so I think using asynchronous invocation of this method is a better idea. I thought about the following flow: The client invokes the asynchronous method and sends the file using an attachment (MTOM). When the file is received by the server, a

Simple webservice example tomEE not working

大兔子大兔子 提交于 2019-12-20 02:29:18
问题 I'm trying to deploy the simple WS example from tomEE: http://openejb.apache.org/examples-trunk/simple-webservice/ As there is nothing special about it, I will post in detail what I did. Maybe someone sees what I'm doing wrong: Machine: Win7, Eclipse, Server: tomEE+ -created new Dynamic Web Project with runtime target = the tomcat tomEE server -created new package in /src, and added 3 classes there: Calculator , CalculatorWS , CalculatorTest . -rightclick project > run as > run on server >

Android app for Magento store using REST or SOAP?

前提是你 提交于 2019-12-20 02:12:26
问题 I am developing android app for Magento online store. I have read many blogs, SO questions before asking this question. I found that REST is much more better then SOAP. Because of JSON and advantage over SOAP's overheads etc. But at some where I found that Magento developer doesn't provide all the functions for REST APIs. I don't know it's true or false. If I develop android app using REST then, Is there any cons about which I should have to take care? I found detail info about SOAP vs REST

Has anyone been able to get the suds soap library to work with the NetSuite WSDL?

血红的双手。 提交于 2019-12-20 01:58:26
问题 Has anyone been able to get the suds soap library to work with the NetSuite WSDL? I get this error when I try to create a client. from suds.client import Client #url = 'http://mssoapinterop.org/asmx/simple.asmx?WSDL' url = 'https://webservices.netsuite.com/wsdl/v2009_2_0/netsuite.wsdl' client = Client(url) print client Traceback (most recent call last): client = Client(url) File "build\bdist.win32\egg\suds\client.py", line 112, in __init__ File "build\bdist.win32\egg\suds\reader.py", line 152

Delphi 2007 not consuming JAX-WS web service properly

让人想犯罪 __ 提交于 2019-12-20 01:47:21
问题 I'm having an issue with Delphi 2007 when trying to consume a web service I've set up in Java using JAX-WS. The web service can be consumed fine from another Java program and from a C# / ASP.NET 2.0 website. However, when I try to access the same service using the WSDL Importer in Delphi 2007 (17-DEc-2007 patch), the JAX-WS web service doesn't recognise any of the parameters I'm passing it and nulls them. I've checked the SOAP message that's being passed by Delphi and compared it to the

Delphi 2007 not consuming JAX-WS web service properly

社会主义新天地 提交于 2019-12-20 01:47:08
问题 I'm having an issue with Delphi 2007 when trying to consume a web service I've set up in Java using JAX-WS. The web service can be consumed fine from another Java program and from a C# / ASP.NET 2.0 website. However, when I try to access the same service using the WSDL Importer in Delphi 2007 (17-DEc-2007 patch), the JAX-WS web service doesn't recognise any of the parameters I'm passing it and nulls them. I've checked the SOAP message that's being passed by Delphi and compared it to the