Re: [ADVANCED-DOTNET] problem with soap faults from a java/axis webservice

2005-07-15 Thread Adam Sills
Your envelope there looks like it's in "encoded" form, and not document form (which is the default for webservices and clients). Open up your client (either your web reference or your WSDL.exe generated code) and if your methods do not have a SoapDocumentMethodAttribute applied to it, then apply on

Re: [ADVANCED-DOTNET] problem with soap faults from a java/axis webservice

2005-07-15 Thread ravi teja veerla
Adam, Here is one of the soap fault messages. It looks like a valid xml document. see if you can find something. http://schemas.xmlsoap.org/soap/envelope/"; xmlns:xsd="http://www.w3.org/2001/XMLSchema"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";> soapenv:Server.generalExcept

[ADVANCED-DOTNET] ASP.Net HierarGrid Question

2005-07-15 Thread Kalyan Pragada
Hi all, Im using the HierarGrid control provided by Dennis Baur at http://www.denisbauer.com/ASPNETControls/HierarGridDemo.aspx I am having problems when tryin to implement in my application. I have a stored procedure that returns 2 tables ..with master - detail relation This control provides

Re: [ADVANCED-DOTNET] problem with soap faults from a java/axis webservice

2005-07-15 Thread Adam Sills
No, an XmlException is not something you should expect as a result of your webservice invocation, regardless of whether your client is sending a soap fault or not. Have you actually taken a look at the xml being returned by the webeservice? It sounds like it's invalid or there's something going on