RE: Action path from Flash

2004-11-28 Thread Fedor Smirnoff
Jack On Fri, 26 Nov 2004 22:37:05 -0800, Fedor Smirnoff <[EMAIL PROTECTED]> wrote: > Hi, > > I am trying to call an action from a Flash file. My applications are all > called as such: > > Main.com/app1 > > Main.com/app2 > > The problem is that I want t

RE: Action path from Flash

2004-11-28 Thread Fedor Smirnoff
Jack On Fri, 26 Nov 2004 22:37:05 -0800, Fedor Smirnoff <[EMAIL PROTECTED]> wrote: > Hi, > > I am trying to call an action from a Flash file. My applications are all > called as such: > > Main.com/app1 > > Main.com/app2 > > The problem is that I want t

Action path from Flash

2004-11-26 Thread Fedor Smirnoff
Hi, I am trying to call an action from a Flash file. My applications are all called as such: Main.com/app1 Main.com/app2 The problem is that I want to keep flash script universal so I call action as such: /myAction.do However, what happens is that Main.com/myAction.do is called

Action path from Flash

2004-11-26 Thread Fedor Smirnoff
Hi, I am trying to call an action from a Flash file. My applications are all called as such: Main.com/app1 Main.com/app2 The problem is that I want to keep flash script universal so I call action as such: /myAction.do However, what happens is that Main.com/myAction.do is called

RE: populating multiple action forms

2004-10-14 Thread Fedor Smirnoff
ng, and the ActionForm is supposed to represent an html , and you really only submit one form at a time. Why not use BeanUtils to copy between forms? For your special case, the add'l lines of code to do it shouldn't hurt too much. Hubert On Thu, 14 Oct 2004 12:40:21 -0700, Fedor Smirnoff

RE: populating multiple action forms

2004-10-14 Thread Fedor Smirnoff
ng, and the ActionForm is supposed to represent an html , and you really only submit one form at a time. Why not use BeanUtils to copy between forms? For your special case, the add'l lines of code to do it shouldn't hurt too much. Hubert On Thu, 14 Oct 2004 12:40:21 -0700, Fedor Smirnoff

populating multiple action forms

2004-10-14 Thread Fedor Smirnoff
Can I populate multiple action forms form one jsp file/ one action. I know I can access other forms with session and pull variables from request to populate secondary action form, however, is there a better way to do it? Thanks Fedor --

populating multiple action forms

2004-10-14 Thread Fedor Smirnoff
Can I populate multiple action forms form one jsp file/ one action. I know I can access other forms with session and pull variables from request to populate secondary action form, however, is there a better way to do it? Thanks Fedor --

action form extending action form?

2004-10-12 Thread Fedor Smirnoff
Hi, Cant figure this one out. Let's say I have an: ActionForm form1 and Action action1 that persist throughout the application and used by different processes as a final step. Now I got an action2 where I need to process another actionform form2 right before I pass on to the action1 that proces

action form extending action form?

2004-10-12 Thread Fedor Smirnoff
Hi, Cant figure this one out. Let's say I have an: ActionForm form1 and Action action1 that persist throughout the application and used by different processes as a final step. Now I got an action2 where I need to process another actionform form2 right before I pass on to the action1 that proces

Setting Extended ActionForm

2004-06-15 Thread Fedor Smirnoff
Hi, Not sure if I can explain it, but I will try. Basically I have ActionForm1 with Action1 and ActionForm2(extends ActionForm1) with Action2 AF1 has get/set method for some arrayList. Now I have a form that posts to Action2 and uses values from AF2, however, an arrayList is beng pulled from AF1

Setting Extended ActionForm

2004-06-15 Thread Fedor Smirnoff
Hi, Not sure if I can explain it, but I will try. Basically I have ActionForm1 with Action1 and ActionForm2(extends ActionForm1) with Action2 AF1 has get/set method for some arrayList. Now I have a form that posts to Action2 and uses values from AF2, however, an arrayList is beng pulled from AF1

adding jsessionid without

2004-03-31 Thread Fedor Smirnoff
Hi, I have a couple of links that are printed from custom tags so I cannot use html:link, I know I can just add ;jsessionid= but is there a way to determine if there is a need for jsessionid to be added to the link, same way