Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > ASP .Net Web Services > Error in xml document at (1,280)

Reply
Thread Tools

Error in xml document at (1,280)

 
 
Eric
Guest
Posts: n/a
 
      09-13-2004
I try to call a logon webservice method with 3 parameters that are
strings.
the return value should be a xml string including all information on a
user object. When I execute the web service from visual studio test
environment the webservice method run fine and I get the expected xml
string. But when I try to call this method from a asp.NET page the
method failed and I get the following error message:

Error in xml document at (1,280)

I try to debug the web service (that is currently on my local machine)
and I see that the user object is correctly serialized and return. But
the caller of this method is catching a exception. and in the caller
the xml string is empty.
I already try to find help on the web like some similar post or white
papers but nothing seems to match.

I already tried to change the return value into the user object but I
get the same problem, it was working in the test envirronment but not
from a asp.net Page.

I saw that the problem could be due to derived data class. Is that
true? if it is , is there a work around?

I already made a few web services (but not based on derived data
class) that run perfectly by returning either objects or strings but I
never encountered this problem.

here is the Schema of my webservice provided from Webservice studio
1.0

<definitions xmlns:http="http://schemas.xmlsoap.org/wsdl/http/"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:s="http://www.w3.org/2001/XMLSchema"
xmlns:s0="http://www.sogecore.com/webservices/"
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/"
xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"
targetNamespace="http://www.sogecore.com/webservices/"
xmlns="http://schemas.xmlsoap.org/wsdl/">
<types>
<s:schema elementFormDefault="qualified"
targetNamespace="http://www.sogecore.com/webservices/">
<s:element name="Logon">
<s:complexType>
<s:sequence>
<s:element minOccurs="0" maxOccurs="1" name="Login"
type="s:string" />
<s:element minOccurs="0" maxOccurs="1" name="Password"
type="s:string" />
<s:element minOccurs="0" maxOccurs="1"
name="LogicalUserId" type="s:string" />
</s:sequence>
</s:complexType>
</s:element>
<s:element name="LogonResponse">
<s:complexType>
<s:sequence>
<s:element minOccurs="0" maxOccurs="1" name="LogonResult"
type="s:string" />
</s:sequence>
</s:complexType>
</s:element>
<s:element name="string" nillable="true" type="s:string" />
</s:schema>
</types>
<message name="LogonSoapIn">
<part name="parameters" element="s0:Logon" />
</message>
<message name="LogonSoapOut">
<part name="parameters" element="s0:LogonResponse" />
</message>
<message name="LogonHttpGetIn">
<part name="Login" type="s:string" />
<part name="Password" type="s:string" />
<part name="LogicalUserId" type="s:string" />
</message>
<message name="LogonHttpGetOut">
<part name="Body" element="s0:string" />
</message>
<message name="LogonHttpPostIn">
<part name="Login" type="s:string" />
<part name="Password" type="s:string" />
<part name="LogicalUserId" type="s:string" />
</message>
<message name="LogonHttpPostOut">
<part name="Body" element="s0:string" />
</message>
<portType name="LoginSoap">
<operation name="Logon">
<documentation>Check user login and grant access to user if
successfull.</documentation>
<input message="s0:LogonSoapIn" />
<output message="s0:LogonSoapOut" />
</operation>
</portType>
<portType name="LoginHttpGet">
<operation name="Logon">
<documentation>Check user login and grant access to user if
successfull.</documentation>
<input message="s0:LogonHttpGetIn" />
<output message="s0:LogonHttpGetOut" />
</operation>
</portType>
<portType name="LoginHttpPost">
<operation name="Logon">
<documentation>Check user login and grant access to user if
successfull.</documentation>
<input message="s0:LogonHttpPostIn" />
<output message="s0:LogonHttpPostOut" />
</operation>
</portType>
<binding name="LoginSoap" type="s0:LoginSoap">
<soap:binding transport="http://schemas.xmlsoap.org/soap/http"
style="document" />
<operation name="Logon">
<soapperation
soapAction="http://www.sogecore.com/webservices/Logon"
style="document" />
<input>
<soap:body use="literal" />
</input>
<output>
<soap:body use="literal" />
</output>
</operation>
</binding>
<binding name="LoginHttpGet" type="s0:LoginHttpGet">
<http:binding verb="GET" />
<operation name="Logon">
<httpperation location="/Logon" />
<input>
<http:urlEncoded />
</input>
<output>
<mime:mimeXml part="Body" />
</output>
</operation>
</binding>
<binding name="LoginHttpPost" type="s0:LoginHttpPost">
<http:binding verb="POST" />
<operation name="Logon">
<httpperation location="/Logon" />
<input>
<mime:content type="application/x-www-form-urlencoded" />
</input>
<output>
<mime:mimeXml part="Body" />
</output>
</operation>
</binding>
<service name="Login">
<port name="LoginSoap" binding="s0:LoginSoap">
<soap:address location="http://localhost/wsadmar/arlogin.asmx"
/>
</port>
<port name="LoginHttpGet" binding="s0:LoginHttpGet">
<http:address location="http://localhost/wsadmar/arlogin.asmx"
/>
</port>
<port name="LoginHttpPost" binding="s0:LoginHttpPost">
<http:address location="http://localhost/wsadmar/arlogin.asmx"
/>
</port>
</service>
</definitions>

