You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by pr...@apache.org on 2007/06/27 18:46:04 UTC

svn commit: r551228 [21/23] - in /webservices/axis2/branches/java/jaxws21: ./ etc/ modules/adb-codegen/src/org/apache/axis2/schema/ modules/adb-codegen/src/org/apache/axis2/schema/template/ modules/adb-codegen/src/org/apache/axis2/schema/writer/ module...

Modified: webservices/axis2/branches/java/jaxws21/xdocs/@axis2_version_dir@/jms-transport.html
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/jaxws21/xdocs/%40axis2_version_dir%40/jms-transport.html?view=diff&rev=551228&r1=551227&r2=551228
==============================================================================
--- webservices/axis2/branches/java/jaxws21/xdocs/@axis2_version_dir@/jms-transport.html (original)
+++ webservices/axis2/branches/java/jaxws21/xdocs/@axis2_version_dir@/jms-transport.html Wed Jun 27 09:45:37 2007
@@ -13,13 +13,7 @@
 <h1>JMS Transport</h1>
 
 <p>This document is all about the JMS (Java Messaging Service) Transport
-support in Apache Axis2,, and how it should be configured.</p>
-
-<p><i>Send your feedback or questions to: <a
-href="mailto:axis-dev@ws.apache.org?subject=[Axis2]">axis-dev@ws.apache.org</a></i>.
-(Subscription details are available on the <a
-href="http://ws.apache.org/axis2/mail-lists.html">Axis2 site</a>.) Kindly
-prefix subject with [Axis2].</p>
+support in Apache Axis2, and how it should be configured.</p>
 
 <h2>Contents</h2>
 <ul>
@@ -45,10 +39,10 @@
 follows, in order to configure the JMSListener and the JMS Sender</p>
 <pre><strong>axis2.xml</strong>
     &lt;transportReceiver name="jms" class="org.apache.axis2.transport.jms.JMSListener"&gt;
-      &lt;parameter name="default" locked="false"&gt;                
-        &lt;parameter name="java.naming.factory.initial" locked="false"&gt;org.apache.activemq.jndi.ActiveMQInitialContextFactory&lt;/parameter&gt;
-        &lt;parameter name="java.naming.provider.url" locked="false"&gt;tcp://localhost:61616&lt;/parameter&gt;        
-        &lt;parameter name="transport.jms.ConnectionFactoryJNDIName" locked="false"&gt;QueueConnectionFactory&lt;/parameter&gt;
+      &lt;parameter name="default"&gt;
+        &lt;parameter name="java.naming.factory.initial"&gt;org.apache.activemq.jndi.ActiveMQInitialContextFactory&lt;/parameter&gt;
+        &lt;parameter name="java.naming.provider.url"&gt;tcp://localhost:61616&lt;/parameter&gt;
+        &lt;parameter name="transport.jms.ConnectionFactoryJNDIName"&gt;QueueConnectionFactory&lt;/parameter&gt;
       &lt;/parameter&gt;
     &lt;/transportReceiver&gt;
 
@@ -67,10 +61,10 @@
 connection factory. The example shown above uses an ActiveMQ JMS
 implementation.</p>
 <pre><strong>axis2.xml</strong>
-  &lt;parameter name="myTopicConnectionFactory" locked="false"&gt;</pre>
-<pre>    &lt;parameter name="java.naming.factory.initial" locked="false"&gt;org.apache.activemq.jndi.ActiveMQInitialContextFactory&lt;/parameter&gt;</pre>
-<pre>    &lt;parameter name="java.naming.provider.url" locked="false"&gt;tcp://localhost:61616&lt;/parameter&gt;</pre>
-<pre>    &lt;parameter name="transport.jms.ConnectionFactoryJNDIName" locked="false"&gt;TopicConnectionFactory&lt;/parameter&gt;</pre>
+  &lt;parameter name="myTopicConnectionFactory"&gt;</pre>
+<pre>    &lt;parameter name="java.naming.factory.initial"&gt;org.apache.activemq.jndi.ActiveMQInitialContextFactory&lt;/parameter&gt;</pre>
+<pre>    &lt;parameter name="java.naming.provider.url"&gt;tcp://localhost:61616&lt;/parameter&gt;</pre>
+<pre>    &lt;parameter name="transport.jms.ConnectionFactoryJNDIName"&gt;TopicConnectionFactory&lt;/parameter&gt;</pre>
 <pre>  &lt;/parameter&gt;</pre>
 
 <p>If it is required or applicable, you are free to define additional (local)
