Ask a Question related to ASP.NET Web Services, Design and Development.
-
Dominic Messenger #1
Error returning an XmlNode from a webservice
I am using WSE 2.0 and ASP.NET to consume two webservices. The first
works fine 100% of the time - the second doesn't.
The first has a signature of:
[SoapDocumentMethod(ParameterStyle = SoapParameterStyle.Bare)]
[return: XmlAnyElement]
public XmlNode Select([XmlAnyElement]XmlNode message)
and the second:
[WebMethod(Description="Sources a KFI based on the delivered input
data")]
[return: XmlAnyElement]
public XmlNode Get(XmlNode message, string productId, string
variantId)
The latter works fine on the server - I can see the XmlNode response
in the debugger and the trace shows the correct response being
returned. However, on the client side, I receive a null value.
Is there anything that I could be doing wrong ? I don't think it's the
WSE 2.0 on the server side since the log file shows the correct
response. The possible issues are that the response is over 120K in
size and contains a binary stream, but that shouldn't be a problem
should it ?
Dominic Messenger Guest
-
webservice returning bean
Hello All, I have one web service which returns java bean, this bean internally incorporated different beans so my response is like this:... -
WebService – Returning an Object
H I have a WebService calling a Method in a Remote Object. The Remote method Returns an Object. This Webservice also returns the same object. All... -
Need help returning data from a vb.net webservice please
My task seems simple: I want to create a vb.net webservice and consume it with a client created in Macromedia FlashMX. Let's get this out of the... -
RETURNING HASHTABLE FROM WEBSERVICE
Hi all, The definition of Hashtable as per .NET docmentation is : public class Hashtable : IDictionary, ICollection, IEnumerable,... -
PROBLEM: webservice, XmlNode return value, XMLSchema and WSDL
Is there a way to make the following: 1. we have a webmethod, that should return an xml document that is valid respect an XmlSchema. 2. the web...



Reply With Quote