I hope someone could be of any help to me,
thank you in advance for any advice

Eric
 
Reply With Quote
 
 
 
 
Eric
Guest
Posts: n/a
 
      09-13-2004
(Eric) wrote in message news:<. com>...
> I try to call a logon webservice method with 3 parameters that are
> strings.
> the return value should be a xml string including all information on a
> user object. When I execute the web service from visual studio test
> environment the webservice method run fine and I get the expected xml
> string. But when I try to call this method from a asp.NET page the
> method failed and I get the following error message:
>
> Error in xml document at (1,280)
>
> I try to debug the web service (that is currently on my local machine)
> and I see that the user object is correctly serialized and return. But
> the caller of this method is catching a exception. and in the caller
> the xml string is empty.
> I already try to find help on the web like some similar post or white
> papers but nothing seems to match.
>
> I already tried to change the return value into the user object but I
> get the same problem, it was working in the test envirronment but not
> from a asp.net Page.
>
> I saw that the problem could be due to derived data class. Is that
> true? if it is , is there a work around?
>
> I already made a few web services (but not based on derived data
> class) that run perfectly by returning either objects or strings but I
> never encountered this problem.
>
> here is the Schema of my webservice provided from Webservice studio
> 1.0
>
> <definitions xmlns:http="http://schemas.xmlsoap.org/wsdl/http/"
> xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
> xmlns:s="http://www.w3.org/2001/XMLSchema"
> xmlns:s0="http://www.sogecore.com/webservices/"
> xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
> xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/"
> xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"
> targetNamespace="http://www.sogecore.com/webservices/"
> xmlns="http://schemas.xmlsoap.org/wsdl/">
> <types>
> <s:schema elementFormDefault="qualified"
> targetNamespace="http://www.sogecore.com/webservices/">
> <s:element name="Logon">
> <s:complexType>
> <s:sequence>
> <s:element minOccurs="0" maxOccurs="1" name="Login"
> type="s:string" />
> <s:element minOccurs="0" maxOccurs="1" name="Password"
> type="s:string" />
> <s:element minOccurs="0" maxOccurs="1"
> name="LogicalUserId" type="s:string" />
> </s:sequence>
> </s:complexType>
> </s:element>
> <s:element name="LogonResponse">
> <s:complexType>
> <s:sequence>
> <s:element minOccurs="0" maxOccurs="1" name="LogonResult"
> type="s:string" />
> </s:sequence>
> </s:complexType>
> </s:element>
> <s:element name="string" nillable="true" type="s:string" />
> </s:schema>
> </types>
> <message name="LogonSoapIn">
> <part name="parameters" element="s0:Logon" />
> </message>
> <message name="LogonSoapOut">
> <part name="parameters" element="s0:LogonResponse" />
> </message>
> <message name="LogonHttpGetIn">
> <part name="Login" type="s:string" />
> <part name="Password" type="s:string" />
> <part name="LogicalUserId" type="s:string" />
> </message>
> <message name="LogonHttpGetOut">
> <part name="Body" element="s0:string" />
> </message>
> <message name="LogonHttpPostIn">
> <part name="Login" type="s:string" />
> <part name="Password" type="s:string" />
> <part name="LogicalUserId" type="s:string" />
> </message>
> <message name="LogonHttpPostOut">
> <part name="Body" element="s0:string" />
> </message>
> <portType name="LoginSoap">
> <operation name="Logon">
> <documentation>Check user login and grant access to user if
> successfull.</documentation>
> <input message="s0:LogonSoapIn" />
> <output message="s0:LogonSoapOut" />
> </operation>
> </portType>
> <portType name="LoginHttpGet">
> <operation name="Logon">
> <documentation>Check user login and grant access to user if
> successfull.</documentation>
> <input message="s0:LogonHttpGetIn" />
> <output message="s0:LogonHttpGetOut" />
> </operation>
> </portType>
> <portType name="LoginHttpPost">
> <operation name="Logon">
> <documentation>Check user login and grant access to user if
> successfull.</documentation>
> <input message="s0:LogonHttpPostIn" />
> <output message="s0:LogonHttpPostOut" />
> </operation>
> </portType>
> <binding name="LoginSoap" type="s0:LoginSoap">
> <soap:binding transport="http://schemas.xmlsoap.org/soap/http"
> style="document" />
> <operation name="Logon">
> <soapperation
> soapAction="http://www.sogecore.com/webservices/Logon"
> style="document" />
> <input>
> <soap:body use="literal" />
> </input>
> <output>
> <soap:body use="literal" />
> </output>
> </operation>
> </binding>
> <binding name="LoginHttpGet" type="s0:LoginHttpGet">
> <http:binding verb="GET" />
> <operation name="Logon">
> <httpperation location="/Logon" />
> <input>
> <http:urlEncoded />
> </input>
> <output>
> <mime:mimeXml part="Body" />
> </output>
> </operation>
> </binding>
> <binding name="LoginHttpPost" type="s0:LoginHttpPost">
> <http:binding verb="POST" />
> <operation name="Logon">
> <httpperation location="/Logon" />
> <input>
> <mime:content type="application/x-www-form-urlencoded" />
> </input>
> <output>
> <mime:mimeXml part="Body" />
> </output>
> </operation>
> </binding>
> <service name="Login">
> <port name="LoginSoap" binding="s0:LoginSoap">
> <soap:address location="http://localhost/wsadmar/arlogin.asmx"
> />
> </port>
> <port name="LoginHttpGet" binding="s0:LoginHttpGet">
> <http:address location="http://localhost/wsadmar/arlogin.asmx"
> />
> </port>
> <port name="LoginHttpPost" binding="s0:LoginHttpPost">
> <http:address location="http://localhost/wsadmar/arlogin.asmx"
> />
> </port>
> </service>
> </definitions>
>
> I hope someone could be of any help to me,
> thank you in advance for any advice
>
> Eric