@@ -117,8 +111,8 @@
 
 <p>This section assumes that you are already familiar with <a
 href="xmlbased-server.html">writing service implementations</a> for Axis2,
-and provides information on how to write your own service implementations,
-which are exposed over JMS.</p>
+and provides information on how to write your own service implementations
+to be exposed over JMS.</p>
 
 <p><strong>Echo - Service implementation and services.xml</strong></p>
 

Modified: webservices/axis2/branches/java/jaxws21/xdocs/@axis2_version_dir@/json_support.html
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/jaxws21/xdocs/%40axis2_version_dir%40/json_support.html?view=diff&rev=551228&r1=551227&r2=551228
==============================================================================
--- webservices/axis2/branches/java/jaxws21/xdocs/@axis2_version_dir@/json_support.html (original)
+++ webservices/axis2/branches/java/jaxws21/xdocs/@axis2_version_dir@/json_support.html Wed Jun 27 09:45:37 2007
@@ -13,13 +13,6 @@
 P { margin-bottom: 0.08in }
 -->
 
-
-
-
-
-
-
-
         </style>
 </head>
 
@@ -28,14 +21,14 @@
 
 <p>This document explains the JSON support implementation in Axis2. It
 includes an introduction to JSON, an outline as to why JSON support is useful
-to Axis2 and how to it should be used. Document also provides details on test
+to Axis2 and how it should be used. This document also provides details on test
 cases and samples.</p>
 
 <h3>What is JSON?</h3>
 
 <p><a href="http://www.json.org/">JSON</a> (Java Script Object Notation) is
-another data exchangeable format like XML, but it is more lightweight and
-easily readable. It is based on a subset of JavaScript language. Therefore,
+another data exchangeable format like XML, but more lightweight and
+easily readable. It is based on a subset of the JavaScript language. Therefore,
 JavaScript can understand JSON, and it can make JavaScript objects by using
 JSON strings. JSON is based on key-value pairs and it uses colons to separate
 keys and values. JSON doesn't use end tags, and it uses braces (curly
@@ -69,7 +62,7 @@
 
 <p><font size="2">{"foo.root":{"data":"my json string"}}</font></p>
 
-<p>JSON support implementation is a new feature in <a
+<p>JSON support is a new feature in <a
 href="http://ws.apache.org/axis2/">Apache Axis2/Java</a>. It will become a
 crucial improvement in the future with applications like JavaScript Web
 services.</p>
@@ -80,7 +73,7 @@
 stack that delivers incoming messages into target applications. In most
 cases, these messages are SOAP messages. In addition, it is also possible to
 send REST messages through Axis2. Both types of messages use XML as their
-data exchangeable format. So if we can use XML as a format, why not use JSON
+data exchangeable format. So if we can use XML as a format, why use JSON
 as another format?</p>
 
 <p>There are many advantages of implementing JSON support in Axis2. Mainly,
@@ -94,7 +87,7 @@
 <p>Other than for that, there are some extra advantages of using JSON in
 comparison to XML. Although the conversation “XML or JSON?” is still a
 hot topic, many people accept the fact that JSON can be passed and built
-easily by machines than in the case of XML. </p>
+more easily by machines than XML. </p>
 
 <p>For more details of this implementation architecture, refer to the article
 <a href="http://wso2.org/library/768">"JSON Support for Apache Axis2"</a></p>
@@ -172,8 +165,8 @@
 exact JSON content type that is used by that service, and you have to use
 that content type in your client as well.</p>
 
-<p>HTTP POST method is used as the default to send JSON messages through
-Axis2, if the HTTP method is not set by the user. But if you want to send
+<p>HTTP POST is used as the default method to send JSON messages through
+Axis2, if the HTTP method is not explicitly set by the user. But if you want to send
 JSON in HTTP GET method as a parameter, you can do that by just setting an
 option on the client side.</p>
 
@@ -211,8 +204,8 @@
 the axis2.xml. All the results are shown in a GUI. To run the sample, execute
 the ant script.</p>
 
-<p>These two applications are good examples of using JSON support for Axis2.
-You can understand the architecture of JSON support implementation in Axis2
-by looking at these samples.</p>
+<p>These two applications provide good examples of using JSON within Axis2.
+By reviewing these samples, you will be able to better understand Axis2's 
+JSON support implementation.</p>
 </body>
 </html>

