Changes for page Development-WO Adaptor

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

From version 2.1
edited by smmccraw
on 2007/07/08 09:46
Change comment: There is no comment for this version
To version 11.1
edited by Ravi Mendis
on 2011/05/03 21:31
Change comment: There is no comment for this version

Summary

Details

Page properties
Title
... ... @@ -1,1 +1,1 @@
1 -Programming__WebObjects-Web Applications-Development-WO Adaptor
1 +Development-WO Adaptor
Author
... ... @@ -1,1 +1,1 @@
1 -XWiki.smmccraw
1 +XWiki.rmendis
Content
... ... @@ -1,6 +1,6 @@
1 -== Overview ==
1 +== Overview ==
2 2  
3 -The [[WOAdaptor>>http://developer.apple.com/documentation/WebObjects/Reference/API/com/webobjects/appserver/WOAdaptor.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>>http://webobjects.mdimension.com/javadoc/WebObjects/5.4.2/com/webobjects/appserver/WOAdaptor.html]] 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,6 +8,12 @@
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 is 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 is 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 -Category:WebObjects
13 +=== Netty WOAdaptor ===
14 +
15 +The Wonder ERWOAdaptor framework includes a new WOAdaptor based on [[Netty>>http://www.jboss.org/netty]]. 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...
16 +
17 +=== AJP Adaptor ===
18 +
19 +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.