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, 2

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 com

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
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
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 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 lib
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 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 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 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]