Modified: webservices/axis2/branches/java/jaxws21/xdocs/@axis2_version_dir@/mail-configuration.html
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/jaxws21/xdocs/%40axis2_version_dir%40/mail-configuration.html?view=diff&rev=551228&r1=551227&r2=551228
==============================================================================
--- webservices/axis2/branches/java/jaxws21/xdocs/@axis2_version_dir@/mail-configuration.html (original)
+++ webservices/axis2/branches/java/jaxws21/xdocs/@axis2_version_dir@/mail-configuration.html Wed Jun 27 09:45:37 2007
@@ -61,9 +61,9 @@
 <p>For a non-SSL connection, as an example, the mail transport sender can be
 activated by adding the following entry to the axis2.xml file.</p>
 <source><pre>   &lt;transportSender name="mail" class="org.apache.axis2.transport.mail.MailTransportSender"&gt;
-        &lt;parameter name="mail.smtp.host" locked="false"&gt;localhost&lt;/parameter&gt;
-        &lt;parameter name="mail.smtp.user" locked="false"&gt;mary&lt;/parameter&gt;
-        &lt;parameter name="transport.mail.smtp.password" locked="false"&gt;mary&lt;/parameter&gt;     
+        &lt;parameter name="mail.smtp.host"&gt;localhost&lt;/parameter&gt;
+        &lt;parameter name="mail.smtp.user"&gt;mary&lt;/parameter&gt;
+        &lt;parameter name="transport.mail.smtp.password"&gt;mary&lt;/parameter&gt;
    &lt;/transportSender&gt;
   </pre>
 </source>
@@ -107,10 +107,10 @@
 <p>For a non-SSL connection, as an example, the mail Listener can be
 activated by adding the following entry to the axis2.xml file.</p>
 <source><pre>   &lt;transportReceiver name="mail" class="org.apache.axis2.transport.mail.SimpleMailListener"&gt;
-        &lt;parameter name="mail.pop3.host" locked="false"&gt;localhost&lt;/parameter&gt;
-        &lt;parameter name="mail.pop3.user" locked="false"&gt;bob&lt;/parameter&gt;
-        &lt;parameter name="transport.mail.pop3.password" locked="false"&gt;bob&lt;/parameter&gt;
-        &lt;parameter name="transport.mail.replyToAddress" locked="false"&gt;bob@localhost&lt;/parameter&gt;
+        &lt;parameter name="mail.pop3.host"&gt;localhost&lt;/parameter&gt;
+        &lt;parameter name="mail.pop3.user"&gt;bob&lt;/parameter&gt;
+        &lt;parameter name="transport.mail.pop3.password"&gt;bob&lt;/parameter&gt;
+        &lt;parameter name="transport.mail.replyToAddress"&gt;bob@localhost&lt;/parameter&gt;
   &lt;/transportReceiver&gt;
   </pre>
 </source>
@@ -120,14 +120,14 @@
 <p>For an advanced user, this can be set to an SSL connection. For example,
 let's use this transport listener to pop from a specified gmail account.</p>
 <source><pre>&lt;transportReceiver name="mail" class="org.apache.axis2.transport.mail.SimpleMailListener"&gt;
-        &lt;parameter name="mail.pop3.host" locked="false"&gt;pop.gmail.com&lt;/parameter&gt;
-        &lt;parameter name="mail.pop3.user" locked="false"&gt;address@gmail.com&lt;/parameter&gt;
-        &lt;parameter name="mail.pop3.socketFactory.class" locked="false"&gt;javax.net.ssl.SSLSocketFactory&lt;/parameter&gt;
-        &lt;parameter name="mail.pop3.socketFactory.fallback" locked="false"&gt;false&lt;/parameter&gt;
-        &lt;parameter name="mail.pop3.port" locked="false"&gt;995&lt;/parameter&gt;
-        &lt;parameter name="mail.pop3.socketFactory.port" locked="false"&gt;995&lt;/parameter&gt;
-        &lt;parameter name="transport.mail.pop3.password" locked="false"&gt;password&lt;/parameter&gt;
-        &lt;parameter name="transport.mail.replyToAddress" locked="false"&gt;address@gmail.com&lt;/parameter&gt;
+        &lt;parameter name="mail.pop3.host"&gt;pop.gmail.com&lt;/parameter&gt;
+        &lt;parameter name="mail.pop3.user"&gt;address@gmail.com&lt;/parameter&gt;
+        &lt;parameter name="mail.pop3.socketFactory.class"&gt;javax.net.ssl.SSLSocketFactory&lt;/parameter&gt;
+        &lt;parameter name="mail.pop3.socketFactory.fallback"&gt;false&lt;/parameter&gt;
+        &lt;parameter name="mail.pop3.port"&gt;995&lt;/parameter&gt;
+        &lt;parameter name="mail.pop3.socketFactory.port"&gt;995&lt;/parameter&gt;
+        &lt;parameter name="transport.mail.pop3.password"&gt;password&lt;/parameter&gt;
+        &lt;parameter name="transport.mail.replyToAddress"&gt;address@gmail.com&lt;/parameter&gt;
 &lt;/transportReceiver&gt;</pre>
 </source><a name="server"></a>
 

