Re: Peculiar error with ....

2005-11-02 Thread Jacob Wilson
Yes. I dont have the .do when I run on tomcat or Borland. With WAS, it is not getting the action without the .do - Maybe, I guess somewhere a configuration needs to be done to have the server accept without .do Dave Newton <[EMAIL PROTECTED]> wrote:Jacob Wilson wrote: > > >Here is my struts-

Re: Peculiar error with ....

2005-11-02 Thread Jacob Wilson
thanks for the response Murray I have this working in tomcat and Borland. For writing this mail, I copy pasted only the required stuff (also changed names!!) - hence left out the myPage action mapping. I am not new to struts and have been working on it for quite a while My subject line

Re: Peculiar error with ....

2005-11-02 Thread Dave Newton
Jacob Wilson wrote: Here is my struts-config Any clues??? form-bean name: RoleForm action name: FormName I don't use extension mapping usually, but are you supposed to put the ".do" in the path attribute in the mapping? I don't recall having even done that. Dave

Re: Peculiar error with ....

2005-11-02 Thread Murray Collingwood
The clue isyou haven't read the manual. You are creating a target in your JSP called "myPage". Your struts-config doesn't define this target anywhere. It needs to be in your action-mappings. Also, because the target includes a form you need to specify the "NAME" attribute to identify a

Re: Peculiar error with ....

2005-11-02 Thread Jacob Wilson
Hi Dave - Even without the name attribute it is the same !!! Here is my struts-config Any clues??? Thanks Jacob Dave Newton <[EMAIL PROTECTED]> wrote: Jacob Wilson wrote: >I have a problem with my jsps after migrat

Re: Peculiar error with ....

2005-11-02 Thread Murray Collingwood
The NAME attribute doesn't work in html:form, it is replaced by the ID attribute. Cheers mc On 2 Nov 2005 at 14:32, Dave Newton wrote: > Jacob Wilson wrote: > > >I have a problem with my jsps after migrating my application from tomcat to Websphere. I use the struts-html taglibs in my jsps. Wh

Re: Peculiar error with ....

2005-11-02 Thread Dave Newton
Jacob Wilson wrote: I have a problem with my jsps after migrating my application from tomcat to Websphere. I use the struts-html taglibs in my jsps. When I use the normal html form tag like below, everything looks fine and the page gets displayed without problems. When I use the struts-h

Peculiar error with ....

2005-11-02 Thread Jacob Wilson
Hello All - I have a problem with my jsps after migrating my application from tomcat to Websphere. I use the struts-html taglibs in my jsps. When I use the normal html form tag like below, everything looks fine and the page gets displayed without problems. <%@ page language="java"%> <%@ tagl