RE: Struts/JBoss Developers

2004-02-23 Thread Yibing Li
Folks,

We are actively looking for middle level java developers at GlobalNetXChange
(www.gnx.com). If you have 2-3 years of industry experience using
Struts/JBoss and are looking for a job, please send me your resume at
[EMAIL PROTECTED]

Thanks,

Yibing



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



RE: Error deploying strus application to JBOSS --- The content of element type taglib must match

2004-02-02 Thread Yibing Li
Thanks, Max.

That is also my initial thoughts and I have searched for urn but could
not find it in all the tld file. I am using struts 1.1 version and have also
checked the most current version and found that all the tld files are the
same.

The same application works fine in Oracle 9iAS.



-Original Message-
From: Max Cooper [mailto:[EMAIL PROTECTED]
Sent: Friday, January 30, 2004 7:40 PM
To: Struts Users Mailing List
Subject: Re: Error deploying strus application to JBOSS --- The content
of element type taglib must match


Could your struts-bean.tld file be damaged? It seems like the exceptions you
posted are ocurring when the .tld file is being parsed, rather than when the
server is reading your web.xml specifically.

WILD GUESSES: Look for urn in the .tld file -- the parser seems to think
there is an XML element in there by that name. The second exception seems to
be complaining about the content of a taglib element -- perhaps a uri
element got changed to urn in the .tld file somehow? Or it might be bad in
the distribution and other app servers aren't as picky about it (what Struts
dist are you using? 1.1?).

-Max

- Original Message -
From: Yibing Li [EMAIL PROTECTED]
To: 'Struts Users Mailing List' [EMAIL PROTECTED]
Sent: Friday, January 30, 2004 2:17 PM
Subject: Error deploying strus application to JBOSS --- The content of
element type taglib must match



 The following are the errors I got when deploying our Struts application
to
 JBOSS. I think it is related to taglibs. In web.xml it is like:

  taglib
 taglib-uri/WEB-INF/struts-bean.tld/taglib-uri
 taglib-location/WEB-INF/struts-bean.tld/taglib-location
   /taglib

 Has anyone experienced the same problem?

 Thanks,

 Yibing

 +++

 2004-01-30 09:43:25,266 ERROR [org.apache.commons.digester.Digester] Parse
 Error at line 8 column 7: Element type urn must be declared.
 org.xml.sax.SAXParseException: Element type urn must be declared.
 org.xml.sax.SAXParseException

org.apache.xerces.util.ErrorHandlerWrapper.createSAXParseException(org.apach
 e.xerces.xni.parser.XMLParseException)
 ErrorHandlerWrapper.java:232

 and

 2004-01-30 09:43:25,391 ERROR [org.apache.commons.digester.Digester] Parse
 Error at line 23 column 10: The content of element type taglib must
match
 (tlibversion,jspversion?,shortname,uri?,info?,tag+).
 org.xml.sax.SAXParseException: The content of element type taglib must
 match (tlibversion,jspversion?,shortname,uri?,info?,tag+).
 org.xml.sax.SAXParseException

org.apache.xerces.util.ErrorHandlerWrapper.createSAXParseException(org.apach
 e.xerces.xni.parser.XMLParseException)
 ErrorHandlerWrapper.java:232
 void org.apache.xerces.util.ErrorHandlerWrapper.error(java.lang.String,
 java.lang.String, org.apache.xerces.xni.parser.XMLParseException)
 ErrorHandlerWrapper.java:173



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




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


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



Error deploying strus application to JBOSS --- The content of element type taglib must match

2004-01-30 Thread Yibing Li

The following are the errors I got when deploying our Struts application to
JBOSS. I think it is related to taglibs. In web.xml it is like:

 taglib
taglib-uri/WEB-INF/struts-bean.tld/taglib-uri
taglib-location/WEB-INF/struts-bean.tld/taglib-location
  /taglib

Has anyone experienced the same problem?

Thanks,

Yibing

+++

2004-01-30 09:43:25,266 ERROR [org.apache.commons.digester.Digester] Parse
Error at line 8 column 7: Element type urn must be declared.
org.xml.sax.SAXParseException: Element type urn must be declared.
org.xml.sax.SAXParseException
org.apache.xerces.util.ErrorHandlerWrapper.createSAXParseException(org.apach
e.xerces.xni.parser.XMLParseException)
ErrorHandlerWrapper.java:232

and

2004-01-30 09:43:25,391 ERROR [org.apache.commons.digester.Digester] Parse
Error at line 23 column 10: The content of element type taglib must match
(tlibversion,jspversion?,shortname,uri?,info?,tag+).
org.xml.sax.SAXParseException: The content of element type taglib must
match (tlibversion,jspversion?,shortname,uri?,info?,tag+).
org.xml.sax.SAXParseException
org.apache.xerces.util.ErrorHandlerWrapper.createSAXParseException(org.apach
e.xerces.xni.parser.XMLParseException)
ErrorHandlerWrapper.java:232
void org.apache.xerces.util.ErrorHandlerWrapper.error(java.lang.String,
java.lang.String, org.apache.xerces.xni.parser.XMLParseException)
ErrorHandlerWrapper.java:173



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



Re: Error deploying strus application to JBOSS --- The content of element type taglib must match

2004-01-30 Thread Max Cooper
Could your struts-bean.tld file be damaged? It seems like the exceptions you
posted are ocurring when the .tld file is being parsed, rather than when the
server is reading your web.xml specifically.

WILD GUESSES: Look for urn in the .tld file -- the parser seems to think
there is an XML element in there by that name. The second exception seems to
be complaining about the content of a taglib element -- perhaps a uri
element got changed to urn in the .tld file somehow? Or it might be bad in
the distribution and other app servers aren't as picky about it (what Struts
dist are you using? 1.1?).

-Max

- Original Message - 
From: Yibing Li [EMAIL PROTECTED]
To: 'Struts Users Mailing List' [EMAIL PROTECTED]
Sent: Friday, January 30, 2004 2:17 PM
Subject: Error deploying strus application to JBOSS --- The content of
element type taglib must match



 The following are the errors I got when deploying our Struts application
to
 JBOSS. I think it is related to taglibs. In web.xml it is like:

  taglib
 taglib-uri/WEB-INF/struts-bean.tld/taglib-uri
 taglib-location/WEB-INF/struts-bean.tld/taglib-location
   /taglib

 Has anyone experienced the same problem?

 Thanks,

 Yibing

 +++

 2004-01-30 09:43:25,266 ERROR [org.apache.commons.digester.Digester] Parse
 Error at line 8 column 7: Element type urn must be declared.
 org.xml.sax.SAXParseException: Element type urn must be declared.
 org.xml.sax.SAXParseException

org.apache.xerces.util.ErrorHandlerWrapper.createSAXParseException(org.apach
 e.xerces.xni.parser.XMLParseException)
 ErrorHandlerWrapper.java:232

 and

 2004-01-30 09:43:25,391 ERROR [org.apache.commons.digester.Digester] Parse
 Error at line 23 column 10: The content of element type taglib must
match
 (tlibversion,jspversion?,shortname,uri?,info?,tag+).
 org.xml.sax.SAXParseException: The content of element type taglib must
 match (tlibversion,jspversion?,shortname,uri?,info?,tag+).
 org.xml.sax.SAXParseException

org.apache.xerces.util.ErrorHandlerWrapper.createSAXParseException(org.apach
 e.xerces.xni.parser.XMLParseException)
 ErrorHandlerWrapper.java:232
 void org.apache.xerces.util.ErrorHandlerWrapper.error(java.lang.String,
 java.lang.String, org.apache.xerces.xni.parser.XMLParseException)
 ErrorHandlerWrapper.java:173



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




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



Debugging in JBoss 3.2.3

2004-01-28 Thread Sergey Smirnov
I have created a short visual presentation (in Flash) how to debug Struts
application under JBoss without re-deployment and even without restarting
JBoss server after each changes. Actually, the presentation shows how to do
so from Struts Studio, but it will work without it, also.

