I can't find method WOGWTServerUtil.extractUpdateContainerFromResponse(request, response) in WOGWT (wogwt.jar: wogwt/WOGWTServerUtil.class). Below is the "WOGWT - Getting Started" doc which says to add the dispatchRequest() method to your application subclass.

8) Add this function to your Application class (the WOApplication subclass). This will allow us to return partial pages as ajax responses.
PROJECTROOT/Sources/your/app/Application.java

        public WOResponse dispatchRequest(WORequest request) {
                WOResponse response = super.dispatchRequest(request);
                WOGWTServerUtil.extractUpdateContainerFromResponse(request, 
response);
                return response;
        }

JR
 _______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list      ([email protected])
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to [email protected]

Reply via email to