0
votes
1answer
16 views
How to create Net.TCP WCF binding for\using SOAP 1.1?
How to create Net.TCP WCF binding for\using SOAP 1.1? Is it posible?
If yes.
What do I need?
MSDN if there is any help on this.
Open Source Libs/wrappers.
Tutorials and blog a …
1
vote
2answers
19 views
Problem with python soap library suds. Wsdl was not understood
The code below throw a SAXParseException: "mismatched tag":
from suds.client import Client <br>
url = 'http://www.didww.com/api/?wsdl'
client = Client(url, cache=None) …
1
vote
1answer
35 views
Integrating SOAP and VXML
I am writing an interface for our VXML application that will allow access to a SOAP service. Because of the difficulties inherent in trying to use javascript to make SOAP calls an …
2
votes
2answers
20 views
WCF sending huge data
I want to send a huge set of data to a WCF service.
The data might consist of thousands od records (entities), depending on the parsed input file.
Now the question is: what is the …
0
votes
3answers
44 views
Tracing the SOAP envelope that is being sent by a .NET web service client possible?
A C# client application we developed calls an external SOAP web service of a third party company.
Now I want to trace the exact SOAP request envelopes that are being generated by …
1
vote
2answers
51 views
How to generate a PHP soap client code?
Is there a way to generate a PHP soap client from a wsdl file?
I mean something like wsdl.exe or svcutil.exe in .net, that generates code for a class that can be the client of a se …
0
votes
0answers
20 views
cannot find dispatch method - Axis 1.4 SOAP Web service
I am using Apache Axis 1.4 and Netbeans 6.5 to develop and test a SOAP Web service and client. I generated the Java classes from the WSDL (see attachment). It builds and deploys w …
1
vote
2answers
51 views
Request-reply model for hybrid SOAP over HTTP/JMS over middleware
One of our products implements the following one-way web service structure:
Server <--------------------- Middleware <---------------- Client
SOAP over JMS (queue) …
0
votes
1answer
14 views
Changing web service url in SUDS library
Using SUDS SOAP client how do I specify web service URL. I can see clearly that WSDL path is specified in Client constructor but what if I wan't to change web service url?
0
votes
1answer
19 views
SOAP with events in c#??
Hi There,
can i implement a SOAP Service which can deal with delegates/events?? Can i also use Streams with SOAP? How does it look like in C#?
thanks,
el
0
votes
1answer
27 views
Accessing SOAP Service with soap4r not able to access contents of returned objects.
So I need to access this service from my rails app. I'm using soap4r to read the WSDL and dynamically generate methods for accessing the service.
From what I've read, I should …
0
votes
1answer
32 views
Why webservices do not allow static methods?
Why something like following is not allowed. I mean why the following method will not be exposed in the web service.
[WebMethod]
public static string Foo()
{
return "bar" …
0
votes
2answers
42 views
Should dateTime elements include time zone information in SOAP messages?
I've been searching for a definitive answer to this, and the XML schema data types document seems to suggest that timezones are accepted, yet I found at least one implementation wh …
0
votes
3answers
31 views
Can’t Access SOAP Methods When Using Class Library
Hi.
I am having problems accessing methods in my WCF class library and am wondering if somebody could explain why?
I have a web project that has a single DLL file - WebAPILibra …
1
vote
1answer
18 views
Is this a standard or common encoding for a SOAP request?
I'm using a web service where the WSDL describes a single string element in each request and response.
<s:element name="SERVICE">
<s:complexType>
<s:sequence …