After further investigation I finally found that the string returned
by the webmethod end with the following characters . Hexadecimal &#x0;


&lt;/Groups&gt;
&lt;/User&gt;&#x0;&#x0;&#x0;&#x0;&#x0;&#x0;&#x0;&#x0;&# x0;&#x0;&#x0;&#x0;&#x0;&#x0;&#x0;&#x0;&#x0;&#x0;&# x0;&#x0;&#x0;&#x0;&#x0;&#x0;&#x0;&#x0;&#x0;&#x0;&# x0;&#x0;&#x0;&#x0;&#x0;</LogonResult>
</LogonResponse>
</soap:Body>
</soap:Envelope>


I supposed this is the null terminated character.
So now my question is the following, this is the way I get the string
from serialization:

XmlSerializer xmlSer=new XmlSerializer( obj.GetType() );
MemoryStream st=new MemoryStream();
xmlSer.Serialize(st,obj);
byte[] buff=st.GetBuffer();
UTF8Encoding encoding=new UTF8Encoding(false, true);
xml = encoding.GetString(buff);
st.Close();

how can i avoid these characters at the end of the serialization flow.
should I use another encoding type like ASCII or should I remove
manually the bad characters at the end.

May be my way of doing this is not the smartest. If some one has a
better way , It would be nice to share it with me.
thanks in advance.

Eric
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Using document.load() to get html NOT xml document icogs Javascript 0 01-31-2008 04:02 AM
Different results parsing a XML file with XML::Simple (XML::Sax vs. XML::Parser) Erik Wasser Perl Misc 5 03-05-2006 10:09 PM
Including XSLT/XML document within a XSLT document dar_imiro@hotmail.com XML 4 12-13-2005 02:26 AM
Refer to an XML document from within an XML document Manish Hatwalne XML 1 07-13-2004 10:24 AM
Help on including one XML document within another XML document using XML Schemas Tony Prichard XML 0 12-12-2003 03:18 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57