Re: two resource bundles?!

2003-10-30 Thread Ben Anderson
http://jakarta.apache.org/struts/api/org/apache/struts/action/Action.html#getResources(javax.servlet.http.HttpServletRequest,%20java.lang.String)
http://marc.theaimsgroup.com/?l=struts-userm=106641120427697w=2

From: Otto, Frank [EMAIL PROTECTED]
Reply-To: Struts Users Mailing List [EMAIL PROTECTED]
To: Struts-User (E-Mail) [EMAIL PROTECTED]
Subject: two resource bundles?!
Date: Thu, 30 Oct 2003 13:31:16 +0100
Hi,

I have defined two properties files in my struts-config.xml:

message-resource parameter=resource1/
message-resource parameter=resource2 key=prop2/
If I want to access the second properties-file in a jsp-page I will use 
this:

bean:message key=label.key bundle=prop2/

It functions, but how must I use it in action classes?

// standard bundle
MessageResources res1 = 
(MessageRessource)request.getAttribute(Globals.MESSAGES_KEY)

// second bundle
MessageResources res2 = (MessageRessource)request.getAttribute(???)
Has anyone an idea?



Regards,

Frank
_
Enjoy MSN 8 patented spam control and more with MSN 8 Dial-up Internet 
Service.  Try it FREE for one month!   http://join.msn.com/?page=dept/dialup

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


RE: two resource bundles?!

2003-10-30 Thread Navjot Singh
not sure by might be 
Globals.MESSAGES_KEY + prop2


-Original Message-
From: Otto, Frank [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 30, 2003 6:01 PM
To: Struts-User (E-Mail)
Subject: two resource bundles?!


Hi,
 
I have defined two properties files in my struts-config.xml:
 
message-resource parameter=resource1/
message-resource parameter=resource2 key=prop2/
 
If I want to access the second properties-file in a jsp-page I 
will use this:
 
bean:message key=label.key bundle=prop2/
 
It functions, but how must I use it in action classes?
 
// standard bundle
MessageResources res1 = 
(MessageRessource)request.getAttribute(Globals.MESSAGES_KEY)
 
// second bundle
MessageResources res2 = (MessageRessource)request.getAttribute(???)
 
 
Has anyone an idea?
 
 
 
Regards,
 
Frank


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



Re: two resource bundles?!

2003-10-30 Thread Manish Singla
Try this..
// second bundle
MessageResources res2 = (MessageRessource)request.getAttribute(prop2).

I assume you are not using struts modules.

see following also...
org.apache.struts.action.Action
protected MessageResources getResources(javax.servlet.http.HttpServletRequest request,
java.lang.String key)



Otto, Frank wrote:

 Hi,

 I have defined two properties files in my struts-config.xml:

 message-resource parameter=resource1/
 message-resource parameter=resource2 key=prop2/

 If I want to access the second properties-file in a jsp-page I will use this:

 bean:message key=label.key bundle=prop2/

 It functions, but how must I use it in action classes?

 // standard bundle
 MessageResources res1 = (MessageRessource)request.getAttribute(Globals.MESSAGES_KEY)

 // second bundle
 MessageResources res2 = (MessageRessource)request.getAttribute(???)


 Has anyone an idea?



 Regards,

 Frank


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