RE: Compilation Problem. Help!

2003-10-17 Thread Carey Nation
I'm not completely sure here, but I think putting stuff in ext just makes them visible to the jre, not javac. Put -cp yourjar.jar on the javac line (or if you're using Ant, add them to the classpath reference), and see if it helps... I have all the required jar files in the MyApp/WEB-INF/lib

RE: Passing parameters between forms

2003-10-13 Thread Carey Nation
I have some vague memory (perhaps completely wrong) that the forms are stored wherever they are stored using the names that you specify in struts-config. It may not be the nicest way to do this, but I'm pretty sure that, given session scope on your forms, you can do something like (FormA)forma =

Re: newbie: Best Practice Struts/Value-Objects?

2003-10-02 Thread Carey Nation
Write a tag that emits the hidden stuff. Put it everywhere. Then there's only one maintenence point... Hi John, Yeah, that is one (messy) solution to my problem. My concern is I would have to do add those 15 fields in every JSP page that sends the VO back, and if I have to make a change to

Re: How-to hide JSPs in WEB-INF (OT?)

2003-09-29 Thread Carey Nation
snippage Is there a how-to on hiding JSPs in WEB-INF? I keep getting 404 errors after moving them there. I google'd the problem, but didn't really find a how-to, but did find a couple posts that say this might be impossible with WebLogic 6.1. Can anyone confirm or deny that? snippage The

Re: How-to hide JSPs in WEB-INF (OT?)

2003-09-29 Thread Carey Nation
WEB-INF isn't the root of your application is it? You have the input as /WEB-INF/... Shouldn't it be /myapp/WEB-INF/mypage.jsp? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Forwarding to existing servlet from Struts??

2003-09-17 Thread Carey Nation
I need to forward from a struts action to a servlet. How can this be done? I would think just make the input for the forward the url for the servlet... - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

RE: Compile Error for bean:define

2003-09-06 Thread Carey Nation
It _may_ be, and I'm just shooting in the dark here, that it's defined by default someplace other than as a local variable (like in the request). Try adding scope=page to the bean:define and see if that makes any difference. HTH, Carey -Original Message- From: [EMAIL PROTECTED]