Author: saliya Date: Tue Jul 7 04:22:13 2009 New Revision: 40946 URL: http://wso2.org/svn/browse/wso2?view=rev&revision=40946
Log: Added FAQ Modified: trunk/esb/java/docs/xdoc/faq.xml trunk/esb/java/docs/xdoc/mediators/cache.xml Modified: trunk/esb/java/docs/xdoc/faq.xml URL: http://wso2.org/svn/browse/wso2/trunk/esb/java/docs/xdoc/faq.xml?rev=40946&r1=40945&r2=40946&view=diff ============================================================================== --- trunk/esb/java/docs/xdoc/faq.xml (original) +++ trunk/esb/java/docs/xdoc/faq.xml Tue Jul 7 04:22:13 2009 @@ -21,15 +21,89 @@ PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> - <head> - <meta http-equiv="content-type" content="text/html; charset=iso-8859-1"/> - <title> - WSO2 ESB - Documentation Index - </title> - <link href="css/esb-docs.css" rel="stylesheet"/> - <link href="styles/dist-docs.css" rel="stylesheet" type="text/css" media="all"/> - </head> - <body xml:lang="en"> - <h1>WSO2 Enterprise Service Bus (ESB) Frequently Asked Questions</h1> - </body> + <head> + <meta http-equiv="content-type" content="text/html; charset=iso-8859-1"/> + <title> + WSO2 ESB - Frequently Asked Questions + </title> + <link href="css/esb-docs.css" rel="stylesheet"/> + <link href="styles/dist-docs.css" rel="stylesheet" type="text/css" media="all"/> + </head> + <body xml:lang="en"> + <h1>WSO2 Enterprise Service Bus (ESB) Frequently Asked Questions</h1> + <h2> + Table of Contents + </h2> + <div class="toc"> + <ul> + <li> + <a href="#faq1">How to import/load the configuration from file system?</a> + </li> + <li> + <a href="#faq2">How to export/write the configuration to the file system?</a> + </li> + <li> + <a href="#faq3">How to specify HTTP proxy settings?</a> + </li> + <li> + <a href="#faq4">How to specifiy JMS reply queue?</a> + </li> + </ul> + </div> + <h2 id="faq1"> + How to import/load the configuration from file system? + </h2> + <p> + WSO2 ESB by default stores configuration changes to the integrated registry. This enables the WSO2 ESB + to load the exact configuration at the next start of the server. If the user wishes to load the + configuration from file system instead from the registry, however, he/she may do it using the following + option when starting the WSO2 ESB server. + + Note: This will overwrite the existing registry configuration. + </p> + <pre xml:space="preserve"> -DuseSynapseXML</pre> + <p> + The configuration will be loaded from the synapse.xml file that you find inside $ESB_HOME/conf. + </p> + <h2 id="faq2"> + How to export/write the configuration to the file system? + </h2> + <p> + Log in to the Management Console and click on Synapse menu on the left hand side. This will show the entire + configuration and there you will find the option to save the configuration. The configuration will be + saved to the synapse.xml file that you find inside $ESB_HOME/conf. + </p> + <h2 id="faq3"> + How to specify HTTP proxy settings? + </h2> + <p> + Edit the following section of the $ESB_HOME/conf/axis2.xml to include proper values for an HTTP proxy server + configuration. + </p> + <pre xml:space="preserve"> <transportSender name="http" class="org.apache.synapse.transport.nhttp.HttpCoreNIOSender"> + <parameter name="non-blocking" locked="false">true</parameter> + <parameter name="warnOnHTTP500" locked="false">*</parameter> + <parameter name="http.proxyHost" locked="false">localhost</parameter> + <parameter name="http.proxyPort" locked="false">3128</parameter> + <parameter name="http.nonProxyHosts" locked="false">localhost|moon|sun</parameter> + </transportSender> + </pre> + <h2 id="faq4"> + How to specifiy JMS reply queue? + </h2> + <p> + Specify the transport.jms.ReplyDestination property in the endpoint configuration for your JMS endpoint. + See the following sample configuration. + </p> + <pre xml:space="preserve"> <address uri="jms:/someService? + transport.jms.ConnectionFactoryJNDIName=someConnectionfactory& + java.naming.factory.initial=someInitialContextFactory&transport.jms.ReplyDestination=replyQueue"/></pre> + <p> + If you are using a proxy service then you can specify the reply desitination as a parameter in the proxy + service configuration as well. Use the following parameter in your configuration. + </p> + <pre xml:space="preserve"> <parameter name="transport.jms.ReplyDestination">replyQueue</parameter> + </pre> + + </body> </html> \ No newline at end of file Modified: trunk/esb/java/docs/xdoc/mediators/cache.xml URL: http://wso2.org/svn/browse/wso2/trunk/esb/java/docs/xdoc/mediators/cache.xml?rev=40946&r1=40945&r2=40946&view=diff ============================================================================== --- trunk/esb/java/docs/xdoc/mediators/cache.xml (original) +++ trunk/esb/java/docs/xdoc/mediators/cache.xml Tue Jul 7 04:22:13 2009 @@ -13,7 +13,7 @@ <body> <h2>Cache Mediator</h2> -<p>When a message comes Cache mediator checks weather a equivalent message is +<p>When a message comes Cache mediator checks weather an equivalent message is seen before. If the message is seen before it will execute a specified sequence. It uses message hashes for checking the equivalence of messages. The moment cache meditor finds that the message is a cached message, it will fetch _______________________________________________ Esb-java-dev mailing list [email protected] https://wso2.org/cgi-bin/mailman/listinfo/esb-java-dev
