duftler 02/05/02 14:59:23
Modified: java/src/org/apache/soap/server/http ServerHTTPUtils.java
Log:
Made the ServerHTTPUtils.readEnvelopeFromRequest(...) method public,
instead of the default package access. For more info, please see:
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=3927
Submitted by: [EMAIL PROTECTED] (Ray Cheng)
Reviewed by: [EMAIL PROTECTED] (Matthew J. Duftler)
Revision Changes Path
1.22 +7 -7
xml-soap/java/src/org/apache/soap/server/http/ServerHTTPUtils.java
Index: ServerHTTPUtils.java
===================================================================
RCS file:
/home/cvs/xml-soap/java/src/org/apache/soap/server/http/ServerHTTPUtils.java,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- ServerHTTPUtils.java 28 Jun 2001 21:04:03 -0000 1.21
+++ ServerHTTPUtils.java 2 May 2002 21:59:22 -0000 1.22
@@ -186,13 +186,13 @@
* @exception IOException if something fails while sending an
* error response
*/
- static Envelope readEnvelopeFromRequest (DocumentBuilder xdb,
- String contentType,
- int contentLength,
- InputStream requestStream,
- EnvelopeEditor editor,
- HttpServletResponse res,
- SOAPContext ctx)
+ public static Envelope readEnvelopeFromRequest (DocumentBuilder xdb,
+ String contentType,
+ int contentLength,
+ InputStream requestStream,
+ EnvelopeEditor editor,
+ HttpServletResponse res,
+ SOAPContext ctx)
throws SOAPException, IOException {
try {
return ServerUtils.readEnvelopeFromInputStream (xdb, requestStream,