Re: [JBoss-user] EAR with jboss-app.xml and wsr?

2004-01-12 Thread Chad Brandon
It would be great if someone could help me out with
this (see below).  Again, I need the jboss-app.xml in
my ear since it provides ear level scoping
of deployed classes.

--- Chad Brandon [EMAIL PROTECTED] wrote:
 JBoss-3.2.3 all config
 
 What's the best way to get a web service archive to
 work correctly with jboss-net, if you're using a
 jboss-app.xml file in your ear?  I have an ear file
 and I'm including a web service archive (*.wsr) in
 the
 ear.  If I leave the jboss-app.xml file out
 everything
 deploys correctly, and I'm able to view the deployed
 service

(http://localhost:8085/jboss-net/services/Hello?wsdl).
  But when I add my jboss-app.xml file, the
 AxisServlet
 fails with a NoClassDefFoundError.  Since axis has
 no
 logging in the method it was failing in,  I added a
 System.out.println to the axis class and it looks
 like
 the class it can't find is
 org.jboss.net.axis.server.EJBProvider.  Obviously
 with the jboss-app.xml my ear can't see the class in
 the jboss-net.sar filewhats the best way to get
 this to work with the jboss-app.xml file in my ear?
 
 Thanks,
 
 Chad 
 
 

---
 This SF.net email is sponsored by: Perforce
 Software.
 Perforce is the Fast Software Configuration
 Management System offering
 advanced branching capabilities and atomic changes
 on 50+ platforms.
 Free Eval!
 http://www.perforce.com/perforce/loadprog.html
 ___
 JBoss-user mailing list
 [EMAIL PROTECTED]

https://lists.sourceforge.net/lists/listinfo/jboss-user



---
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced branching capabilities and atomic changes on 50+ platforms.
Free Eval! http://www.perforce.com/perforce/loadprog.html
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] EAR with jboss-app.xml and wsr?

2004-01-09 Thread Chad Brandon
JBoss-3.2.3 all config

