Fixed. Thanks! -- Tom Jordahl Macromedia
-----Original Message----- From: Taras Shkvarchuk [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 03, 2002 6:10 PM To: '[EMAIL PROTECTED]' Subject: [PATCH] HTTPSender header creation code in some instances headers were written followed by only LineFeed, when CRLF is expected. RCS file: /home/cvspublic/xml-axis/java/src/org/apache/axis/transport/http/HTTPSender. java,v retrieving revision 1.53 diff -w -r1.53 HTTPSender.java 169c169 < out.print("CONNECT " + host + ":" + port + " HTTP/1.0\n" --- > out.print("CONNECT " + host + ":" + port + " HTTP/1.0\r\n" 254c254 < .append("\n" ); --- > .append("\r\n" ); 313c313 < .append("\n" ); --- > .append("\r\n" );