You are viewing a plain text version of this content. The canonical link for it is here.
Posted to xmlrpc-dev@ws.apache.org by di...@apache.org on 2003/12/26 17:57:51 UTC

cvs commit: ws-xmlrpc/src/java/org/apache/xmlrpc CommonsXmlRpcTransport.java

dims        2003/12/26 08:57:51

  Modified:    src/java/org/apache/xmlrpc CommonsXmlRpcTransport.java
  Log:
  constructor URI(URL url) is no longer present in httpclient's URI.java
  
  Revision  Changes    Path
  1.2       +2 -2      ws-xmlrpc/src/java/org/apache/xmlrpc/CommonsXmlRpcTransport.java
  
  Index: CommonsXmlRpcTransport.java
  ===================================================================
  RCS file: /home/cvs/ws-xmlrpc/src/java/org/apache/xmlrpc/CommonsXmlRpcTransport.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- CommonsXmlRpcTransport.java	16 Mar 2003 06:56:54 -0000	1.1
  +++ CommonsXmlRpcTransport.java	26 Dec 2003 16:57:51 -0000	1.2
  @@ -105,7 +105,7 @@
           method.setRequestHeader(userAgentHeader);
           // TODO: authentication not implemented yet
           method.setRequestBody(new ByteArrayInputStream(request));
  -        URI hostURI = new URI(url);
  +        URI hostURI = new URI(url.toString());
           HostConfiguration hostConfig = new HostConfiguration();
           hostConfig.setHost(hostURI);
           client.executeMethod(hostConfig, method);
  
  
  

Re: cvs commit: ws-xmlrpc/src/java/org/apache/xmlrpc CommonsXmlRpcTransport.java

Posted by Davanum Srinivas <di...@yahoo.com>.
yes, i have a private gump running temporarily - http://nagoya.apache.org/~dims/gump/ :)

--- Ryan Hoegg <rh...@isisnetworks.net> wrote:
> Hey thanks dims... is gump back up?   What prompted you to fix this?
> 
> dims@apache.org wrote:
> 
> >dims        2003/12/26 08:57:51
> >
> >  Modified:    src/java/org/apache/xmlrpc CommonsXmlRpcTransport.java
> >  Log:
> >  constructor URI(URL url) is no longer present in httpclient's URI.java
> >  
> >  Revision  Changes    Path
> >  1.2       +2 -2      ws-xmlrpc/src/java/org/apache/xmlrpc/CommonsXmlRpcTransport.java
> >  
> >  Index: CommonsXmlRpcTransport.java
> >  ===================================================================
> >  RCS file: /home/cvs/ws-xmlrpc/src/java/org/apache/xmlrpc/CommonsXmlRpcTransport.java,v
> >  retrieving revision 1.1
> >  retrieving revision 1.2
> >  diff -u -r1.1 -r1.2
> >  --- CommonsXmlRpcTransport.java	16 Mar 2003 06:56:54 -0000	1.1
> >  +++ CommonsXmlRpcTransport.java	26 Dec 2003 16:57:51 -0000	1.2
> >  @@ -105,7 +105,7 @@
> >           method.setRequestHeader(userAgentHeader);
> >           // TODO: authentication not implemented yet
> >           method.setRequestBody(new ByteArrayInputStream(request));
> >  -        URI hostURI = new URI(url);
> >  +        URI hostURI = new URI(url.toString());
> >           HostConfiguration hostConfig = new HostConfiguration();
> >           hostConfig.setHost(hostURI);
> >           client.executeMethod(hostConfig, method);
> >  
> >  
> >  
> >  
> >
> 


=====
Davanum Srinivas - http://webservices.apache.org/~dims/

Re: cvs commit: ws-xmlrpc/src/java/org/apache/xmlrpc CommonsXmlRpcTransport.java

Posted by Ryan Hoegg <rh...@isisnetworks.net>.
Hey thanks dims... is gump back up?   What prompted you to fix this?

dims@apache.org wrote:

>dims        2003/12/26 08:57:51
>
>  Modified:    src/java/org/apache/xmlrpc CommonsXmlRpcTransport.java
>  Log:
>  constructor URI(URL url) is no longer present in httpclient's URI.java
>  
>  Revision  Changes    Path
>  1.2       +2 -2      ws-xmlrpc/src/java/org/apache/xmlrpc/CommonsXmlRpcTransport.java
>  
>  Index: CommonsXmlRpcTransport.java
>  ===================================================================
>  RCS file: /home/cvs/ws-xmlrpc/src/java/org/apache/xmlrpc/CommonsXmlRpcTransport.java,v
>  retrieving revision 1.1
>  retrieving revision 1.2
>  diff -u -r1.1 -r1.2
>  --- CommonsXmlRpcTransport.java	16 Mar 2003 06:56:54 -0000	1.1
>  +++ CommonsXmlRpcTransport.java	26 Dec 2003 16:57:51 -0000	1.2
>  @@ -105,7 +105,7 @@
>           method.setRequestHeader(userAgentHeader);
>           // TODO: authentication not implemented yet
>           method.setRequestBody(new ByteArrayInputStream(request));
>  -        URI hostURI = new URI(url);
>  +        URI hostURI = new URI(url.toString());
>           HostConfiguration hostConfig = new HostConfiguration();
>           hostConfig.setHost(hostURI);
>           client.executeMethod(hostConfig, method);
>  
>  
>  
>  
>