Presentation URL: http://www.exadel.com/strutsStudio/jboss

 .
 .
  - Original Message -
  From: Ramadoss Chinnakuzhandai [EMAIL PROTECTED]
  To: Struts Users Mailing List [EMAIL PROTECTED]
  Sent: Friday, January 23, 2004 9:24 AM
  Subject: RE: Debugging in JBoss 3.2.3
 
 
  Can u drop more light on itit would be helpful for guy like me whoz
 new
  to JBoss
 
  Tnx in advance.
 
  -R
 
  -Original Message-
  From: James Mitchell [mailto:[EMAIL PROTECTED]
  Sent: Thursday, January 22, 2004 3:27 PM
  To: Struts Users Mailing List
  Subject: Re: Debugging in JBoss 3.2.3
 
 
  Yes,
 
  1. Setup JBoss for remote debugging.
  (specifically, you need to add a line
   to the .bat/.sh startup script)
 
  2. Setup your .war expanded
   (for example, the directory in the
deploy directory is named 'myapp.war')
 
  3. Startup JBoss/Tomcat and use remote debugging
 in Eclipse
 
 
  sorry for the speedy, not-quite-complete helpbut that's
basically
  what I used to do before I found MyEclipse.
 
  Now, if only MyEclipse worked on 3.0 M6...hm
 
  --
  James Mitchell
  Software Engineer / Struts Evangelist
  http://www.struts-atlanta.org
  678.910.8017 (cell)
  AIM:jmitchtx
  MSN: [EMAIL PROTECTED]
 
 
 
  - Original Message -
  From: Ramadoss Chinnakuzhandai [EMAIL PROTECTED]
  To: [EMAIL PROTECTED]
  Sent: Thursday, January 22, 2004 3:07 PM
  Subject: Debugging in JBoss 3.2.3
 
 
  Hi,
   I'm using JBoss 3.2.3 (with Tomcat as default container) and
was
  using version 3.2.1 earliar with Tomcat as separate container and was
able
  to debug my application using eclipse, now we are moved onto JBoss 3.2.3
  with Tomcat as default container. Is there anyway I can debug my
 application
  using eclipse without having to re-deploy my application again and
again.
  I know I can use myeclipse plugin to debug but wondering is there any
 other
  better alternate for debugging.
  Thanks in advance,
  -Ramadoss
 
 
 
 
 
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 




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



AUTO {ICICICARE#005-208-901}Debugging in JBoss 3.2.3

2004-01-28 Thread NRI Cell
Dear Sir / Madam,Thank you for writing to [EMAIL PROTECTED] We confirm receipt of your 
mail and assure you of a response shortly.To help us serve you better, we would 
request you to kindly mention your account number or any reference number you may have 
in your future correspondence.  Kindly visit our website www.icicibank.com\nri to know 
more on our products and services.  With regards,Customer Care 
ICICI Bank Limited This communication being sent by ICICI Bank Ltd. is privileged and 
confidential, and is directed to and for the use of the addressee only. If this 
message reaches anyone other than the intended recipient, we request the reader not to 
reproduce, copy, disseminate or in any manner distribute it. We further request such 
recipient to notify us immediately by return email and delete the original message. 
ICICI Bank Ltd. does not guarantee the security of any information transmitted 
electronically and is not liable for the proper, timely and complete transmission 
thereof. Before opening any attachments please check them for viruses and defects.



Re: Debugging in JBoss 3.2.3

2004-01-25 Thread James Mitchell
Sorry, I wasn't able to get this done.  A few hours ago I got 5 more
Chapters dumped into my Inbox (tech editing) so I'm not sure when I'll have
time.  Maybe next week.

Thankx.


--
James Mitchell
Software Engineer / Struts Evangelist
http://www.struts-atlanta.org
678.910.8017 (cell)
AIM: jmitchtx
MSN: [EMAIL PROTECTED]



- Original Message -
From: James Mitchell [EMAIL PROTECTED]
To: Struts Users Mailing List [EMAIL PROTECTED]
Sent: Friday, January 23, 2004 9:39 AM
Subject: Re: Debugging in JBoss 3.2.3


 I'll see if I can put together something this weekend like this:
  http://jakarta.apache.org/struts/faqs/eclipse.html

 --
 James Mitchell
 Software Engineer / Struts Evangelist
 http://www.struts-atlanta.org
 678.910.8017 (cell)
 AIM: jmitchtx
 MSN: [EMAIL PROTECTED]



 - Original Message -
 From: Ramadoss Chinnakuzhandai [EMAIL PROTECTED]
 To: Struts Users Mailing List [EMAIL PROTECTED]
 Sent: Friday, January 23, 2004 9:24 AM
 Subject: RE: Debugging in JBoss 3.2.3


 Can u drop more light on itit would be helpful for guy like me whoz
new
 to JBoss

 Tnx in advance.

 -R

 -Original Message-
 From: James Mitchell [mailto:[EMAIL PROTECTED]
 Sent: Thursday, January 22, 2004 3:27 PM
 To: Struts Users Mailing List
 Subject: Re: Debugging in JBoss 3.2.3


 Yes,

 1. Setup JBoss for remote debugging.
 (specifically, you need to add a line
  to the .bat/.sh startup script)

 2. Setup your .war expanded
  (for example, the directory in the
   deploy directory is named 'myapp.war')

 3. Startup JBoss/Tomcat and use remote debugging
in Eclipse


 sorry for the speedy, not-quite-complete helpbut that's basically
 what I used to do before I found MyEclipse.

 Now, if only MyEclipse worked on 3.0 M6...hm

 --
 James Mitchell
 Software Engineer / Struts Evangelist
 http://www.struts-atlanta.org
 678.910.8017 (cell)
 AIM:jmitchtx
 MSN: [EMAIL PROTECTED]



 - Original Message -
 From: Ramadoss Chinnakuzhandai [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Thursday, January 22, 2004 3:07 PM
 Subject: Debugging in JBoss 3.2.3


 Hi,
  I'm using JBoss 3.2.3 (with Tomcat as default container) and was
 using version 3.2.1 earliar with Tomcat as separate container and was able
 to debug my application using eclipse, now we are moved onto JBoss 3.2.3
 with Tomcat as default container. Is there anyway I can debug my
application
 using eclipse without having to re-deploy my application again and again.
 I know I can use myeclipse plugin to debug but wondering is there any
other
 better alternate for debugging.
 Thanks in advance,
 -Ramadoss






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


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


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


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


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



RE: Debugging in JBoss 3.2.3

2004-01-23 Thread Ramadoss Chinnakuzhandai
Can u drop more light on itit would be helpful for guy like me whoz new to JBoss

Tnx in advance.

-R 

-Original Message-
From: James Mitchell [mailto:[EMAIL PROTECTED]
Sent: Thursday, January 22, 2004 3:27 PM
To: Struts Users Mailing List
Subject: Re: Debugging in JBoss 3.2.3


Yes,

1. Setup JBoss for remote debugging.
(specifically, you need to add a line
 to the .bat/.sh startup script)

2. Setup your .war expanded
 (for example, the directory in the
  deploy directory is named 'myapp.war')

3. Startup JBoss/Tomcat and use remote debugging
   in Eclipse


sorry for the speedy, not-quite-complete helpbut that's basically
what I used to do before I found MyEclipse.

Now, if only MyEclipse worked on 3.0 M6...hm

--
James Mitchell
Software Engineer / Struts Evangelist
http://www.struts-atlanta.org
678.910.8017 (cell)
AIM:jmitchtx
MSN: [EMAIL PROTECTED]



- Original Message -
From: Ramadoss Chinnakuzhandai [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, January 22, 2004 3:07 PM
Subject: Debugging in JBoss 3.2.3


Hi,
 I'm using JBoss 3.2.3 (with Tomcat as default container) and was
using version 3.2.1 earliar with Tomcat as separate container and was able
to debug my application using eclipse, now we are moved onto JBoss 3.2.3
with Tomcat as default container. Is there anyway I can debug my application
using eclipse without having to re-deploy my application again and again.
I know I can use myeclipse plugin to debug but wondering is there any other
better alternate for debugging.
Thanks in advance,
-Ramadoss






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


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


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



Re: Debugging in JBoss 3.2.3

2004-01-23 Thread James Mitchell
I'll see if I can put together something this weekend like this:
 http://jakarta.apache.org/struts/faqs/eclipse.html

--
James Mitchell
Software Engineer / Struts Evangelist
http://www.struts-atlanta.org
678.910.8017 (cell)
AIM: jmitchtx
MSN: [EMAIL PROTECTED]



- Original Message -
From: Ramadoss Chinnakuzhandai [EMAIL PROTECTED]
To: Struts Users Mailing List [EMAIL PROTECTED]
Sent: Friday, January 23, 2004 9:24 AM
Subject: RE: Debugging in JBoss 3.2.3


Can u drop more light on itit would be helpful for guy like me whoz new
to JBoss

Tnx in advance.

-R

-Original Message-
From: James Mitchell [mailto:[EMAIL PROTECTED]
Sent: Thursday, January 22, 2004 3:27 PM
To: Struts Users Mailing List
Subject: Re: Debugging in JBoss 3.2.3


Yes,

1. Setup JBoss for remote debugging.
(specifically, you need to add a line
 to the .bat/.sh startup script)

2. Setup your .war expanded
 (for example, the directory in the
  deploy directory is named 'myapp.war')

3. Startup JBoss/Tomcat and use remote debugging
   in Eclipse


sorry for the speedy, not-quite-complete helpbut that's basically
what I used to do before I found MyEclipse.

Now, if only MyEclipse worked on 3.0 M6...hm

--
James Mitchell
Software Engineer / Struts Evangelist
http://www.struts-atlanta.org
678.910.8017 (cell)
AIM:jmitchtx
MSN: [EMAIL PROTECTED]



- Original Message -
From: Ramadoss Chinnakuzhandai [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, January 22, 2004 3:07 PM
Subject: Debugging in JBoss 3.2.3


Hi,
 I'm using JBoss 3.2.3 (with Tomcat as default container) and was
using version 3.2.1 earliar with Tomcat as separate container and was able
to debug my application using eclipse, now we are moved onto JBoss 3.2.3
with Tomcat as default container. Is there anyway I can debug my application
using eclipse without having to re-deploy my application again and again.
I know I can use myeclipse plugin to debug but wondering is there any other
better alternate for debugging.
Thanks in advance,
-Ramadoss






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


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


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


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



RE: Debugging in JBoss 3.2.3

2004-01-23 Thread Ramadoss Chinnakuzhandai
that would great.

Tnx for your help.

-Ramadoss


-Original Message-
From: James Mitchell [mailto:[EMAIL PROTECTED]
Sent: Friday, January 23, 2004 9:40 AM
To: Struts Users Mailing List
Subject: Re: Debugging in JBoss 3.2.3


I'll see if I can put together something this weekend like this:
 http://jakarta.apache.org/struts/faqs/eclipse.html

--
James Mitchell
Software Engineer / Struts Evangelist
http://www.struts-atlanta.org
678.910.8017 (cell)
AIM: jmitchtx
MSN: [EMAIL PROTECTED]



- Original Message -
From: Ramadoss Chinnakuzhandai [EMAIL PROTECTED]
To: Struts Users Mailing List [EMAIL PROTECTED]
Sent: Friday, January 23, 2004 9:24 AM
Subject: RE: Debugging in JBoss 3.2.3


Can u drop more light on itit would be helpful for guy like me whoz new
to JBoss

Tnx in advance.

-R

-Original Message-
From: James Mitchell [mailto:[EMAIL PROTECTED]
Sent: Thursday, January 22, 2004 3:27 PM
To: Struts Users Mailing List
Subject: Re: Debugging in JBoss 3.2.3


Yes,

1. Setup JBoss for remote debugging.
(specifically, you need to add a line
 to the .bat/.sh startup script)

2. Setup your .war expanded
 (for example, the directory in the
  deploy directory is named 'myapp.war')

3. Startup JBoss/Tomcat and use remote debugging
   in Eclipse


sorry for the speedy, not-quite-complete helpbut that's basically
what I used to do before I found MyEclipse.

Now, if only MyEclipse worked on 3.0 M6...hm

--
James Mitchell
Software Engineer / Struts Evangelist
http://www.struts-atlanta.org
678.910.8017 (cell)
AIM:jmitchtx
MSN: [EMAIL PROTECTED]



- Original Message -
From: Ramadoss Chinnakuzhandai [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, January 22, 2004 3:07 PM
Subject: Debugging in JBoss 3.2.3


Hi,
 I'm using JBoss 3.2.3 (with Tomcat as default container) and was
using version 3.2.1 earliar with Tomcat as separate container and was able
to debug my application using eclipse, now we are moved onto JBoss 3.2.3
with Tomcat as default container. Is there anyway I can debug my application
using eclipse without having to re-deploy my application again and again.
I know I can use myeclipse plugin to debug but wondering is there any other
better alternate for debugging.
Thanks in advance,
-Ramadoss






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


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


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


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


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



RE: Debugging in JBoss 3.2.3

2004-01-23 Thread Ramadoss Chinnakuzhandai
Do we hv to redeploy the ear file whenever we make changes to the jsps(war)? since 
Tomcat is running under JBoss 3.2.3.
-R

-Original Message-
From: Pascal THIVENT [mailto:[EMAIL PROTECTED]
Sent: Thursday, January 22, 2004 3:49 PM
To: Struts Users Mailing List
Subject: Re: Debugging in JBoss 3.2.3


JBoss-IDE brings you very good integration with Eclipse. From the homepage :

JBoss-IDE provides the following features :
 * The debugging and monitoring of JBoss servers and the control of their 
life cycle (start/stop).
 * A very comfortable and sophisticated support for XDoclet (completion and 
generation).
 * An easy way to configure the packaging layout of archives (packed or 
exploded)
 * A simple way to deploy the packaged and/or exploded archive to a JBoss 
server

http://www.jboss.org/index.html?module=htmlop=userdisplayid=developers/projects/jboss/jbosside

Pascal


Ramadoss Chinnakuzhandai wrote:
 Hi,
  I'm using JBoss 3.2.3 (with Tomcat as default container) and was using 
 version 3.2.1 earliar with Tomcat as separate container and was able to debug my 
 application using eclipse, now we are moved onto JBoss 3.2.3 with Tomcat as default 
 container. Is there anyway I can debug my application using eclipse without having 
 to re-deploy my application again and again.
 I know I can use myeclipse plugin to debug but wondering is there any other better 
 alternate for debugging.
 Thanks in advance,
 -Ramadoss
 
 
 
 
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 


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


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



Debugging in JBoss 3.2.3

2004-01-22 Thread Ramadoss Chinnakuzhandai
Hi,
 I'm using JBoss 3.2.3 (with Tomcat as default container) and was using 
version 3.2.1 earliar with Tomcat as separate container and was able to debug my 
application using eclipse, now we are moved onto JBoss 3.2.3 with Tomcat as default 
container. Is there anyway I can debug my application using eclipse without having to 
re-deploy my application again and again.
I know I can use myeclipse plugin to debug but wondering is there any other better 
alternate for debugging.
Thanks in advance,
-Ramadoss






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



Re: Debugging in JBoss 3.2.3

2004-01-22 Thread James Mitchell
Yes,

1. Setup JBoss for remote debugging.
(specifically, you need to add a line
 to the .bat/.sh startup script)

2. Setup your .war expanded
 (for example, the directory in the
  deploy directory is named 'myapp.war')

3. Startup JBoss/Tomcat and use remote debugging
   in Eclipse


sorry for the speedy, not-quite-complete helpbut that's basically
what I used to do before I found MyEclipse.

Now, if only MyEclipse worked on 3.0 M6...hm

--
James Mitchell
Software Engineer / Struts Evangelist
http://www.struts-atlanta.org
678.910.8017 (cell)
AIM:jmitchtx
MSN: [EMAIL PROTECTED]



- Original Message -
From: Ramadoss Chinnakuzhandai [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, January 22, 2004 3:07 PM
Subject: Debugging in JBoss 3.2.3


Hi,
 I'm using JBoss 3.2.3 (with Tomcat as default container) and was
using version 3.2.1 earliar with Tomcat as separate container and was able
to debug my application using eclipse, now we are moved onto JBoss 3.2.3
with Tomcat as default container. Is there anyway I can debug my application
using eclipse without having to re-deploy my application again and again.
I know I can use myeclipse plugin to debug but wondering is there any other
better alternate for debugging.
Thanks in advance,
-Ramadoss






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


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



RE: Debugging in JBoss 3.2.3

2004-01-22 Thread Tim Kettering

The newest release works on M6.  (3.7RC2, I believe)  I havent had any
trouble using it.

-tim

Now, if only MyEclipse worked on 3.0 M6...hm




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



Re: Debugging in JBoss 3.2.3

2004-01-22 Thread Valeriy Pelyushenko
shameless plug

Exadel Struts Studio 5.2 (http://www.exadel.com) supports one-click null-deployment 
debugging for JBoss 3.2.X.

/shameless plug

Valeriy

- Original Message - 
From: Ramadoss Chinnakuzhandai [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, January 22, 2004 12:07 PM
Subject: Debugging in JBoss 3.2.3


 Hi,
  I'm using JBoss 3.2.3 (with Tomcat as default container) and was using 
 version 3.2.1 earliar with Tomcat as separate
container and was able to debug my application using eclipse, now we are moved onto 
JBoss 3.2.3 with Tomcat as default container. Is
there anyway I can debug my application using eclipse without having to re-deploy my 
application again and again.
 I know I can use myeclipse plugin to debug but wondering is there any other better 
 alternate for debugging.
 Thanks in advance,
 -Ramadoss






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




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



Re: Debugging in JBoss 3.2.3

2004-01-22 Thread Pascal THIVENT
JBoss-IDE brings you very good integration with Eclipse. From the homepage :

JBoss-IDE provides the following features :
* The debugging and monitoring of JBoss servers and the control of their 
life cycle (start/stop).
* A very comfortable and sophisticated support for XDoclet (completion and 
generation).
* An easy way to configure the packaging layout of archives (packed or 
exploded)
* A simple way to deploy the packaged and/or exploded archive to a JBoss 
server

http://www.jboss.org/index.html?module=htmlop=userdisplayid=developers/projects/jboss/jbosside

Pascal

Ramadoss Chinnakuzhandai wrote:
Hi,
 I'm using JBoss 3.2.3 (with Tomcat as default container) and was using 
version 3.2.1 earliar with Tomcat as separate container and was able to debug my 
application using eclipse, now we are moved onto JBoss 3.2.3 with Tomcat as default 
container. Is there anyway I can debug my application using eclipse without having to 
re-deploy my application again and again.
I know I can use myeclipse plugin to debug but wondering is there any other better 
alternate for debugging.
Thanks in advance,
-Ramadoss




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




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


Struts TilesPlugin broken in jboss 3.2.x ?

2003-12-04 Thread Jens Viebig
Has anyone successfully deployed a struts application with TilesPlugin in
jboss 3.2.x
(I have 3.2.3)
I'm getting

java.lang.AbstractMethodError:
org.apache.struts.tiles.TilesPlugin.init(Lorg/apache/struts/action/ActionSer
vlet;Lorg/apache/struts/config/ApplicationConfig;)

errors when i try to deploy my app which was running fine with jboss 3.0.8.
The Struts 1.1 struts-example.war crashes with the same Error Message !!

Anyone has the same problem or has the example running  with JBoss?
Please answer in both cases !


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



Re: Struts TilesPlugin broken in jboss 3.2.x ?

2003-12-04 Thread Jens Viebig
I narrowed it a bit.
Seems to be a bug in jboss i think (classloder,classpath issue).
This error occurs when you have more than one war using struts.
It depends on the sequence you deploy your wars.
I have one war (a) using Struts 1.1b  and a war (b) using Struts 1.1
when I deploy (b) first and after that (a) everything is working fine.
when I deploy (a) first and (b) second i get that error !
I think jboss is putting WEB-INF/lib somewhere in the global classpath so
things get broken !
So it seems not to be a struts-related problem

- Original Message -
From: Jens Viebig [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, December 04, 2003 9:04 AM
Subject: Struts TilesPlugin broken in jboss 3.2.x ?


 Has anyone successfully deployed a struts application with TilesPlugin in
 jboss 3.2.x
 (I have 3.2.3)
 I'm getting

 java.lang.AbstractMethodError:

org.apache.struts.tiles.TilesPlugin.init(Lorg/apache/struts/action/ActionSer
 vlet;Lorg/apache/struts/config/ApplicationConfig;)

 errors when i try to deploy my app which was running fine with jboss
3.0.8.
 The Struts 1.1 struts-example.war crashes with the same Error Message !!

 Anyone has the same problem or has the example running  with JBoss?
 Please answer in both cases !


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



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



Re: SessionTimeout JBoss

2003-11-20 Thread Kirk Wylie
You might want to try googling for this, or asking on the jboss-user 
list, because it's been covered in those places.

However, this link should answer your question, though I'm not sure 
which version of jboss you're using: 
http://www.jboss.org/thread.jsp?forum=172thread=28590message=3765747#3765747

Kirk Wylie
M7 Corporation
[EMAIL PROTECTED] wrote:

Hello,

how to change the default sessiontimeout of JBoss ?

Mit freundlichen Grüßen

Christian Reps, Dipl. Inf. (FH)
Web Applications
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


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


SessionTimeout JBoss

2003-11-19 Thread reps.groups
Hello,

how to change the default sessiontimeout of JBoss ?

Mit freundlichen Grüßen

Christian Reps, Dipl. Inf. (FH)
Web Applications


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



jboss-tomcat 3.2.2

2003-11-04 Thread tcs 777
hi all,

in my struts-forms i've links to style-sheets, images, etc.

these links refer to the root, because this is where the corresponding 
actions are mapped to.

in jboss i get the folowing error:

..[Engine] StandardHost[localhost]: MAPPING configuration error for 
request URI /styles/style.css/..

this seems to be that the link cannot be relative to the configured struts 
action.

anybody has some thought how i can deal with this problem?

t i a

_
MSN Zoeken, voor duidelijke zoekresultaten! http://search.msn.nl
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: jboss-tomcat 3.2.2

2003-11-04 Thread Puneet Agarwal

Hi try html:base tag...

Regards,
Puneet Agarwal

Tata Consultancy Services,
C-56, Phase - II, NOIDA 201305 (India)
Phone: +91-120-2461001, 2, 7, 8, 9, 12, 13 (Ext. 1044)
FAX              : +91-120-246 1521

Struts ... Action ... Struts in Action ... Action in Struts ...


   

tcs 777  

[EMAIL PROTECTED]To: [EMAIL PROTECTED]

il.com  cc:   

 Subject: jboss-tomcat 3.2.2   

11/04/03   

06:23 PM   

Please 

respond to 

Struts Users  

Mailing List  

   

   





hi all,

in my struts-forms i've links to style-sheets, images, etc.

these links refer to the root, because this is where the corresponding
actions are mapped to.

in jboss i get the folowing error:

..[Engine] StandardHost[localhost]: MAPPING configuration error for
request URI /styles/style.css/..

this seems to be that the link cannot be relative to the configured struts
action.

anybody has some thought how i can deal with this problem?

t i a

_
MSN Zoeken, voor duidelijke zoekresultaten! http://search.msn.nl


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




DISCLAIMER: The information contained in this message is intended only and
solely for the addressed individual or entity indicated in this message and
for the exclusive use of the said addressed individual or entity indicated
in this message (or responsible for delivery of the message to such person)
and may contain legally privileged and confidential information belonging
to Tata Consultancy Services. It must not be printed, read, copied,
disclosed, forwarded, distributed or used (in whatsoever manner) by any
person other than the addressee. Unauthorized use, disclosure or copying is
strictly prohibited and may constitute unlawful act and can possibly
attract legal action, civil and/or criminal. The contents of this message
need not necessarily reflect or endorse the views of Tata Consultancy
Services on any subject matter. Any action taken or omitted to be taken
based on this message is entirely at your risk and neither the originator
of this message nor Tata Consultancy Services takes any responsibility or
liability towards the same. Opinions, conclusions and any other information
contained in this message that do not relate to the official business of
Tata Consultancy Services shall be understood as neither given nor endorsed
by Tata Consultancy Services or any affiliate of Tata Consultancy Services.
If you have received this message in error, you should destroy this message
and may please notify the sender by e-mail. Thank you.


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



Re: jboss and tomcat

2003-10-23 Thread Brad Balmer
You can deploy them separately.  Just drop the war in your deploy 
directory.  You shouldn't have any problems looking up the EJB from the 
war deploying them this way.

ajay brar wrote:

hi!
this may sound really basic, but how do i deploy a war file(with a 
STRUTS application) in Jboss.
this war will interact with an ejb jar file. Do i need to put the war 
and the jar together in an ear file, or do i just put the war file by 
itself somewhere.

please help (i have this thig due tomorrow and we have to integrate 
today :))

thanks
regards
Ajay
_
ninemsn Premium transforms your e-mail with colours, photos and 
animated text. Click here  http://ninemsn.com.au/premium/landing.asp

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


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


jboss and tomcat

2003-10-22 Thread ajay brar
hi!
this may sound really basic, but how do i deploy a war file(with a STRUTS 
application) in Jboss.
this war will interact with an ejb jar file. Do i need to put the war and 
the jar together in an ear file, or do i just put the war file by itself 
somewhere.

please help (i have this thig due tomorrow and we have to integrate today 
:))

thanks
regards
Ajay
_
ninemsn Premium transforms your e-mail with colours, photos and animated 
text. Click here  http://ninemsn.com.au/premium/landing.asp

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


JBoss

2003-10-09 Thread Horky Adam G A1C 805 CSPTS/SCBE








I noticed some of the developers on this mailing list
advocating the use of JBoss. I am currently reading some docs on JBoss, but I
dont have a clear understanding of it yet. I currently use Tomcat as my
app server. Does it run over Tomcat? Can anyone recommend some good
documentation on what exactly JBoss is?









A1C Adam G Horky

Application Development Programmer, SCBE

(618)256-2300










Re: JBoss

2003-10-09 Thread Jose M Selman
It's an open source J2EE application server.
- Original Message -
From: Horky Adam G A1C 805 CSPTS/SCBE
To: [EMAIL PROTECTED]
Sent: Thursday, October 09, 2003 10:18 AM
Subject: JBoss


I noticed some of the developers on this mailing list advocating the use of
JBoss. I am currently reading some docs on JBoss, but I don't have a clear
understanding of it yet. I currently use Tomcat as my app server. Does it
run over Tomcat? Can anyone recommend some good documentation on what
exactly JBoss is?




A1C Adam G Horky
Application Development Programmer, SCBE
(618)256-2300


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



Re: JBoss

2003-10-09 Thread khote
A version of JBoss comes with Tomcat installed
http://prdownloads.sourceforge.net/jboss/jboss-3.2.1_tomcat-4.1.24.zip?download

It generally works the same, but there are some things you just can't do the
old way.
It's JBoss that deploys your applications now, not Tomcat.

- Original Message - 
From: Jose M Selman [EMAIL PROTECTED]
To: Struts Users Mailing List [EMAIL PROTECTED]
Sent: Thursday, October 09, 2003 7:21 AM
Subject: Re: JBoss


 It's an open source J2EE application server.
 - Original Message -
 From: Horky Adam G A1C 805 CSPTS/SCBE
 To: [EMAIL PROTECTED]
 Sent: Thursday, October 09, 2003 10:18 AM
 Subject: JBoss


 I noticed some of the developers on this mailing list advocating the use
of
 JBoss. I am currently reading some docs on JBoss, but I don't have a clear
 understanding of it yet. I currently use Tomcat as my app server. Does it
 run over Tomcat? Can anyone recommend some good documentation on what
 exactly JBoss is?




 A1C Adam G Horky
 Application Development Programmer, SCBE
 (618)256-2300


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



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



RE: JBoss

2003-10-09 Thread Greg Dunn
If you're not running EJB's you don't need JBoss.
  -Original Message-
  From: Horky Adam G A1C 805 CSPTS/SCBE [mailto:[EMAIL PROTECTED]
  Sent: Thursday, October 09, 2003 9:19 AM
  To: [EMAIL PROTECTED]
  Subject: JBoss


  I noticed some of the developers on this mailing list advocating the use
of JBoss. I am currently reading some docs on JBoss, but I don't have a
clear understanding of it yet. I currently use Tomcat as my app server. Does
it run over Tomcat? Can anyone recommend some good documentation on what
exactly JBoss is?



  A1C Adam G Horky

  Application Development Programmer, SCBE

  (618)256-2300




RE: JBoss

2003-10-09 Thread Wiebe de Jong
Tomcat and JBoss work well together. In simple terms, think of Tomcat as
your servlet container and JBoss as your EJB container.

 

Wiebe

http://frontierj.blogspot.com http://frontierj.blogspot.com/ 

 

 

-Original Message-
From: Horky Adam G A1C 805 CSPTS/SCBE [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 09, 2003 7:19 AM
To: [EMAIL PROTECTED]
Subject: JBoss

 

I noticed some of the developers on this mailing list advocating the use of
JBoss. I am currently reading some docs on JBoss, but I don't have a clear
understanding of it yet. I currently use Tomcat as my app server. Does it
run over Tomcat? Can anyone recommend some good documentation on what
exactly JBoss is?

 

 

 



A1C Adam G Horky

Application Development Programmer, SCBE

(618)256-2300

 



RE: JBoss

2003-10-09 Thread Darren Hartford
With Tomcat you have your container that you can run your java servlets and JSP's.

With Jboss, you have tomcat (or Jetty) as your container to run your java servlets and 
JSP's.  In addition, you have an EJB container to run EJB applications (i.e. entity 
bean and session beans), and have access to JNDI for appserver configuration of 
commonly used services.  Perfect example is you configure the APP SERVER (and not the 
applications) for your authorization/authentication environment and configure the APP 
SERVER (again, not all the applications that you build) to point to the databases that 
you want to work with.  So, the APP SERVER does all the backend work, such as 
configuration, configuration changes, connection pooling, blah blah blah.  And, of 
course, JBoss is an App Server that does all that and is well respected (not to 
mention open source!).

my two coppers,
-D 

-Original Message-
From: Wiebe de Jong [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 09, 2003 10:54 AM
To: 'Struts Users Mailing List'
Subject: RE: JBoss


Tomcat and JBoss work well together. In simple terms, think of Tomcat as
your servlet container and JBoss as your EJB container.

 

Wiebe

http://frontierj.blogspot.com http://frontierj.blogspot.com/ 

 

 

-Original Message-
From: Horky Adam G A1C 805 CSPTS/SCBE [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 09, 2003 7:19 AM
To: [EMAIL PROTECTED]
Subject: JBoss

 

I noticed some of the developers on this mailing list advocating the use of
JBoss. I am currently reading some docs on JBoss, but I don't have a clear
understanding of it yet. I currently use Tomcat as my app server. Does it
run over Tomcat? Can anyone recommend some good documentation on what
exactly JBoss is?

 

 

 



A1C Adam G Horky

Application Development Programmer, SCBE

(618)256-2300

 


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



RE: JBoss

2003-10-09 Thread Davidson, Glenn
Bottom Line: If you need to use EJB's and want an open source application
server the JBoss/Tomcat bundle works.

I am currently using the JBoss/Tomcat Bundle and am having success. As noted
below JBoss is only required if you are going use EJB's. If there are no
EJB'S you will not require JBoss. I have created many EJB's and have had
very little difficulty getting them to work on JBoss. Tomcat is... well it
is Tomcat and it works just fine. I have several books on JBoss but none
that I'd recommend. If anyone out there has a recommendation for a good
JBoss book I'd be interested. Please note that deploying the EJB's on JBoss
was a fairly easy operation. (At least it was in my case). I hope this helps
and good luck on your project!

Glenn Davidson

-Original Message-
From: Wiebe de Jong [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 09, 2003 10:54 AM
To: 'Struts Users Mailing List'
Subject: RE: JBoss


Tomcat and JBoss work well together. In simple terms, think of Tomcat as
your servlet container and JBoss as your EJB container.

 

Wiebe

http://frontierj.blogspot.com http://frontierj.blogspot.com/ 

 

 

-Original Message-
From: Horky Adam G A1C 805 CSPTS/SCBE [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 09, 2003 7:19 AM
To: [EMAIL PROTECTED]
Subject: JBoss

 

I noticed some of the developers on this mailing list advocating the use of
JBoss. I am currently reading some docs on JBoss, but I don't have a clear
understanding of it yet. I currently use Tomcat as my app server. Does it
run over Tomcat? Can anyone recommend some good documentation on what
exactly JBoss is?

 

 

 



A1C Adam G Horky

Application Development Programmer, SCBE

(618)256-2300

 



RE: JBoss

2003-10-09 Thread Horky Adam G A1C 805 CSPTS/SCBE
Thanks to everyone for the info. I don't plan to use EJBs at the moment,
so I guess I will just stick with using Tomcat.




-Original Message-
From: Davidson, Glenn [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 09, 2003 1:20 PM
To: 'Struts Users Mailing List'
Subject: RE: JBoss

Bottom Line: If you need to use EJB's and want an open source
application
server the JBoss/Tomcat bundle works.

I am currently using the JBoss/Tomcat Bundle and am having success. As
noted
below JBoss is only required if you are going use EJB's. If there are no
EJB'S you will not require JBoss. I have created many EJB's and have had
very little difficulty getting them to work on JBoss. Tomcat is... well
it
is Tomcat and it works just fine. I have several books on JBoss but none
that I'd recommend. If anyone out there has a recommendation for a good
JBoss book I'd be interested. Please note that deploying the EJB's on
JBoss
was a fairly easy operation. (At least it was in my case). I hope this
helps
and good luck on your project!

Glenn Davidson

-Original Message-
From: Wiebe de Jong [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 09, 2003 10:54 AM
To: 'Struts Users Mailing List'
Subject: RE: JBoss


Tomcat and JBoss work well together. In simple terms, think of Tomcat as
your servlet container and JBoss as your EJB container.

 

Wiebe

http://frontierj.blogspot.com http://frontierj.blogspot.com/ 

 

 

-Original Message-
From: Horky Adam G A1C 805 CSPTS/SCBE [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 09, 2003 7:19 AM
To: [EMAIL PROTECTED]
Subject: JBoss

 

I noticed some of the developers on this mailing list advocating the use
of
JBoss. I am currently reading some docs on JBoss, but I don't have a
clear
understanding of it yet. I currently use Tomcat as my app server. Does
it
run over Tomcat? Can anyone recommend some good documentation on what
exactly JBoss is?

 

 

 



A1C Adam G Horky

Application Development Programmer, SCBE

(618)256-2300

 


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



RE: JBoss

2003-10-09 Thread Wiebe de Jong
That is a good way to do it.

Plan to make use of the Business Delegate pattern. 

In this pattern, your Actions never call your database directly. The Actions
should make calls to a helper bean which implements the Business Delegate
pattern. This bean will contain all your JDBC code and hide it from the rest
of the application.

Later, when you make the move to EJB, you only have to change the Business
Delegates, not any of your other code.

Wiebe
http://frontierj.blogspot.com 

-Original Message-
From: Barry Volpe [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 09, 2003 11:29 AM
To: Struts Users Mailing List
Subject: Re: JBoss

I have had to go through the learning curve on struts and tomcat.  
Yet I want to get involved with EJB's because that is a desired skill
to have ($$).  So I am developing an app without EJB's.  If I do
this correctly with Struts I should be able to revisit this app and
incorporate EJB's at a later time.  This is my plan crawl before
you can walk as they say.

Barry





- Original Message - 
From: Horky Adam G A1C 805 CSPTS/SCBE [EMAIL PROTECTED]
To: Struts Users Mailing List [EMAIL PROTECTED]
Sent: Thursday, October 09, 2003 11:23 AM
Subject: RE: JBoss


Thanks to everyone for the info. I don't plan to use EJBs at the moment,
so I guess I will just stick with using Tomcat.




-Original Message-
From: Davidson, Glenn [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 09, 2003 1:20 PM
To: 'Struts Users Mailing List'
Subject: RE: JBoss

Bottom Line: If you need to use EJB's and want an open source
application
server the JBoss/Tomcat bundle works.

I am currently using the JBoss/Tomcat Bundle and am having success. As
noted
below JBoss is only required if you are going use EJB's. If there are no
EJB'S you will not require JBoss. I have created many EJB's and have had
very little difficulty getting them to work on JBoss. Tomcat is... well
it
is Tomcat and it works just fine. I have several books on JBoss but none
that I'd recommend. If anyone out there has a recommendation for a good
JBoss book I'd be interested. Please note that deploying the EJB's on
JBoss
was a fairly easy operation. (At least it was in my case). I hope this
helps
and good luck on your project!

Glenn Davidson

-Original Message-
From: Wiebe de Jong [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 09, 2003 10:54 AM
To: 'Struts Users Mailing List'
Subject: RE: JBoss


Tomcat and JBoss work well together. In simple terms, think of Tomcat as
your servlet container and JBoss as your EJB container.

 

Wiebe

http://frontierj.blogspot.com http://frontierj.blogspot.com/ 

 

 

-Original Message-
From: Horky Adam G A1C 805 CSPTS/SCBE [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 09, 2003 7:19 AM
To: [EMAIL PROTECTED]
Subject: JBoss

 

I noticed some of the developers on this mailing list advocating the use
of
JBoss. I am currently reading some docs on JBoss, but I don't have a
clear
understanding of it yet. I currently use Tomcat as my app server. Does
it
run over Tomcat? Can anyone recommend some good documentation on what
exactly JBoss is?

 

 

 



A1C Adam G Horky

Application Development Programmer, SCBE

(618)256-2300

 


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






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


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



RE: JBoss

2003-10-09 Thread Horky Adam G A1C 805 CSPTS/SCBE
I feel you on the money issue. But the Air Force is going to pay me the
same no matter how much I know. So I think I will wait for the Air Force
to send me to a class on EJBs.

-Original Message-
From: Barry Volpe [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 09, 2003 1:29 PM
To: Struts Users Mailing List
Subject: Re: JBoss

I have had to go through the learning curve on struts and tomcat.  
Yet I want to get involved with EJB's because that is a desired skill
to have ($$).  So I am developing an app without EJB's.  If I do
this correctly with Struts I should be able to revisit this app and
incorporate EJB's at a later time.  This is my plan crawl before
you can walk as they say.

Barry





- Original Message - 
From: Horky Adam G A1C 805 CSPTS/SCBE [EMAIL PROTECTED]
To: Struts Users Mailing List [EMAIL PROTECTED]
Sent: Thursday, October 09, 2003 11:23 AM
Subject: RE: JBoss


Thanks to everyone for the info. I don't plan to use EJBs at the moment,
so I guess I will just stick with using Tomcat.




-Original Message-
From: Davidson, Glenn [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 09, 2003 1:20 PM
To: 'Struts Users Mailing List'
Subject: RE: JBoss

Bottom Line: If you need to use EJB's and want an open source
application
server the JBoss/Tomcat bundle works.

I am currently using the JBoss/Tomcat Bundle and am having success. As
noted
below JBoss is only required if you are going use EJB's. If there are no
EJB'S you will not require JBoss. I have created many EJB's and have had
very little difficulty getting them to work on JBoss. Tomcat is... well
it
is Tomcat and it works just fine. I have several books on JBoss but none
that I'd recommend. If anyone out there has a recommendation for a good
JBoss book I'd be interested. Please note that deploying the EJB's on
JBoss
was a fairly easy operation. (At least it was in my case). I hope this
helps
and good luck on your project!

Glenn Davidson

-Original Message-
From: Wiebe de Jong [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 09, 2003 10:54 AM
To: 'Struts Users Mailing List'
Subject: RE: JBoss


Tomcat and JBoss work well together. In simple terms, think of Tomcat as
your servlet container and JBoss as your EJB container.

 

Wiebe

http://frontierj.blogspot.com http://frontierj.blogspot.com/ 

 

 

-Original Message-
From: Horky Adam G A1C 805 CSPTS/SCBE [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 09, 2003 7:19 AM
To: [EMAIL PROTECTED]
Subject: JBoss

 

I noticed some of the developers on this mailing list advocating the use
of
JBoss. I am currently reading some docs on JBoss, but I don't have a
clear
understanding of it yet. I currently use Tomcat as my app server. Does
it
run over Tomcat? Can anyone recommend some good documentation on what
exactly JBoss is?

 

 

 



A1C Adam G Horky

Application Development Programmer, SCBE

(618)256-2300

 


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






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


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



RE: JBoss

2003-10-09 Thread Davidson, Glenn
You may want to look at the visitor pattern as well, both patterns are
applicable but one or the other may make more sense based upon your
requirements.

Glenn

-Original Message-
From: Wiebe de Jong [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 09, 2003 2:42 PM
To: 'Struts Users Mailing List'
Subject: RE: JBoss


That is a good way to do it.

Plan to make use of the Business Delegate pattern. 

In this pattern, your Actions never call your database directly. The Actions
should make calls to a helper bean which implements the Business Delegate
pattern. This bean will contain all your JDBC code and hide it from the rest
of the application.

Later, when you make the move to EJB, you only have to change the Business
Delegates, not any of your other code.

Wiebe
http://frontierj.blogspot.com 

-Original Message-
From: Barry Volpe [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 09, 2003 11:29 AM
To: Struts Users Mailing List
Subject: Re: JBoss

I have had to go through the learning curve on struts and tomcat.  
Yet I want to get involved with EJB's because that is a desired skill
to have ($$).  So I am developing an app without EJB's.  If I do
this correctly with Struts I should be able to revisit this app and
incorporate EJB's at a later time.  This is my plan crawl before
you can walk as they say.

Barry





- Original Message - 
From: Horky Adam G A1C 805 CSPTS/SCBE [EMAIL PROTECTED]
To: Struts Users Mailing List [EMAIL PROTECTED]
Sent: Thursday, October 09, 2003 11:23 AM
Subject: RE: JBoss


Thanks to everyone for the info. I don't plan to use EJBs at the moment,
so I guess I will just stick with using Tomcat.




-Original Message-
From: Davidson, Glenn [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 09, 2003 1:20 PM
To: 'Struts Users Mailing List'
Subject: RE: JBoss

Bottom Line: If you need to use EJB's and want an open source
application
server the JBoss/Tomcat bundle works.

I am currently using the JBoss/Tomcat Bundle and am having success. As
noted
below JBoss is only required if you are going use EJB's. If there are no
EJB'S you will not require JBoss. I have created many EJB's and have had
very little difficulty getting them to work on JBoss. Tomcat is... well
it
is Tomcat and it works just fine. I have several books on JBoss but none
that I'd recommend. If anyone out there has a recommendation for a good
JBoss book I'd be interested. Please note that deploying the EJB's on
JBoss
was a fairly easy operation. (At least it was in my case). I hope this
helps
and good luck on your project!

Glenn Davidson

-Original Message-
From: Wiebe de Jong [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 09, 2003 10:54 AM
To: 'Struts Users Mailing List'
Subject: RE: JBoss


Tomcat and JBoss work well together. In simple terms, think of Tomcat as
your servlet container and JBoss as your EJB container.

 

Wiebe

http://frontierj.blogspot.com http://frontierj.blogspot.com/ 

 

 

-Original Message-
From: Horky Adam G A1C 805 CSPTS/SCBE [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 09, 2003 7:19 AM
To: [EMAIL PROTECTED]
Subject: JBoss

 

I noticed some of the developers on this mailing list advocating the use
of
JBoss. I am currently reading some docs on JBoss, but I don't have a
clear
understanding of it yet. I currently use Tomcat as my app server. Does
it
run over Tomcat? Can anyone recommend some good documentation on what
exactly JBoss is?

 

 

 



A1C Adam G Horky

Application Development Programmer, SCBE

(618)256-2300

 


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






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


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


Re: JBoss

2003-10-09 Thread Barry Volpe
great ejb struts example to start with...

Thanks!

- Original Message - 
From: Wiebe de Jong [EMAIL PROTECTED]
To: 'Struts Users Mailing List' [EMAIL PROTECTED]
Sent: Thursday, October 09, 2003 11:42 AM
Subject: RE: JBoss


 That is a good way to do it.

 Plan to make use of the Business Delegate pattern.

 In this pattern, your Actions never call your database directly. The
Actions
 should make calls to a helper bean which implements the Business Delegate
 pattern. This bean will contain all your JDBC code and hide it from the
rest
 of the application.

 Later, when you make the move to EJB, you only have to change the Business
 Delegates, not any of your other code.

 Wiebe
 http://frontierj.blogspot.com

 -Original Message-
 From: Barry Volpe [mailto:[EMAIL PROTECTED]
 Sent: Thursday, October 09, 2003 11:29 AM
 To: Struts Users Mailing List
 Subject: Re: JBoss

 I have had to go through the learning curve on struts and tomcat.
 Yet I want to get involved with EJB's because that is a desired skill
 to have ($$).  So I am developing an app without EJB's.  If I do
 this correctly with Struts I should be able to revisit this app and
 incorporate EJB's at a later time.  This is my plan crawl before
 you can walk as they say.

 Barry





 - Original Message - 
 From: Horky Adam G A1C 805 CSPTS/SCBE [EMAIL PROTECTED]
 To: Struts Users Mailing List [EMAIL PROTECTED]
 Sent: Thursday, October 09, 2003 11:23 AM
 Subject: RE: JBoss


 Thanks to everyone for the info. I don't plan to use EJBs at the moment,
 so I guess I will just stick with using Tomcat.




 -Original Message-
 From: Davidson, Glenn [mailto:[EMAIL PROTECTED]
 Sent: Thursday, October 09, 2003 1:20 PM
 To: 'Struts Users Mailing List'
 Subject: RE: JBoss

 Bottom Line: If you need to use EJB's and want an open source
 application
 server the JBoss/Tomcat bundle works.

 I am currently using the JBoss/Tomcat Bundle and am having success. As
 noted
 below JBoss is only required if you are going use EJB's. If there are no
 EJB'S you will not require JBoss. I have created many EJB's and have had
 very little difficulty getting them to work on JBoss. Tomcat is... well
 it
 is Tomcat and it works just fine. I have several books on JBoss but none
 that I'd recommend. If anyone out there has a recommendation for a good
 JBoss book I'd be interested. Please note that deploying the EJB's on
 JBoss
 was a fairly easy operation. (At least it was in my case). I hope this
 helps
 and good luck on your project!

 Glenn Davidson

 -Original Message-
 From: Wiebe de Jong [mailto:[EMAIL PROTECTED]
 Sent: Thursday, October 09, 2003 10:54 AM
 To: 'Struts Users Mailing List'
 Subject: RE: JBoss


 Tomcat and JBoss work well together. In simple terms, think of Tomcat as
 your servlet container and JBoss as your EJB container.



 Wiebe

 http://frontierj.blogspot.com http://frontierj.blogspot.com/





 -Original Message-
 From: Horky Adam G A1C 805 CSPTS/SCBE [mailto:[EMAIL PROTECTED]
 Sent: Thursday, October 09, 2003 7:19 AM
 To: [EMAIL PROTECTED]
 Subject: JBoss



 I noticed some of the developers on this mailing list advocating the use
 of
 JBoss. I am currently reading some docs on JBoss, but I don't have a
 clear
 understanding of it yet. I currently use Tomcat as my app server. Does
 it
 run over Tomcat? Can anyone recommend some good documentation on what
 exactly JBoss is?









 A1C Adam G Horky

 Application Development Programmer, SCBE

 (618)256-2300




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






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


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







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



Re: [OT] JAVA_OPTS option starting Catalina/JBoss?

2003-10-01 Thread Paul Thomas
On 30/09/2003 23:09 Mick Knutson wrote:
sorry for the OT message...
I have been suggested to add -Xrs to JAVA_OPTS to help with Catalina
shutting down on me after 30 minutes of inactivity.
Do I just add JAVA_OPTS=-Xrs to my global profile in /etc/profile and
Catalina will automatically add those arguments?
Only if you're launching it from a user shell (which will have read 
/etc/profile as part of the log-in sequence). If you've set it up as 
init'd service, I doubt that /etc/profile is read (certainly non RH Linux 
which I use). It might be better to edit startup.sh or something which 
calls it.

HTH

--
Paul Thomas
+--+-+
| Thomas Micro Systems Limited | Software Solutions for the Smaller 
Business |
| Computer Consultants | 
http://www.thomas-micro-systems-ltd.co.uk   |
+--+-+

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


[OT] JAVA_OPTS option starting Catalina/JBoss?

2003-09-30 Thread Mick Knutson
sorry for the OT message...
I have been suggested to add -Xrs to JAVA_OPTS to help with Catalina
shutting down on me after 30 minutes of inactivity.
Do I just add JAVA_OPTS=-Xrs to my global profile in /etc/profile and
Catalina will automatically add those arguments?

---
Thanks
Mick Knutson

coming soon:
Your SOS: Your personal emergency contact system.
http://YourSoS.com

+001(805) 563-0666 Office
+001 (708) 570-2772 Fax
---

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



[OT] Hibernate joins JBoss

2003-09-20 Thread Steve Raeburn
I know a lot of Struts developers use Hibernate as their persistence
mechanism so this announcement may be of some interest.

http://www.hibernate.org/136.html and more at
http://forum.hibernate.org/viewtopic.php?t=515


Steve



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



Session Timeout on JBoss

2003-09-19 Thread reps
Hello,

how and where do i setup the default session timeout on jboss ?

Mit freundlichen Grüßen

Christian Reps, Dipl. Inf. (FH)
Web Applications


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



JBoss

2003-08-14 Thread Kristanto Oetomo
Hi all,
I often hear that established businesses prefer containers such as web
sphere and web logic rather than JBoss to host their EJB. The reason is
that JBoss does not have customer service should some troubles come up.
What do you think guys? Is this true? If not, do you know any
well-established clients that have used JBoss as their EJB container?

Thanks


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



RE: JBoss

2003-08-14 Thread Alex Shneyderman

 
 Hi all,
 I often hear that established businesses prefer containers such as web
 sphere and web logic rather than JBoss to host their EJB. The reason
is
 that JBoss does not have customer service should some troubles come
up.

They just annonced it, so this point is probably not valid anymore.

 What do you think guys? Is this true? If not, do you know any
 well-established clients that have used JBoss as their EJB container?

I use it and had no real problems so far. Then again my apps all
internal and not much traffic going thru it.

I guess this question is better suited for Jboss user list though. You
would get responses from people who use it for sure.

Alex.


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



Re: JBoss

2003-08-11 Thread Gino LV. Ledesma
The part about JBoss not having customer service isn't
quite true. JBoss has commercial support, and can be quite
expensive (depending on your business). The JBoss Group
offer a number of services (which you can read at their
website, here: http://www.jbossgroup.com/index.html),
including development support, production support, and
training among others. The company I've worked for has only
availed of the charged documentation for JBoss 3.x (We
aren't into full-scale JBoss development as yet).

Having brought other EJB Containers into the topic, it _is_
good practice to have your EJBs/EARs support the other
containers and be certified as well. 

You can also check out JBoss's featured customers for
their clients:
http://www.jbossgroup.com/index.html?module=htmlop=userdisplayid=services/references/index.

Gino LV. Ledesma
Ateneo de Manila University
http://www.admu.edu.ph/

// Programmer's Excuse #2: Why do you want to do it that
way?

--- Kristanto Oetomo [EMAIL PROTECTED] wrote:
 Hi all,
 I often hear that established businesses prefer
 containers such as web
 sphere and web logic rather than JBoss to host their EJB.
 The reason is
 that JBoss does not have customer service should some
 troubles come up.
 What do you think guys? Is this true? If not, do you know
 any
 well-established clients that have used JBoss as their
 EJB container?
 


=


__
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software
http://sitebuilder.yahoo.com

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



multiple forms on one page on JBoss 3.2.1

2003-08-04 Thread Amit Kirdatt
I have a page with two forms. The page works on other servlet containers
like tomcat and weblogic, but when we switched to JBoss it could not find
any of the form bean elements after the html:form tag on the second form. 
Any ideas on how to fix this?


This e-mail, including attachments, may include confidential and/or
proprietary information, and may be used only by the person or entity to
which it is addressed. If the reader of this e-mail is not the intended
recipient or his or her authorized agent, the reader is hereby notified that
any dissemination, distribution or copying of this e-mail is prohibited. If
you have received this e-mail in error, please notify the sender by replying
to this message and delete this e-mail immediately.

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



RE: multiple forms on one page on JBoss 3.2.1

2003-08-04 Thread Amit Kirdatt
Nevermind, I figured it out! We were missing property on an html:options
tag. 

-Original Message-
From: Amit Kirdatt 
Sent: Monday, August 04, 2003 8:04 AM
To: '[EMAIL PROTECTED]'
Subject: multiple forms on one page on JBoss 3.2.1


I have a page with two forms. The page works on other servlet containers
like tomcat and weblogic, but when we switched to JBoss it could not find
any of the form bean elements after the html:form tag on the second form. 
Any ideas on how to fix this?


This e-mail, including attachments, may include confidential and/or
proprietary information, and may be used only by the person or entity to
which it is addressed. If the reader of this e-mail is not the intended
recipient or his or her authorized agent, the reader is hereby notified that
any dissemination, distribution or copying of this e-mail is prohibited. If
you have received this e-mail in error, please notify the sender by replying
to this message and delete this e-mail immediately.

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


This e-mail, including attachments, may include confidential and/or
proprietary information, and may be used only by the person or entity to
which it is addressed. If the reader of this e-mail is not the intended
recipient or his or her authorized agent, the reader is hereby notified that
any dissemination, distribution or copying of this e-mail is prohibited. If
you have received this e-mail in error, please notify the sender by replying
to this message and delete this e-mail immediately.

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



RE: JBoss configuration problem with struts

2003-07-22 Thread Younis, Shahzaib

we r using JBOSS-3.2.1,
I will also check at JBoss forms though.

 -Original Message-
 From: Erez Efrati [SMTP:[EMAIL PROTECTED]
 Sent: Monday, July 21, 2003 6:11 PM
 To:   'Struts Users Mailing List'
 Subject:  RE: JBoss configuration problem with struts
 
 What version of JBoss? I personally deploy an EAR file instead of just
 WAR. I heard something about a problem with WAR deployment a long time
 ago, but I am not sure if that is still the case. I would advise you to
 check with the Forums on the JBoss.org site - I find them very efficient
 and helpful.
 
 Erez
 
 -Original Message-
 From: Younis, Shahzaib [mailto:[EMAIL PROTECTED] 
 Sent: Monday, July 21, 2003 10:59 PM
 To: 'Struts Users Mailing List'
 Subject: RE: JBoss configuration problem with struts
 
 Oops! 
 
 validation.xml code is this one:
 
field property=username
   depends=required
   arg0   key=prompt.username resource=true /
   /field
 
   and in the case of validation failure,on the xml end, 
 
   I get error ???en_US.prompt.username??? is required, instead
 of
 User Name
   is required
 
   ApplicationResources.properties snapshot is this:
 
   prompt.username = User Name
 
   Now the war file is working fine in all directory, but not in
 default
   directory,
   it seems like its not extracting prompts from properties file.
 
 
  -Original Message-
  From:   Younis, Shahzaib [SMTP:[EMAIL PROTECTED]
  Sent:   Monday, July 21, 2003 3:55 PM
  To: 'Struts Users Mailing List'
  Subject:RE: JBoss configuration problem with struts
  
  
  Ok here's what I'm trying to do.
  
  validation.xml:
  
  field property=username
  depends=required
  arg0   key=logon.username.error resource=true /
  /field
  
  and in the case of validation failure,on the xml end, 
  
  I get error ???en_US.prompt.username??? is required, instead of
 User
  Name
  is required
  
  ApplicationResources.properties snapshot is this:
  
  prompt.username = User Name
  
  Now the war file is working fine in all directory, but not in default
  directory,
  it seems like its not extracting prompts from properties file.
  
  
  
   -Original Message-
   From: Erez Efrati [SMTP:[EMAIL PROTECTED]
   Sent: Monday, July 21, 2003 4:48 PM
   To:   'Struts Users Mailing List'
   Subject:  RE: JBoss configuration problem with struts
   
   If you just put more information and specify more about what and how
 did
   you do. Just for of it, I am working with JBoss and Struts and it
 all
   works just fine under the JBoss default.
   
   Erez
   
   -Original Message-
   From: Younis, Shahzaib [mailto:[EMAIL PROTECTED] 
   Sent: Monday, July 21, 2003 10:45 PM
   To: 'Struts Users Mailing List'
   Subject: JBoss configuration problem with struts
   
   
   
   After I put my war file into JBOSS all direcotry, it works, 
   but before that it was in default directory and it was not
 extracting
   prompts from properties file.
   
   Any idea
   
   wats the difference between JBOSS sub directory defualt and all
   
   According to JBoss documentation, the only difference, that all
   directory 
   configuration includes services of RMI/IIOP and clustering.
   
   but that should not affect the extraction of prompts from Properties
   file.
   
   Any help will be appreciated, Thanks.
   
   
   
  
 -
   To unsubscribe, e-mail: [EMAIL PROTECTED]
   For additional commands, e-mail: [EMAIL PROTECTED]
   
   
   
  
 -
   To unsubscribe, e-mail: [EMAIL PROTECTED]
   For additional commands, e-mail: [EMAIL PROTECTED]
  
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]

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



JBoss configuration problem with struts

2003-07-21 Thread Younis, Shahzaib


After I put my war file into JBOSS all direcotry, it works, 
but before that it was in default directory and it was not extracting
prompts from properties file.

Any idea

wats the difference between JBOSS sub directory defualt and all

According to JBoss documentation, the only difference, that all directory 
configuration includes services of RMI/IIOP and clustering.

but that should not affect the extraction of prompts from Properties file.

Any help will be appreciated, Thanks.



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



RE: JBoss configuration problem with struts

2003-07-21 Thread Erez Efrati
If you just put more information and specify more about what and how did
you do. Just for of it, I am working with JBoss and Struts and it all
works just fine under the JBoss default.

Erez

-Original Message-
From: Younis, Shahzaib [mailto:[EMAIL PROTECTED] 
Sent: Monday, July 21, 2003 10:45 PM
To: 'Struts Users Mailing List'
Subject: JBoss configuration problem with struts



After I put my war file into JBOSS all direcotry, it works, 
but before that it was in default directory and it was not extracting
prompts from properties file.

Any idea

wats the difference between JBOSS sub directory defualt and all

According to JBoss documentation, the only difference, that all
directory 
configuration includes services of RMI/IIOP and clustering.

but that should not affect the extraction of prompts from Properties
file.

Any help will be appreciated, Thanks.



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



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



RE: JBoss configuration problem with struts

2003-07-21 Thread Younis, Shahzaib

Ok here's what I'm trying to do.

validation.xml:

field property=username
depends=required
arg0   key=logon.username.error resource=true /
/field

and in the case of validation failure,on the xml end, 

I get error ???en_US.prompt.username??? is required, instead of User Name
is required

ApplicationResources.properties snapshot is this:

prompt.username = User Name

Now the war file is working fine in all directory, but not in default
directory,
it seems like its not extracting prompts from properties file.



 -Original Message-
 From: Erez Efrati [SMTP:[EMAIL PROTECTED]
 Sent: Monday, July 21, 2003 4:48 PM
 To:   'Struts Users Mailing List'
 Subject:  RE: JBoss configuration problem with struts
 
 If you just put more information and specify more about what and how did
 you do. Just for of it, I am working with JBoss and Struts and it all
 works just fine under the JBoss default.
 
 Erez
 
 -Original Message-
 From: Younis, Shahzaib [mailto:[EMAIL PROTECTED] 
 Sent: Monday, July 21, 2003 10:45 PM
 To: 'Struts Users Mailing List'
 Subject: JBoss configuration problem with struts
 
 
 
 After I put my war file into JBOSS all direcotry, it works, 
 but before that it was in default directory and it was not extracting
 prompts from properties file.
 
 Any idea
 
 wats the difference between JBOSS sub directory defualt and all
 
 According to JBoss documentation, the only difference, that all
 directory 
 configuration includes services of RMI/IIOP and clustering.
 
 but that should not affect the extraction of prompts from Properties
 file.
 
 Any help will be appreciated, Thanks.
 
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]

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



RE: JBoss configuration problem with struts

2003-07-21 Thread Younis, Shahzaib
Oops! 

validation.xml code is this one:

 field property=username
depends=required
arg0   key=prompt.username resource=true /
/field

and in the case of validation failure,on the xml end, 

I get error ???en_US.prompt.username??? is required, instead of
User Name
is required

ApplicationResources.properties snapshot is this:

prompt.username = User Name

Now the war file is working fine in all directory, but not in
default
directory,
it seems like its not extracting prompts from properties file.


 -Original Message-
 From: Younis, Shahzaib [SMTP:[EMAIL PROTECTED]
 Sent: Monday, July 21, 2003 3:55 PM
 To:   'Struts Users Mailing List'
 Subject:  RE: JBoss configuration problem with struts
 
 
 Ok here's what I'm trying to do.
 
 validation.xml:
 
 field property=username
 depends=required
 arg0   key=logon.username.error resource=true /
   /field
 
 and in the case of validation failure,on the xml end, 
 
 I get error ???en_US.prompt.username??? is required, instead of User
 Name
 is required
 
 ApplicationResources.properties snapshot is this:
 
   prompt.username = User Name
 
 Now the war file is working fine in all directory, but not in default
 directory,
 it seems like its not extracting prompts from properties file.
 
 
 
  -Original Message-
  From:   Erez Efrati [SMTP:[EMAIL PROTECTED]
  Sent:   Monday, July 21, 2003 4:48 PM
  To: 'Struts Users Mailing List'
  Subject:RE: JBoss configuration problem with struts
  
  If you just put more information and specify more about what and how did
  you do. Just for of it, I am working with JBoss and Struts and it all
  works just fine under the JBoss default.
  
  Erez
  
  -Original Message-
  From: Younis, Shahzaib [mailto:[EMAIL PROTECTED] 
  Sent: Monday, July 21, 2003 10:45 PM
  To: 'Struts Users Mailing List'
  Subject: JBoss configuration problem with struts
  
  
  
  After I put my war file into JBOSS all direcotry, it works, 
  but before that it was in default directory and it was not extracting
  prompts from properties file.
  
  Any idea
  
  wats the difference between JBOSS sub directory defualt and all
  
  According to JBoss documentation, the only difference, that all
  directory 
  configuration includes services of RMI/IIOP and clustering.
  
  but that should not affect the extraction of prompts from Properties
  file.
  
  Any help will be appreciated, Thanks.
  
  
  
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
  
  
  
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]

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



RE: JBoss configuration problem with struts

2003-07-21 Thread Erez Efrati
What version of JBoss? I personally deploy an EAR file instead of just
WAR. I heard something about a problem with WAR deployment a long time
ago, but I am not sure if that is still the case. I would advise you to
check with the Forums on the JBoss.org site - I find them very efficient
and helpful.

Erez

-Original Message-
From: Younis, Shahzaib [mailto:[EMAIL PROTECTED] 
Sent: Monday, July 21, 2003 10:59 PM
To: 'Struts Users Mailing List'
Subject: RE: JBoss configuration problem with struts

Oops! 

validation.xml code is this one:

 field property=username
depends=required
arg0   key=prompt.username resource=true /
/field

and in the case of validation failure,on the xml end, 

I get error ???en_US.prompt.username??? is required, instead
of
User Name
is required

ApplicationResources.properties snapshot is this:

prompt.username = User Name

Now the war file is working fine in all directory, but not in
default
directory,
it seems like its not extracting prompts from properties file.


 -Original Message-
 From: Younis, Shahzaib [SMTP:[EMAIL PROTECTED]
 Sent: Monday, July 21, 2003 3:55 PM
 To:   'Struts Users Mailing List'
 Subject:  RE: JBoss configuration problem with struts
 
 
 Ok here's what I'm trying to do.
 
 validation.xml:
 
 field property=username
 depends=required
 arg0   key=logon.username.error resource=true /
   /field
 
 and in the case of validation failure,on the xml end, 
 
 I get error ???en_US.prompt.username??? is required, instead of
User
 Name
 is required
 
 ApplicationResources.properties snapshot is this:
 
   prompt.username = User Name
 
 Now the war file is working fine in all directory, but not in default
 directory,
 it seems like its not extracting prompts from properties file.
 
 
 
  -Original Message-
  From:   Erez Efrati [SMTP:[EMAIL PROTECTED]
  Sent:   Monday, July 21, 2003 4:48 PM
  To: 'Struts Users Mailing List'
  Subject:RE: JBoss configuration problem with struts
  
  If you just put more information and specify more about what and how
did
  you do. Just for of it, I am working with JBoss and Struts and it
all
  works just fine under the JBoss default.
  
  Erez
  
  -Original Message-
  From: Younis, Shahzaib [mailto:[EMAIL PROTECTED] 
  Sent: Monday, July 21, 2003 10:45 PM
  To: 'Struts Users Mailing List'
  Subject: JBoss configuration problem with struts
  
  
  
  After I put my war file into JBOSS all direcotry, it works, 
  but before that it was in default directory and it was not
extracting
  prompts from properties file.
  
  Any idea
  
  wats the difference between JBOSS sub directory defualt and all
  
  According to JBoss documentation, the only difference, that all
  directory 
  configuration includes services of RMI/IIOP and clustering.
  
  but that should not affect the extraction of prompts from Properties
  file.
  
  Any help will be appreciated, Thanks.
  
  
  
 
-
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
  
  
  
 
-
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]

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



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



Re: JBoss Problem

2003-07-12 Thread Joe @ Team345
The easiest thing to debug and get JBoss started is to accept ALL the 
defaults - i.e. just unzip the zip file to your top most directory.

Then start your run.bat script.  Read the first few lines and make sure 
all the settings are correct.  The output should help tell you if, for 
instance, JBOSS_HOME, was not set correctly.

If you start from a clean location, don't deploy anything right away, 
then you should be able to verify that your install is okay and working.

Kristanto Oetomo wrote:

I got the following error when I tried to start the service:

Could not start the JBoss30 service on Local Computer. The service did
not return an error. This could be an internal Windows Error or an
internal service error. If the problem persists, contact your system
administrator.
I have run the following:
run.bat -c all (under the bin directory of JBoss)
And I have also installed JBoss using JavaService.exe successfully.

Does anyone know a solution to this problem?

Thanks a bunch





 



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


JBoss Problem

2003-07-11 Thread Kristanto Oetomo
I got the following error when I tried to start the service:
 
 Could not start the JBoss30 service on Local Computer. The service did
not return an error. This could be an internal Windows Error or an
internal service error. If the problem persists, contact your system
administrator.

 
I have run the following:
run.bat -c all (under the bin directory of JBoss)
 
And I have also installed JBoss using JavaService.exe successfully.
 
Does anyone know a solution to this problem?
 
Thanks a bunch
 
 
 



Re: JBoss Problem

2003-07-11 Thread James Mitchell
You might try asking on the JBoss Users list.

--
James Mitchell
Software Developer/Struts Evangelist
http://www.struts-atlanta.org
678-910-8017
AIM:jmitchtx


- Original Message - 
From: Kristanto Oetomo [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Friday, July 11, 2003 7:19 AM
Subject: JBoss Problem


 I got the following error when I tried to start the service:
  
  Could not start the JBoss30 service on Local Computer. The service did
 not return an error. This could be an internal Windows Error or an
 internal service error. If the problem persists, contact your system
 administrator.
 
  
 I have run the following:
 run.bat -c all (under the bin directory of JBoss)
  
 And I have also installed JBoss using JavaService.exe successfully.
  
 Does anyone know a solution to this problem?
  
 Thanks a bunch
  
  
  
 
 


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



RE: JAAS Struts JBoss + Tomcat

2003-07-07 Thread Stephen Brown

  1. From what I read here, I saw that I should probably use 
 the FORM auth
  method, and that this page should not use any of the Struts tags. Is
  that right? 
 
 It is best to use the FORM authentication because you can encrypt it 
 with SSL - otherwise your users' passwords will go over the 
 net in plain 
 text.
 
 I haven't tried using struts tags in the login form. From what Craig 
 said late yesterday about the login form (do a search on 
 j_security), it 
 is best to view it as totally seperate from your application - 
 essentially part of the container.
 
  

Using filters from the servlet 2.3 specifications is a very nice way to
manage auth/auth constraints.  Since you can manage filters however you
like, you can easily implement different levels of authorization for
different parts of your site.  Struts tags work fine in a login form however
you get to it.


Re: JAAS Struts JBoss + Tomcat

2003-07-05 Thread Paul Thomas
On 04/07/2003 16:16 Erez Efrati wrote:
Hi, I am trying to integrate the JAAS into my Struts application running
on JBoss 3.0.7 + Tomcat. I am a newbie here, and I would appreciate your
help on several questions:
1. From what I read here, I saw that I should probably use the FORM auth
method, and that this page should not use any of the Struts tags. Is
that right?
html:form might be a problem but bean:message works fine for me.

2. In my application, the first thing a user does is passing a
registration wizard. How can I set different set of permissions using
the web.xml to the registration wizard pages and to the rest of the
application, where both are handled by the struts ActionServlet servlet?
The ActionServlet doesn't really enter into it. You define constaints 
against urls. So you might have a url /register.do for your registration 
wizard and /showdetails.do to show some detail page. Each would have its 
own declared contraints in web.xml. I recommend reading the 2.3 servlet 
specs.

3. Regarding more to JBoss + Tomcat, I don't understand what happens
when a web client accesses a protected page. Does JBossSX which
implements the authentication takes over and perform the authentication?
After the authentication is done, does my Struts action can invoke EJB
methods freely or should they authenticate as well?
I can't answer that I'm afraid. I would suggest you get a sample app 
working under Tomcat alone then try deploying it under JBoss.

HTH

--
Paul Thomas
+--+-+
| Thomas Micro Systems Limited | Software Solutions for the Smaller 
Business |
| Computer Consultants | 
http://www.thomas-micro-systems-ltd.co.uk   |
+--+-+

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


RE: JAAS Struts JBoss + Tomcat

2003-07-05 Thread Erez Efrati
Thanks a lot Paul for the answers.

-- Erez

-Original Message-
From: Paul Thomas [mailto:[EMAIL PROTECTED] 
Sent: Saturday, July 05, 2003 2:49 PM
To: struts-user
Subject: Re: JAAS Struts  JBoss + Tomcat


On 04/07/2003 16:16 Erez Efrati wrote:
 Hi, I am trying to integrate the JAAS into my Struts application
running
 on JBoss 3.0.7 + Tomcat. I am a newbie here, and I would appreciate
your
 help on several questions:
 
 1. From what I read here, I saw that I should probably use the FORM
auth
 method, and that this page should not use any of the Struts tags. Is
 that right?

html:form might be a problem but bean:message works fine for me.

 
 2. In my application, the first thing a user does is passing a
 registration wizard. How can I set different set of permissions using
 the web.xml to the registration wizard pages and to the rest of the
 application, where both are handled by the struts ActionServlet
servlet?

The ActionServlet doesn't really enter into it. You define constaints 
against urls. So you might have a url /register.do for your registration

wizard and /showdetails.do to show some detail page. Each would have its

own declared contraints in web.xml. I recommend reading the 2.3 servlet 
specs.

 3. Regarding more to JBoss + Tomcat, I don't understand what happens
 when a web client accesses a protected page. Does JBossSX which
 implements the authentication takes over and perform the
authentication?
 After the authentication is done, does my Struts action can invoke EJB
 methods freely or should they authenticate as well?

I can't answer that I'm afraid. I would suggest you get a sample app 
working under Tomcat alone then try deploying it under JBoss.

HTH

-- 
Paul Thomas
+--+
-+
| Thomas Micro Systems Limited | Software Solutions for the Smaller 
Business |
| Computer Consultants | 
http://www.thomas-micro-systems-ltd.co.uk   |
+--+
-+

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



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



JAAS Struts JBoss + Tomcat

2003-07-04 Thread Erez Efrati
Hi, I am trying to integrate the JAAS into my Struts application running
on JBoss 3.0.7 + Tomcat. I am a newbie here, and I would appreciate your
help on several questions:

1. From what I read here, I saw that I should probably use the FORM auth
method, and that this page should not use any of the Struts tags. Is
that right? 

2. In my application, the first thing a user does is passing a
registration wizard. How can I set different set of permissions using
the web.xml to the registration wizard pages and to the rest of the
application, where both are handled by the struts ActionServlet servlet?

3. Regarding more to JBoss + Tomcat, I don't understand what happens
when a web client accesses a protected page. Does JBossSX which
implements the authentication takes over and perform the authentication?
After the authentication is done, does my Struts action can invoke EJB
methods freely or should they authenticate as well?

Thanks in advance,

-- Erez




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



Re: JAAS Struts JBoss + Tomcat

2003-07-04 Thread Adam Hardy
Erez Efrati wrote:
Hi, I am trying to integrate the JAAS into my Struts application running
on JBoss 3.0.7 + Tomcat. I am a newbie here, and I would appreciate your
help on several questions:
1. From what I read here, I saw that I should probably use the FORM auth
method, and that this page should not use any of the Struts tags. Is
that right? 
It is best to use the FORM authentication because you can encrypt it 
with SSL - otherwise your users' passwords will go over the net in plain 
text.

I haven't tried using struts tags in the login form. From what Craig 
said late yesterday about the login form (do a search on j_security), it 
is best to view it as totally seperate from your application - 
essentially part of the container.

2. In my application, the first thing a user does is passing a
registration wizard. How can I set different set of permissions using
the web.xml to the registration wizard pages and to the rest of the
application, where both are handled by the struts ActionServlet servlet?
You have action mappings for your app's modules, correct? Set up 
security constraint in web.xml to secure the different action mappings 
in different ways - i.e. wizard.do

3. Regarding more to JBoss + Tomcat, I don't understand what happens
when a web client accesses a protected page. Does JBossSX which
implements the authentication takes over and perform the authentication?
After the authentication is done, does my Struts action can invoke EJB
methods freely or should they authenticate as well?
sorry don't know jboss.

Adam

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


Re: Struts/Jboss 3.2.x

2003-06-30 Thread Konstadinis Euaggelos
You must define where your Rmi Server is listening , by default in Jboss is
1099.


- Original Message -
From: Buics [EMAIL PROTECTED]
To: Struts Users Mailing List [EMAIL PROTECTED]
Sent: Saturday, June 28, 2003 5:01 AM
Subject: Re: Struts/Jboss 3.2.x


 I still have this exception
 java.rmi.ServerException: RemoteException occurred in server thread;
nested exce

 ption is:
 java.rmi.ServerException: EJBException:; nested exception is:
 javax.ejb.EJBException: null
 at
sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:292)
 at sun.rmi.transport.Transport$1.run(Transport.java:148)
 at java.security.AccessController.doPrivileged(Native Method)
 at sun.rmi.transport.Transport.serviceCall(Transport.java:144)
 at
sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:4

 thank you anyway

 Konstadinis Euaggelos wrote:

  Probaly as i understand, you have your web application in Tomcat, and
your
  backoffice application (EJBs, JavaBeans) in JBoss,
 
  1. JBoss have an embedded Tomcat 4.1.24 you can use this.
 
  2. If you want to use tomcat as an seperate servlet-cointainer , you
must
  insert you client jars from JBOSS_HOME/client to the libs of the your
  tomcat,
 
  3. In your jsp when you lookup an object
 
  you must create a Property Object, Properties props = new Properties();
  and you must add the properties for the jboss.  @see
  JBOSS_DIR/server/default/conf/jndi.properties
 
  InitialContex ctx = new InitialContex(props)
 
  Hope this help you .
 
  - Original Message -
  From: Buics [EMAIL PROTECTED]
  To: Struts Users Mailing List [EMAIL PROTECTED]
  Sent: Friday, June 27, 2003 11:31 AM
  Subject: Re: Struts/Jboss 3.2.x
 
   Thank you for that . .
  
   Here's my setup ...
   My jboss and tomcat was installed in separate box.
   say ..
   jboss -- server_1
   tomcat -- server_2
  
   my problem is in the lookup part,
  
   javax.naming.NameNotFoundException: FinishedGoods not bound
   at
org.jnp.server.NamingServer.getBinding(NamingServer.java:495)
   at
org.jnp.server.NamingServer.getBinding(NamingServer.java:503)
   at
org.jnp.server.NamingServer.getObject(NamingServer.java:509)
   at org.jnp.server.NamingServer.lookup(NamingServer.java:282)
   at org.jnp.server.NamingServer.lookup(NamingServer.java:256)
   at org.jnp.server.NamingServer.lookup(NamingServer.java:256)
   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
   at
  sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
  
   java:39)
  
   TIA,
   buics
  
   Konstadinis Euaggelos wrote:
  
The jars that are in the lib directory of the Struts,
There are two ways for this,
   
1. to put these jars in the server/default/lib   directory,
2. second to put these jars in the lib directory you web-application
WEB-INF/lib
   
Vangos
   
- Original Message -
From: Buics [EMAIL PROTECTED]
To: Struts Users Mailing List [EMAIL PROTECTED]
Sent: Friday, June 27, 2003 9:37 AM
Subject: Re: Struts/Jboss 3.2.x
   
 Thank you so much for your reply.

 what are the necessary run time classes that needs to be included
in
  the
 application.

 TIA,
 buics


 Konstadinis Euaggelos wrote:

  I haven't face any problem,
 
  V.
  - Original Message -
  From: Buics [EMAIL PROTECTED]
  To: Struts Users Mailing List [EMAIL PROTECTED]
  Sent: Friday, June 27, 2003 1:27 AM
  Subject: Struts/Jboss 3.2.x
 
   Is there any incompatibility issues between struts 1.1 and
jboss
3.2.x?
  
   TIA,
   buics
  
  
 

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

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


   
  
 
 --
  --

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

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

Re: Struts/Jboss 3.2.x

2003-06-27 Thread Konstadinis Euaggelos
I haven't face any problem,

V.
- Original Message -
From: Buics [EMAIL PROTECTED]
To: Struts Users Mailing List [EMAIL PROTECTED]
Sent: Friday, June 27, 2003 1:27 AM
Subject: Struts/Jboss 3.2.x


 Is there any incompatibility issues between struts 1.1 and jboss 3.2.x?

 TIA,
 buics








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


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



RE: Struts/Jboss 3.2.x

2003-06-27 Thread Nimish Chourey , Tidel Park - Chennai
Is anybody using JASS with JBOSS .. 

-Original Message-
From: Konstadinis Euaggelos [mailto:[EMAIL PROTECTED]
Sent: Thursday, February 27, 2003 1:32 PM
To: Struts Users Mailing List
Subject: Re: Struts/Jboss 3.2.x


I haven't face any problem,

V.
- Original Message -
From: Buics [EMAIL PROTECTED]
To: Struts Users Mailing List [EMAIL PROTECTED]
Sent: Friday, June 27, 2003 1:27 AM
Subject: Struts/Jboss 3.2.x


 Is there any incompatibility issues between struts 1.1 and jboss 3.2.x?

 TIA,
 buics








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


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


Re: Struts/Jboss 3.2.x

2003-06-27 Thread Buics
Thank you so much for your reply.

what are the necessary run time classes that needs to be included in the
application.

TIA,
buics


Konstadinis Euaggelos wrote:

 I haven't face any problem,

 V.
 - Original Message -
 From: Buics [EMAIL PROTECTED]
 To: Struts Users Mailing List [EMAIL PROTECTED]
 Sent: Friday, June 27, 2003 1:27 AM
 Subject: Struts/Jboss 3.2.x

  Is there any incompatibility issues between struts 1.1 and jboss 3.2.x?
 
  TIA,
  buics
 
 

 
 

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

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

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

RE: Struts/Jboss 3.2.x

2003-06-27 Thread Marco.Mistroni
HI,
i have also a struts app running under jboss 3.2.1
jars that i have put in  WEB-INF\lib are all the jars that u find
in the lib directory of your struts distribution

don't forget to put all the .tld that u find in the struts_dirlib
in your WEB-INF directory of your app

regards
marco

 -Original Message-
 From: ext Buics [mailto:[EMAIL PROTECTED]
 Sent: 27 June, 2003 10:37
 To: Struts Users Mailing List
 Subject: Re: Struts/Jboss 3.2.x
 
 
 Thank you so much for your reply.
 
 what are the necessary run time classes that needs to be 
 included in the
 application.
 
 TIA,
 buics
 
 
 Konstadinis Euaggelos wrote:
 
  I haven't face any problem,
 
  V.
  - Original Message -
  From: Buics [EMAIL PROTECTED]
  To: Struts Users Mailing List [EMAIL PROTECTED]
  Sent: Friday, June 27, 2003 1:27 AM
  Subject: Struts/Jboss 3.2.x
 
   Is there any incompatibility issues between struts 1.1 
 and jboss 3.2.x?
  
   TIA,
   buics
  
  
 
  
 --
 --
  
 
   
 -
   To unsubscribe, e-mail: [EMAIL PROTECTED]
   For additional commands, e-mail: 
 [EMAIL PROTECTED]
 
  
 -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 

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



Re: Struts/Jboss 3.2.x

2003-06-27 Thread Konstadinis Euaggelos
The jars that are in the lib directory of the Struts,
There are two ways for this,

1. to put these jars in the server/default/lib   directory,
2. second to put these jars in the lib directory you web-application
WEB-INF/lib


Vangos


- Original Message -
From: Buics [EMAIL PROTECTED]
To: Struts Users Mailing List [EMAIL PROTECTED]
Sent: Friday, June 27, 2003 9:37 AM
Subject: Re: Struts/Jboss 3.2.x


 Thank you so much for your reply.

 what are the necessary run time classes that needs to be included in the
 application.

 TIA,
 buics


 Konstadinis Euaggelos wrote:

  I haven't face any problem,
 
  V.
  - Original Message -
  From: Buics [EMAIL PROTECTED]
  To: Struts Users Mailing List [EMAIL PROTECTED]
  Sent: Friday, June 27, 2003 1:27 AM
  Subject: Struts/Jboss 3.2.x
 
   Is there any incompatibility issues between struts 1.1 and jboss
3.2.x?
  
   TIA,
   buics
  
  
 

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








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


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



Re: Struts/Jboss 3.2.x

2003-06-27 Thread Buics
Thank you for that . .

Here's my setup ...
My jboss and tomcat was installed in separate box.
say ..
jboss -- server_1
tomcat -- server_2

my problem is in the lookup part,

javax.naming.NameNotFoundException: FinishedGoods not bound
at org.jnp.server.NamingServer.getBinding(NamingServer.java:495)
at org.jnp.server.NamingServer.getBinding(NamingServer.java:503)
at org.jnp.server.NamingServer.getObject(NamingServer.java:509)
at org.jnp.server.NamingServer.lookup(NamingServer.java:282)
at org.jnp.server.NamingServer.lookup(NamingServer.java:256)
at org.jnp.server.NamingServer.lookup(NamingServer.java:256)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.

java:39)

TIA,
buics

Konstadinis Euaggelos wrote:

 The jars that are in the lib directory of the Struts,
 There are two ways for this,

 1. to put these jars in the server/default/lib   directory,
 2. second to put these jars in the lib directory you web-application
 WEB-INF/lib

 Vangos

 - Original Message -
 From: Buics [EMAIL PROTECTED]
 To: Struts Users Mailing List [EMAIL PROTECTED]
 Sent: Friday, June 27, 2003 9:37 AM
 Subject: Re: Struts/Jboss 3.2.x

  Thank you so much for your reply.
 
  what are the necessary run time classes that needs to be included in the
  application.
 
  TIA,
  buics
 
 
  Konstadinis Euaggelos wrote:
 
   I haven't face any problem,
  
   V.
   - Original Message -
   From: Buics [EMAIL PROTECTED]
   To: Struts Users Mailing List [EMAIL PROTECTED]
   Sent: Friday, June 27, 2003 1:27 AM
   Subject: Struts/Jboss 3.2.x
  
Is there any incompatibility issues between struts 1.1 and jboss
 3.2.x?
   
TIA,
buics
   
   
  
 
  --
 --
   
  
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
  
   -
   To unsubscribe, e-mail: [EMAIL PROTECTED]
   For additional commands, e-mail: [EMAIL PROTECTED]
 
 

 
 

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

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

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

Re: Struts/Jboss 3.2.x

2003-06-27 Thread Konstadinis Euaggelos
Probaly as i understand, you have your web application in Tomcat, and your
backoffice application (EJBs, JavaBeans) in JBoss,

1. JBoss have an embedded Tomcat 4.1.24 you can use this.

2. If you want to use tomcat as an seperate servlet-cointainer , you must
insert you client jars from JBOSS_HOME/client to the libs of the your
tomcat,

3. In your jsp when you lookup an object

you must create a Property Object, Properties props = new Properties();
and you must add the properties for the jboss.  @see
JBOSS_DIR/server/default/conf/jndi.properties


InitialContex ctx = new InitialContex(props)

Hope this help you .


- Original Message -
From: Buics [EMAIL PROTECTED]
To: Struts Users Mailing List [EMAIL PROTECTED]
Sent: Friday, June 27, 2003 11:31 AM
Subject: Re: Struts/Jboss 3.2.x


 Thank you for that . .

 Here's my setup ...
 My jboss and tomcat was installed in separate box.
 say ..
 jboss -- server_1
 tomcat -- server_2

 my problem is in the lookup part,

 javax.naming.NameNotFoundException: FinishedGoods not bound
 at org.jnp.server.NamingServer.getBinding(NamingServer.java:495)
 at org.jnp.server.NamingServer.getBinding(NamingServer.java:503)
 at org.jnp.server.NamingServer.getObject(NamingServer.java:509)
 at org.jnp.server.NamingServer.lookup(NamingServer.java:282)
 at org.jnp.server.NamingServer.lookup(NamingServer.java:256)
 at org.jnp.server.NamingServer.lookup(NamingServer.java:256)
 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.

 java:39)

 TIA,
 buics

 Konstadinis Euaggelos wrote:

  The jars that are in the lib directory of the Struts,
  There are two ways for this,
 
  1. to put these jars in the server/default/lib   directory,
  2. second to put these jars in the lib directory you web-application
  WEB-INF/lib
 
  Vangos
 
  - Original Message -
  From: Buics [EMAIL PROTECTED]
  To: Struts Users Mailing List [EMAIL PROTECTED]
  Sent: Friday, June 27, 2003 9:37 AM
  Subject: Re: Struts/Jboss 3.2.x
 
   Thank you so much for your reply.
  
   what are the necessary run time classes that needs to be included in
the
   application.
  
   TIA,
   buics
  
  
   Konstadinis Euaggelos wrote:
  
I haven't face any problem,
   
V.
- Original Message -
From: Buics [EMAIL PROTECTED]
To: Struts Users Mailing List [EMAIL PROTECTED]
Sent: Friday, June 27, 2003 1:27 AM
Subject: Struts/Jboss 3.2.x
   
 Is there any incompatibility issues between struts 1.1 and jboss
  3.2.x?

 TIA,
 buics


   
  
 
 --
  --

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

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








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


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



Re: Struts/Jboss 3.2.x

2003-06-27 Thread Buics
I still have this exception
java.rmi.ServerException: RemoteException occurred in server thread; nested exce

ption is:
java.rmi.ServerException: EJBException:; nested exception is:
javax.ejb.EJBException: null
at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:292)
at sun.rmi.transport.Transport$1.run(Transport.java:148)
at java.security.AccessController.doPrivileged(Native Method)
at sun.rmi.transport.Transport.serviceCall(Transport.java:144)
at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:4

thank you anyway

Konstadinis Euaggelos wrote:

 Probaly as i understand, you have your web application in Tomcat, and your
 backoffice application (EJBs, JavaBeans) in JBoss,

 1. JBoss have an embedded Tomcat 4.1.24 you can use this.

 2. If you want to use tomcat as an seperate servlet-cointainer , you must
 insert you client jars from JBOSS_HOME/client to the libs of the your
 tomcat,

 3. In your jsp when you lookup an object

 you must create a Property Object, Properties props = new Properties();
 and you must add the properties for the jboss.  @see
 JBOSS_DIR/server/default/conf/jndi.properties

 InitialContex ctx = new InitialContex(props)

 Hope this help you .

 - Original Message -
 From: Buics [EMAIL PROTECTED]
 To: Struts Users Mailing List [EMAIL PROTECTED]
 Sent: Friday, June 27, 2003 11:31 AM
 Subject: Re: Struts/Jboss 3.2.x

  Thank you for that . .
 
  Here's my setup ...
  My jboss and tomcat was installed in separate box.
  say ..
  jboss -- server_1
  tomcat -- server_2
 
  my problem is in the lookup part,
 
  javax.naming.NameNotFoundException: FinishedGoods not bound
  at org.jnp.server.NamingServer.getBinding(NamingServer.java:495)
  at org.jnp.server.NamingServer.getBinding(NamingServer.java:503)
  at org.jnp.server.NamingServer.getObject(NamingServer.java:509)
  at org.jnp.server.NamingServer.lookup(NamingServer.java:282)
  at org.jnp.server.NamingServer.lookup(NamingServer.java:256)
  at org.jnp.server.NamingServer.lookup(NamingServer.java:256)
  at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  at
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
 
  java:39)
 
  TIA,
  buics
 
  Konstadinis Euaggelos wrote:
 
   The jars that are in the lib directory of the Struts,
   There are two ways for this,
  
   1. to put these jars in the server/default/lib   directory,
   2. second to put these jars in the lib directory you web-application
   WEB-INF/lib
  
   Vangos
  
   - Original Message -
   From: Buics [EMAIL PROTECTED]
   To: Struts Users Mailing List [EMAIL PROTECTED]
   Sent: Friday, June 27, 2003 9:37 AM
   Subject: Re: Struts/Jboss 3.2.x
  
Thank you so much for your reply.
   
what are the necessary run time classes that needs to be included in
 the
application.
   
TIA,
buics
   
   
Konstadinis Euaggelos wrote:
   
 I haven't face any problem,

 V.
 - Original Message -
 From: Buics [EMAIL PROTECTED]
 To: Struts Users Mailing List [EMAIL PROTECTED]
 Sent: Friday, June 27, 2003 1:27 AM
 Subject: Struts/Jboss 3.2.x

  Is there any incompatibility issues between struts 1.1 and jboss
   3.2.x?
 
  TIA,
  buics
 
 

   
  
  --
   --
 


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

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

 
 

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

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

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

Struts/Jboss 3.2.x

2003-06-26 Thread Buics
Is there any incompatibility issues between struts 1.1 and jboss 3.2.x?

TIA,
buics

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

JBoss v.s. tomcat?

2003-06-22 Thread Sloan Bowman
I have been using Tomcat for over a year now and I am very happy with 
the way it performs. Recently though I have been looking at JBoss, 
does any one here use JBoss or have any comments on the differents 
besides J2EE compliance. Thanks for your help.

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


RE: JBoss v.s. tomcat?

2003-06-22 Thread Andrew Hill
JBoss actually uses tomcat (or jetty, (etc...)) to provide its servlet
container functionality.

-Original Message-
From: Sloan Bowman [mailto:[EMAIL PROTECTED]
Sent: Monday, 23 June 2003 11:00
To: Struts-user MailingList
Subject: JBoss v.s. tomcat?


I have been using Tomcat for over a year now and I am very happy with
the way it performs. Recently though I have been looking at JBoss,
does any one here use JBoss or have any comments on the differents
besides J2EE compliance. Thanks for your help.

Thanks,
Sloan

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


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



RE: JBoss v.s. tomcat?

2003-06-22 Thread Sloan Bowman
Yes I just did some research and realized that JBoss is simply a EJB 
app server to add J2EE Beans to the  applications. My bad..

Regards,
Sloan
JBoss actually uses tomcat (or jetty, (etc...)) to provide its servlet
container functionality.
-Original Message-
From: Sloan Bowman [mailto:[EMAIL PROTECTED]
Sent: Monday, 23 June 2003 11:00
To: Struts-user MailingList
Subject: JBoss v.s. tomcat?
I have been using Tomcat for over a year now and I am very happy with
the way it performs. Recently though I have been looking at JBoss,
does any one here use JBoss or have any comments on the differents
besides J2EE compliance. Thanks for your help.
Thanks,
Sloan
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


--
Sloan Bowman
www.nashlinux.com
www.q3networks.com
www.aboutgoodlettsville.com
www.spudibby.com
---
Windows 95/NT - 32 bit extensions and a graphical shell for a 16 bit 
patch to an 8 bit operating system originally coded for a 4 bit 
microprocessor, written by a 2 bit company that can't stand 1 bit of 
competition.

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


[OT] DIR Structure for deploying my code on JBoss

2003-06-07 Thread Mick Knutson
I currenlty have my whole struts application in 2 jars and a war inside my 
ear. This is all done via ant. This is quite time consuming at times as it 
can take me as much as 15 minutes between compiles before I can test my 
code. So, I want to modify my ant so it will just deploy the sode itself, 
and not jar/war my files and LIB's. But, as I went strait for the EAR route 
when I started, I do not know the DIR struture I would add all the files to.
I do know about my WEB-INF, WEB-INF/lib, WEB-INF/classes, but what about my 
EJB's, and my libs that are shared bewteen the EJB's and the struts stuff?



---
Thanks...
Mick Knutson
---
_
Add photos to your messages with MSN 8. Get 2 months FREE*.  
http://join.msn.com/?page=features/featuredemail

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


Re: SecurityFilter used with JBoss?

2003-04-06 Thread Max Cooper
Mick,

I suspect that it wouldn't work, but I have never tested it. I offer my
support if you want to try it out, but I don't have any experience with
JBoss.

-Max

- Original Message -
From: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, March 20, 2003 12:09 AM
Subject: SecurityFilter used with JBoss?


JBoss has many PAM modules including one DatabaseServerLoginModule. Can this
be used with the SecurityFilter?

I ask because it seems to be a parameter to add such a realm module:
   !-- start with a Catalina realm adapter to wrap the Catalina realm
defined below --
   realm className=org.securityfilter.realm.catalina.CatalinaRealmAdapter
/




===
Thank You

Mick Knutson

Sr. Designer - Project Trust
aUBS AG, Financial - Zürich
Office: +41 (0)1/234.42.75
Internal: 48194
Mobile: 079.726.14.26

Visit our website at http://www.ubswarburg.com

This message contains confidential information and is intended only
for the individual named.  If you are not the named addressee you
should not disseminate, distribute or copy this e-mail.  Please
notify the sender immediately by e-mail if you have received this
e-mail by mistake and delete this e-mail from your system.

E-mail transmission cannot be guaranteed to be secure or error-free
as information could be intercepted, corrupted, lost, destroyed,
arrive late or incomplete, or contain viruses.  The sender therefore
does not accept liability for any errors or omissions in the contents
of this message which arise as a result of e-mail transmission.  If
verification is required please request a hard-copy version.  This
message is provided for informational purposes and should not be
construed as a solicitation or offer to buy or sell any securities or
related financial instruments.


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




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



Re: [OT] EXTREMELY URGENT: JBoss JAAS/Container Security issue

2003-04-03 Thread Mikael Eriksson
Hello!

Try changing this line in login-config.xml

module-option name = rolesQuerySELECT user_roles, 
user_group FROM USER_ROLES WHERE USERNAME=?/module-option

To

 module-option name = rolesQuerySELECT user_roles, 'Roles' FROM 
USER_ROLES WHERE USERNAME=?/module-option

or change the value of user_group in all rows to Roles.

My understanding of the second parameter that the rolesquery should return 
is that
you can somhow categorize users in diffent ways, but that the default 
user/role handling
should return Roles.

It also sounds like you might have misunderstood how the run-as identity 
is used.
That identity does not affect the callers of a bean or who can call it, it 
says that
when the bean tries to access other beans it will do so with the run-as 
identity.
This is so you can define beans that only can be called by internal 
identities so
that noone can call them directly from the outside.

Regards
/Mikael
At 09:51 2003-04-03 +0200, [EMAIL PROTECTED] wrote:
I appologize for this Off-Topic message, but I desperatly need help!

I have been fighting with the JBoss DatabaseServerLoginModule for almost 2 
months now without success.
I have tried an infinite number of combinations to try to get to a 
_SIMPLE_ solution as outlined by the JBoss manual, the JAAS article in 
JavaWorld, and hundreds of documents and examples from all over the internet.

Well, I just don't have anymore time to waste as my deadline is now 48 
hours away!
I desperately need help:

1. Find someone to offer some help to resolve this by Friday.
2. Direct me somewhere to find the help I need
3. Tell who would be willing to have me hire them for the help I need.
Here is my current situation:
I am using JBoss 3.0.6 with Catalina on NT 4.0, MySql, XDoclet 1.2, Struts 
1.1rc1, JDK 1.4.
I create a beans.jar, common.jar, app.war and package everything into 
app.ear. The only things that are not in my EAR are the mysql-service.xml, 
auth.conf, login-config.xml, and server.policy which reside in the 
$JBOSS_HOME\server\default\conf and the $JBOSS_HOME\server\default\deploy 
directories.
I also attached all the above file in a zip file here in this message.

I have the DatabaseServerLoginModule configured and it seems to be 
operating, but not correctly.
When I try to access a page under /private/* I get forwarded to /logon.jsp 
correctly.

My MySql Database has 2 tables:
TABLE_USER: columns: username, password
TABLE_USER_ROLES: columns: username, user_roles, user_group
TABLE_USER: data: mick, mickPassword
TABLE_USER_ROLES: data1: mick, user, user
TABLE_USER_ROLES: data2: mick, admin, admin
I then type in j_username: mick, j_password: mickPassword and click ENTER.
I seem to be logged in successfully as the console shows that I have 3 
Principals: mick, user, admin and when I attempt to navigate to 
pages in the private area that do not require EJB access, I continue to 
see that my Principal is kept successfully through each page. So I do 
_not_ currently have the Principal=null issue.
I do however have a UserPreferenceFilter that I check if the user is in 
role user, admin, or guest and all 3 come up as NO.

Also, when I attempt to access a page that goes to my EJB layer, I get a 
Security violation error that states user must belong to [ANYONE] role. 
But I have added a run-as = InternalUser for all my EJB's so far. But 
that does not seem to work. When I remove the run-as=InternalUser, I get 
a Security Violation that states the user must belong to the role I specified.

So it seems that my main 2 issues are getting the Roles to stick to the 
user when they login, and the EJB's to be able to use the user Roles, or 
the run-as=InternalUser



-
Thank You
Mick Knutson
Sr. Designer - Project Trust
aUBS AG, Financial - Zürich
Office: +41 (0)1/234.42.75
Internal: 48194
Mobile: 079.726.14.26
-


Visit our website at http://www.ubswarburg.com

This message contains confidential information and is intended only
for the individual named.  If you are not the named addressee you
should not disseminate, distribute or copy this e-mail.  Please
notify the sender immediately by e-mail if you have received this
e-mail by mistake and delete this e-mail from your system.
E-mail transmission cannot be guaranteed to be secure or error-free
as information could be intercepted, corrupted, lost, destroyed,
arrive late or incomplete, or contain viruses.  The sender therefore
does not accept liability for any errors or omissions in the contents
of this message which arise as a result of e-mail transmission.  If
verification is required please request a hard-copy version.  This
message is provided for informational purposes and should not be
construed as a solicitation or offer to buy or sell any securities or
related financial instruments.
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL

RE: [OT] EXTREMELY URGENT: JBoss JAAS/Container Security issue

2003-04-03 Thread Mick . Knutson
I will try the module-option ... in about 30 minutes. Thanks.

On the run-as, I do understand that this bean will run other beans as this identity. 
My Session Facade actually have permission unchecked so anyone should be able to get 
to my session facade currently. It is not what I want, but it is a start at least. 
Then I can get the user Roles issue resolved.

I am very grateful for your help!
This JAAS has been so difficult!

-Original Message-
From: Mikael Eriksson [mailto:[EMAIL PROTECTED]
Sent: Thursday, April 03, 2003 11:17 AM
To: Struts Users Mailing List
Cc: Knutson, Mick
Subject: Re: [OT] EXTREMELY URGENT: JBoss JAAS/Container Security issue


Hello!

Try changing this line in login-config.xml

 module-option name = rolesQuerySELECT user_roles, 
user_group FROM USER_ROLES WHERE USERNAME=?/module-option

To

  module-option name = rolesQuerySELECT user_roles, 'Roles' FROM 
USER_ROLES WHERE USERNAME=?/module-option

or change the value of user_group in all rows to Roles.

My understanding of the second parameter that the rolesquery should return 
is that
you can somhow categorize users in diffent ways, but that the default 
user/role handling
should return Roles.


It also sounds like you might have misunderstood how the run-as identity 
is used.
That identity does not affect the callers of a bean or who can call it, it 
says that
when the bean tries to access other beans it will do so with the run-as 
identity.
This is so you can define beans that only can be called by internal 
identities so
that noone can call them directly from the outside.

Regards
/Mikael


At 09:51 2003-04-03 +0200, [EMAIL PROTECTED] wrote:
I appologize for this Off-Topic message, but I desperatly need help!

I have been fighting with the JBoss DatabaseServerLoginModule for almost 2 
months now without success.
I have tried an infinite number of combinations to try to get to a 
_SIMPLE_ solution as outlined by the JBoss manual, the JAAS article in 
JavaWorld, and hundreds of documents and examples from all over the internet.

Well, I just don't have anymore time to waste as my deadline is now 48 
hours away!
I desperately need help:

1. Find someone to offer some help to resolve this by Friday.
2. Direct me somewhere to find the help I need
3. Tell who would be willing to have me hire them for the help I need.

Here is my current situation:
I am using JBoss 3.0.6 with Catalina on NT 4.0, MySql, XDoclet 1.2, Struts 
1.1rc1, JDK 1.4.
I create a beans.jar, common.jar, app.war and package everything into 
app.ear. The only things that are not in my EAR are the mysql-service.xml, 
auth.conf, login-config.xml, and server.policy which reside in the 
$JBOSS_HOME\server\default\conf and the $JBOSS_HOME\server\default\deploy 
directories.
I also attached all the above file in a zip file here in this message.

I have the DatabaseServerLoginModule configured and it seems to be 
operating, but not correctly.
When I try to access a page under /private/* I get forwarded to /logon.jsp 
correctly.

My MySql Database has 2 tables:
TABLE_USER: columns: username, password
TABLE_USER_ROLES: columns: username, user_roles, user_group

TABLE_USER: data: mick, mickPassword
TABLE_USER_ROLES: data1: mick, user, user
TABLE_USER_ROLES: data2: mick, admin, admin

I then type in j_username: mick, j_password: mickPassword and click ENTER.
I seem to be logged in successfully as the console shows that I have 3 
Principals: mick, user, admin and when I attempt to navigate to 
pages in the private area that do not require EJB access, I continue to 
see that my Principal is kept successfully through each page. So I do 
_not_ currently have the Principal=null issue.
I do however have a UserPreferenceFilter that I check if the user is in 
role user, admin, or guest and all 3 come up as NO.

Also, when I attempt to access a page that goes to my EJB layer, I get a 
Security violation error that states user must belong to [ANYONE] role. 
But I have added a run-as = InternalUser for all my EJB's so far. But 
that does not seem to work. When I remove the run-as=InternalUser, I get 
a Security Violation that states the user must belong to the role I specified.

So it seems that my main 2 issues are getting the Roles to stick to the 
user when they login, and the EJB's to be able to use the user Roles, or 
the run-as=InternalUser



-
Thank You
Mick Knutson
Sr. Designer - Project Trust
aUBS AG, Financial - Zürich
Office: +41 (0)1/234.42.75
Internal: 48194
Mobile: 079.726.14.26
-




Visit our website at http://www.ubswarburg.com

This message contains confidential information and is intended only
for the individual named.  If you are not the named addressee you
should not disseminate, distribute or copy this e-mail.  Please
notify the sender immediately by e-mail if you have received this
e-mail by mistake and delete this e-mail from your system.

E-mail transmission cannot be guaranteed

RE: [OT] EXTREMELY URGENT: JBoss JAAS/Container Security issue

2003-04-03 Thread Mikael Eriksson

I will try the module-option ... in about 30 minutes. Thanks.
Ok,

Hope that it will work as it should


On the run-as, I do understand that this bean will run other beans as 
this identity. My Session Facade actually have permission unchecked so 
anyone should be able to get to my session facade currently. It is not 
what I want, but it is a start at least. Then I can get the user Roles 
issue resolved.
I guess I misunderstood your first mail then.


I am very grateful for your help!
This JAAS has been so difficult!


Yes, everything would be much easier without security :-)

Regards
/Mikael

-Original Message-
From: Mikael Eriksson [mailto:[EMAIL PROTECTED]
Sent: Thursday, April 03, 2003 11:17 AM
To: Struts Users Mailing List
Cc: Knutson, Mick
Subject: Re: [OT] EXTREMELY URGENT: JBoss JAAS/Container Security issue
Hello!

Try changing this line in login-config.xml

 module-option name = rolesQuerySELECT user_roles,
user_group FROM USER_ROLES WHERE USERNAME=?/module-option
To

  module-option name = rolesQuerySELECT user_roles, 'Roles' FROM
USER_ROLES WHERE USERNAME=?/module-option
or change the value of user_group in all rows to Roles.

My understanding of the second parameter that the rolesquery should return
is that
you can somhow categorize users in diffent ways, but that the default
user/role handling
should return Roles.
It also sounds like you might have misunderstood how the run-as identity
is used.
That identity does not affect the callers of a bean or who can call it, it
says that
when the bean tries to access other beans it will do so with the run-as
identity.
This is so you can define beans that only can be called by internal
identities so
that noone can call them directly from the outside.
Regards
/Mikael


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


RE: [OT] EXTREMELY URGENT: JBoss JAAS/Container Security issue

2003-04-03 Thread Mikael Eriksson
At 14:08 2003-04-03 +0200, you wrote:
OK, that worked. Also, that seemed to remove the errors I had with the 
EJB's as well.
I really appreciate your help!
Great!

I am sorry if this seemed trivial to you and others, but the documentation 
did _not_ seem to be telling me what you mentioned about 'Roles'. I 
assumed 'Roles' ment I could call the 'Roles' what I understand as 
'Roles'. Not the literal 'Roles'.
Anyway, thanks very much.


The trivial questions are best because I can answer them :-)

Seriously  I can see how the descriptoin can be misread, the jboss docs are 
a bit
terse sometimes.

Regards



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


[OT] EXTREMELY URGENT: JBoss JAAS/Container Security issue

2003-04-02 Thread Mick . Knutson
I appologize for this Off-Topic message, but I desperatly need help!

I have been fighting with the JBoss DatabaseServerLoginModule for almost 2 months now 
without success.
I have tried an infinite number of combinations to try to get to a _SIMPLE_ solution 
as outlined by the JBoss manual, the JAAS article in JavaWorld, and hundreds of 
documents and examples from all over the internet.

Well, I just don't have anymore time to waste as my deadline is now 48 hours away!
I desperately need help:

1. Find someone to offer some help to resolve this by Friday.
2. Direct me somewhere to find the help I need
3. Tell who would be willing to have me hire them for the help I need.

Here is my current situation:
I am using JBoss 3.0.6 with Catalina on NT 4.0, MySql, XDoclet 1.2, Struts 1.1rc1, JDK 
1.4.
I create a beans.jar, common.jar, app.war and package everything into app.ear. The 
only things that are not in my EAR are the mysql-service.xml, auth.conf, 
login-config.xml, and server.policy which reside in the 
$JBOSS_HOME\server\default\conf and the $JBOSS_HOME\server\default\deploy directories.
I also attached all the above file in a zip file here in this message.

I have the DatabaseServerLoginModule configured and it seems to be operating, but not 
correctly.
When I try to access a page under /private/* I get forwarded to /logon.jsp correctly.

My MySql Database has 2 tables:
TABLE_USER: columns: username, password
TABLE_USER_ROLES: columns: username, user_roles, user_group

TABLE_USER: data: mick, mickPassword
TABLE_USER_ROLES: data1: mick, user, user
TABLE_USER_ROLES: data2: mick, admin, admin

I then type in j_username: mick, j_password: mickPassword and click ENTER.
I seem to be logged in successfully as the console shows that I have 3 Principals: 
mick, user, admin and when I attempt to navigate to pages in the private area 
that do not require EJB access, I continue to see that my Principal is kept 
successfully through each page. So I do _not_ currently have the Principal=null issue.
I do however have a UserPreferenceFilter that I check if the user is in role user, 
admin, or guest and all 3 come up as NO.

Also, when I attempt to access a page that goes to my EJB layer, I get a Security 
violation error that states user must belong to [ANYONE] role. But I have added a 
run-as = InternalUser for all my EJB's so far. But that does not seem to work. When 
I remove the run-as=InternalUser, I get a Security Violation that states the user 
must belong to the role I specified.

So it seems that my main 2 issues are getting the Roles to stick to the user when they 
login, and the EJB's to be able to use the user Roles, or the run-as=InternalUser



-
Thank You 
Mick Knutson 
Sr. Designer - Project Trust 
aUBS AG, Financial - Zürich 
Office: +41 (0)1/234.42.75 
Internal: 48194 
Mobile: 079.726.14.26 
-




YourSOS-Security1.ZIP
Description: YourSOS-Security1.ZIP

Visit our website at http://www.ubswarburg.com

This message contains confidential information and is intended only 
for the individual named.  If you are not the named addressee you 
should not disseminate, distribute or copy this e-mail.  Please 
notify the sender immediately by e-mail if you have received this 
e-mail by mistake and delete this e-mail from your system.

E-mail transmission cannot be guaranteed to be secure or error-free 
as information could be intercepted, corrupted, lost, destroyed, 
arrive late or incomplete, or contain viruses.  The sender therefore 
does not accept liability for any errors or omissions in the contents 
of this message which arise as a result of e-mail transmission.  If 
verification is required please request a hard-copy version.  This 
message is provided for informational purposes and should not be 
construed as a solicitation or offer to buy or sell any securities or 
related financial instruments.

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

JBoss-3.0.4 and Tomcat-4.1.12,Problem with Deployment and ApplicationREsources

2003-04-01 Thread Thilko Richter

Hi!

I have some serious problem with the deployment of my struts application. At first 
I´ve got an error when I try to access my ApplicationResources. This is my 
configuration:

In the web.xml:

servlet-nameaction/servlet-name
  servlet-class
org.apache.struts.action.ActionServlet
  /servlet-class
  init-param
param-nameapplication/param-name
param-valuede.picasso.client.PicassoProperties/param-value
  /init-param
...

In the jsp page:
bean:message key=page.index.title/

In the PicassoProperties.properties:

page.status.title=Picasso Application - Status Page
page.status.form.description=Beschreibung
page.status.form.name=Name
page.status.form.select=Auswahl
page.status.submit.insert=Status einfügen
page.status.submit.delete=Status löschen
page.status.submit.update=Status ändern
page.status.submit.search=Status suchen
page.index.title=Picasso Application - Main Page
page.navigation.link.config=Administration
page.navigation.link.home=Home
page.navigation.link.status=Status

The PicassoProperties.properties is under 
/WEB-INF/classes/de/picassoclient/PicassoProperties.properties

When I try to call the Page I get the error:

org.apache.jasper.JasperException: Missing message for key page.index.title
at 
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:248)
at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:289)


What I am doing wrong??? I am totally confused, because few days ago it works!!! Could 
be there a bug? I am using an .ear file for my application.
When I deploy my application and the struts-example.war, I get this error:

08:26:44,949 ERROR [Engine] action: Error creating Action instance for
 path '/editRegistration', class name 'org.apache.struts.webapp.exampl
e.EditRegistrationAction'
java.lang.LinkageError: loader constraints violated when linking org/a
pache/struts/action/ActionMapping class
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:140)
at org.apache.struts.action.ActionServlet.processActionCreate(
ActionServlet.java:1631)
at org.apache.struts.action.ActionServlet.process(ActionServle
t.java:1577)
at org.apache.struts.action.ActionServlet.doGet(ActionServlet.
java:492)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:740
)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853
)
at org.apache.catalina.core.ApplicationFilterChain.internalDoF
ilter(ApplicationFilterChain.java:247)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(Ap
plicationFilterChain.java:193)
at org.apache.catalina.core.StandardWrapperValve.invoke(Standa
rdWrapperValve.java:260)
at org.apache.catalina.core.StandardPipeline$StandardPipelineV
alveContext.invokeNext(StandardPipeline.java:643)
at org.apache.catalina.core.StandardPipeline.invoke(StandardPi
peline.java:480)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase
.java:995)
at org.apache.catalina.core.StandardContextValve.invoke(Standa
rdContextValve.java:191)
at org.apache.catalina.core.StandardPipeline$StandardPipelineV
alveContext.invokeNext(StandardPipeline.java:643)
at org.apache.catalina.valves.CertificatesValve.invoke(Certifi
catesValve.java:246)
at org.apache.catalina.core.StandardPipeline$StandardPipelineV
alveContext.invokeNext(StandardPipeline.java:641)
at org.apache.catalina.core.StandardPipeline.invoke(StandardPi
peline.java:480)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase
.java:995)
at org.apache.catalina.core.StandardContext.invoke(StandardCon
text.java:2396)
at org.apache.catalina.core.StandardHostValve.invoke(StandardH
ostValve.java:180)
at org.apache.catalina.core.StandardPipeline$StandardPipelineV
alveContext.invokeNext(StandardPipeline.java:643)
at org.apache.catalina.valves.ErrorDispatcherValve.invoke(Erro
rDispatcherValve.java:170)
at org.apache.catalina.core.StandardPipeline$StandardPipelineV
alveContext.invokeNext(StandardPipeline.java:641)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorRep
ortValve.java:172)
at org.apache.catalina.core.StandardPipeline$StandardPipelineV
alveContext.invokeNext(StandardPipeline.java:641)
at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogV
alve.java:469)
at org.apache.catalina.core.StandardPipeline$StandardPipelineV
alveContext.invokeNext(StandardPipeline.java:641)
at org.apache.catalina.core.StandardPipeline.invoke(StandardPi
peline.java:480)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase
.java:995)
at org.apache.catalina.core.StandardEngineValve.invoke(Standar
dEngineValve.java:174)
at org.apache.catalina.core.StandardPipeline$StandardPipelineV
alveContext.invokeNext(StandardPipeline.java:643)
at 

RE: JBoss-3.0.4 and Tomcat-4.1.12,Problem with Deployment and ApplicationREsources

2003-04-01 Thread Anthony . Leon
You have ;

param-valuede.picasso.client.PicassoProperties/param-value
INF/classes/de/picassoclient/PicassoProperties.properties

So the XML should read;
param-valuede.picassoclient.PicassoProperties/param-value

-Original Message-
From: Thilko Richter [mailto:[EMAIL PROTECTED]
Sent: 02 April 2003 07:54
To: [EMAIL PROTECTED]
Subject: JBoss-3.0.4 and Tomcat-4.1.12,Problem with Deployment and
ApplicationREsources



Hi!

I have some serious problem with the deployment of my struts application. At first 
I´ve got an error when I try to access my ApplicationResources. This is my 
configuration:

In the web.xml:

servlet-nameaction/servlet-name
  servlet-class
org.apache.struts.action.ActionServlet
  /servlet-class
  init-param
param-nameapplication/param-name
param-valuede.picasso.client.PicassoProperties/param-value
  /init-param
...

In the jsp page:
bean:message key=page.index.title/

In the PicassoProperties.properties:

page.status.title=Picasso Application - Status Page
page.status.form.description=Beschreibung
page.status.form.name=Name
page.status.form.select=Auswahl
page.status.submit.insert=Status einfügen
page.status.submit.delete=Status löschen
page.status.submit.update=Status ändern
page.status.submit.search=Status suchen
page.index.title=Picasso Application - Main Page
page.navigation.link.config=Administration
page.navigation.link.home=Home
page.navigation.link.status=Status

The PicassoProperties.properties is under 
/WEB-INF/classes/de/picassoclient/PicassoProperties.properties

When I try to call the Page I get the error:

org.apache.jasper.JasperException: Missing message for key page.index.title
at 
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:248)
at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:289)


What I am doing wrong??? I am totally confused, because few days ago it works!!! Could 
be there a bug? I am using an .ear file for my application.
When I deploy my application and the struts-example.war, I get this error:

08:26:44,949 ERROR [Engine] action: Error creating Action instance for
 path '/editRegistration', class name 'org.apache.struts.webapp.exampl
e.EditRegistrationAction'
java.lang.LinkageError: loader constraints violated when linking org/a
pache/struts/action/ActionMapping class
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:140)
at org.apache.struts.action.ActionServlet.processActionCreate(
ActionServlet.java:1631)
at org.apache.struts.action.ActionServlet.process(ActionServle
t.java:1577)
at org.apache.struts.action.ActionServlet.doGet(ActionServlet.
java:492)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:740
)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853
)
at org.apache.catalina.core.ApplicationFilterChain.internalDoF
ilter(ApplicationFilterChain.java:247)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(Ap
plicationFilterChain.java:193)
at org.apache.catalina.core.StandardWrapperValve.invoke(Standa
rdWrapperValve.java:260)
at org.apache.catalina.core.StandardPipeline$StandardPipelineV
alveContext.invokeNext(StandardPipeline.java:643)
at org.apache.catalina.core.StandardPipeline.invoke(StandardPi
peline.java:480)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase
.java:995)
at org.apache.catalina.core.StandardContextValve.invoke(Standa
rdContextValve.java:191)
at org.apache.catalina.core.StandardPipeline$StandardPipelineV
alveContext.invokeNext(StandardPipeline.java:643)
at org.apache.catalina.valves.CertificatesValve.invoke(Certifi
catesValve.java:246)
at org.apache.catalina.core.StandardPipeline$StandardPipelineV
alveContext.invokeNext(StandardPipeline.java:641)
at org.apache.catalina.core.StandardPipeline.invoke(StandardPi
peline.java:480)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase
.java:995)
at org.apache.catalina.core.StandardContext.invoke(StandardCon
text.java:2396)
at org.apache.catalina.core.StandardHostValve.invoke(StandardH
ostValve.java:180)
at org.apache.catalina.core.StandardPipeline$StandardPipelineV
alveContext.invokeNext(StandardPipeline.java:643)
at org.apache.catalina.valves.ErrorDispatcherValve.invoke(Erro
rDispatcherValve.java:170)
at org.apache.catalina.core.StandardPipeline$StandardPipelineV
alveContext.invokeNext(StandardPipeline.java:641)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorRep
ortValve.java:172)
at org.apache.catalina.core.StandardPipeline$StandardPipelineV
alveContext.invokeNext(StandardPipeline.java:641)
at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogV
alve.java:469)
at org.apache.catalina.core.StandardPipeline$StandardPipelineV
alveContext.invokeNext(StandardPipeline.java:641

Re: RE: JBoss-3.0.4 and Tomcat-4.1.12,Problem with Deployment and ApplicationREsources

2003-04-01 Thread Thilko Richter
Sorry, that was a spelling mistake in my e-mail ;-)
The path was /WEB-INF/classes/de/picasso.client/PicassoProperties.properties

I should sleep longer... 

Thilko


Struts Users Mailing List [EMAIL PROTECTED] schrieb am 02.04.03 09:07:33:
 
 You have ;
 
 param-valuede.picasso.client.PicassoProperties/param-value
   INF/classes/de/picassoclient/PicassoProperties.properties
 
 So the XML should read;
 param-valuede.picassoclient.PicassoProperties/param-value
 
 -Original Message-
 From: Thilko Richter [mailto:[EMAIL PROTECTED]
 Sent: 02 April 2003 07:54
 To: [EMAIL PROTECTED]
 Subject: JBoss-3.0.4 and Tomcat-4.1.12,Problem with Deployment and
 ApplicationREsources
 
 
 
 Hi!
 
 I have some serious problem with the deployment of my struts application. At first 
 I´ve got an error when I try to access my ApplicationResources. This is my 
 configuration:
 
 In the web.xml:
 
 servlet-nameaction/servlet-name
   servlet-class
 org.apache.struts.action.ActionServlet
   /servlet-class
   init-param
 param-nameapplication/param-name
 param-valuede.picasso.client.PicassoProperties/param-value
   /init-param
 ...
 
 In the jsp page:
 bean:message key=page.index.title/
 
 In the PicassoProperties.properties:
 
 page.status.title=Picasso Application - Status Page
 page.status.form.description=Beschreibung
 page.status.form.name=Name
 page.status.form.select=Auswahl
 page.status.submit.insert=Status einfügen
 page.status.submit.delete=Status löschen
 page.status.submit.update=Status ändern
 page.status.submit.search=Status suchen
 page.index.title=Picasso Application - Main Page
 page.navigation.link.config=Administration
 page.navigation.link.home=Home
 page.navigation.link.status=Status
 
 The PicassoProperties.properties is under 
 /WEB-INF/classes/de/picassoclient/PicassoProperties.properties
 
 When I try to call the Page I get the error:
 
 org.apache.jasper.JasperException: Missing message for key page.index.title
   at 
 org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:248)
   at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:289)
 
 
 What I am doing wrong??? I am totally confused, because few days ago it works!!! 
 Could be there a bug? I am using an .ear file for my application.
 When I deploy my application and the struts-example.war, I get this error:
 
 08:26:44,949 ERROR [Engine] action: Error creating Action instance for
  path '/editRegistration', class name 'org.apache.struts.webapp.exampl
 e.EditRegistrationAction'
 java.lang.LinkageError: loader constraints violated when linking org/a
 pache/struts/action/ActionMapping class
 at java.lang.Class.forName0(Native Method)
 at java.lang.Class.forName(Class.java:140)
 at org.apache.struts.action.ActionServlet.processActionCreate(
 ActionServlet.java:1631)
 at org.apache.struts.action.ActionServlet.process(ActionServle
 t.java:1577)
 at org.apache.struts.action.ActionServlet.doGet(ActionServlet.
 java:492)
 at javax.servlet.http.HttpServlet.service(HttpServlet.java:740
 )
 at javax.servlet.http.HttpServlet.service(HttpServlet.java:853
 )
 at org.apache.catalina.core.ApplicationFilterChain.internalDoF
 ilter(ApplicationFilterChain.java:247)
 at org.apache.catalina.core.ApplicationFilterChain.doFilter(Ap
 plicationFilterChain.java:193)
 at org.apache.catalina.core.StandardWrapperValve.invoke(Standa
 rdWrapperValve.java:260)
 at org.apache.catalina.core.StandardPipeline$StandardPipelineV
 alveContext.invokeNext(StandardPipeline.java:643)
 at org.apache.catalina.core.StandardPipeline.invoke(StandardPi
 peline.java:480)
 at org.apache.catalina.core.ContainerBase.invoke(ContainerBase
 .java:995)
 at org.apache.catalina.core.StandardContextValve.invoke(Standa
 rdContextValve.java:191)
 at org.apache.catalina.core.StandardPipeline$StandardPipelineV
 alveContext.invokeNext(StandardPipeline.java:643)
 at org.apache.catalina.valves.CertificatesValve.invoke(Certifi
 catesValve.java:246)
 at org.apache.catalina.core.StandardPipeline$StandardPipelineV
 alveContext.invokeNext(StandardPipeline.java:641)
 at org.apache.catalina.core.StandardPipeline.invoke(StandardPi
 peline.java:480)
 at org.apache.catalina.core.ContainerBase.invoke(ContainerBase
 .java:995)
 at org.apache.catalina.core.StandardContext.invoke(StandardCon
 text.java:2396)
 at org.apache.catalina.core.StandardHostValve.invoke(StandardH
 ostValve.java:180)
 at org.apache.catalina.core.StandardPipeline$StandardPipelineV
 alveContext.invokeNext(StandardPipeline.java:643)
 at org.apache.catalina.valves.ErrorDispatcherValve.invoke(Erro
 rDispatcherValve.java:170)
 at org.apache.catalina.core.StandardPipeline$StandardPipelineV
 alveContext.invokeNext(StandardPipeline.java:641)
 at org.apache.catalina.valves.ErrorReportValve.invoke

error with JBoss: Missing message for key

2003-03-26 Thread Rabih Yazbeck
Hello,

I have received an error (copied below) when deploying my Struts application on 
JBoss-Tomcat4.18, but I dont have problem with the stand-alone Tomcat4.18 or 
WebLogic using the same war file... my MessageProperties files are in the war file 
under WEB-INF/lib .. I also tried to put them in JBoss under server/all/lib/ but with 
no success.. 

By the way, I am using Tiles. And the header, where the error occurred, contains:
tiles:importAttribute name=title/ bean:message name=title

..any idea? Thank you in advance..

the error is:

[ServletException in:/layouts/header.jsp] Missing message for key home.title' 
javax.servlet.ServletException: Missing message for key home.title at 
org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:530)
 at org.apache.jsp.header_jsp._jspService(header_jsp.java:76) at 
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:137) at 
javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at 
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:204) at 
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295) at 
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241) at 
javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at 
org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:684) 
at 
org.apache.catalina.core.ApplicationDispatcher.doInclude(ApplicationDispatcher.java:575)
 at 
org.apache.catalina.core.ApplicationDispatcher.include(ApplicationDispatcher.java:498) 
at org.apache.struts.tiles.TilesUtilImpl.doInclude(TilesUtilImpl.java:118) at 
org.apache.struts.tiles.TilesUtil.doInclude(TilesUtil.java:161) at 
org.apache.struts.taglib.tiles.InsertTag.doInclude(InsertTag.java:702) at 
org.apache.struts.taglib.tiles.InsertTag$InsertHandler.doEndTag(InsertTag.java:817) at 
org.apache.struts.taglib.tiles.InsertTag.doEndTag(InsertTag.java:466) at 
org.apache.jsp.layout_0002ddefault_jsp._jspx_meth_tiles_insert_0(layout_0002ddefault_jsp.java:207)
 at 
org.apache.jsp.layout_0002ddefault_jsp._jspx_meth_html_html_0(layout_0002ddefault_jsp.java:102)
 at 
org.apache.jsp.layout_0002ddefault_jsp._jspService(layout_0002ddefault_jsp.java:69) at 
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:137) at 
javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at 
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:204) at 
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295) at 
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241) at 
javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at 
org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:684) 
at 
org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:432)
 at 
org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:356) 
at org.apache.struts.action.RequestProcessor.doForward(RequestProcessor.java:1058) at 
org.apache.struts.tiles.TilesRequestProcessor.doForward(TilesRequestProcessor.java:269)
 at 
org.apache.struts.tiles.TilesRequestProcessor.processTilesDefinition(TilesRequestProcessor.java:249)
 at 
org.apache.struts.tiles.TilesRequestProcessor.internalModuleRelativeForward(TilesRequestProcessor.java:333)
 at 
org.apache.struts.action.RequestProcessor.processForward(RequestProcessor.java:578) at 
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:260) at 
org.apache.struts.action.ActionServlet.process(ActionServlet.java:1420) at 
org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:502) at 
javax.servlet.http.HttpServlet.service(HttpServlet.java:740) at 
javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
 at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
 at 
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:260) at 
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
 at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480) at 
org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at 
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) at 
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
 at org.apache.catalina.valves.CertificatesValve.invoke(CertificatesValve.java:246) at 
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
 at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480) at 
org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at 
org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2415

RE: error with JBoss: Missing message for key

2003-03-26 Thread Raible, Matt
Have you tried putting MessageProperties in WEB-INF/classes?

 -Original Message-
 From: Rabih Yazbeck [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, March 26, 2003 2:14 PM
 To: 'Struts Users Mailing List'
 Subject: error with JBoss: Missing message for key
 
 
 Hello,
 
 I have received an error (copied below) when deploying my 
 Struts application on JBoss-Tomcat4.18, but I dont have 
 problem with the stand-alone Tomcat4.18 or WebLogic using the 
 same war file... my MessageProperties files are in the war 
 file under WEB-INF/lib .. I also tried to put them in JBoss 
 under server/all/lib/ but with no success.. 
 
 By the way, I am using Tiles. And the header, where the error 
 occurred, contains:
 tiles:importAttribute name=title/ bean:message name=title
 
 ..any idea? Thank you in advance..
 
 the error is:
 
 [ServletException in:/layouts/header.jsp] Missing message for 
 key home.title' javax.servlet.ServletException: Missing 
 message for key home.title at 
 org.apache.jasper.runtime.PageContextImpl.handlePageException(
 PageContextImpl.java:530) at 
 org.apache.jsp.header_jsp._jspService(header_jsp.java:76) at 
 org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java
 :137) at 
 javax.servlet.http.HttpServlet.service(HttpServlet.java:853) 
 at 
 org.apache.jasper.servlet.JspServletWrapper.service(JspServlet
 Wrapper.java:204) at 
 org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet
 .java:295) at 
 org.apache.jasper.servlet.JspServlet.service(JspServlet.java:2
 41) at 
 javax.servlet.http.HttpServlet.service(HttpServlet.java:853) 
 at 
 org.apache.catalina.core.ApplicationDispatcher.invoke(Applicat
 ionDispatcher.java:684) at 
 org.apache.catalina.core.ApplicationDispatcher.doInclude(Appli
 cationDispatcher.java:575) at 
 org.apache.catalina.core.ApplicationDispatcher.include(Applica
 tionDispatcher.java:498) at 
 org.apache.struts.tiles.TilesUtilImpl.doInclude(TilesUtilImpl.
 java:118) at 
 org.apache.struts.tiles.TilesUtil.doInclude(TilesUtil.java:161
 ) at 
 org.apache.struts.taglib.tiles.InsertTag.doInclude(InsertTag.j
 ava:702) at 
 org.apache.struts.taglib.tiles.InsertTag$InsertHandler.doEndTa
 g(InsertTag.java:817) at 
 org.apache.struts.taglib.tiles.InsertTag.doEndTag(InsertTag.ja
 va:466) at 
 org.apache.jsp.layout_0002ddefault_jsp._jspx_meth_tiles_insert
 _0(layout_0002ddefault_jsp.java:207) at 
 org.apache.jsp.layout_0002ddefault_jsp._jspx_meth_html_html_0(
 layout_0002ddefault_jsp.java:102) at 
 org.apache.jsp.layout_0002ddefault_jsp._jspService(layout_0002
 ddefault_jsp.java:69) at 
 org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java
 :137) at 
 javax.servlet.http.HttpServlet.service(HttpServlet.java:853) 
 at 
 org.apache.jasper.servlet.JspServletWrapper.service(JspServlet
 Wrapper.java:204) at 
 org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet
 .java:295) at 
 org.apache.jasper.servlet.JspServlet.service(JspServlet.java:2
 41) at 
 javax.servlet.http.HttpServlet.service(HttpServlet.java:853) 
 at 
 org.apache.catalina.core.ApplicationDispatcher.invoke(Applicat
 ionDispatcher.java:684) at 
 org.apache.catalina.core.ApplicationDispatcher.doForward(Appli
 cationDispatcher.java:432) at 
 org.apache.catalina.core.ApplicationDispatcher.forward(Applica
 tionDispatcher.java:356) at 
 org.apache.struts.action.RequestProcessor.doForward(RequestPro
 cessor.java:1058) at 
 org.apache.struts.tiles.TilesRequestProcessor.doForward(TilesR
 equestProcessor.java:269) at 
 org.apache.struts.tiles.TilesRequestProcessor.processTilesDefi
 nition(TilesRequestProcessor.java:249) at 
 org.apache.struts.tiles.TilesRequestProcessor.internalModuleRe
 lativeForward(TilesRequestProcessor.java:333) at 
 org.apache.struts.action.RequestProcessor.processForward(Reque
 stProcessor.java:578) at 
 org.apache.struts.action.RequestProcessor.process(RequestProce
 ssor.java:260) at 
 org.apache.struts.action.ActionServlet.process(ActionServlet.j
 ava:1420) at 
 org.apache.struts.action.ActionServlet.doGet(ActionServlet.jav
 a:502) at 
 javax.servlet.http.HttpServlet.service(HttpServlet.java:740) 
 at 
 javax.servlet.http.HttpServlet.service(HttpServlet.java:853) 
 at 
 org.apache.catalina.core.ApplicationFilterChain.internalDoFilt
 er(ApplicationFilterChain.java:247) at 
 org.apache.catalina.core.ApplicationFilterChain.doFilter(Appli
 cationFilterChain.java:193) at 
 org.apache.catalina.core.StandardWrapperValve.invoke(StandardW
 rapperValve.java:260) at 
 org.apache.catalina.core.StandardPipeline$StandardPipelineValv
 eContext.invokeNext(StandardPipeline.java:643) at 
 org.apache.catalina.core.StandardPipeline.invoke(StandardPipel
 ine.java:480) at 
 org.apache.catalina.core.ContainerBase.invoke(ContainerBase.ja
 va:995) at 
 org.apache.catalina.core.StandardContextValve.invoke(StandardC
 ontextValve.java:191) at 
 org.apache.catalina.core.StandardPipeline$StandardPipelineValv
 eContext.invokeNext(StandardPipeline.java:643

RE: error with JBoss: Missing message for key

2003-03-26 Thread Rabih Yazbeck
Yes I did, but as part of the war file (I dont know if there is any way to deploy 
them manually under JBOSS -- not as war)

 -Original Message-
 From: Raible, Matt [mailto:[EMAIL PROTECTED]
 Sent: 26 March 2003 21:20
 To: 'Struts Users Mailing List'
 Subject: RE: error with JBoss: Missing message for key
 
 Have you tried putting MessageProperties in WEB-INF/classes?
 
  -Original Message-
  From: Rabih Yazbeck [mailto:[EMAIL PROTECTED]
  Sent: Wednesday, March 26, 2003 2:14 PM
  To: 'Struts Users Mailing List'
  Subject: error with JBoss: Missing message for key
 
 
  Hello,
 
  I have received an error (copied below) when deploying my
  Struts application on JBoss-Tomcat4.18, but I dont have
  problem with the stand-alone Tomcat4.18 or WebLogic using the
  same war file... my MessageProperties files are in the war
  file under WEB-INF/lib .. I also tried to put them in JBoss
  under server/all/lib/ but with no success..
 
  By the way, I am using Tiles. And the header, where the error
  occurred, contains:
  tiles:importAttribute name=title/ bean:message name=title
 
  ..any idea? Thank you in advance..
 
  the error is:
 
  [ServletException in:/layouts/header.jsp] Missing message for
  key home.title' javax.servlet.ServletException: Missing
  message for key home.title at
  org.apache.jasper.runtime.PageContextImpl.handlePageException(
  PageContextImpl.java:530) at
  org.apache.jsp.header_jsp._jspService(header_jsp.java:76) at
  org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java
  :137) at
  javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
  at
  org.apache.jasper.servlet.JspServletWrapper.service(JspServlet
  Wrapper.java:204) at
  org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet
  .java:295) at
  org.apache.jasper.servlet.JspServlet.service(JspServlet.java:2
  41) at
  javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
  at
  org.apache.catalina.core.ApplicationDispatcher.invoke(Applicat
  ionDispatcher.java:684) at
  org.apache.catalina.core.ApplicationDispatcher.doInclude(Appli
  cationDispatcher.java:575) at
  org.apache.catalina.core.ApplicationDispatcher.include(Applica
  tionDispatcher.java:498) at
  org.apache.struts.tiles.TilesUtilImpl.doInclude(TilesUtilImpl.
  java:118) at
  org.apache.struts.tiles.TilesUtil.doInclude(TilesUtil.java:161
  ) at
  org.apache.struts.taglib.tiles.InsertTag.doInclude(InsertTag.j
  ava:702) at
  org.apache.struts.taglib.tiles.InsertTag$InsertHandler.doEndTa
  g(InsertTag.java:817) at
  org.apache.struts.taglib.tiles.InsertTag.doEndTag(InsertTag.ja
  va:466) at
  org.apache.jsp.layout_0002ddefault_jsp._jspx_meth_tiles_insert
  _0(layout_0002ddefault_jsp.java:207) at
  org.apache.jsp.layout_0002ddefault_jsp._jspx_meth_html_html_0(
  layout_0002ddefault_jsp.java:102) at
  org.apache.jsp.layout_0002ddefault_jsp._jspService(layout_0002
  ddefault_jsp.java:69) at
  org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java
  :137) at
  javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
  at
  org.apache.jasper.servlet.JspServletWrapper.service(JspServlet
  Wrapper.java:204) at
  org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet
  .java:295) at
  org.apache.jasper.servlet.JspServlet.service(JspServlet.java:2
  41) at
  javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
  at
  org.apache.catalina.core.ApplicationDispatcher.invoke(Applicat
  ionDispatcher.java:684) at
  org.apache.catalina.core.ApplicationDispatcher.doForward(Appli
  cationDispatcher.java:432) at
  org.apache.catalina.core.ApplicationDispatcher.forward(Applica
  tionDispatcher.java:356) at
  org.apache.struts.action.RequestProcessor.doForward(RequestPro
  cessor.java:1058) at
  org.apache.struts.tiles.TilesRequestProcessor.doForward(TilesR
  equestProcessor.java:269) at
  org.apache.struts.tiles.TilesRequestProcessor.processTilesDefi
  nition(TilesRequestProcessor.java:249) at
  org.apache.struts.tiles.TilesRequestProcessor.internalModuleRe
  lativeForward(TilesRequestProcessor.java:333) at
  org.apache.struts.action.RequestProcessor.processForward(Reque
  stProcessor.java:578) at
  org.apache.struts.action.RequestProcessor.process(RequestProce
  ssor.java:260) at
  org.apache.struts.action.ActionServlet.process(ActionServlet.j
  ava:1420) at
  org.apache.struts.action.ActionServlet.doGet(ActionServlet.jav
  a:502) at
  javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
  at
  javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
  at
  org.apache.catalina.core.ApplicationFilterChain.internalDoFilt
  er(ApplicationFilterChain.java:247) at
  org.apache.catalina.core.ApplicationFilterChain.doFilter(Appli
  cationFilterChain.java:193) at
  org.apache.catalina.core.StandardWrapperValve.invoke(StandardW
  rapperValve.java:260) at
  org.apache.catalina.core.StandardPipeline$StandardPipelineValv
  eContext.invokeNext(StandardPipeline.java:643

RE: error with JBoss: Missing message for key

2003-03-26 Thread James Mitchell
On Wed, 2003-03-26 at 16:24, Rabih Yazbeck wrote:
 Yes I did, but as part of the war file (I dont know if there is 
 any way to deploy them manually under JBOSS -- not as war)

Deploying an expanded (unzipped) war on JBoss/Tomcat is quite easy.
1. Stop JBoss
2. Create a folder for your app named (for example) 'myapp.war' 
   *Note - Yes, I did mean to add the '.war' as part of the directory
name
3. Unzip (or jar -x) the structure to that directory.
4. Startup JBoss/Tomcat and have fun

I don't know if you can configure the embedded Tomcat to reload changed
classes, but if you need changes to struts configuration files, just
touch (add a space then delete it) the web.xml and JBoss will redeploy
your app.

By the way, to answer your original question, you should place the
resource files under /WEB-INF/classes to guarantee that correct class
loader will pick them up.

 
  -Original Message-
  From: Raible, Matt [mailto:[EMAIL PROTECTED]
  Sent: 26 March 2003 21:20
  To: 'Struts Users Mailing List'
  Subject: RE: error with JBoss: Missing message for key
  
  Have you tried putting MessageProperties in WEB-INF/classes?
  
   -Original Message-
   From: Rabih Yazbeck [mailto:[EMAIL PROTECTED]
   Sent: Wednesday, March 26, 2003 2:14 PM
   To: 'Struts Users Mailing List'
   Subject: error with JBoss: Missing message for key
  
  
   Hello,
  
   I have received an error (copied below) when deploying my
   Struts application on JBoss-Tomcat4.18, but I dont have
   problem with the stand-alone Tomcat4.18 or WebLogic using the
   same war file... my MessageProperties files are in the war
   file under WEB-INF/lib .. I also tried to put them in JBoss
   under server/all/lib/ but with no success..
  
   By the way, I am using Tiles. And the header, where the error
   occurred, contains:
   tiles:importAttribute name=title/ bean:message name=title
  
   ..any idea? Thank you in advance..
  
   the error is:
  
   [ServletException in:/layouts/header.jsp] Missing message for
   key home.title' javax.servlet.ServletException: Missing
   message for key home.title at
   org.apache.jasper.runtime.PageContextImpl.handlePageException(
   PageContextImpl.java:530) at
   org.apache.jsp.header_jsp._jspService(header_jsp.java:76) at
   org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java
   :137) at
   javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
   at
   org.apache.jasper.servlet.JspServletWrapper.service(JspServlet
   Wrapper.java:204) at
   org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet
   .java:295) at
   org.apache.jasper.servlet.JspServlet.service(JspServlet.java:2
   41) at
   javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
   at
   org.apache.catalina.core.ApplicationDispatcher.invoke(Applicat
   ionDispatcher.java:684) at
   org.apache.catalina.core.ApplicationDispatcher.doInclude(Appli
   cationDispatcher.java:575) at
   org.apache.catalina.core.ApplicationDispatcher.include(Applica
   tionDispatcher.java:498) at
   org.apache.struts.tiles.TilesUtilImpl.doInclude(TilesUtilImpl.
   java:118) at
   org.apache.struts.tiles.TilesUtil.doInclude(TilesUtil.java:161
   ) at
   org.apache.struts.taglib.tiles.InsertTag.doInclude(InsertTag.j
   ava:702) at
   org.apache.struts.taglib.tiles.InsertTag$InsertHandler.doEndTa
   g(InsertTag.java:817) at
   org.apache.struts.taglib.tiles.InsertTag.doEndTag(InsertTag.ja
   va:466) at
   org.apache.jsp.layout_0002ddefault_jsp._jspx_meth_tiles_insert
   _0(layout_0002ddefault_jsp.java:207) at
   org.apache.jsp.layout_0002ddefault_jsp._jspx_meth_html_html_0(
   layout_0002ddefault_jsp.java:102) at
   org.apache.jsp.layout_0002ddefault_jsp._jspService(layout_0002
   ddefault_jsp.java:69) at
   org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java
   :137) at
   javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
   at
   org.apache.jasper.servlet.JspServletWrapper.service(JspServlet
   Wrapper.java:204) at
   org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet
   .java:295) at
   org.apache.jasper.servlet.JspServlet.service(JspServlet.java:2
   41) at
   javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
   at
   org.apache.catalina.core.ApplicationDispatcher.invoke(Applicat
   ionDispatcher.java:684) at
   org.apache.catalina.core.ApplicationDispatcher.doForward(Appli
   cationDispatcher.java:432) at
   org.apache.catalina.core.ApplicationDispatcher.forward(Applica
   tionDispatcher.java:356) at
   org.apache.struts.action.RequestProcessor.doForward(RequestPro
   cessor.java:1058) at
   org.apache.struts.tiles.TilesRequestProcessor.doForward(TilesR
   equestProcessor.java:269) at
   org.apache.struts.tiles.TilesRequestProcessor.processTilesDefi
   nition(TilesRequestProcessor.java:249) at
   org.apache.struts.tiles.TilesRequestProcessor.internalModuleRe
   lativeForward(TilesRequestProcessor.java:333) at
   org.apache.struts.action.RequestProcessor.processForward(Reque

Trying to use struts-menu with JBoss 3.0.6

2003-03-24 Thread James CE Johnson
I'm trying to try out struts-menu 1.2 with JBoss 3.0.6 with struts
1.1-RC1. When I deploy the sample webapp (webapps/struts-menu.war) Jboss
complains about:

16:06:37,760 ERROR [Digester] Begin event threw exception
java.lang.ClassNotFoundException: No ClassLoaders found for:
com.fgm.web.menu.displayer.MenuDisplayerMapping
at org.jboss.mx.loading.LoadMgr.beginLoadTask(LoadMgr.java:155)
at
org.jboss.mx.loading.UnifiedClassLoader3.loadClass(UnifiedClassLoader3.java:161)
at java.lang.ClassLoader.loadClass(ClassLoader.java:262)
...


I saw one reference to this in the archives but I didn't see a solution.
Does anyone have any suggestions?

Thanks,
J


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



SecurityFilter used with JBoss?

2003-03-20 Thread Mick . Knutson
JBoss has many PAM modules including one DatabaseServerLoginModule. Can this be used 
with the SecurityFilter?

I ask because it seems to be a parameter to add such a realm module:
   !-- start with a Catalina realm adapter to wrap the Catalina realm defined below 
--
   realm className=org.securityfilter.realm.catalina.CatalinaRealmAdapter /




===
Thank You

Mick Knutson

Sr. Designer - Project Trust
aUBS AG, Financial - Zürich
Office: +41 (0)1/234.42.75
Internal: 48194
Mobile: 079.726.14.26

Visit our website at http://www.ubswarburg.com

This message contains confidential information and is intended only
for the individual named.  If you are not the named addressee you
should not disseminate, distribute or copy this e-mail.  Please
notify the sender immediately by e-mail if you have received this
e-mail by mistake and delete this e-mail from your system.

E-mail transmission cannot be guaranteed to be secure or error-free
as information could be intercepted, corrupted, lost, destroyed,
arrive late or incomplete, or contain viruses.  The sender therefore
does not accept liability for any errors or omissions in the contents
of this message which arise as a result of e-mail transmission.  If
verification is required please request a hard-copy version.  This
message is provided for informational purposes and should not be
construed as a solicitation or offer to buy or sell any securities or
related financial instruments.


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



Re: Anyone using JBoss with custom validator rules?

2003-03-04 Thread Eric Jain
 Caused by: java.lang.NoClassDefFoundError:

What's the structure of your .war?

Two possible solutions:

A) Put the commons (or even all Struts related) libraries in your
$jboss/server/$setup/lib.

B) Nest your .war inside a .sar that contains all libraries at the top
level.


--
Eric Jain


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



Re: Anyone using JBoss with custom validator rules?

2003-03-04 Thread Chris Trawick
What version of JBoss are you using?

I have successfully gotten custom validators to work without a hitch on
JBoss 3.0.x (all versions beta through latest).  All validator classes and
jars are contained in the war like this:

/WEB-INF/*.tld
/WEB-INF/web.xml
/WEB-INF/struts-config.xml
/WEB-INF/validation.xml
/WEB-INF/validator-rules.xml
/WEB-INF/custom-validator-rules.xml
/WEB-INF/lib/commons-beanutils.jar
/WEB-INF/lib/commons-collections-2.0.jar
/WEB-INF/lib/commons-digester.jar
/WEB-INF/lib/commons-logging.jar
/WEB-INF/lib/commons-validator.jar
/WEB-INF/lib/jakarta-oro.jar
/WEB-INF/lib/struts.jar
/WEB-INF/classes/**/*.properties
/WEB-INF/classes/**/*.class

chris

- Original Message -
From: Brian Topping [EMAIL PROTECTED]
To: Struts Users Mailing List [EMAIL PROTECTED]
Sent: Monday, March 03, 2003 5:31 PM
Subject: Anyone using JBoss with custom validator rules?


Hi all,

I have Validator operational with two-password validation along the lines of
what is in the developer guide.  I've found that the custom validator
function can be found when the setup is running under standalone Tomcat
4.0.x, but not when that tomcat is running under JBoss, I get the attached
NoClassDefFoundError exception.  I've traced the cause of the exception down
to Line 367 of Validator.java v1.11:

 Method m = c.getMethod(va.getMethod(), paramClass);

The class that getMethod is operating on was loaded via
getClassLoader().loadClass() a dozen or so lines earlier. I presume the
problem then is not related to the class itself, but the method signature
classes.

I've checked a hundred times that the classpath is clean of everything but
the code in the nightly build.  There are no additional or incorrect
validator jars anywhere else on the classpath during compile or deployment,
which is what I am implying from the exception I am getting below.  I've
also
checked that the correct validator jar is in the JBoss deployment, inside
the
WAR file along with the rest of the correctly operating Struts jars.

It looks like an incompatibility at best from where I am right now...  Any
ideas appreciated.

Brian


java.lang.reflect.InvocationTargetException
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39
)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl
.
java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at
org.apache.struts.actions.DispatchAction.dispatchMethod(DispatchAction.java:
2
80)
at
org.apache.struts.actions.DispatchAction.execute(DispatchAction.java:216)
at
org.apache.struts.action.RequestProcessor.processActionPerform(RequestProces
s
or.java:479)
at
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274)
at
org.apache.struts.action.ActionServlet.process(ActionServlet.java:1420)
at
org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:520)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
...
Caused by: java.lang.NoClassDefFoundError:
org/apache/commons/validator/ValidatorAction
at java.lang.Class.getDeclaredMethods0(Native Method)
at java.lang.Class.privateGetDeclaredMethods(Class.java:1627)
at java.lang.Class.privateGetPublicMethods(Class.java:1655)
at java.lang.Class.getMethod0(Class.java:1744)
at java.lang.Class.getMethod(Class.java:963)
at
org.apache.commons.validator.Validator.validateFieldForRule(Validator.java:3
9
3)
at
org.apache.commons.validator.Validator.validateField(Validator.java:512)
at
org.apache.commons.validator.Validator.validate(Validator.java:551)
at
org.apache.struts.validator.ValidatorForm.validate(ValidatorForm.java:152)
at
com.bill2.incamail.web.controller.DomainSetupAction.choosePlan(DomainSetupAc
t
ion.java:186)
... 42 more



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


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



Anyone using JBoss with custom validator rules?

2003-03-03 Thread Brian Topping
Hi all,

I have Validator operational with two-password validation along the lines of
what is in the developer guide.  I've found that the custom validator
function can be found when the setup is running under standalone Tomcat
4.0.x, but not when that tomcat is running under JBoss, I get the attached
NoClassDefFoundError exception.  I've traced the cause of the exception down
to Line 367 of Validator.java v1.11:

 Method m = c.getMethod(va.getMethod(), paramClass);

The class that getMethod is operating on was loaded via
getClassLoader().loadClass() a dozen or so lines earlier. I presume the
problem then is not related to the class itself, but the method signature
classes.  

I've checked a hundred times that the classpath is clean of everything but
the code in the nightly build.  There are no additional or incorrect
validator jars anywhere else on the classpath during compile or deployment,
which is what I am implying from the exception I am getting below.  I've also
checked that the correct validator jar is in the JBoss deployment, inside the
WAR file along with the rest of the correctly operating Struts jars.

It looks like an incompatibility at best from where I am right now...  Any
ideas appreciated.

Brian


java.lang.reflect.InvocationTargetException
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.
java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at
org.apache.struts.actions.DispatchAction.dispatchMethod(DispatchAction.java:2
80)
at
org.apache.struts.actions.DispatchAction.execute(DispatchAction.java:216)
at
org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcess
or.java:479)
at
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274)
at
org.apache.struts.action.ActionServlet.process(ActionServlet.java:1420)
at
org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:520)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
...
Caused by: java.lang.NoClassDefFoundError:
org/apache/commons/validator/ValidatorAction
at java.lang.Class.getDeclaredMethods0(Native Method)
at java.lang.Class.privateGetDeclaredMethods(Class.java:1627)
at java.lang.Class.privateGetPublicMethods(Class.java:1655)
at java.lang.Class.getMethod0(Class.java:1744)
at java.lang.Class.getMethod(Class.java:963)
at
org.apache.commons.validator.Validator.validateFieldForRule(Validator.java:39
3)
at
org.apache.commons.validator.Validator.validateField(Validator.java:512)
at
org.apache.commons.validator.Validator.validate(Validator.java:551)
at
org.apache.struts.validator.ValidatorForm.validate(ValidatorForm.java:152)
at
com.bill2.incamail.web.controller.DomainSetupAction.choosePlan(DomainSetupAct
ion.java:186)
... 42 more



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



Re: struts-menu ClassLoaders in jboss

2003-02-13 Thread Will Etson
I ran into the same problem. It turns out its a class loader issue in Struts Menu. I 
have posted a patch at the Struts Menu  sourceforge site. 

 Martin J. La Jeunesse [EMAIL PROTECTED] 02/12/03 06:25PM 
Have been spending the day trying to get struts-menu working under 
jboss, without much success.

Upon deploying my app:
2003-02-12 17:31:00,547 ERROR [org.apache.commons.digester.Digester] 
Begin event threw exception
java.lang.ClassNotFoundException: No ClassLoaders found for: 
com.fgm.web.menu.displayer.MenuDisplayerMapping
at org.jboss.mx.loading.LoadMgr.beginLoadTask(LoadMgr.java:138)
at 
org.jboss.mx.loading.UnifiedClassLoader3.loadClass(UnifiedClassLoader3.java:140)
at java.lang.ClassLoader.loadClass(ClassLoader.java:262)
at 
org.apache.commons.digester.ObjectCreateRule.begin(ObjectCreateRule.java:252)
at org.apache.commons.digester.Digester.startElement(Digester.java:1237)
at org.apache.crimson.parser.Parser2.maybeElement(Parser2.java:1490)
at org.apache.crimson.parser.Parser2.content(Parser2.java:1779)
at org.apache.crimson.parser.Parser2.maybeElement(Parser2.java:1507)
at org.apache.crimson.parser.Parser2.content(Parser2.java:1779)
at org.apache.crimson.parser.Parser2.maybeElement(Parser2.java:1507)
at org.apache.crimson.parser.Parser2.parseInternal(Parser2.java:500)
at org.apache.crimson.parser.Parser2.parse(Parser2.java:305)
at org.apache.crimson.parser.XMLReaderImpl.parse(XMLReaderImpl.java:442)
at org.apache.commons.digester.Digester.parse(Digester.java:1514)
at com.fgm.web.menu.MenuRepository.load(Unknown Source)
at com.fgm.web.menu.MenuPlugIn.init(Unknown Source)
at 
org.apache.struts.action.ActionServlet.initModulePlugIns(ActionServlet.java:1105)
at org.apache.struts.action.ActionServlet.init(ActionServlet.java:471)
at javax.servlet.GenericServlet.init(GenericServlet.java:256)
snip

The sample struts-menu app spits-up a little differently:
2003-02-12 17:13:54,028 ERROR [org.apache.struts.action.ActionServlet]
java.io.FileNotFoundException: JAR entry 
org/apache/struts/resources/web-app_2_2.dtd not found in 
/usr/local/jboss-3.0.4_tomcat-4.1.12/tomcat-4.1.x/work/MainEngine/localhost/struts-menu/WEB-INF/lib/struts.jar
at 
org.apache.commons.digester.Digester.createSAXException(Digester.java:2312)
at 
org.apache.commons.digester.Digester.createSAXException(Digester.java:2332)
at 
org.apache.commons.digester.Digester.resolveEntity(Digester.java:1367)
at 
org.apache.crimson.parser.ExternalEntity.getInputSource(ExternalEntity.java:89)
at org.apache.crimson.parser.Parser2.pushReader(Parser2.java:3133)
at 
org.apache.crimson.parser.Parser2.externalParameterEntity(Parser2.java:2868)
at org.apache.crimson.parser.Parser2.maybeDoctypeDecl(Parser2.java:1167)
at org.apache.crimson.parser.Parser2.parseInternal(Parser2.java:489)
at org.apache.crimson.parser.Parser2.parse(Parser2.java:305)
at org.apache.crimson.parser.XMLReaderImpl.parse(XMLReaderImpl.java:442)
at org.apache.commons.digester.Digester.parse(Digester.java:1514)
at 
org.apache.struts.action.ActionServlet.initServlet(ActionServlet.java:1381)
at org.apache.struts.action.ActionServlet.init(ActionServlet.java:464)
at javax.servlet.GenericServlet.init(GenericServlet.java:256)


If this is a jboss issue, I'll post over there. Any hints are apprciated.
thanks,
Marty



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




struts-menu ClassLoaders in jboss

2003-02-12 Thread Martin J. La Jeunesse
Have been spending the day trying to get struts-menu working under 
jboss, without much success.

Upon deploying my app:
2003-02-12 17:31:00,547 ERROR [org.apache.commons.digester.Digester] 
Begin event threw exception
java.lang.ClassNotFoundException: No ClassLoaders found for: 
com.fgm.web.menu.displayer.MenuDisplayerMapping
   at org.jboss.mx.loading.LoadMgr.beginLoadTask(LoadMgr.java:138)
   at 
org.jboss.mx.loading.UnifiedClassLoader3.loadClass(UnifiedClassLoader3.java:140)
   at java.lang.ClassLoader.loadClass(ClassLoader.java:262)
   at 
org.apache.commons.digester.ObjectCreateRule.begin(ObjectCreateRule.java:252)
   at org.apache.commons.digester.Digester.startElement(Digester.java:1237)
   at org.apache.crimson.parser.Parser2.maybeElement(Parser2.java:1490)
   at org.apache.crimson.parser.Parser2.content(Parser2.java:1779)
   at org.apache.crimson.parser.Parser2.maybeElement(Parser2.java:1507)
   at org.apache.crimson.parser.Parser2.content(Parser2.java:1779)
   at org.apache.crimson.parser.Parser2.maybeElement(Parser2.java:1507)
   at org.apache.crimson.parser.Parser2.parseInternal(Parser2.java:500)
   at org.apache.crimson.parser.Parser2.parse(Parser2.java:305)
   at org.apache.crimson.parser.XMLReaderImpl.parse(XMLReaderImpl.java:442)
   at org.apache.commons.digester.Digester.parse(Digester.java:1514)
   at com.fgm.web.menu.MenuRepository.load(Unknown Source)
   at com.fgm.web.menu.MenuPlugIn.init(Unknown Source)
   at 
org.apache.struts.action.ActionServlet.initModulePlugIns(ActionServlet.java:1105)
   at org.apache.struts.action.ActionServlet.init(ActionServlet.java:471)
   at javax.servlet.GenericServlet.init(GenericServlet.java:256)
snip

The sample struts-menu app spits-up a little differently:
2003-02-12 17:13:54,028 ERROR [org.apache.struts.action.ActionServlet]
java.io.FileNotFoundException: JAR entry 
org/apache/struts/resources/web-app_2_2.dtd not found in 
/usr/local/jboss-3.0.4_tomcat-4.1.12/tomcat-4.1.x/work/MainEngine/localhost/struts-menu/WEB-INF/lib/struts.jar
   at 
org.apache.commons.digester.Digester.createSAXException(Digester.java:2312)
   at 
org.apache.commons.digester.Digester.createSAXException(Digester.java:2332)
   at 
org.apache.commons.digester.Digester.resolveEntity(Digester.java:1367)
   at 
org.apache.crimson.parser.ExternalEntity.getInputSource(ExternalEntity.java:89)
   at org.apache.crimson.parser.Parser2.pushReader(Parser2.java:3133)
   at 
org.apache.crimson.parser.Parser2.externalParameterEntity(Parser2.java:2868)
   at org.apache.crimson.parser.Parser2.maybeDoctypeDecl(Parser2.java:1167)
   at org.apache.crimson.parser.Parser2.parseInternal(Parser2.java:489)
   at org.apache.crimson.parser.Parser2.parse(Parser2.java:305)
   at org.apache.crimson.parser.XMLReaderImpl.parse(XMLReaderImpl.java:442)
   at org.apache.commons.digester.Digester.parse(Digester.java:1514)
   at 
org.apache.struts.action.ActionServlet.initServlet(ActionServlet.java:1381)
   at org.apache.struts.action.ActionServlet.init(ActionServlet.java:464)
   at javax.servlet.GenericServlet.init(GenericServlet.java:256)


If this is a jboss issue, I'll post over there. Any hints are apprciated.
thanks,
Marty


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



Struts 1.1b, Jboss 3.0.4 and Jetty.

2003-02-05 Thread Clark Wright

Couple of questions:

The first one is rather minor:

I am constantly getting messages of the following format in the jboss log file:

2003-02-05 17:14:43,686 ERROR [STDERR] Feb 5, 2003 5:14:43 PM 
org.apache.struts.util.PropertyMessageResources init
INFO: Initializing, config='org.apache.struts.taglib.html.LocalStrings', 
returnNull=true

How does one get struts to not dump to STDERR, but instead use log4j ?

The second question is much harder:

I'm moving from JBoss 3.0 to 3.0.4 and the new version of JBoss/Jetty 
appears to be completely refusing to serve content that is struts enabled.

In the log (set to debug), I see the successful deployment of the EAR, but 
when I go to the index page, I see several of the above messages, and then 
nothing.

No JSP init messages,
No Stacks, no errors, no nothing.

It doesn't even appear that the jsp's are being compiled.

Any suggestions or pointers to figure out why/where/how its failing would 
be appreciated.

thanks,

- clark.


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



RE: [List Of Struts SubProjects ]RE: Jboss and Struts Menu

2003-02-01 Thread Alireza Fattahi
I found one at
http://jakarta.apache.org/struts/doc-1.0.2/userGuide/resources.html . Is
there more?
Thanks.

-Original Message-
From: Alireza Fattahi [mailto:[EMAIL PROTECTED]] 
Sent: Saturday, February 01, 2003 11:03 AM
To: 'Struts Users Mailing List'
Subject: [List Of Struts SubProjects ]RE: Jboss and Struts Menu

Struts Menu! Unfortunately, I have not heard about it. It makes me feel bad
because I would use it in my previous project if I knew it :( 
Well it has passed but is there a list of these projects? May be a there are
lot more out there.

To Will_Etson: Sorry for no help!

-Original Message-
From: Will Etson [mailto:[EMAIL PROTECTED]] 
Sent: Saturday, February 01, 2003 1:22 AM
To: [EMAIL PROTECTED]
Subject: Jboss and Struts Menu

Is anyone using Jboss and StrutsMenu together? I trying to get the sample
app to deploy, without much luck. I even recompiled the library with struts
1.1b3. No luck. Under tomcat 4.1.12 LE, every thing is fine. I've even tried
some of the other fixes for JBoss ClassLoader/Struts problems. The
struts-validator.war and the struts-example.war load just fine in Jboss.
The exception I get: 
17:54:43,950 ERROR [STDERR] java.lang.ClassNotFoundException: No
ClassLoaders found for: com.fgm.web.menu.displayer.MenuDisplayerMapping
17:54:43,960 ERROR [STDERR] at
org.apache.commons.digester.Digester.createSAXException(Digester.java:2383)
17:54:43,960 ERROR [STDERR] at
org.apache.commons.digester.Digester.createSAXException(Digester.java:2409)
17:54:43,970 ERROR [STDERR] at
org.apache.commons.digester.Digester.startElement(Digester.java:1271)
.
.
.

A full trace is attached

--Versions
Struts 1.1b3
StrutsMenu 1.2
Jboss 3.0.4 (embedded tomcat 4.1.12)
Windows XP SP1

thanks,
Will Etson

P.S. I had similar issues with stxx...



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

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




RE: [List Of Struts SubProjects ]RE: Jboss and Struts Menu

2003-02-01 Thread Craig R. McClanahan


On Sat, 1 Feb 2003, Alireza Fattahi wrote:

 I found one at
 http://jakarta.apache.org/struts/doc-1.0.2/userGuide/resources.html . Is
 there more?

The up-to-date version of the Struts Resources pages is online at:

  http://jakarta.apache.org/struts/resources/

Craig

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




Jboss and Struts Menu

2003-01-31 Thread Will Etson
Is anyone using Jboss and StrutsMenu together? I trying to get the sample app to 
deploy, without much luck. I even recompiled the library with struts 1.1b3. No luck. 
Under tomcat 4.1.12 LE, every thing is fine. I've even tried some of the other fixes 
for JBoss ClassLoader/Struts problems. The struts-validator.war and the 
struts-example.war load just fine in Jboss.
The exception I get: 
17:54:43,950 ERROR [STDERR] java.lang.ClassNotFoundException: No ClassLoaders found 
for: com.fgm.web.menu.displayer.MenuDisplayerMapping
17:54:43,960 ERROR [STDERR] at 
org.apache.commons.digester.Digester.createSAXException(Digester.java:2383)
17:54:43,960 ERROR [STDERR] at 
org.apache.commons.digester.Digester.createSAXException(Digester.java:2409)
17:54:43,970 ERROR [STDERR] at 
org.apache.commons.digester.Digester.startElement(Digester.java:1271)
.
.
.

A full trace is attached

--Versions
Struts 1.1b3
StrutsMenu 1.2
Jboss 3.0.4 (embedded tomcat 4.1.12)
Windows XP SP1

thanks,
Will Etson

P.S. I had similar issues with stxx...



17:54:35,858 INFO  [EmbeddedCatalinaService41] deploy, ctxPath=/struts-menu,  war 
Url=file:/C:/programs/jboss-3.0.4_tomcat-4.1.12/server/default/tmp/deploy/server/default/deploy/struts-menu.war/90.struts-menu.war
17:54:35,938 INFO  [Engine] WebappLoader[/struts-menu]: Deploying class repositories 
to work directory 
C:\programs\jboss-3.0.4_tomcat-4.1.12\tomcat-4.1.x\work\MainEngine\localhost\struts-menu
17:54:36,429 INFO  [Engine] WebappLoader[/struts-menu]: Deploy class files 
/WEB-INF/classes to 
C:\programs\jboss-3.0.4_tomcat-4.1.12\tomcat-4.1.x\work\MainEngine\localhost\struts-menu\WEB-INF\classes
17:54:36,579 INFO  [Engine] WebappLoader[/struts-menu]: Deploy JAR 
/WEB-INF/lib/commons-beanutils.jar to 
C:\programs\jboss-3.0.4_tomcat-4.1.12\tomcat-4.1.x\work\MainEngine\localhost\struts-menu\WEB-INF\lib\commons-beanutils.jar
17:54:36,609 INFO  [Engine] WebappLoader[/struts-menu]: Deploy JAR 
/WEB-INF/lib/commons-collections.jar to 
C:\programs\jboss-3.0.4_tomcat-4.1.12\tomcat-4.1.x\work\MainEngine\localhost\struts-menu\WEB-INF\lib\commons-collections.jar
17:54:36,679 INFO  [Engine] WebappLoader[/struts-menu]: Deploy JAR 
/WEB-INF/lib/commons-digester.jar to 
C:\programs\jboss-3.0.4_tomcat-4.1.12\tomcat-4.1.x\work\MainEngine\localhost\struts-menu\WEB-INF\lib\commons-digester.jar
17:54:36,709 INFO  [Engine] WebappLoader[/struts-menu]: Deploy JAR 
/WEB-INF/lib/commons-lang.jar to 
C:\programs\jboss-3.0.4_tomcat-4.1.12\tomcat-4.1.x\work\MainEngine\localhost\struts-menu\WEB-INF\lib\commons-lang.jar
17:54:36,759 INFO  [Engine] WebappLoader[/struts-menu]: Deploy JAR 
/WEB-INF/lib/commons-logging.jar to 
C:\programs\jboss-3.0.4_tomcat-4.1.12\tomcat-4.1.x\work\MainEngine\localhost\struts-menu\WEB-INF\lib\commons-logging.jar
17:54:36,779 INFO  [Engine] WebappLoader[/struts-menu]: Deploy JAR 
/WEB-INF/lib/struts-menu.jar to 
C:\programs\jboss-3.0.4_tomcat-4.1.12\tomcat-4.1.x\work\MainEngine\localhost\struts-menu\WEB-INF\lib\struts-menu.jar
17:54:36,809 INFO  [Engine] WebappLoader[/struts-menu]: Deploy JAR 
/WEB-INF/lib/struts.jar to 
C:\programs\jboss-3.0.4_tomcat-4.1.12\tomcat-4.1.x\work\MainEngine\localhost\struts-menu\WEB-INF\lib\struts.jar
17:54:38,933 INFO  [Engine] ContextConfig[/struts-menu]: Added certificates - request 
attribute Valve
17:54:38,933 INFO  [Engine] ContextConfig[/struts-menu]: Configured an authenticator 
for method BASIC
17:54:40,735 INFO  [EmbeddedCatalinaService41] Using Java2 parent classloader 
delegation: true
17:54:40,745 INFO  [Engine] StandardManager[/struts-menu]: Seeding random number 
generator class java.security.SecureRandom
17:54:40,755 INFO  [Engine] StandardManager[/struts-menu]: Seeding of random number 
generator has been completed
17:54:40,755 INFO  [Engine] StandardWrapper[/struts-menu:default]: Loading container 
servlet default
17:54:42,157 INFO  [PropertyMessageResources] Initializing, 
config='org.apache.struts.util.LocalStrings', returnNull=true
17:54:42,167 INFO  [PropertyMessageResources] Initializing, 
config='org.apache.struts.action.ActionResources', returnNull=true
17:54:43,529 INFO  [PropertyMessageResources] Initializing, config='TrackerRes', 
returnNull=true
17:54:43,539 INFO  [PropertyMessageResources] Initializing, config='ISOCodeRes', 
returnNull=true
17:54:43,639 ERROR [Digester] Begin event threw exception
java.lang.ClassNotFoundException: No ClassLoaders found for: 
com.fgm.web.menu.displayer.MenuDisplayerMapping
at org.jboss.mx.loading.LoadMgr.beginLoadTask(LoadMgr.java:138)
at 
org.jboss.mx.loading.UnifiedClassLoader3.loadClass(UnifiedClassLoader3.java:140)
at java.lang.ClassLoader.loadClass(ClassLoader.java:255)
at 
org.apache.commons.digester.ObjectCreateRule.begin(ObjectCreateRule.java:252)
at org.apache.commons.digester.Rule.begin(Rule.java:200)
at org.apache.commons.digester.Digester.startElement(Digester.java:1268)
at org.apache.crimson.parser.Parser2

RE: Jboss and Struts Menu

2003-01-31 Thread James Higginbotham
What version of Jboss are you using? They've recently been including
some of the jakarta libs for bootstrapping and other needs, so the
classloader could be an issue. They've also fixed some classloader
issues in jb 3.0.6, which was released just Mon/Tues of this week.
Sorry, but I haven't tried StrutsMenu with it, though I'm deploying
Struts fine in JB 3.0.2-3.0.6

HTH,
James

 -Original Message-
 From: Will Etson [mailto:[EMAIL PROTECTED]] 
 Sent: Friday, January 31, 2003 3:52 PM
 To: [EMAIL PROTECTED]
 Subject: Jboss and Struts Menu
 
 
 Is anyone using Jboss and StrutsMenu together? I trying to 
 get the sample app to deploy, without much luck. I even 
 recompiled the library with struts 1.1b3. No luck. Under 
 tomcat 4.1.12 LE, every thing is fine. I've even tried some 
 of the other fixes for JBoss ClassLoader/Struts problems. The 
 struts-validator.war and the struts-example.war load just 
 fine in Jboss. The exception I get: 
 17:54:43,950 ERROR [STDERR] java.lang.ClassNotFoundException: 
 No ClassLoaders found for: 
 com.fgm.web.menu.displayer.MenuDisplayerMapping
 17:54:43,960 ERROR [STDERR] at 
 org.apache.commons.digester.Digester.createSAXException(Digest
 er.java:2383)
 17:54:43,960 ERROR [STDERR] at 
 org.apache.commons.digester.Digester.createSAXException(Digest
 er.java:2409)
 17:54:43,970 ERROR [STDERR] at 
 org.apache.commons.digester.Digester.startElement(Digester.java:1271)
 .
 .
 .
 
 A full trace is attached
 
 --Versions
 Struts 1.1b3
 StrutsMenu 1.2
 Jboss 3.0.4 (embedded tomcat 4.1.12)
 Windows XP SP1
 
 thanks,
 Will Etson
 
 P.S. I had similar issues with stxx...
 
 
 

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




[List Of Struts SubProjects ]RE: Jboss and Struts Menu

2003-01-31 Thread Alireza Fattahi
Struts Menu! Unfortunately, I have not heard about it. It makes me feel bad
because I would use it in my previous project if I knew it :( 
Well it has passed but is there a list of these projects? May be a there are
lot more out there.

To Will_Etson: Sorry for no help!

-Original Message-
From: Will Etson [mailto:[EMAIL PROTECTED]] 
Sent: Saturday, February 01, 2003 1:22 AM
To: [EMAIL PROTECTED]
Subject: Jboss and Struts Menu

Is anyone using Jboss and StrutsMenu together? I trying to get the sample
app to deploy, without much luck. I even recompiled the library with struts
1.1b3. No luck. Under tomcat 4.1.12 LE, every thing is fine. I've even tried
some of the other fixes for JBoss ClassLoader/Struts problems. The
struts-validator.war and the struts-example.war load just fine in Jboss.
The exception I get: 
17:54:43,950 ERROR [STDERR] java.lang.ClassNotFoundException: No
ClassLoaders found for: com.fgm.web.menu.displayer.MenuDisplayerMapping
17:54:43,960 ERROR [STDERR] at
org.apache.commons.digester.Digester.createSAXException(Digester.java:2383)
17:54:43,960 ERROR [STDERR] at
org.apache.commons.digester.Digester.createSAXException(Digester.java:2409)
17:54:43,970 ERROR [STDERR] at
org.apache.commons.digester.Digester.startElement(Digester.java:1271)
.
.
.

A full trace is attached

--Versions
Struts 1.1b3
StrutsMenu 1.2
Jboss 3.0.4 (embedded tomcat 4.1.12)
Windows XP SP1

thanks,
Will Etson

P.S. I had similar issues with stxx...



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




Re: error when trying to deploy struts application onto JBoss 3.0.4

2003-01-22 Thread Rachel
At 21:46 21/01/2003 +0100, you wrote:

Have you try to add struts into jboss/server/default/lib ?


I just tried that and it threw the same error on deployment. Are there 
known issues with this latest version of Struts and JBoss? I have 
successfully deployed things using Struts 1.0.2 and using templates but I 
am trying to use Tiles instead in the newer version of struts but can't get 
it to deploy.

Rachel


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



  1   2   3   >