You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by Glen Daniels <gd...@allaire.com> on 2001/03/09 00:04:17 UTC

RE: cvs commit: xml-axis/java/src/org/apache/axis/utils Options.j ava

Ah.  From the GetQuote README:

  options:
    -d           turn on debugging - more 'd means more info
    -h<HOST>     server host name
    -l<URL>      ie. http://localhost:80/axis/servlet/AxisServlet
    -p<PORT#>    server port number
    -s<SERVLET>  ie. axis/servlet/AxisServlet
    -u<USERID>   user-id
    -w<PASSWD>   password

I like this much better, since -p is going to be much more frequently used
(imo).  If it's OK with you, I'll change the password to "-w" in
Options.java.

--G

> -----Original Message-----
> From: Doug Davis [mailto:dug@us.ibm.com]
> Sent: Thursday, March 08, 2001 5:58 PM
> To: axis-dev@xml.apache.org
> Subject: Re: cvs commit: xml-axis/java/src/org/apache/axis/utils
> Options.java
> 
> 
> Actually,Glen that needs to be 'o', 'p' is used for password.
> -Dug
> 
> 
> gdaniels@apache.org on 03/08/2001 05:09:15 PM
> 
> Please respond to axis-dev@xml.apache.org
> 
> To:   xml-axis-cvs@apache.org
> cc:
> Subject:  cvs commit: xml-axis/java/src/org/apache/axis/utils 
> Options.java
> 
> 
> 
> gdaniels    01/03/08 14:09:15
> 
>   Modified:    java/src/org/apache/axis/utils Options.java
>   Log:
>   Fix typo.
> 
>   Revision  Changes    Path
>   1.4       +1 -1      
> xml-axis/java/src/org/apache/axis/utils/Options.java
> 
>   Index: Options.java
>   ===================================================================
>   RCS file:
> /home/cvs/xml-axis/java/src/org/apache/axis/utils/Options.java,v
>   retrieving revision 1.3
>   retrieving revision 1.4
>   diff -u -r1.3 -r1.4
>   --- Options.java  2001/03/03 01:07:05  1.3
>   +++ Options.java  2001/03/08 22:09:14  1.4
>   @@ -234,7 +234,7 @@
>        }
> 
>        tmp = isValueSet( 'h' ); if ( host == null ) host = tmp ;
>   -    tmp = isValueSet( 'o' ); if ( port == null ) port = tmp ;
>   +    tmp = isValueSet( 'p' ); if ( port == null ) port = tmp ;
>        tmp = isValueSet( 's' ); if ( servlet == null ) servlet = tmp ;
> 
>        if ( host == null ) host = "localhost" ;
> 
> 
> 
> 
>