Re: Returning results from HTTPConnection request...
Re: Returning results from HTTPConnection request...
- Subject: Re: Returning results from HTTPConnection request...
- From: Chuck Hill <email@hidden>
- Date: Sun, 11 Dec 2005 22:03:15 -0800
On Dec 11, 2005, at 9:44 PM, Nathan Walker wrote:
I am overlooking something it seems or maybe it's just been a long
day but I'm just trying to get the response from the HTTPConnection
request and return that in the current browser window. Below is the
code I've tried:
String buildURL = "http://" + myApp.host() + ":" + myApp.port() + "/
cgi-bin/WebObjects/BSSKIOSK.woa/wa/CashRead?wosid=" +
mySess.sessionID() +
"&completed=1&totalcash=" + pr.cashInserted;
WORequest requestFinish = new WORequest("POST",buildURL,"HTTP/
1.1",null,null,null);
WOHTTPConnection connectTo = new WOHTTPConnection(myApp.host
(),myApp.port().intValue());
connectTo.sendRequest(requestFinish);
WOResponse response = connectTo.readResponse();
return response;
You can see that the WOHTTPConnection is Posting to a Direct
Action, I'd like to return the results from that Direct Action to
the browser. This is being done is a private Thread and that's why
I need to do it this way. Can I return the results into the current
browser window ? It seems to of course just return the WOResponse
object which doesn't generate a response in the current browser
window ??
Where is this code? In some action method called during
invokeAction? You would need to hang onto the response and then in
appendToResponse do
response.setContent(responseFromDA.content());
We probably need more information to answer properly.
Chuck
--
Coming in 2006 - an introduction to web applications using WebObjects
and Xcode http://www.global-village.net/wointro
Practical WebObjects - for developers who want to increase their
overall knowledge of WebObjects or who are trying to solve specific
problems. http://www.global-village.net/products/practical_webobjects
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden