false call

2001-12-26 Thread Himanshu Chhabra

Hi !
Now, this problem is gruelling me.
The statement is thus :

I have a intranet site for our company. I have another intranet site which 
belongs to our client.
Now, we have a set of users which belong to the client network but still 
should be able to access our company site.
We can't open our intranet to the client intranet for that would open it to 
people outside the company.
Also, don't want to open any ports other than the default 80 for http.

One of the ways we have thought is to put up an application in the client 
network which will be the authenticated entry point.
This application will send SOAP messages to a service running on our 
intranet. This web-service would simulate a browser call and get the html 
which it would send back to the application. The application would then put 
it to the client browser.

Does this sound feasible ?

Please advise.

Also, do we have a configuration mechanism by which we can pass any request 
coming to the application server through a code piece which would be say 
responsible for security ?


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




reload button

2001-12-26 Thread Crisalyn Ramos

Hi, all.

How do I disable the resubmission of a data when the reload button is
clicked?


thanks,
Cris


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




Re: false call

2001-12-26 Thread Shengmeng Liu

My suggestions follow:

 Hi !
 Now, this problem is gruelling me.
 The statement is thus :
 
 I have a intranet site for our company. I have another intranet site which 
 belongs to our client.
 Now, we have a set of users which belong to the client network but still 
 should be able to access our company site.
 We can't open our intranet to the client intranet for that would open it to 
 people outside the company.
 Also, don't want to open any ports other than the default 80 for http.
 

Your situation is similar to a typical network configuration where servers in the DMZ 
need to access the service of servers in the internal network. Your requirement can be 
accomplished by setting up a proxy server(reverse proxying)
on the client server in the DMZ. So that your client company's users will be 
authenticated by the proxy server and their requests will then be routed to your 
internal company server.

 One of the ways we have thought is to put up an application in the client 
 network which will be the authenticated entry point.
 This application will send SOAP messages to a service running on our 
 intranet. This web-service would simulate a browser call and get the html 
 which it would send back to the application. The application would then put 
 it to the client browser.
 

 Does this sound feasible ?
 
 Please advise.
 
 Also, do we have a configuration mechanism by which we can pass any request 
 coming to the application server through a code piece which would be say 
 responsible for security ?
 
This can be done either through the standard web authentication scheme (popup 
dialogbox) or through struts (form-based) scheme for which I prefer. In struts, you 
can perform user authentications for all Actions by subclassing the ActionServlet 
class and overriding its processActionPerform() method.

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

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




Re: No getter method for property (but it's there!)

2001-12-26 Thread Phillip Rhodes

The problem I found was that the property had overloaded accessor methods.

What I did was to create a new accessor method by a different name, and use 
this to refer to it within struts.



At 02:26 PM 12/21/2001 -0500, you wrote:
I have an object type Scale that I am iterating over.  There is just ONE 
property that I can not access.
For example I run this fine:
bean:write name=scalex property=scaleName filter=true/
bean:write name=scalex property=scaleDescription filter=true/


But if I have:
bean:write name=scalex property=scaleId filter=true/I get a 
No getter method for property scaleId of bean scalex error

But the property is there.  If I can access it in my jsp using the below 
method:
%
Scale x = (Scale) scalex;
out.println(hey= + x.getScaleId());
%

I can access other properties in other beans that adhere to the same 
naming convention, but this is one that it is having a problem with.

Any pointers would be appreciated!




Error encountered processing a template: 
/screens/ScaleIndex.jspjavax.servlet.ServletException: No getter method 
for property scaleId of bean scalex at 
org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:442)
 
at 
org.apache.jsp._0002ftemplates_0002fapp_0002fscreens_0002fScaleIndex_jsp._jspService(_0002ftemplates_0002fapp_0002fscreens_0002fScaleIndex_jsp.java:269)
 
at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:107) at 
javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at 
org.apache.jasper.servlet.JspServlet$JspServletWrapper.service(JspServlet.java:200) 
at 
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:379) 
at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:453) at 
javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at 
org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:565) 
at 
org.apache.catalina.core.ApplicationDispatcher.doInclude(ApplicationDispatcher.java:483)
 
at 
org.apache.catalina.core.ApplicationDispatcher.include(ApplicationDispatcher.java:408)
 
at 
org.apache.turbine.services.jsp.TurbineJspService.handleRequest(TurbineJspService.java:191)
 
at

_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


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


