Ask a Question related to ASP.NET Web Services, Design and Development.
-
dtalas@gmail.com #1
Calling Apache WS from .net client
Hello -
I'm having the following issue. I am trying to call a simple 3rd party
web service that is running as Apache AXIS. The web service takes 3
parameters, all strings. It uses RPC as its binding.
The Web Service implementation clearly expects last parameter to be
valid XML ( as in <MyData MyAttribute="att"/>, but my .NET client
encodes that parameter as <MyData MyAttribute="att"/>
When VS.NET generates a proxy to that web service, it looks something
like this:
------------------------------------------------------------
[System.Web.Services.Protocols.SoapRpcMethodAttribu te("foo",
RequestNamespace="http://foo.bar.com",
ResponseNamespace="https://testservice.bar.com/services/foo")]
[return:
System.Xml.Serialization.SoapElementAttribute("myM ethodResponse")]
public string myMethod(string in0, string in1, string in2) {
object[] results = this.Invoke("myMethod", new object[] {
in0,
in1,
in2});
return ((string)(results[0]));
}
------------------------------------------------------------
I can turn SoapRpcMethodAttribute to SoapDocumentMethodAttribute and
use SoapBindingUse.Literal, but my web service clearly expects me to
use RPC.
How can I stop my .NET client from encoding the string parameters? I
seem to be stuck. Please help!
Thanks,
Daniel.
dtalas@gmail.com Guest
-
calling client
Hello! I have two clients connected to application and I want to call acion (for example "_root.gotoAndPlay("go");" in second client by clicking... -
Problem Calling Client Web Service
I am calling a web service that a client has set up for me to call. I am using Visual Studio 2003 with C# to call the web service. They are... -
Calling .Net web service using a PERL client.
I need to call a .Net web service that takes an array or object as a parameter from a PERL client. I have been trying to use the PERL SOAP::Lite... -
Calling further data from client
Hallo, I have an application that requires more than 1 round trip to the server. By this I mean 1. The client calls the Web Service sending... -
Calling Apache Modules from PHP
Does anyone know how to call Apache modules from PHP? I want to call the module mod_headers but don't know how to do it. Is it possible? Thanks



Reply With Quote

