That's true Brian, but if he doesn't have appropriate code on the
client-side to handle the response, it won't do much good in this
particular case.  Remember he's getting the response via XMLHttpRequest.

Then again, if you were to return a redirecting forward, that might do the
trick.  I'm actually not sure how XMLHttpRequest reacts to a redirect...
that's an interesting question :)

Frank

On Mon, April 3, 2006 1:32 pm, Brian Long said:
>
> Ashish,
>
> There's a built-in method you can use to return to the calling jsp.
>
> Try return (mapping.getInputForward());
>
> from your Action class.
>
> hope that helps,
> -Brian
>
>
> On Mon, 2006-04-03 at 10:19 -0700, Ashish Kulkarni wrote:
>> hi
>> I am trying to learn AJAX and struts together (will
>> use some standard solution later)
>> This is what i am doing,
>> In my jsp i have 2 text fields FirstName and LastName
>> when the user enters FirstName and hits enter i call a
>> javascript which creates XMLHttpRequest objects, and
>> calls a Action class using GET , it send parameter as
>> name  some thing like this
>> GetNameAction.do?first=name
>>
>> this Action class then populates last name,
>> In servlet i would just do
>> PrintWriter out = response.getWriter();
>> out.println(last); and works fine, but i dont want to
>> do it that way,
>> In Struts, i want to populate ActionForm, and then
>> refresh jsp page
>>
>> How do i do it
>>
>> Ashish
>>
>> __________________________________________________
>> Do You Yahoo!?
>> Tired of spam?  Yahoo! Mail has the best spam protection around
>> http://mail.yahoo.com
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: [EMAIL PROTECTED]
>> For additional commands, e-mail: [EMAIL PROTECTED]
>>
> --
> Brian M. Long
> Middleware Services, Virginia Tech
> "Ancora Imparo (I am still learning)" - Michaelangelo, age 87
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to