Re: connection refused error

2002-03-20 Thread Paul Libbrecht
Sorry Yaxiong, I'm tough overloaded these days but I am planning to test at least your things at some point, say, this week or next week... Paul On Mercredi, mars 20, 2002, at 10:08 , Lin, Yaxiong wrote: > > Paul: > > Any suggestion on how to further debug these problems: > > 1. missing/corr

RE: connection refused error

2002-03-20 Thread Lin, Yaxiong
conROS = new Connection(marsHost, marsPort); conROS.connect(); return conROS; } protected void finalize () { logMsg (MSSDebug.ALWAYS, "finalize: " + serverName + " is saying good bye."); retur

Re: connection refused error

2002-03-19 Thread Paul Libbrecht
recht [SMTP:[EMAIL PROTECTED]] >> Sent: Tuesday, March 19, 2002 2:17 AM >> To: [EMAIL PROTECTED] >> Subject: Re: connection refused error >> >> Yaxiong, >> >> I finally made the test with XmlRpcClientLite (thanks to BeanShell) >> and... I get a c

RE: connection refused error

2002-03-19 Thread Lin, Yaxiong
To: [EMAIL PROTECTED] > Subject: Re: connection refused error > > Yaxiong, > > I finally made the test with XmlRpcClientLite (thanks to BeanShell) > and... I get a completely different one: > > > Accepted connection. > > POST /aPath HTTP/1.0 > > User

RE: connection refused error

2002-03-19 Thread Lin, Yaxiong
: Tuesday, March 19, 2002 8:36 AM > To: '[EMAIL PROTECTED]' > Subject: RE: connection refused error > > > Paul: > > I use ANT to build my xmlrpc.jar file on my NT. And I have been > rebuilding several times and got the same result. Did BeanShell test th

RE: connection refused error

2002-03-19 Thread Lin, Yaxiong
ay, March 19, 2002 2:17 AM > To: [EMAIL PROTECTED] > Subject: Re: connection refused error > > Yaxiong, > > I finally made the test with XmlRpcClientLite (thanks to BeanShell) > and... I get a completely different one: > > > Accepted connection. > > PO

Re: connection refused error

2002-03-18 Thread Paul Libbrecht
Yaxiong, I finally made the test with XmlRpcClientLite (thanks to BeanShell) and... I get a completely different one: > Accepted connection. > POST /aPath HTTP/1.0 > User-Agent: Apache XML-RPC 1.0 > Host: localhost:1037 > Content-Type: text/xml > Content-Length: 95 This makes me believe that

RE: connection refused error

2002-03-18 Thread Lin, Yaxiong
: r0095122:1800 Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2 Connection: keep-alive > -Original Message- > From: Paul Libbrecht [SMTP:[EMAIL PROTECTED]] > Sent: Monday, March 18, 2002 4:01 PM > To: [EMAIL PROTECTED] > Subject: Re: connection refused error

Re: connection refused error

2002-03-18 Thread Paul Libbrecht
Yaxiong, That's not enough, where's the start ? Where's the POST /yourPath HTTP/1.0 ?? Here is a little dumb web-server. Invoke it with java -classpath . DumbServer = 4 ) break; // should be the end of the header } else n = 0; }

RE: connection refused error

2002-03-18 Thread Lin, Yaxiong
gr;&pgr;+a±K=§&Sgr;oaO`-caouz@-u?aea@&tgr;++`+++@±K=§+uouz@O==·)±==z±°==§+uouaou`&pgr; ?uaz @uaouaooo§+uouaou`+aocuez@=±)·§§x -Original Message- > From: Paul Libbrecht [SMTP:[EMAIL PROTECTED]] > Sent: Monday, March 18, 2002 3:16 PM > To: [EMAIL PROTECTED] > Su

Re: connection refused error

2002-03-18 Thread Ryan Hoegg
The security things can be a real consideration in the wild. Some XML-RPC servers in use today expect custom User-Agent headers, Cookies, HTTP Basic Authentication, and/or SSL. Not everyone is writing both the client and the server portions here. Ryan Hoegg Paul Libbrecht wrote: > Yaxiong

Re: connection refused error

2002-03-18 Thread Paul Libbrecht
Yaxiong, If this is still the weird wrong end-of-header detection you mentionned, than clearly looks to be bound to the headers that the URL.getConnection does send. A simple test for you would be to implement the dumbest http server, something that listens to the given port and writes anythi

Re: connection refused error

2002-03-18 Thread Daniel Rall
"Lin, Yaxiong" <[EMAIL PROTECTED]> writes: > I was wondering if you or anyone know why XmlRpcClient causes webserver to > hang while XmlRpcClientLite does not and if there is any hope to debug and > fix this problem? `cvs diff -u` the code and examine the differences for possible problems.

RE: connection refused error

2002-03-18 Thread Lin, Yaxiong
TECTED]] > Sent: Monday, March 18, 2002 3:59 AM > To: '[EMAIL PROTECTED]' > Subject: Re: connection refused error > > I had a similar issue. > > Are you using XmlRpcClient or XmlRpcClientLite? > > if your using XmlRpcClient I recommend switching to Lite,