0
votes
0answers
3 views
JAX-RPC GenericHandler fails on Websphere Application Server v6.0.2.35
I've created an Extension of GenericHandler called SOAPHeaderHandler. I placed log4j statements in the handler and can see the constructor being built. When I generate a SOAP messa …
2
votes
2answers
45 views
SOAP object over HTTP post in C# .NET
I am trying to compose a SOAP message(including header) in C# .NET to send to a URL using HTTP post. The URL I want to send it to is not a web-service, it just receives SOAP messag …
0
votes
2answers
48 views
Which one is best for Iphone REST API or SOAP?
I am working on iPhone Applications. Recently i have used SOAP api to integrate with iPhone application. my main aspect of this particular query is whether SOAP is best or REST is …
1
vote
3answers
49 views
In-process SOAP service server for Java
OK, I am developing a program which will be deployed to lots of machines (Windows, Linux, AIX, z/Linux, openVMS, etc.). I want that application to contain a SOAP web service, but …
0
votes
1answer
18 views
PHP SOAP Request includes multiple identical tags
OK, so I have this external SOAP based webservice, and PHP SoapClient. Everything is fine with basic requests, but I need to create a parameter set that looks like this:
<Datas …
1
vote
2answers
38 views
PHP SoapClient request
I'm trying to send a SOAP request to a newsletter service using this WSDL:
dev-service.go.mayoris.com/wcf/SubscriptionService.wsdl?wsdl
Here's my PHP:
$client = new SoapClient($ …
2
votes
1answer
48 views
Is implementing SOAP clients in Perl using meta-programming sensible?
I'm currently dealing with a code base which contains several dozens of classes generated with SOAP::WSDL. However, having worked with Moose I now think that generating those class …
0
votes
0answers
14 views
SOAP and omitting null elements
I wrote a web service in C# that just takes in an object and then returns another different object.
I have the following attributes applied to the web service
[SoapDocumentServic …
0
votes
1answer
23 views
Is there a lightweight standalone SOAP server? Or how would you implement one?
The challenge here is that I need to implement a highly concurrent and dynamic system that is based on SOAP communication - in Java. It can be viewed as a multi-agent system where …
0
votes
1answer
34 views
What are those “garbage” 16 bytes at the beginning of an unencrypted EncryptedData tag from an encrypted ws-security SOAP message? (WCF)
I'm inspecting a WCF request message in order to implement part of the WS-Security standard to have iPhone <-> WCF intercommunication (I'm using certificate security over basicH …
0
votes
1answer
36 views
Can’t call a webservice method using SOAPpy
I am trying to call a webservice using SOAPpy:
from SOAPpy import SOAPProxy
url = 'http://www.webservicex.net/WeatherForecast.asmx'
server = SOAPProxy(url);
print server.GetWeat …
0
votes
2answers
39 views
Very basic question about submitting data to API using SOAP & PHP
Before I ask my question I want to thank everyone on stack overflow. I'm really amazed at how helpful everyone is and how much I've learned just in the past year or so from asking …
0
votes
1answer
12 views
WCF - ASMX - CommunicationException
So I've got a WCF client consuming an ASMX web-service. Everything works fine, except exception handling.
Where I should get a (non-contractual) FaultException, i get the Communic …
0
votes
1answer
43 views
Migrating SOAP functionality from PHP to Perl using SOAP::WSDL
I'm struggling to get SOAP working in perl.
In PHP it works perfectly, and without any trouble. And now I'm trying to do the same thing in Perl.
The functional PHP is:
$client = …
0
votes
0answers
14 views
What’s the correct way to escape sql passed into SugarCRM’s get_entry_list soap api call ?
By the looks of the SugarCRM soap api you just seem to pass raw SQL into the restriction part of the get_entry_list function call.
Is there a way to escape the values being passe …
