0
votes
0answers
17 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
24 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
28 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
33 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
1answer
11 views
ServiceContractGenerator vs ServiceDescriptionImporter
I'm trying to build a light-weight SOAP client without using Add Service Reference. Ideally, this client should work for as many services as possible. Currently, it uses ServiceDes …
2
votes
1answer
83 views
+100
Calling functions with parameters using SOAP with Perl
I am attempting to access a web service using SOAP through Perl and am having issues calling the service's functions that require parameters. The XSD that dictates the SOAP call sa …
2
votes
2answers
60 views
Web service is expecting a DataSet object, how can I provide that via ColdFusion or in raw XML?
I need to make a call to a web service written in .NET. The application making the call is written in ColdFusion. One of the parameters the web service expects is a DataSet object. …
0
votes
3answers
60 views
Python SOAP server / client
Hi there,
I have a problem with Python and SOAP. I need to create a web service based on SOAP in Python. I read that I can use libraries like soaplib, suds and ZSI. I created a He …
0
votes
3answers
75 views
Most appropriate API for URL shortening service
Hi Folks,
I've just finished an online service for shortening URLs (in php5 with Zend Framework); you can enter an URL and you get an short URL (like tinyurl and such sites).
I'm …
0
votes
2answers
92 views
PHP Soap is hell…
If I run this
$HostTransactionInfo = new HostTransactionInfo(); // std Object
$HostTransactionInfo->SecurenetID = $cc->merchant->data[$this->name]['secure_net_id'];
$ …
2
votes
2answers
82 views
Anyone has an example of a “Well Defined” REST Web Service?
I read tons of posts, questions and answers on the REST vs SOAP debate. I read a few REST supporters that claim that "well designed" REST Web Services are self explanatory and hard …
0
votes
2answers
17 views
Does anyone know of a Java implementation similar to the .NET SoapFormatter
I am looking for a library or code snippet to allow me to serialize and de serialize an object into a SOAP representation. Similar to what the .NET SoapFormatter does but an imple …
0
votes
1answer
33 views
HTTP POST and complex structures
I'm trying to send a complex HTTP POST request to a web service. The web service was created using VS2008, in which you can set VS to create HTTP POST and GET interfaces alongside …
1
vote
2answers
51 views
Make a single WCF service support both SOAP, REST and WSDL
I'm trying to build a C# service in .NET 3.5 that supports both SOAP - and shows the WSDL - and REST.
The SOAP service and WSDL generation was easy enough to do using the ServiceH …
3
votes
2answers
44 views
What is the best solution for creating a SOAP Server in PHP?
I need some advice on which library is the best choice when it comes to creating SOAP servers (and eventually SOAP clients) in PHP.
I know there is built-in functions for this, bu …
