Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 72971 invoked from network); 13 Nov 2006 12:16:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 13 Nov 2006 12:16:44 -0000 Received: (qmail 27543 invoked by uid 500); 13 Nov 2006 12:16:53 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 27417 invoked by uid 500); 13 Nov 2006 12:16:53 -0000 Mailing-List: contact axis-cvs-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list axis-cvs@ws.apache.org Received: (qmail 27406 invoked by uid 500); 13 Nov 2006 12:16:53 -0000 Delivered-To: apmail-ws-axis2-cvs@ws.apache.org Received: (qmail 27402 invoked by uid 99); 13 Nov 2006 12:16:53 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 13 Nov 2006 04:16:53 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 13 Nov 2006 04:16:39 -0800 Received: by eris.apache.org (Postfix, from userid 65534) id EE3971A9859; Mon, 13 Nov 2006 04:16:09 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r474274 - /webservices/axis2/branches/java/1_1/xdocs/1_1/axis2config.html Date: Mon, 13 Nov 2006 12:16:09 -0000 To: axis2-cvs@ws.apache.org From: chatra@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20061113121609.EE3971A9859@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: chatra Date: Mon Nov 13 04:16:09 2006 New Revision: 474274 URL: http://svn.apache.org/viewvc?view=rev&rev=474274 Log: completed review Modified: webservices/axis2/branches/java/1_1/xdocs/1_1/axis2config.html Modified: webservices/axis2/branches/java/1_1/xdocs/1_1/axis2config.html URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/xdocs/1_1/axis2config.html?view=diff&rev=474274&r1=474273&r2=474274 ============================================================================== --- webservices/axis2/branches/java/1_1/xdocs/1_1/axis2config.html (original) +++ webservices/axis2/branches/java/1_1/xdocs/1_1/axis2config.html Mon Nov 13 04:16:09 2006 @@ -92,7 +92,7 @@ <parameter name="PROTOCOL" locked="xsd:false">HTTP/1.0</parameter> </transportSender> -name: Name of the transport (it is possible to have +name: Name of the transport (it is possible to have http and http1 as transport name)

class: Implementation class of the corresponding @@ -109,7 +109,7 @@ . . </phaseOrder> - +

The most interesting thing is that you can add handlers here as well. If you want to add a handler which should go into that phase, you can directly do that by adding a handler element into it. In addition to that, there is no @@ -261,15 +261,15 @@

  • Module deploy
  • Module remove
  • -Registering Observers is very useful for additional features such as RSS feed +

    Registering Observers is very useful for additional features such as RSS feed generation which will provide service information to subscribers. The correct -way of registering observers should be like below: +way of registering observers should be like below:

    <listener class="org.apache.axis2.ObserverIMPL">
         <parameter name="RSS_URL" >http://127.0.0.1/rss</parameter>
       </listener>

    class: Represents an Implementation class of observer, -and it should be noted that the implementation class should implement +and it should be noted that the Implementation class should implement AxisObserver interface, and the class has to be available in the classpath.

    @@ -282,7 +282,7 @@ service archive file needs to have a services.xml in order to be a valid service and it should be available in the META-INF directory of the archive file. A very simple services.xml is shown below:

    -
    <service name="name of the service" scope="name of the scope" class="full qualifide name the service lifecycle class"   targetNamespace="target namespase for the service">
    +
    <service name="name of the service" scope="name of the scope" class="full qualifide name the service lifecycle class"   targetNamespace="target namespase for the service">
         <description> The description of the service  </description>  
     
         <transports> 
    @@ -303,20 +303,17 @@
             <module ref=" a module name "/>
             <messageReceiver class="org.apache.axis2.receivers.RawXMLINOutMessageReceiver"/>
         </operation>
    -  </service>
    + </service>
    -

    name: The service name will be the name of the +

    name: The service name will be the name of the archive file, if the .aar file contains only one service, or else the name of -the service will be the name given by the name attribute.

    +the service will be the name given by the name attribute.

    scope: (Optional Attribute) The time period in which runtime information of deployed services will be available. Scope is of several types- "Application", "SOAPSession", "TransportSession", "Request". The default value (if you dont put any value) will be "Request"

    -

    class: (Optional attribute) To specify the full qualified name of the service lifecycle implementation class. - ServiceLifeCycle class is usefull when you want to do some tasks when the system start and when it shutdowns. - -

    +

    class: (Optional attribute) To specify the full qualified name of the service lifecycle implementation class. ServiceLifeCycle class is usefull when you want to do some tasks when the system start and when it shutdowns.

    targetNamespace: (Optional Attribute) Target name space of the service, and this value will be used when generating the wsdl , if you do not specify this value , then the value will be calculated from the package name of the service impl class

    --------------------------------------------------------------------- To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org For additional commands, e-mail: axis-cvs-help@ws.apache.org