_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


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




Re: ActionForm is null on Action.perform()

2001-12-26 Thread Marcelo Caldas - CCSC

Sorry, after all, my config.xml wasn't that ok!
It's working now... I guess it's the hangover from the holidays!!! hehehe
- Original Message - 
From: Marcelo Caldas - CCSC [EMAIL PROTECTED]
To: Struts Users Mailing List [EMAIL PROTECTED]
Sent: Wednesday, December 26, 2001 10:06 AM
Subject: ActionForm is null on Action.perform()


 Hi!
 
 In which circumstances can a ActionForm parameter for the
 Action.perform() method be null...
 Because that's what is happening to me, although it seems that the
 config.xml file look ok!
 
 Thanks in advance,
 Marcelo,


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




RE: Redirecting Eventhandler2Eventhanlder in MulitpartRequest

2001-12-26 Thread Lawrence, Jane K

I've had a similar problem.
See:
http://www.mail-archive.com/struts-user@jakarta.apache.org/msg13730.html
If you need to pass anything on, you'll need to store in it hen session.
Unfortunately, I'm not working in a session, and haven't found a good way
around this.

- JKL
 -Original Message-
 From: Gruner, Manfred [mailto:[EMAIL PROTECTED]]
 Sent: Sunday, December 23, 2001 10:04 AM
 To: [EMAIL PROTECTED]
 Subject: Redirecting Eventhandler2Eventhanlder in MulitpartRequest
 
 
 Hi guys,
 when the Actionhandler is called and the request includes
 Multipart/form-data, I`ve got an Exception
 when I forward to another Actionhandler which by default don`t handles
 Mutipart Requests.
 The exception is ...
 
 2001-12-23 17:56:39 - Ctx( /Ecu2Web ): Exception in: R( /Ecu2Web +
 /FehlerUpdate.ecu + null) - javax.servlet.ServletException:
 MultipartIterator: no multipart request data sent
 at
 org.apache.struts.upload.MultipartIterator.parseRequest(Multip
 artIterator.ja
 va:341)
 at
 org.apache.struts.upload.MultipartIterator.init(MultipartIte
 rator.java:152
 )
 at
 org.apache.struts.upload.DiskMultipartRequestHandler.handleReq
 uest(DiskMulti
 partRequestHandler.java:65)
 at
 org.apache.struts.util.RequestUtils.populate(RequestUtils.java:735)
 at
 org.apache.struts.action.ActionServlet.processPopulate(ActionS
 ervlet.java:20
 61)
 at
 org.apache.struts.action.ActionServlet.process(ActionServlet.j
 ava:1563)
 
 where /FehlerUpdate.ecu is the second ActionHandler.
 and this one don`t have to handle any Mutipart-formdata.
 This actionhandler gets everything from the session.
 
 What can I do?
 
 Manfred Gruner
 
 gedas deutschland GmbH
 CCSE
 Pascalstrasse 11, D-10587 Berlin
 Telefon/phone +49-30-39 97-14 22
 Telefax/telefax +49-30-39 97-19 73
 mailto:[EMAIL PROTECTED]
 http://www.gedas.com 
 --
 
 
 
 --
 To unsubscribe, e-mail:   
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail: 
 mailto:[EMAIL PROTECTED]
 

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




Reload resources without restarting server

2001-12-26 Thread Chen, Fang

Hi, guys, 
 
I am pretty new to Struts. I was reading the Walk Through of the struts
example from the struts installation. In the document, it is said that You
can even reload the configuration and message resources without restarting
the container. See the end of the web.xml file for details. I do not know
where I can find how to do this. Any help will be appreciated. 
 
Thanks, 
 
Fang Chen
 
 



org.apache.struts.action.MESSAGE

2001-12-26 Thread troy

Does anyone know what the resource key org.apache.struts.action.MESSAGE is
used for? I am getting an intermittent exception that complains about the
absense of this key... Any help would be appreciated.

Thanks,

Troy


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




Re: org.apache.struts.action.MESSAGE

2001-12-26 Thread David Winterfeldt

This is the value of Action.MESSAGES_KEY.  It is used
to store the application message resources
(ApplicationResources.properties) under application
scope.

Action.MESSAGES_KEY =
org.apache.struts.action.MESSAGE

I don't know why you would get intermittent messages. 
It should load at startup and then stay cached.  You
can check that you are correctly referencing your
properties file in the web.xml.

David

--- troy [EMAIL PROTECTED] wrote:
 Does anyone know what the resource key
 org.apache.struts.action.MESSAGE is
 used for? I am getting an intermittent exception
 that complains about the
 absense of this key... Any help would be
 appreciated.
 
 Thanks,
 
 Troy
 
 
 --
 To unsubscribe, e-mail:  
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
 mailto:[EMAIL PROTECTED]
 


__
Do You Yahoo!?
Send your FREE holiday greetings online!
http://greetings.yahoo.com

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




Re: How do I remove a formBean?

2001-12-26 Thread Jonathan James

Have you tried putting

session.remove( beanName );

in the action that displays the form?

-Jonathan

- Original Message -
From: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Friday, December 21, 2001 1:16 PM
Subject: How do I remove a formBean?



 I have an app that shows a form which goes to an actionform object.  If
 its all okay, it goes to a preview screen and then if you click okay it
 goes onto a save actionclass that saves the info.  The problem is that I
 cannot get it to forget about the formbean when you go back through to
 do a second one.

 I tried playing with the scope settings to request, but then it forgets
 everything if you need to go back from the preview page.

 Any ideas?  I know it cannot be that hard, but I cannot find anything in
 the api or docs.

 Thx



 Bill Chmura
 Ensign-Bickford Industries, Inc.
 Information Technologies Department



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






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




Re: Reload resources without restarting server

2001-12-26 Thread Erik Hatcher

Actually if you look at the end of struts-config.xml; that is where you'll
find it (from the example, at least).

The action is /admin/reload.do - and is a real time-saver!

Erik


- Original Message -
From: Chen, Fang [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, December 26, 2001 11:35 AM
Subject: Reload resources without restarting server


 Hi, guys,

 I am pretty new to Struts. I was reading the Walk Through of the struts
 example from the struts installation. In the document, it is said that
You
 can even reload the configuration and message resources without restarting
 the container. See the end of the web.xml file for details. I do not know
 where I can find how to do this. Any help will be appreciated.

 Thanks,

 Fang Chen





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




RE: How do I remove a formBean?

2001-12-26 Thread wbchmura


Whoops.  I had been trying to do that, but did not make the mental leap 
that I am defining the formbean in the struts-config file...

I had been trying to do a remove by using the ActionForm passed to the 
Actionclass, but could not figure out how to do that. 

This worked fine - I thousand thanks

Bill





-Original Message-
From: jjames [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, December 26, 2001 12:43 PM
To: struts-user
Subject: Re: How do I remove a formBean?


Have you tried putting

session.remove( beanName );

in the action that displays the form?

-Jonathan

- Original Message -
From: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Friday, December 21, 2001 1:16 PM
Subject: How do I remove a formBean?



 I have an app that shows a form which goes to an actionform object.  
If
 its all okay, it goes to a preview screen and then if you click okay 
it
 goes onto a save actionclass that saves the info.  The problem is that 
I
 cannot get it to forget about the formbean when you go back through to
 do a second one.

 I tried playing with the scope settings to request, but then it 
forgets
 everything if you need to go back from the preview page.

 Any ideas?  I know it cannot be that hard, but I cannot find anything 
in
 the api or docs.

 Thx



 Bill Chmura
 Ensign-Bickford Industries, Inc.
 Information Technologies Department



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






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



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




RE: Setting Values To the html:txt tag

2001-12-26 Thread Strichartz, Beth

If you have a form bean with an attribute for CompanyName,
with get and set methods, than it should default if it is set prior

-Original Message-
From: Sudhir S. Shetty [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, December 26, 2001 12:43 AM
To: Struts Users Mailing List
Subject: Setting Values To the html:txt tag


Hi ,
   I would like to know the way to set a request parameter value to
the html:text tag.
Im trying to do it as follows:
html:text property=companyName
value=%=request.getParameter(company)%/

But Nothing is displayed kindly suggest the syntax.
Thanks in advance,
regards,
Sudhir


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


This message contains information which may be confidential and privileged.
Unless you are the addressee  (or authorized to receive for the addressee),
you may not use, copy or disclose to anyone the message or any information
contained in the message.  If you have received the message in error, please
advise the sender by reply e-mail, and delete or destroy the message. 

Thank you.


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




java.lang.IllegalAccessError: org/apache/struts/action/AddDataSourceRule

2001-12-26 Thread Cutrell, George

Any ideas why I'd be getting the following exception when my
struts-config.xml file does not have a data-sources section?

java.lang.IllegalAccessError: org/apache/struts/action/AddDataSourceRule
at org.apache.struts.action.ActionServlet.initDigester(Compiled
Code)
at
org.apache.struts.action.ActionServlet.initMapping(ActionServlet.java:1267)
at
org.apache.struts.action.ActionServlet.init(ActionServlet.java:461)
at javax.servlet.GenericServlet.init(GenericServlet.java:258)
at
com.netscape.server.servlet.servletrunner.ServletRepository.loadServlet(Comp
iled Code)
at
com.netscape.server.servlet.servletrunner.ServletRepository.createInstance(C
ompiled Code)
at
com.netscape.server.servlet.servletrunner.ServletRunner.createServletInfo(Co
mpiled Code)
at
com.netscape.server.servlet.servletrunner.AppInfo.preLoadServlets(Compiled
Code)
at
com.netscape.server.servlet.servletrunner.AppInfo.resetServlets(Compiled
Code)
at com.netscape.server.servlet.servletrunner.AppInfo.init(Unknown
Source)
at
com.netscape.server.servlet.servletrunner.ServletModule.getAppInfo(Unknown
Source)
at
com.netscape.server.servlet.servletrunner.ServletModule.getPlatformServletCo
ntext(Unknown Source)
at
com.netscape.server.servlet.platformhttp.PlatformServletContext.getContext(U
nknown Source)
at
com.netscape.server.servlet.servletrunner.WelcomeListServlet.doJSPInclude(Un
known Source)
at
com.netscape.server.servlet.servletrunner.WelcomeListServlet.streamFileToCli
ent(Compiled Code)
at
com.netscape.server.servlet.servletrunner.WelcomeListServlet.service(Compile
d Code)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:865)
at
com.netscape.server.servlet.servletrunner.ServletInfo.service(Unknown
Source)
at
com.netscape.server.servlet.servletrunner.ServletRunner.execute(Compiled
Code)
at com.kivasoft.applogic.AppLogic.execute(Compiled Code)
at com.kivasoft.applogic.AppLogic.execute(Compiled Code)
at com.kivasoft.thread.ThreadBasic.run(Native Method)
at com.kivasoft.thread.ThreadBasic.run(Native Method)
at com.kivasoft.thread.ThreadBasic.run(Native Method)
at com.kivasoft.thread.ThreadBasic.run(Native Method)
at com.kivasoft.thread.ThreadBasic.run(Compiled Code)
at java.lang.Thread.run(Compiled Code)

Thanks,
George Cutrell 
Technical Manager, Wireless Applications Development 
Nextel Communications, Inc. 
Desk:  703.433.8868 
Mobile:   703.926.7851 



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




VAJ4 Struts

2001-12-26 Thread pchowdhr


Hi folks,

I have been trying to setup Struts in VAJ 4 using Dennis Pagano's very
helpful
articles at http://www.noospherics.com/struts.htm. However, after doing
everything exactly as laid out in the articles and starting the
servlet engine and persistent name server, and then invoking
http://localhost:8080/strutsexample , I get Error 503  - Application is
currently unavailable for service. Same thing happens when I try to run
the Noos application.

Any help would be welcome.
Thanks and best,
Pritika.



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




RE: VAJ4 Struts

2001-12-26 Thread Juan Alvarado \(Struts List\)

This are the instructions I used and they worked. My environment is up and
running smoothly.

Let me know if this helps.

http://www7.software.ibm.com/vad.nsf/Data/Document2557?OpenDocumentp=1BCT=
1


**
Juan Alvarado
Internet Developer -- Manduca Management
(786)552-0504
[EMAIL PROTECTED]
AOL Instant Messenger: [EMAIL PROTECTED]

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, December 26, 2001 2:02 PM
To: Struts Users Mailing List
Subject: VAJ4  Struts



Hi folks,

I have been trying to setup Struts in VAJ 4 using Dennis Pagano's very
helpful
articles at http://www.noospherics.com/struts.htm. However, after doing
everything exactly as laid out in the articles and starting the
servlet engine and persistent name server, and then invoking
http://localhost:8080/strutsexample , I get Error 503  - Application is
currently unavailable for service. Same thing happens when I try to run
the Noos application.

Any help would be welcome.
Thanks and best,
Pritika.



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



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




RE: VAJ4 Struts

2001-12-26 Thread pchowdhr


Hello Juan,

The article you have linked to is for VAJ 3.5.3 not 4.0. Which version of
VAJ did you get working
with Struts ?

Thanks and best,
Pritika.






Juan Alvarado \(Struts List\) [EMAIL PROTECTED] on 12/26/2001
01:19:15 PM

Please respond to Struts Users Mailing List
  [EMAIL PROTECTED]

To:   Struts Users Mailing List [EMAIL PROTECTED]
cc:

Subject:  RE: VAJ4  Struts


This are the instructions I used and they worked. My environment is up and
running smoothly.

Let me know if this helps.

http://www7.software.ibm.com/vad.nsf/Data/Document2557?OpenDocumentp=1BCT
=
1


**
Juan Alvarado
Internet Developer -- Manduca Management
(786)552-0504
[EMAIL PROTECTED]
AOL Instant Messenger: [EMAIL PROTECTED]

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, December 26, 2001 2:02 PM
To: Struts Users Mailing List
Subject: VAJ4  Struts



Hi folks,

I have been trying to setup Struts in VAJ 4 using Dennis Pagano's very
helpful
articles at http://www.noospherics.com/struts.htm. However, after doing
everything exactly as laid out in the articles and starting the
servlet engine and persistent name server, and then invoking
http://localhost:8080/strutsexample , I get Error 503  - Application is
currently unavailable for service. Same thing happens when I try to run
the Noos application.

Any help would be welcome.
Thanks and best,
Pritika.



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



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








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




JavaScript error messages.

2001-12-26 Thread Gregory Dobkins


I am using Ted Husted's struts-stub example and I can't display an error
message when I cause a 'required' or 'range' error when entering properties
on the form.  I get a blank javascript dialog box.  The JavaScript is
below.  I've replaced the  return false;  with
'window.alert(error!);' but that just produces two messages.  The
original and mine.
The ApplicationResources.properties file seems to have the messages I want
 errors.required.javascript={0} is required.
 errors.invalid.javascript={0} is invalid.
but they are not being displayed and I am not sure how they would be
called.

I've extended ValidatorForm in place of ActionForm in Form.java

What am I doing wrong?

validator:javascript formName=stubForm/
script language=javascript
function submitForm(form) {
  if (validateStubForm(form)) {
form.submit.value= paused...;
return true;
  }
  else
return false;
};
/script


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




Struts book

2001-12-26 Thread George White

I heard that someone published a struts book.
Has anyone had a chance to read it -- How does it compare to on-line documentation? 

Thanks




Struts book

2001-12-26 Thread George White

I heard that someone published a struts book.
Has anyone had a chance to read it -- How does it compare to on-line documentation? 

Thanks




RE: VAJ4 Struts

2001-12-26 Thread Juan Alvarado \(Struts List\)

Pritika:

I got VAJ 4.0 professional working with struts using that article.

Thanks

**
Juan Alvarado
Internet Developer -- Manduca Management
(786)552-0504
[EMAIL PROTECTED]
AOL Instant Messenger: [EMAIL PROTECTED]

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, December 26, 2001 3:11 PM
To: Struts Users Mailing List
Subject: RE: VAJ4  Struts



Hello Juan,

The article you have linked to is for VAJ 3.5.3 not 4.0. Which version of
VAJ did you get working
with Struts ?

Thanks and best,
Pritika.






Juan Alvarado \(Struts List\) [EMAIL PROTECTED] on 12/26/2001
01:19:15 PM

Please respond to Struts Users Mailing List
  [EMAIL PROTECTED]

To:   Struts Users Mailing List [EMAIL PROTECTED]
cc:

Subject:  RE: VAJ4  Struts


This are the instructions I used and they worked. My environment is up and
running smoothly.

Let me know if this helps.

http://www7.software.ibm.com/vad.nsf/Data/Document2557?OpenDocumentp=1BCT
=
1


**
Juan Alvarado
Internet Developer -- Manduca Management
(786)552-0504
[EMAIL PROTECTED]
AOL Instant Messenger: [EMAIL PROTECTED]

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, December 26, 2001 2:02 PM
To: Struts Users Mailing List
Subject: VAJ4  Struts



Hi folks,

I have been trying to setup Struts in VAJ 4 using Dennis Pagano's very
helpful
articles at http://www.noospherics.com/struts.htm. However, after doing
everything exactly as laid out in the articles and starting the
servlet engine and persistent name server, and then invoking
http://localhost:8080/strutsexample , I get Error 503  - Application is
currently unavailable for service. Same thing happens when I try to run
the Noos application.

Any help would be welcome.
Thanks and best,
Pritika.



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



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








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



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




RE: VAJ4 Struts

2001-12-26 Thread pchowdhr


Hello Juan,

Thanks for clarifying that. Ok, so in my VAJ workspace, right now I have
the IBM XML Parser for Java, Xerces and Xalan. And as per the article, I
should remove the Xerces and Xalan and import jaxp.jar and parser.jar,
minus the org.w3c classes, right ?

Thansk and best,
Pritika.






Juan Alvarado \(Struts List\) [EMAIL PROTECTED] on 12/26/2001
02:15:59 PM

Please respond to Struts Users Mailing List
  [EMAIL PROTECTED]

To:   Struts Users Mailing List [EMAIL PROTECTED]
cc:

Subject:  RE: VAJ4  Struts


Pritika:

I got VAJ 4.0 professional working with struts using that article.

Thanks

**
Juan Alvarado
Internet Developer -- Manduca Management
(786)552-0504
[EMAIL PROTECTED]
AOL Instant Messenger: [EMAIL PROTECTED]

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, December 26, 2001 3:11 PM
To: Struts Users Mailing List
Subject: RE: VAJ4  Struts



Hello Juan,

The article you have linked to is for VAJ 3.5.3 not 4.0. Which version of
VAJ did you get working
with Struts ?

Thanks and best,
Pritika.






Juan Alvarado \(Struts List\) [EMAIL PROTECTED] on 12/26/2001
01:19:15 PM

Please respond to Struts Users Mailing List
  [EMAIL PROTECTED]

To:   Struts Users Mailing List [EMAIL PROTECTED]
cc:

Subject:  RE: VAJ4  Struts


This are the instructions I used and they worked. My environment is up and
running smoothly.

Let me know if this helps.

http://www7.software.ibm.com/vad.nsf/Data/Document2557?OpenDocumentp=1BCT
=
1


**
Juan Alvarado
Internet Developer -- Manduca Management
(786)552-0504
[EMAIL PROTECTED]
AOL Instant Messenger: [EMAIL PROTECTED]

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, December 26, 2001 2:02 PM
To: Struts Users Mailing List
Subject: VAJ4  Struts



Hi folks,

I have been trying to setup Struts in VAJ 4 using Dennis Pagano's very
helpful
articles at http://www.noospherics.com/struts.htm. However, after doing
everything exactly as laid out in the articles and starting the
servlet engine and persistent name server, and then invoking
http://localhost:8080/strutsexample , I get Error 503  - Application is
currently unavailable for service. Same thing happens when I try to run
the Noos application.

Any help would be welcome.
Thanks and best,
Pritika.



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



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








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



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








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




RE: VAJ4 Struts

2001-12-26 Thread Juan Alvarado \(Struts List\)

Pritika:

It's been a while since I did it, but I remembered I followed everything in
the article and things worked out. If you just follow the article, you
should be ok.

Thanks

**
Juan Alvarado
Internet Developer -- Manduca Management
(786)552-0504
[EMAIL PROTECTED]
AOL Instant Messenger: [EMAIL PROTECTED]

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, December 26, 2001 4:18 PM
To: Struts Users Mailing List
Subject: RE: VAJ4  Struts



Hello Juan,

Thanks for clarifying that. Ok, so in my VAJ workspace, right now I have
the IBM XML Parser for Java, Xerces and Xalan. And as per the article, I
should remove the Xerces and Xalan and import jaxp.jar and parser.jar,
minus the org.w3c classes, right ?

Thansk and best,
Pritika.






Juan Alvarado \(Struts List\) [EMAIL PROTECTED] on 12/26/2001
02:15:59 PM

Please respond to Struts Users Mailing List
  [EMAIL PROTECTED]

To:   Struts Users Mailing List [EMAIL PROTECTED]
cc:

Subject:  RE: VAJ4  Struts


Pritika:

I got VAJ 4.0 professional working with struts using that article.

Thanks

**
Juan Alvarado
Internet Developer -- Manduca Management
(786)552-0504
[EMAIL PROTECTED]
AOL Instant Messenger: [EMAIL PROTECTED]

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, December 26, 2001 3:11 PM
To: Struts Users Mailing List
Subject: RE: VAJ4  Struts



Hello Juan,

The article you have linked to is for VAJ 3.5.3 not 4.0. Which version of
VAJ did you get working
with Struts ?

Thanks and best,
Pritika.






Juan Alvarado \(Struts List\) [EMAIL PROTECTED] on 12/26/2001
01:19:15 PM

Please respond to Struts Users Mailing List
  [EMAIL PROTECTED]

To:   Struts Users Mailing List [EMAIL PROTECTED]
cc:

Subject:  RE: VAJ4  Struts


This are the instructions I used and they worked. My environment is up and
running smoothly.

Let me know if this helps.

http://www7.software.ibm.com/vad.nsf/Data/Document2557?OpenDocumentp=1BCT
=
1


**
Juan Alvarado
Internet Developer -- Manduca Management
(786)552-0504
[EMAIL PROTECTED]
AOL Instant Messenger: [EMAIL PROTECTED]

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, December 26, 2001 2:02 PM
To: Struts Users Mailing List
Subject: VAJ4  Struts



Hi folks,

I have been trying to setup Struts in VAJ 4 using Dennis Pagano's very
helpful
articles at http://www.noospherics.com/struts.htm. However, after doing
everything exactly as laid out in the articles and starting the
servlet engine and persistent name server, and then invoking
http://localhost:8080/strutsexample , I get Error 503  - Application is
currently unavailable for service. Same thing happens when I try to run
the Noos application.

Any help would be welcome.
Thanks and best,
Pritika.



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



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








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



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








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



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




Re: Struts book

2001-12-26 Thread Dick Starr

George:

Here is a recent posting from Vic regarding his book. It is available from
www.atlasbooks.com/marktplc/00670.htm  for $49.00 and is expected in their
warehouse 1/4/2002 (no books have shipped yet); it will be available from
Amazon somewhat later. I have ordered it and will report my opinion once I
receive it. I did buy Professessional JSP 2nd Edition published by Wrox
and available from www.bookpool.com (a great place to buy technical books).

Sincerely:

Dick Starr

:-[
I will take the blame for Atlas. Their real price is $49 and retro
active, so you (and others) should see that on your credit bill, but I
can't help much, no mater how much I want. I went with them since they
promised 10 day print. They will ship it before Amazon.  I hope you like
the book when you get it. It is a programmer book, but this book bus. is
not what I do as you can tell. My intention was to get out something
timely, but imperfect (as per Cathedral and Bazaar) and expose it to
day light.
:-[
Vic
(my 2nd edition will be with a major publisher, and more writers/editors
(based on my public training) due in 8 months. and I will have a lot
less control, but hopefully they know what they are doing. At this time,
I do not think I will re-print this version of book,  so quantity is
going to be limited, less then 800 at this time) :-[

Nathan Anderson wrote:

Vic,

Amazon seems to be charging $59.95 not $80 like expected.  I'm not about to
change my order from Atlasbooks.com, but all of this mis-information is
starting to wear me thin.  I can understand why you expected atlasbooks to
ship much sooner than they will, but now with Amazon being cheaper and a
similar shipping date.. it's starting to make you look pretty bad.  I
really
hope that this book meets my expectations..  I am glad to hear that the
editorial review from Amazon sounds pretty close to what I have been
expecting.

Nathan Anderson


-Original Message-
From: Vic Cekvenich [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, December 18, 2001 11:14 AM
To: [EMAIL PROTECTED]
Subject: Struts book on Amazon ...


http://www.amazon.com/exec/obidos/ASIN/0971661901/qid=1008701555/sr=1-3/ref
=
sr_1_0_3/102-5929920-5059309
(easier to order)

but the publisher will ship it much sooner and they should charge $10
less from:
http://www.atlasbooks.com/marktplc/00670.htm
but ordering from them could be a challenge, according to the posts.  I
have asked them to improve it, and they said they would.

Some reviews at news.basebeans.com : mvc programmers.

Vic



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



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



- Original Message -
From: George White [EMAIL PROTECTED]
To: Struts Users Mailing List [EMAIL PROTECTED]
Sent: Wednesday, December 26, 2001 2:18 PM
Subject: Struts book


I heard that someone published a struts book.
Has anyone had a chance to read it -- How does it compare to on-line
documentation?

Thanks




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




Re: Struts book

2001-12-26 Thread George White

Dick,

I look forward to your comments.

Thanks,
George

- Original Message -
From: Dick Starr [EMAIL PROTECTED]
To: Struts Users Mailing List [EMAIL PROTECTED]
Sent: Wednesday, December 26, 2001 4:09 PM
Subject: Re: Struts book


 George:

 Here is a recent posting from Vic regarding his book. It is available from
 www.atlasbooks.com/marktplc/00670.htm  for $49.00 and is expected in their
 warehouse 1/4/2002 (no books have shipped yet); it will be available from
 Amazon somewhat later. I have ordered it and will report my opinion once I
 receive it. I did buy Professessional JSP 2nd Edition published by Wrox
 and available from www.bookpool.com (a great place to buy technical
books).

 Sincerely:

 Dick Starr

 :-[
 I will take the blame for Atlas. Their real price is $49 and retro
 active, so you (and others) should see that on your credit bill, but I
 can't help much, no mater how much I want. I went with them since they
 promised 10 day print. They will ship it before Amazon.  I hope you like
 the book when you get it. It is a programmer book, but this book bus. is
 not what I do as you can tell. My intention was to get out something
 timely, but imperfect (as per Cathedral and Bazaar) and expose it to
 day light.
 :-[
 Vic
 (my 2nd edition will be with a major publisher, and more writers/editors
 (based on my public training) due in 8 months. and I will have a lot
 less control, but hopefully they know what they are doing. At this time,
 I do not think I will re-print this version of book,  so quantity is
 going to be limited, less then 800 at this time) :-[

 Nathan Anderson wrote:

 Vic,
 
 Amazon seems to be charging $59.95 not $80 like expected.  I'm not about
to
 change my order from Atlasbooks.com, but all of this mis-information is
 starting to wear me thin.  I can understand why you expected atlasbooks
to
 ship much sooner than they will, but now with Amazon being cheaper and a
 similar shipping date.. it's starting to make you look pretty bad.  I
 really
 hope that this book meets my expectations..  I am glad to hear that the
 editorial review from Amazon sounds pretty close to what I have been
 expecting.
 
 Nathan Anderson
 
 
 -Original Message-
 From: Vic Cekvenich [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, December 18, 2001 11:14 AM
 To: [EMAIL PROTECTED]
 Subject: Struts book on Amazon ...
 
 

http://www.amazon.com/exec/obidos/ASIN/0971661901/qid=1008701555/sr=1-3/ref
 =
 sr_1_0_3/102-5929920-5059309
 (easier to order)
 
 but the publisher will ship it much sooner and they should charge $10
 less from:
 http://www.atlasbooks.com/marktplc/00670.htm
 but ordering from them could be a challenge, according to the posts.  I
 have asked them to improve it, and they said they would.
 
 Some reviews at news.basebeans.com : mvc programmers.
 
 Vic
 
 
 
 --
 To unsubscribe, e-mail:
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
 mailto:[EMAIL PROTECTED]
 
 
 
 --
 To unsubscribe, e-mail:
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
 mailto:[EMAIL PROTECTED]
 


 - Original Message -
 From: George White [EMAIL PROTECTED]
 To: Struts Users Mailing List [EMAIL PROTECTED]
 Sent: Wednesday, December 26, 2001 2:18 PM
 Subject: Struts book


 I heard that someone published a struts book.
 Has anyone had a chance to read it -- How does it compare to on-line
 documentation?

 Thanks




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



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




force a reset of value

2001-12-26 Thread Crisalyn Ramos

Hi, all!

How do I force a reset of property values on page load. Already
overriden the public void reset(ActionMapping, HttpServletRequest)
methods but still does not reset the values on page load.

Something I am missing?


thanks,
Joy


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




RE: org.apache.struts.action.MESSAGE

2001-12-26 Thread Eslam Mohamed

This key is used to store your application resources are normally unless
overridden when initializing your ActionServlet.
And this key is store in the servlet context to be used amoung several
servlets run in the same engine.

-Original Message-
From: troy [mailto:[EMAIL PROTECTED]]
Sent: Wed, December 26, 2001 7:42 PM
To: [EMAIL PROTECTED]
Subject: org.apache.struts.action.MESSAGE


Does anyone know what the resource key
org.apache.struts.action.MESSAGE is
used for? I am getting an intermittent exception that complains about
the
absense of this key... Any help would be appreciated.

Thanks,

Troy


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


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