Modified: webservices/axis2/branches/java/jaxws21/xdocs/@axis2_version_dir@/migration.html
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/jaxws21/xdocs/%40axis2_version_dir%40/migration.html?view=diff&rev=551228&r1=551227&r2=551228
==============================================================================
--- webservices/axis2/branches/java/jaxws21/xdocs/@axis2_version_dir@/migration.html (original)
+++ webservices/axis2/branches/java/jaxws21/xdocs/@axis2_version_dir@/migration.html Wed Jun 27 09:45:37 2007
@@ -256,7 +256,7 @@
     &lt;description&gt;
        This service has the SOAP Monitor wired in 
     &lt;/description&gt;
-    &lt;parameter name="ServiceClass" locked="false"&gt;org.ExampleService&lt;/parameter&gt;
+    &lt;parameter name="ServiceClass"&gt;org.ExampleService&lt;/parameter&gt;
     &lt;operation name="myExecute"&gt;
         &lt;messageReceiver class="org.apache.axis2.receivers.RawXMLINOutMessageReceiver"/&gt;
     &lt;/operation&gt;
@@ -274,22 +274,22 @@
         &lt;phase name="PreDispatch"/&gt;
         &lt;phase name="Dispatch" class="org.apache.axis2.engine.DispatchPhase"&gt;
             &lt;handler name="AddressingBasedDispatcher"
-                     class="org.apache.axis2.engine.AddressingBasedDispatcher"&gt;
+                     class="org.apache.axis2.dispatchers.AddressingBasedDispatcher"&gt;
                 &lt;order phase="Dispatch"/&gt;
             &lt;/handler&gt;
 
             &lt;handler name="RequestURIBasedDispatcher"
-                     class="org.apache.axis2.engine.RequestURIBasedDispatcher"&gt;
+                     class="org.apache.axis2.dispatchers.RequestURIBasedDispatcher"&gt;
                 &lt;order phase="Dispatch"/&gt;
             &lt;/handler&gt;
 
             &lt;handler name="SOAPActionBasedDispatcher"
-                     class="org.apache.axis2.engine.SOAPActionBasedDispatcher"&gt;
+                     class="org.apache.axis2.dispatchers.SOAPActionBasedDispatcher"&gt;
                 &lt;order phase="Dispatch"/&gt;
             &lt;/handler&gt;
 
             &lt;handler name="SOAPMessageBodyBasedDispatcher"
-                     class="org.apache.axis2.engine.SOAPMessageBodyBasedDispatcher"&gt;
+                     class="org.apache.axis2.dispatchers.SOAPMessageBodyBasedDispatcher"&gt;
                 &lt;order phase="Dispatch"/&gt;
             &lt;/handler&gt;
             &lt;handler name="InstanceDispatcher"
@@ -339,8 +339,8 @@
 transports in this manner:</p>
 <pre>...
 &lt;transportSender name="http" class="org.apache.axis2.transport.http.CommonsHTTPTransportSender"&gt; 
-   &lt;parameter name="PROTOCOL" locked="false"&gt;HTTP/1.1&lt;/parameter&gt; 
-   &lt;parameter name="Transfer-Encoding" locked="false"&gt;chunked&lt;/parameter&gt;
+   &lt;parameter name="PROTOCOL"&gt;HTTP/1.1&lt;/parameter&gt;
+   &lt;parameter name="Transfer-Encoding"&gt;chunked&lt;/parameter&gt;
 &lt;/transportSender&gt;
 ...</pre>
 <a name="data_binding"></a>

