Changes for page Development-WO Adaptor

Last modified by Pascal Robert on 2012/07/19 21:50

From version 36.1
edited by Pascal Robert
on 2012/01/30 22:22
Change comment: There is no comment for this version
To version 37.1
edited by Pascal Robert
on 2012/07/19 21:50
Change comment: Migrated to Confluence 4.0

Summary

Details

Page properties
Parent
... ... @@ -1,0 +1,1 @@
1 +Development Architecture
Tags
... ... @@ -1,0 +1,1 @@
1 +deployment
Content
... ... @@ -1,6 +1,6 @@
1 1  == Overview ==
2 2  
3 -The [[WOAdaptor>>http:wocommunity.orgdocumentsjavadocWebObjects5.4.2comwebobjectsappserverWOAdaptor.html]] layer of WebObjects can be thought of as a broker of requests and responses. Its role in the framework is to:
3 +The [[WOAdaptor>>url:http://wocommunity.org/documents/javadoc/WebObjects/5.4.2/com/webobjects/appserver/WOAdaptor.html||shape="rect"]] layer of WebObjects can be thought of as a broker of requests and responses. Its role in the framework is to:
4 4  
5 5  1. Receive incoming requests of some type (typically HTTP)
6 6  1. Package them into a WORequest
... ... @@ -8,22 +8,22 @@
8 8  1. Receive the WOResponse back from the WOApplication
9 9  1. Send the response back across whatever protocol the adaptor handles
10 10  
11 -In most cases, you will be dealing with WODefaultAdaptor, which provides support for HTTP. However, adaptors could receive requests from any number of sources. As an example, Project Wonder includes ERIMAdaptor, which provides support for requests and responses over Instant Messaging networks.
11 +In most cases, you will be dealing with WODefaultAdaptor, which provides support for HTTP. However, adaptors could receive requests from any number of sources. As an example, Project Wonder includes ERIMAdaptor, which provides support for requests and responses over Instant Messaging networks.
12 12  
13 13  === Netty WOAdaptor ===
14 14  
15 -The Wonder ERWOAdaptor framework includes a new WOAdaptor based on [[Netty>>http://www.jboss.org/netty]].
16 -JBoss [[Netty>>http://www.jboss.org/netty]], Grizzly and Apache Mina are frameworks for Java [[NIO>>http://en.wikipedia.org/wiki/New_I/O]]. But Netty is widely regarded in the industry as being the fastest and most scalable...
15 +The Wonder ERWOAdaptor framework includes a new WOAdaptor based on [[Netty>>url:http://www.jboss.org/netty||shape="rect"]].
16 + JBoss [[Netty>>url:http://www.jboss.org/netty||shape="rect"]], Grizzly and Apache Mina are frameworks for Java [[NIO>>url:http://en.wikipedia.org/wiki/New_I/O||shape="rect"]]. But Netty is widely regarded in the industry as being the fastest and most scalable...
17 17  
18 18  ==== How To Use ====
19 19  
20 20  1. Include the ERWOAdaptor framework in your app project and rebuild.
21 -1. Run the app with the property ##WOAdaptor WONettyAdaptor##
21 +1. Run the app with the property {{code language="none"}}-WOAdaptor WONettyAdaptor{{/code}}
22 22  
23 23  ==== Limitations ====
24 24  
25 -Currently, there is a fixed file size limit for file uploads. This is settable via a property ##WOFileUpload.sizeLimit##. It defaults to 100MB.
25 +Currently, there is a fixed file size limit for file uploads. This is settable via a property {{code language="none"}}WOFileUpload.sizeLimit{{/code}}. It defaults to 100MB.
26 26  
27 27  === AJP Adaptor ===
28 28  
29 -The LEWOStuff frameworks include a WOAdaptor which can be used to supply requests from an [[AJP>>http://en.wikipedia.org/wiki/Apache_JServ_Protocol]] supplier such as Apache2.
29 +The LEWOStuff frameworks include a WOAdaptor which can be used to supply requests from an [[AJP>>url:http://en.wikipedia.org/wiki/Apache_JServ_Protocol||shape="rect"]] supplier such as Apache2.