[Mono-bugs] [Bug 50029][Nor] New - Response with no data

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Wed, 22 Oct 2003 16:42:39 -0400 (EDT)


Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

Changed by javierdiazm@yahoo.com.mx.

http://bugzilla.ximian.com/show_bug.cgi?id=50029

--- shadow/50029	2003-10-22 16:42:39.000000000 -0400
+++ shadow/50029.tmp.17356	2003-10-22 16:42:39.000000000 -0400
@@ -0,0 +1,64 @@
+Bug#: 50029
+Product: Mono/Runtime
+Version: unspecified
+OS: 
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Normal
+Component: misc
+AssignedTo: gonzalo@ximian.com                            
+ReportedBy: javierdiazm@yahoo.com.mx               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: Response with no data
+
+this is actually a xsp bug, I wrote a perl client for the service example
+that comes on xsp-0.6/share/doc/xsp/test/TestService.asmx, I called the
+Echo method and the service responds "200 Ok" but the response contains no data
+
+--------------------------------
+POST /TestService.asmx HTTP/1.1
+TE: deflate,gzip;q=0.3
+Connection: TE, close
+Accept: text/xml
+Accept: multipart/*
+Host: localhost:8080
+User-Agent: SOAP::Lite/Perl/0.55
+Content-Length: 502
+Content-Type: text/xml; charset=utf-8
+SOAPAction: urn:TestService/Echo
+
+<?xml version="1.0" encoding="UTF-8"?><SOAP-ENV:Envelope
+xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance"
+xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
+xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
+xmlns:xsd="http://www.w3.org/1999/XMLSchema"
+SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
+  <SOAP-ENV:Body>
+    <namesp1:Echo xmlns:namesp1="urn:TestService">
+      <c-gensym3 xsi:type="xsd:string">Hey!</c-gensym3>
+    </namesp1:Echo>
+  </SOAP-ENV:Body>
+</SOAP-ENV:Envelope>HTTP/1.0 200 OK
+Server: Mono-XSP Server/0.6.0.0 Unix
+Connection: Close
+X-Powered-By: Mono
+Date: Wed, 22 Oct 2003 20:28:30 GMT
+Content-Type: text/xml; charset=utf-8
+Set-Cookie: ASPSESSION=b38ced20-cc3a-4938-a5cb-27d03e517c1f; path=/
+
+<?xml version="1.0" encoding="utf-8"?>
+<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
+  <soap:Body>
+    <EchoResponse xmlns="http://tempuri.org/" />
+  </soap:Body>
+</soap:Envelope>
+--------------------------------
+the response should be like 
+<EchoResponse xmlns="http://tempuri.org/">Hey!</EchoResponse>