sonusgr sonusgr

Greenhorn
+ Follow
since Apr 10, 2006
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by sonusgr sonusgr

Hi Ivan, thanks for your quick reply!

The weird thing is that it works fine with Axis, but it fails with jax-ws (which is really what we need to work with)
I am posting an extract from the wsdl, if could spot anything that I cannot I ll be really grateful!

14 years ago
Hi guys. I am really stuck in something.

I have a dynamically generated form (meaning that you can add or remove textfields ) using Map-backed ActionForms. It's actually doing what it supposed to do meaning submitting the values to the action class.
the thing is when I am adding a new textfield the values from the previous textfields are reset. And of course I don't want this to happen. So I need to do is get the values from the formbean and populate the text fields. The thing is that this formbean seems to be available only when I am performing the action for submitting the form and not when trying to modify the form (like adding or deleting textfields)

So what I tried to do is use LookupDispatchAction so that the different actions are gonna be sharing the same formbean. But seems that is only populated when I am calling the assigned method in the action
When I am calling from the other two methods I am getting null values
It's a bit confusing I know. But I am really stuck. Any help is higly appreciated

Thanks a lot
17 years ago
Hi guys.
I ve got an action class that calls an EJB that returns a list. I am storing that list in the request scope and getting it back in the front end





As you can see I also want to use a check box for deleting the elements in my collection. I am retrieving the values normally so there is not problem here.
But the problem I am facing is that I need to have these values in a bean (Form) and call that form from another Action

something like





But of course I am getting an error message that "clients could not be found in any scope". So how am I gonna call the Form that I want my selected values stored in and at the same time extracting the collection that I have stored from the previus Action servlet??

Any reply is highly appreciated.

Thanks
17 years ago