What's the best way to get a web service archive to
work correctly with jboss-net, if you're using a
jboss-app.xml file in your ear?  I have an ear file
and I'm including a web service archive (*.wsr) in the
ear.  If I leave the jboss-app.xml file out everything
deploys correctly, and I'm able to view the deployed
service
(http://localhost:8085/jboss-net/services/Hello?wsdl).
 But when I add my jboss-app.xml file, the AxisServlet
fails with a NoClassDefFoundError.  Since axis has no
logging in the method it was failing in,  I added a
System.out.println to the axis class and it looks like
the class it can't find is
org.jboss.net.axis.server.EJBProvider.  Obviously
with the jboss-app.xml my ear can't see the class in
the jboss-net.sar filewhats the best way to get
this to work with the jboss-app.xml file in my ear?

Thanks,

Chad 


---
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced branching capabilities and atomic changes on 50+ platforms.
Free Eval! http://www.perforce.com/perforce/loadprog.html
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


RE: [JBoss-user] EAR with jboss-app.xml and wsr?

2004-01-09 Thread Stephane Nicoll
Why not having your wsr as a separate module (and thus define this module in
your application.xml)

That's what we are doing and it runs ok.

Regards,

Stephane


-Original Message-
From:   Chad Brandon [mailto:[EMAIL PROTECTED]
Sent:   Fri 1/9/2004 19:36
To: [EMAIL PROTECTED]
Cc: 
Subject:[JBoss-user] EAR with jboss-app.xml and wsr?
JBoss-3.2.3 all config

What's the best way to get a web service archive to
work correctly with jboss-net, if you're using a
jboss-app.xml file in your ear?  I have an ear file
and I'm including a web service archive (*.wsr) in the
ear.  If I leave the jboss-app.xml file out everything
deploys correctly, and I'm able to view the deployed
service
(http://localhost:8085/jboss-net/services/Hello?wsdl).
 But when I add my jboss-app.xml file, the AxisServlet
fails with a NoClassDefFoundError.  Since axis has no
logging in the method it was failing in,  I added a
System.out.println to the axis class and it looks like
the class it can't find is
org.jboss.net.axis.server.EJBProvider.  Obviously
with the jboss-app.xml my ear can't see the class in
the jboss-net.sar filewhats the best way to get
this to work with the jboss-app.xml file in my ear?

Thanks,

Chad 


---
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced branching capabilities and atomic changes on 50+ platforms.
Free Eval! http://www.perforce.com/perforce/loadprog.html
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user



winmail.dat

RE: [JBoss-user] EAR with jboss-app.xml and wsr?

2004-01-09 Thread Chad Brandon
Do you mean you don't put it in your ear file...but
you just deploy it as a standalone wsr?

--- Stephane Nicoll [EMAIL PROTECTED] wrote:
 Why not having your wsr as a separate module (and
 thus define this module in
 your application.xml)
 
 That's what we are doing and it runs ok.
 
 Regards,
 
 Stephane
 
 
 -Original Message-
 From: Chad Brandon [mailto:[EMAIL PROTECTED]
 Sent: Fri 1/9/2004 19:36
 To:   [EMAIL PROTECTED]
 Cc:   
 Subject:  [JBoss-user] EAR with jboss-app.xml and
 wsr?
 JBoss-3.2.3 all config
 
 What's the best way to get a web service archive to
 work correctly with jboss-net, if you're using a
 jboss-app.xml file in your ear?  I have an ear file
 and I'm including a web service archive (*.wsr) in
 the
 ear.  If I leave the jboss-app.xml file out
 everything
 deploys correctly, and I'm able to view the deployed
 service

(http://localhost:8085/jboss-net/services/Hello?wsdl).
  But when I add my jboss-app.xml file, the
 AxisServlet
 fails with a NoClassDefFoundError.  Since axis has
 no
 logging in the method it was failing in,  I added a
 System.out.println to the axis class and it looks
 like
 the class it can't find is
 org.jboss.net.axis.server.EJBProvider.  Obviously
 with the jboss-app.xml my ear can't see the class in
 the jboss-net.sar filewhats the best way to get
 this to work with the jboss-app.xml file in my ear?
 
 Thanks,
 
 Chad 
 
 

---
 This SF.net email is sponsored by: Perforce
 Software.
 Perforce is the Fast Software Configuration
 Management System offering
 advanced branching capabilities and atomic changes
 on 50+ platforms.
 Free Eval!
 http://www.perforce.com/perforce/loadprog.html
 ___
 JBoss-user mailing list
 [EMAIL PROTECTED]

https://lists.sourceforge.net/lists/listinfo/jboss-user
 
 
 
 

 ATTACHMENT part 2 application/ms-tnef
name=winmail.dat




---
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced branching capabilities and atomic changes on 50+ platforms.
Free Eval! http://www.perforce.com/perforce/loadprog.html
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


RE: [JBoss-user] EAR with jboss-app.xml and wsr?

2004-01-09 Thread Stephane Nicoll
No, I don't use jboss-app.xml but I deploy it as a separate module in my ear
(just the same way as ejb-jar module and web applications).

Regards,

Stephane


-Original Message-
From:   Chad Brandon [mailto:[EMAIL PROTECTED]
Sent:   Fri 1/9/2004 22:11
To: [EMAIL PROTECTED]
Cc: 
Subject:RE: [JBoss-user] EAR with jboss-app.xml and wsr?
Do you mean you don't put it in your ear file...but
you just deploy it as a standalone wsr?

--- Stephane Nicoll [EMAIL PROTECTED] wrote:
 Why not having your wsr as a separate module (and
 thus define this module in
 your application.xml)
 
 That's what we are doing and it runs ok.
 
 Regards,
 
 Stephane
 
 
 -Original Message-
 From: Chad Brandon [mailto:[EMAIL PROTECTED]
 Sent: Fri 1/9/2004 19:36
 To:   [EMAIL PROTECTED]
 Cc:   
 Subject:  [JBoss-user] EAR with jboss-app.xml and
 wsr?
 JBoss-3.2.3 all config
 
 What's the best way to get a web service archive to
 work correctly with jboss-net, if you're using a
 jboss-app.xml file in your ear?  I have an ear file
 and I'm including a web service archive (*.wsr) in
 the
 ear.  If I leave the jboss-app.xml file out
 everything
 deploys correctly, and I'm able to view the deployed
 service

(http://localhost:8085/jboss-net/services/Hello?wsdl).
  But when I add my jboss-app.xml file, the
 AxisServlet
 fails with a NoClassDefFoundError.  Since axis has
 no
 logging in the method it was failing in,  I added a
 System.out.println to the axis class and it looks
 like
 the class it can't find is
 org.jboss.net.axis.server.EJBProvider.  Obviously
 with the jboss-app.xml my ear can't see the class in
 the jboss-net.sar filewhats the best way to get
 this to work with the jboss-app.xml file in my ear?
 
 Thanks,
 
 Chad 
 
 

---
 This SF.net email is sponsored by: Perforce
 Software.
 Perforce is the Fast Software Configuration
 Management System offering
 advanced branching capabilities and atomic changes
 on 50+ platforms.
 Free Eval!
 http://www.perforce.com/perforce/loadprog.html
 ___
 JBoss-user mailing list
 [EMAIL PROTECTED]

https://lists.sourceforge.net/lists/listinfo/jboss-user
 
 
 
 

 ATTACHMENT part 2 application/ms-tnef
name=winmail.dat




---
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced branching capabilities and atomic changes on 50+ platforms.
Free Eval! http://www.perforce.com/perforce/loadprog.html
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user



winmail.dat

RE: [JBoss-user] EAR with jboss-app.xml and wsr?

2004-01-09 Thread Chad Brandon
I do have it as a seperate module within my ear
fileand its defined as a java module within the
application.xml (javacontracts-poc.wsr/java).  But
I also need to include a jboss-app.xml in my ear, so I
can deploy other ear files within the same jboss
instance that may contain the same jar files but
different versions, etc.  Like I said below, it works
fine if I take out the jboss-app.xml file...but I need
the jboss-app.xml since it provides ear level scoping
of deployed classes.

Thanks,

Chad

--- Stephane Nicoll [EMAIL PROTECTED] wrote:
 No, I don't use jboss-app.xml but I deploy it as a
 separate module in my ear
 (just the same way as ejb-jar module and web
 applications).
 
 Regards,
 
 Stephane
 
 
 -Original Message-
 From: Chad Brandon [mailto:[EMAIL PROTECTED]
 Sent: Fri 1/9/2004 22:11
 To:   [EMAIL PROTECTED]
 Cc:   
 Subject:  RE: [JBoss-user] EAR with jboss-app.xml and
 wsr?
 Do you mean you don't put it in your ear file...but
 you just deploy it as a standalone wsr?
 
 --- Stephane Nicoll [EMAIL PROTECTED] wrote:
  Why not having your wsr as a separate module (and
  thus define this module in
  your application.xml)
  
  That's what we are doing and it runs ok.
  
  Regards,
  
  Stephane
  
  
  -Original Message-
  From:   Chad Brandon [mailto:[EMAIL PROTECTED]
  Sent:   Fri 1/9/2004 19:36
  To: [EMAIL PROTECTED]
  Cc: 
  Subject:[JBoss-user] EAR with jboss-app.xml and
  wsr?
  JBoss-3.2.3 all config
  
  What's the best way to get a web service archive
 to
  work correctly with jboss-net, if you're using a
  jboss-app.xml file in your ear?  I have an ear
 file
  and I'm including a web service archive (*.wsr) in
  the
  ear.  If I leave the jboss-app.xml file out
  everything
  deploys correctly, and I'm able to view the
 deployed
  service
 

(http://localhost:8085/jboss-net/services/Hello?wsdl).
   But when I add my jboss-app.xml file, the
  AxisServlet
  fails with a NoClassDefFoundError.  Since axis has
  no
  logging in the method it was failing in,  I added
 a
  System.out.println to the axis class and it looks
  like
  the class it can't find is
  org.jboss.net.axis.server.EJBProvider. 
 Obviously
  with the jboss-app.xml my ear can't see the class
 in
  the jboss-net.sar filewhats the best way to
 get
  this to work with the jboss-app.xml file in my
 ear?
  
  Thanks,
  
  Chad 
  
  
 

---
  This SF.net email is sponsored by: Perforce
  Software.
  Perforce is the Fast Software Configuration
  Management System offering
  advanced branching capabilities and atomic changes
  on 50+ platforms.
  Free Eval!
  http://www.perforce.com/perforce/loadprog.html
  ___
  JBoss-user mailing list
  [EMAIL PROTECTED]
 

https://lists.sourceforge.net/lists/listinfo/jboss-user
  
  
  
  
 
  ATTACHMENT part 2 application/ms-tnef
 name=winmail.dat
 
 
 
 

---
 This SF.net email is sponsored by: Perforce
 Software.
 Perforce is the Fast Software Configuration
 Management System offering
 advanced branching capabilities and atomic changes
 on 50+ platforms.
 Free Eval!
 http://www.perforce.com/perforce/loadprog.html
 ___
 JBoss-user mailing list
 [EMAIL PROTECTED]

https://lists.sourceforge.net/lists/listinfo/jboss-user
 
 
 
 

 ATTACHMENT part 2 application/ms-tnef
name=winmail.dat




---
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced branching capabilities and atomic changes on 50+ platforms.
Free Eval! http://www.perforce.com/perforce/loadprog.html
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user