User: cgjung  
  Date: 02/02/04 01:38:59

  Modified:    jboss.net/testsuite/src/main/org/jboss/test/net
                        AxisTestCase.java
  Log:
  Adapted to latest deployment changes. Compiles, but does not yet run yet.
  
  Revision  Changes    Path
  1.3       +13 -7     
contrib/jboss.net/testsuite/src/main/org/jboss/test/net/AxisTestCase.java
  
  Index: AxisTestCase.java
  ===================================================================
  RCS file: 
/cvsroot/jboss/contrib/jboss.net/testsuite/src/main/org/jboss/test/net/AxisTestCase.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- AxisTestCase.java 2001/10/16 15:52:57     1.2
  +++ AxisTestCase.java 2002/02/04 09:38:59     1.3
  @@ -5,7 +5,7 @@
    * See terms of license at gnu.org.
    */
   
  -// $Id: AxisTestCase.java,v 1.2 2001/10/16 15:52:57 cgjung Exp $
  +// $Id: AxisTestCase.java,v 1.3 2002/02/04 09:38:59 cgjung Exp $
   
   package org.jboss.test.net;
   
  @@ -35,19 +35,25 @@
    * Junit Test class with some Axis support
    * @created 12. Oktober 2001, 11:20
    * @author <a href="mailto:[EMAIL PROTECTED]";>Christoph G. Jung</a>
  - * @version $Revision: 1.2 $
  + * @version $Revision: 1.3 $
    */
   
   public class AxisTestCase extends JBossTestCase {
       
  -    /** where the web server is installed */
  -    protected String WEB_SERVER="http://localhost:8080";;
  -    
  +   /** the protocol we use */
  +   protected String PROTOCOL="http://";;
  +   
  +   /** the address to which we forward the request */
  +   protected String ADDRESS="localhost:8080/";
  +   
       /** where the axis servlet context is installed */
  -    protected String AXIS_CONTEXT=WEB_SERVER+"/axis";
  +    protected String AXIS_CONTEXT=ADDRESS+"axis/";
  +    
  +    /** where the service port is located under */
  +    protected String SERVICE_PORT=AXIS_CONTEXT+"services";
       
       /** has an associated end point that may be configured once */
  -    protected String END_POINT=AXIS_CONTEXT+"/services";
  +    protected String END_POINT=PROTOCOL+SERVICE_PORT;
   
       /** the engine that this test case uses */
       protected AxisEngine engine;
  
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to