You are viewing a plain text version of this content. The canonical link for it is here.
Posted to soap-dev@ws.apache.org by du...@locus.apache.org on 2000/08/01 23:18:38 UTC

cvs commit: xml-soap/java/webapps/admin soapadmin.gif

duftler     00/08/01 14:18:38

  Modified:    java/samples/addressbook DeploymentDescriptor.xml
                        GetAddress.java PutAddress.java README
               java/samples/calculator Calculator.java
                        DeploymentDescriptor.xml README
               java/samples/stockquote GetQuote.java GetQuoteSMTP.java
                        README
               java/src/org/apache/soap/server ServerConstants.java
               java/webapps/admin soapadmin.gif
  Log:
  Changed some more IBM-SOAP references to XML-SOAP.
  Thanks to Wouter Cloetens (wcloeten@raleigh.ibm.com) for pointing some
  of these out.
  
  Revision  Changes    Path
  1.6       +2 -2      xml-soap/java/samples/addressbook/DeploymentDescriptor.xml
  
  Index: DeploymentDescriptor.xml
  ===================================================================
  RCS file: /home/cvs/xml-soap/java/samples/addressbook/DeploymentDescriptor.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- DeploymentDescriptor.xml	2000/06/02 09:41:31	1.5
  +++ DeploymentDescriptor.xml	2000/08/01 21:18:31	1.6
  @@ -7,12 +7,12 @@
     </isd:provider>
     <isd:mappings>
       <isd:map encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
  -             xmlns:x="urn:ibm-soap-address-demo" qname="x:address"
  +             xmlns:x="urn:xml-soap-address-demo" qname="x:address"
                javaType="samples.addressbook.Address"
                java2XMLClassName="org.apache.soap.encoding.soapenc.BeanSerializer"
                xml2JavaClassName="org.apache.soap.encoding.soapenc.BeanSerializer"/>
       <isd:map encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
  -             xmlns:x="urn:ibm-soap-address-demo" qname="x:phone"
  +             xmlns:x="urn:xml-soap-address-demo" qname="x:phone"
                javaType="samples.addressbook.PhoneNumber"
                java2XMLClassName="org.apache.soap.encoding.soapenc.BeanSerializer"
                xml2JavaClassName="org.apache.soap.encoding.soapenc.BeanSerializer"/>
  
  
  
  1.4       +2 -2      xml-soap/java/samples/addressbook/GetAddress.java
  
  Index: GetAddress.java
  ===================================================================
  RCS file: /home/cvs/xml-soap/java/samples/addressbook/GetAddress.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- GetAddress.java	2000/05/30 10:23:39	1.3
  +++ GetAddress.java	2000/08/01 21:18:31	1.4
  @@ -97,10 +97,10 @@
   
       // Map the types.
       smr.mapTypes(Constants.NS_URI_SOAP_ENC,
  -                 new QName("urn:ibm-soap-address-demo", "address"),
  +                 new QName("urn:xml-soap-address-demo", "address"),
                    Address.class, beanSer, beanSer);
       smr.mapTypes(Constants.NS_URI_SOAP_ENC,
  -                 new QName("urn:ibm-soap-address-demo", "phone"),
  +                 new QName("urn:xml-soap-address-demo", "phone"),
                    PhoneNumber.class, beanSer, beanSer);
   
       // Build the call.
  
  
  
  1.4       +2 -2      xml-soap/java/samples/addressbook/PutAddress.java
  
  Index: PutAddress.java
  ===================================================================
  RCS file: /home/cvs/xml-soap/java/samples/addressbook/PutAddress.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- PutAddress.java	2000/05/30 10:23:40	1.3
  +++ PutAddress.java	2000/08/01 21:18:31	1.4
  @@ -109,10 +109,10 @@
   
       // Map the types.
       smr.mapTypes(Constants.NS_URI_SOAP_ENC,
  -                 new QName("urn:ibm-soap-address-demo", "address"),
  +                 new QName("urn:xml-soap-address-demo", "address"),
                    Address.class, beanSer, beanSer);
       smr.mapTypes(Constants.NS_URI_SOAP_ENC,
  -                 new QName("urn:ibm-soap-address-demo", "phone"),
  +                 new QName("urn:xml-soap-address-demo", "phone"),
                    PhoneNumber.class, beanSer, beanSer);
   
       // Build the call.
  
  
  
  1.4       +3 -3      xml-soap/java/samples/addressbook/README
  
  Index: README
  ===================================================================
  RCS file: /home/cvs/xml-soap/java/samples/addressbook/README,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- README	2000/06/02 09:41:31	1.3
  +++ README	2000/08/01 21:18:31	1.4
  @@ -2,8 +2,8 @@
   Service:
   -------
   
  -To install this service on a IBM-SOAP listener, you need to make
  -the samples.addressbook package available on the IBM-SOAP listener's
  +To install this service on a XML-SOAP listener, you need to make
  +the samples.addressbook package available on the XML-SOAP listener's
   classpath. Then deploy this service by filling in the deployment
   template using the info in the deployment descriptor in this
   directory.
  @@ -40,4 +40,4 @@
   ------------
   
   java samples.addressbook.GetAddress \
  -  http://localhost:2020/ibm-soap/rpcrouter.jsp "John B. Good"
  +  http://localhost:2020/xml-soap/rpcrouter.jsp "John B. Good"
  
  
  
  1.4       +3 -3      xml-soap/java/samples/calculator/Calculator.java
  
  Index: Calculator.java
  ===================================================================
  RCS file: /home/cvs/xml-soap/java/samples/calculator/Calculator.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- Calculator.java	2000/05/30 10:23:44	1.3
  +++ Calculator.java	2000/08/01 21:18:33	1.4
  @@ -204,7 +204,7 @@
          throws SOAPException {
       // Build the call.
       Call call = new Call ();
  -    call.setTargetObjectURI ("urn:ibm-soap-demo-calculator");
  +    call.setTargetObjectURI ("urn:xml-soap-demo-calculator");
       call.setMethodName (op);
       call.setEncodingStyleURI(encodingStyleURI);
       Vector params = new Vector ();
  @@ -215,7 +215,7 @@
       call.setParams (params);
       
       // make the call: note that the action URI is empty because the 
  -    // IBM-SOAP rpc router does not need this. This may change in the
  +    // XML-SOAP rpc router does not need this. This may change in the
       // future.
       Response resp = call.invoke (/* router URL */ url, /* actionURI */ "" );
       
  @@ -258,7 +258,7 @@
         System.exit (1);
       }
   
  -    Calculator c = new Calculator ("IBM-SOAP Calculator");
  +    Calculator c = new Calculator ("XML-SOAP Calculator");
   
       int offset = maxargs - args.length;
       c.encodingStyleURI = (args.length == maxargs)
  
  
  
  1.4       +1 -1      xml-soap/java/samples/calculator/DeploymentDescriptor.xml
  
  Index: DeploymentDescriptor.xml
  ===================================================================
  RCS file: /home/cvs/xml-soap/java/samples/calculator/DeploymentDescriptor.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- DeploymentDescriptor.xml	2000/06/01 19:37:57	1.3
  +++ DeploymentDescriptor.xml	2000/08/01 21:18:33	1.4
  @@ -1,7 +1,7 @@
   <?xml version="1.0"?>
   
   <isd:service xmlns:isd="http://xml.apache.org/xml-soap/deployment"
  -             id="urn:ibm-soap-demo-calculator">
  +             id="urn:xml-soap-demo-calculator">
     <isd:provider type="script"
                   scope="Application" 
                   methods="plus minus times divide">
  
  
  
  1.3       +3 -3      xml-soap/java/samples/calculator/README
  
  Index: README
  ===================================================================
  RCS file: /home/cvs/xml-soap/java/samples/calculator/README,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- README	2000/05/30 10:23:44	1.2
  +++ README	2000/08/01 21:18:33	1.3
  @@ -2,8 +2,8 @@
   Service:
   -------
   
  -To install this service on a IBM-SOAP listener, you need to make
  -the samples.addressbook package available on the IBM-SOAP listener's
  +To install this service on a XML-SOAP listener, you need to make
  +the samples.addressbook package available on the XML-SOAP listener's
   classpath. Then deploy this service by filling in the deployment
   template using the info in the deployment descriptor in this
   directory or by using the service manager client:
  @@ -38,4 +38,4 @@
   ------------
   
   java samples.calculator.Calculator \
  -  http://localhost:2020/ibm-soap/rpcrouter.jsp
  +  http://localhost:2020/xml-soap/rpcrouter.jsp
  
  
  
  1.4       +1 -1      xml-soap/java/samples/stockquote/GetQuote.java
  
  Index: GetQuote.java
  ===================================================================
  RCS file: /home/cvs/xml-soap/java/samples/stockquote/GetQuote.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- GetQuote.java	2000/05/30 10:23:46	1.3
  +++ GetQuote.java	2000/08/01 21:18:36	1.4
  @@ -98,7 +98,7 @@
       call.setParams (params);
   
       // make the call: note that the action URI is empty because the 
  -    // IBM-SOAP rpc router does not need this. This may change in the
  +    // XML-SOAP rpc router does not need this. This may change in the
       // future.
       Response resp = call.invoke (/* router URL */ url, /* actionURI */ "" );
   
  
  
  
  1.4       +1 -1      xml-soap/java/samples/stockquote/GetQuoteSMTP.java
  
  Index: GetQuoteSMTP.java
  ===================================================================
  RCS file: /home/cvs/xml-soap/java/samples/stockquote/GetQuoteSMTP.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- GetQuoteSMTP.java	2000/05/30 10:23:46	1.3
  +++ GetQuoteSMTP.java	2000/08/01 21:18:36	1.4
  @@ -126,7 +126,7 @@
       call.setParams (params);
   
       // make the call: note that the action URI is empty because the 
  -    // IBM-SOAP rpc router does not need this. This may change in the
  +    // XML-SOAP rpc router does not need this. This may change in the
       // future.
       Response resp = call.invoke (/* router URL */ url, /* actionURI */ "" );
   
  
  
  
  1.3       +3 -3      xml-soap/java/samples/stockquote/README
  
  Index: README
  ===================================================================
  RCS file: /home/cvs/xml-soap/java/samples/stockquote/README,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- README	2000/05/30 10:23:46	1.2
  +++ README	2000/08/01 21:18:36	1.3
  @@ -2,9 +2,9 @@
   Service:
   -------
   
  -To install this service on a IBM-SOAP listener, you need to make
  +To install this service on a XML-SOAP listener, you need to make
   the samples.stockquote.GetQuote class available on the
  -IBM-SOAP listener's classpath. Then deploy this service by filling
  +XML-SOAP listener's classpath. Then deploy this service by filling
   in the deployment template using the info in the deployment
   descriptor in this directory.
   
  @@ -38,7 +38,7 @@
   ------------
   
   java samples.stockquote.GetQuote \
  -  http://localhost:2020/ibm-soap/rpcrouter.jsp IBM
  +  http://localhost:2020/xml-soap/rpcrouter.jsp IBM
   
   java samples.stockquote.GetQuoteSMTP \
     mailto:soaprouter@quoteserver.com smtpserver.myplace.com \
  
  
  
  1.3       +1 -1      xml-soap/java/src/org/apache/soap/server/ServerConstants.java
  
  Index: ServerConstants.java
  ===================================================================
  RCS file: /home/cvs/xml-soap/java/src/org/apache/soap/server/ServerConstants.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- ServerConstants.java	2000/05/30 10:24:05	1.2
  +++ ServerConstants.java	2000/08/01 21:18:37	1.3
  @@ -65,7 +65,7 @@
   public class ServerConstants {
     // service name of the service manager
     public static final String SERVICE_MANAGER_SERVICE_NAME =
  -  "urn:ibm-soap-service-management-service";
  +    "urn:xml-soap-service-management-service";
   
     // HTTP status codes.
     public static final int SC_BAD_REQUEST = 400;
  
  
  
  1.2       +39 -21    xml-soap/java/webapps/admin/soapadmin.gif
  
  	<<Binary file>>