You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by de...@apache.org on 2005/07/05 08:12:32 UTC

svn commit: r209226 - in /webservices/axis/trunk/java/xdocs: mail-transport.html mtom-guide.html userguide.html

Author: deepal
Date: Mon Jul  4 23:12:29 2005
New Revision: 209226

URL: http://svn.apache.org/viewcvs?rev=209226&view=rev
Log:
updtaed some of them , fixed spelin mistakes and links problems

Modified:
    webservices/axis/trunk/java/xdocs/mail-transport.html
    webservices/axis/trunk/java/xdocs/mtom-guide.html
    webservices/axis/trunk/java/xdocs/userguide.html

Modified: webservices/axis/trunk/java/xdocs/mail-transport.html
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/xdocs/mail-transport.html?rev=209226&r1=209225&r2=209226&view=diff
==============================================================================
--- webservices/axis/trunk/java/xdocs/mail-transport.html (original)
+++ webservices/axis/trunk/java/xdocs/mail-transport.html Mon Jul  4 23:12:29 2005
@@ -1,3 +1,4 @@
+<!-- saved from url=(0022)http://internet.e-mail -->
 <html>
 <head>
 <title>Mail transport</title>
@@ -5,14 +6,15 @@
 </head>
 
 <body><h1>Mail transport</h1>
-<p>The inner workings of the mail transport has two parts the transport Sender and the transport Listener. Here the transport Listener is a basic email client which will be on a loop checking for new messages for a particular email address. When an email comes in it will be tunnelled into the Axis engine.</p>
-<p>When you think in terms of usage the mail transport in Axis2 can be used in two ways. It can be used against a generic mail server or it can be used like a mailet. The simple mailet provided will direct any message that is comming to a particular address into the Axis engine. The engine will process the message and will use the Transport sender to send the reply.</p>
+<p>The inner workings of the mail transport has two parts the transport Sender and the transport Listener. Here the transport Listener is a basic email client which will be on a loop checking for new messages for a particular email address. When an email comes in it will be tunneled into the Axis engine.</p>
+<p>When you think in terms of usage the mail transport in Axis2 can be used in two ways. It can be used against a generic mail server or it can be used like a mailet. The simple mailet provided will direct any message that is coming to a particular address into the Axis engine. The engine will process the message and will use the Transport sender to send the reply.</p>
 <p></p>
- <a>First you need following additional jar dependencies in the classpath, they can be found by downloading the <a href="http://java.sun.com/products/javamail/">JavaMail API</a> ans <a href="http://java.sun.com/products/javabeans/jaf/">JavaBeans Activation Framework</a>.</p>
+<p>To get started on the mail transport you need the following additional jar dependencies on the classpath.</p>
   <ol>
-  <LI>mail.jar&nbsp;(This contains com.sun.mail.* and javax.mail.*)</LI>
-  <LI>activation.jar</LI>
+  <li>mail.jar&nbsp;(This contains com.sun.mail.* and javax.mail.*)</li>
+  <li>activation.jar</li>
   </ol>
+<p>These can be downloaded from <a href="http://java.sun.com/products/javamail/">JavaMail API</a> and <a href="http://java.sun.com/products/javabeans/jaf/">JavaBeans Activation Framework</a>.</p>
 
 <h2>Transport Sender</h2>
 <p>You need a mail account in a SMTP server, and Mail transport sender can be activated by adding following entry to the axis2.xml file.</p>
@@ -96,8 +98,8 @@
 
   <h2>Using the included mail server</h2>
 
-  <p>The inbuilt mail server has to be started from code by providing a ConfigurationContext for the time being, because the standalone and the mailet functionality is tightly bound with the mailet functionality.</p>
-  <p>This server itself does not need any configuration or tinkering to work. A configurationContext and the ports to operate on are the only details needed. The server will store the mails in memory against the recipient till the recipient pops it from the server. To facilitate the use in *nix environments as a non root user the pop and smtp ports used by default config/test cases are (1024 + 25) and (1024 + 110).</p>
+  <p>The inbuilt mail server has to be started from code by providing a ConfigurationContext for the time being, because the standalone and the mailet functionalities are tightly bound.</p>
+  <p>The server itself does not need any configuration or tinkering to work. A ConfigurationContext and the ports to operate on are the only details needed. The server will store the mails in memory against the recipient till the recipient pops it from the server. To facilitate the use in *nix environments as a non root user the pop and smtp ports used by default config/test cases are (1024 + 25) and (1024 + 110).</p>
 
   <hr/>
 

Modified: webservices/axis/trunk/java/xdocs/mtom-guide.html
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/xdocs/mtom-guide.html?rev=209226&r1=209225&r2=209226&view=diff
==============================================================================
--- webservices/axis/trunk/java/xdocs/mtom-guide.html (original)
+++ webservices/axis/trunk/java/xdocs/mtom-guide.html Mon Jul  4 23:12:29 2005
@@ -65,7 +65,7 @@
 			image.addChild(textData);</pre>
 </source>
 <h3>Sending MTOM optimised messages from  client side </h3>
-<p>First of all you need to have the above mentioned jars in the classpath. Then set the <source>&quot;enableMTOM&quot;</source> property in the call to true, when sending messages.</p>
+<p>First of all you need to have the above mentioned jars in the classpath. Then set the &quot;enableMTOM&quot; property in the call to true, when sending messages.</p>
 <source>
    <pre>	  		Call call = new Call();
     		call.setTo(targetEPR);

Modified: webservices/axis/trunk/java/xdocs/userguide.html
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/xdocs/userguide.html?rev=209226&r1=209225&r2=209226&view=diff
==============================================================================
--- webservices/axis/trunk/java/xdocs/userguide.html (original)
+++ webservices/axis/trunk/java/xdocs/userguide.html Mon Jul  4 23:12:29 2005
@@ -1055,8 +1055,8 @@
 plug-ins, the Codegen tool even has the accompanying Ant task and the command 
 line tool.  </p>
 <p>Documentation for the code generator tool is available for the
-<a href="file:///G:/Documents%20and%20Settings/Jaliya/Desktop/CodegenToolReference.html">Codegen wizard</a> and the
-<a href="file:///G:/Documents%20and%20Settings/Jaliya/Desktop/CodegenToolReference.html">Service Archiver</a>.</p>
+<a href="CodegenToolReference.html">Codegen wizard</a> and the
+<a href="ServiceArchiveToolReference.html">Service Archiver</a>.</p>
 <hr/>
 <p>&nbsp;</p>