Modified: webservices/axis2/branches/java/jaxws21/xdocs/@axis2_version_dir@/modules.html
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/jaxws21/xdocs/%40axis2_version_dir%40/modules.html?view=diff&rev=551228&r1=551227&r2=551228
==============================================================================
--- webservices/axis2/branches/java/jaxws21/xdocs/@axis2_version_dir@/modules.html (original)
+++ webservices/axis2/branches/java/jaxws21/xdocs/@axis2_version_dir@/modules.html Wed Jun 27 09:45:37 2007
@@ -223,22 +223,22 @@
         &lt;phase name="PreDispatch"/&gt;
         &lt;phase name="Dispatch" class="org.apache.axis2.engine.DispatchPhase"&gt;
             &lt;handler name="AddressingBasedDispatcher"
-                     class="org.apache.axis2.engine.AddressingBasedDispatcher"&gt;
+                     class="org.apache.axis2.dispatchers.AddressingBasedDispatcher"&gt;
                 &lt;order phase="Dispatch"/&gt;
             &lt;/handler&gt;
 
             &lt;handler name="RequestURIBasedDispatcher"
-                     class="org.apache.axis2.engine.RequestURIBasedDispatcher"&gt;
+                     class="org.apache.axis2.dispatchers.RequestURIBasedDispatcher"&gt;
                 &lt;order phase="Dispatch"/&gt;
             &lt;/handler&gt;
 
             &lt;handler name="SOAPActionBasedDispatcher"
-                     class="org.apache.axis2.engine.SOAPActionBasedDispatcher"&gt;
+                     class="org.apache.axis2.dispatchers.SOAPActionBasedDispatcher"&gt;
                 &lt;order phase="Dispatch"/&gt;
             &lt;/handler&gt;
 
             &lt;handler name="SOAPMessageBodyBasedDispatcher"
-                     class="org.apache.axis2.engine.SOAPMessageBodyBasedDispatcher"&gt;
+                     class="org.apache.axis2.dispatchers.SOAPMessageBodyBasedDispatcher"&gt;
                 &lt;order phase="Dispatch"/&gt;
             &lt;/handler&gt;
             &lt;handler name="InstanceDispatcher"

Modified: webservices/axis2/branches/java/jaxws21/xdocs/@axis2_version_dir@/mtom-guide.html
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/jaxws21/xdocs/%40axis2_version_dir%40/mtom-guide.html?view=diff&rev=551228&r1=551227&r2=551228
==============================================================================
--- webservices/axis2/branches/java/jaxws21/xdocs/@axis2_version_dir@/mtom-guide.html (original)
+++ webservices/axis2/branches/java/jaxws21/xdocs/@axis2_version_dir@/mtom-guide.html Wed Jun 27 09:45:37 2007
@@ -254,7 +254,7 @@
   Base64 encoded strings. This configuration can be overriden in services.xml
   on the basis of per service and per operation.</p>
 </blockquote>
-<pre>&lt;parameter name="enableMTOM" locked="false"&gt;true&lt;/parameter&gt;</pre>
+<pre>&lt;parameter name="enableMTOM"&gt;true&lt;/parameter&gt;</pre>
 
 <p>You must restart the server after setting this parameter.</p>
 <a name="24"></a>
@@ -559,7 +559,7 @@
 
 <p>This can be set using the axis2.xml as follows.</p>
 <source><pre>  
-        &lt;parameter name="enableSwA" locked="false"&gt;true&lt;/parameter&gt;</pre>
+        &lt;parameter name="enableSwA"&gt;true&lt;/parameter&gt;</pre>
 </source>
 <p>"enableSwA" can also be set using the client side Options as follows</p>
 <source><pre>  
@@ -692,10 +692,10 @@
     &lt;!-- ================================================= --&gt;
     &lt;!-- Parameters --&gt;
     &lt;!-- ================================================= --&gt;
-    &lt;parameter name="cacheAttachments" locked="false"&gt;true&lt;/parameter&gt;
-    &lt;parameter name="attachmentDIR" locked="false"&gt;<em>temp directory</em>&lt;/parameter&gt;
+    &lt;parameter name="cacheAttachments"&gt;true&lt;/parameter&gt;
+    &lt;parameter name="attachmentDIR"&gt;<em>temp directory</em>&lt;/parameter&gt;
 
-    &lt;parameter name="sizeThreshold" locked="false"&gt;<em>4000</em>&lt;/parameter&gt;
+    &lt;parameter name="sizeThreshold"&gt;<em>4000</em>&lt;/parameter&gt;
     .........
     .........
 &lt;/axisconfig&gt;</pre>



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