greenstone.org greenstone wiki greenstone trac planet greenstone

Changeset 16887

Show
Ignore:
Timestamp:
2008-08-19 11:58:36 (5 months ago)
Author:
ak19
Message:

Typos and spelling errors adjusted in documents

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • other-projects/trunk/gs3-webservices-democlient/docs/HowToFiles/6WritingAWebServiceClient.html

    r15338 r16887  
    129129         
    130130         
    131         /** Axis Service object for connecting to invoking Greenstone 3's WebServices 
    132          * using its WSDL file */ 
     131        /** Axis Service object for connecting to Greenstone 3's 'QBRSOAPServer' Web Services 
     132         * using its WSDL file, in order to invoke these web services */ 
    133133        protected Service service;  
    134134         
    135         // Inspect the wsdl file to find at the very bottom, the service name, port name and soap address 
     135        // Inspect the wsdl file to find, at the very bottom, the service name, port name and soap address 
    136136        //endpoint locations: 
    137137        // <wsdl:service name="QBRSOAPServerlocalsiteService"> 
     
    153153 
    154154        // Constructor, takes a String representing the URL of the web service's  
    155         // wsdl file. This can be found of the Greenstone 3 services page 
     155        // wsdl file. This can be found off the Greenstone 3 services page 
    156156        // http://HOST:PORT/greenstone3/services/ 
    157157        public GreenstoneConnection(String wsdlURLName)  
  • other-projects/trunk/gs3-webservices-democlient/docs/HowToFiles/7BasicsOfWritingWebServices.html

    r16305 r16887  
    4545It would contain one or more <service> elements. 
    4646 
    47 Stop greenstone's tomcat: 
    48 <pre>ant stop</pre> 
     47<p>Stop Greenstone's tomcat: 
     48<pre>ant stop</pre></p> 
    4949 
    5050Copy an existing &lt;service&gt; element in order to create a &lt;service&gt; element for your web service. 
     
    7777And now use Axis' AdminClient tool to deploy the web service by typing the following in the x-term from within the GSDLHOME folder: 
    7878<pre>java -cp $AXISCLASSPATH org.apache.axis.client.AdminClient -lhttp://YOURCOMPUTER:YOURPORT/greenstone3/services/AdminService web/WEB-INF/server-config.wsdd</pre> 
    79 Change the computer host and port to suite your situation. For example<br /> 
     79Change the computer host and port to suit your situation. For example<br /> 
    8080<blockquote> 
    81 java -cp $AXISCLASSPATH org.apache.axis.client.AdminClient -lhttp://myhost:8080/greenstone3/services/AdminService web/WEB-INF/server-config.wsdd 
     81java -cp $AXISCLASSPATH org.apache.axis.client.AdminClient -lhttp://harakeke:8080/greenstone3/services/AdminService web/WEB-INF/server-config.wsdd 
    8282</blockquote> 
    8383Check it says DONE PROCESSING or something like it. 
     
    8585 
    8686<li>Stop Tomcat and restart it again. 
    87 In a browser go to the "services" page of the Greenstone 3: 
    88 http://localhost:8080/greenstone3/services 
     87In a browser go to the "services" page of Greenstone 3: 
     88<pre>http://localhost:8080/greenstone3/services</pre> 
    8989and find the new service there. There will be a link to its WSDL file as well. 
    9090</li>