[JBoss-user] JBoss.net questions

2003-08-17 Thread Marco.Mistroni
hi all,
i am trying to get acquainted with jboss.net samples.
i followed what has been described at this very useful
website 
http://www.csd.abdn.ac.uk/~bscharla/teaching/mtp_software/jboss/jboss-net-HelloWorld.shtml

and i encountered following behaviour.

1  - when i run the testClient WITHOUT running the tcpmon, i got the exception 
java.net.ConnectException: Connection refused: connect

2 - when instead i run the axis tcpmon, everything works fine.

so, does it mean that if i want to run services on jboss-net i have to have tcpmon 
running?

and,a more general question. i am writing a J2ME client that  uses the kxml package in 
order to
connect to j2ee applications running on jboss.
i have read the docs that if i want to write a client for my jboss.net webservice, 
that client should
have axis classes in its classpath.

but i believe that axis package for J2ME does not exist (yet, i hope..).

anyone can suggest me some workaround (other than using my own xml format, which i am 
already doing?)?

thanx in advance and regards
marco


---
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072303_01/01
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


Re: [JBoss-user] EJB spec violation Section: 22.2 Problems

2003-08-17 Thread Christofer Dutz
Well unfortunately this didn't help.

Fortunately I found the reason for failing deployment.
Even though jboss told me he couldnt find lets say a.b.c.d.e.f.g.GroupEntCMP
The real problem was that he couldnt find the parent class
a.b.c.d.e.util.BaseEntityBean.
It would have been nice if jboss told me that ;) I would have
been able to ontinue much earlier.
Thanx anyway

   Chris

Adrian Brock wrote:

Try turning off strict verfification in conf/jboss-service.xml
You will get a more informative error message.
Regards,
Adrian
On Sat, 2003-08-16 at 13:13, Christofer Dutz wrote:
 

Hi,

I am getting this strange Error form JBoss. Yesterday everything was 
working fine.:

14:09:50,255 WARN  [verifier] EJB spec violation:
Bean   : GroupEnt
Section: 22.2
Warning: The Bean Provider must specify the fully-qualified name of the 
Java class that implements the enterprise bean's business methods in the 
ejb-class element.
Info   : Class not found: de.cware.cweb.security.ejb.group.GroupEntCMP

The class jboss is complaining not to find is definately in the same 
jar-file as the deployment descriptor and is located in the exactly 
right place.
I am getting this error for all my entities.

What am I doing wrong ?

Chris



---
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072303_01/01
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user
   



---
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072303_01/01
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user
 





---
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072303_01/01
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


Re: [JBoss-user] JBoss.net questions

2003-08-17 Thread Neal Sanche
Well, if you've generated your testClient with the port you've set 
aside for TCPmon, then that would be the reason you can only connect 
when it's running. Look for URLs inside the code that point to the 
incorrect port, replace those with the port that JBoss is running on 
(8080) and you'll get it going then.

-Neal

On August 17, 2003 05:36 am, [EMAIL PROTECTED] wrote:
 hi all,
   i am trying to get acquainted with jboss.net samples.
 i followed what has been described at this very useful
 website
 http://www.csd.abdn.ac.uk/~bscharla/teaching/mtp_software/jboss/jbo
ss-net-HelloWorld.shtml

 and i encountered following behaviour.

 1  - when i run the testClient WITHOUT running the tcpmon, i got
 the exception java.net.ConnectException: Connection refused:
 connect

 2 - when instead i run the axis tcpmon, everything works fine.

 so, does it mean that if i want to run services on jboss-net i have
 to have tcpmon running?

 and,a more general question. i am writing a J2ME client that  uses
 the kxml package in order to connect to j2ee applications running
 on jboss.
 i have read the docs that if i want to write a client for my
 jboss.net webservice, that client should have axis classes in its
 classpath.

 but i believe that axis package for J2ME does not exist (yet, i
 hope..).

 anyone can suggest me some workaround (other than using my own xml
 format, which i am already doing?)?

 thanx in advance and regards
   marco


 ---
 This SF.Net email sponsored by: Free pre-built ASP.NET sites
 including Data Reports, E-commerce, Portals, and Forums are
 available now. Download today and enter to win an XBOX or Visual
 Studio .NET.
 http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_0723
03_01/01 ___
 JBoss-user mailing list
 [EMAIL PROTECTED]
 https://lists.sourceforge.net/lists/listinfo/jboss-user



---
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072303_01/01
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


RE: [JBoss-user] JBoss.net questions

2003-08-17 Thread Marco.Mistroni
Hi,
yep! find the part in the code that was connecting to tcpmon port.
thanx a lot!

regards
marco

 -Original Message-
 From: ext Neal Sanche [mailto:[EMAIL PROTECTED]
 Sent: 17 August, 2003 17:01
 To: [EMAIL PROTECTED]
 Subject: Re: [JBoss-user] JBoss.net questions
 
 
 Well, if you've generated your testClient with the port you've set 
 aside for TCPmon, then that would be the reason you can only connect 
 when it's running. Look for URLs inside the code that point to the 
 incorrect port, replace those with the port that JBoss is running on 
 (8080) and you'll get it going then.
 
 -Neal
 
 On August 17, 2003 05:36 am, [EMAIL PROTECTED] wrote:
  hi all,
  i am trying to get acquainted with jboss.net samples.
  i followed what has been described at this very useful
  website
  http://www.csd.abdn.ac.uk/~bscharla/teaching/mtp_software/jboss/jbo
 ss-net-HelloWorld.shtml
 
  and i encountered following behaviour.
 
  1  - when i run the testClient WITHOUT running the tcpmon, i got
  the exception java.net.ConnectException: Connection refused:
  connect
 
  2 - when instead i run the axis tcpmon, everything works fine.
 
  so, does it mean that if i want to run services on jboss-net i have
  to have tcpmon running?
 
  and,a more general question. i am writing a J2ME client that  uses
  the kxml package in order to connect to j2ee applications running
  on jboss.
  i have read the docs that if i want to write a client for my
  jboss.net webservice, that client should have axis classes in its
  classpath.
 
  but i believe that axis package for J2ME does not exist (yet, i
  hope..).
 
  anyone can suggest me some workaround (other than using my own xml
  format, which i am already doing?)?
 
  thanx in advance and regards
  marco
 
 
  ---
  This SF.Net email sponsored by: Free pre-built ASP.NET sites
  including Data Reports, E-commerce, Portals, and Forums are
  available now. Download today and enter to win an XBOX or Visual
  Studio .NET.
  http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_0723
 03_01/01 ___
  JBoss-user mailing list
  [EMAIL PROTECTED]
  https://lists.sourceforge.net/lists/listinfo/jboss-user
 
 
 
 ---
 This SF.Net email sponsored by: Free pre-built ASP.NET sites including
 Data Reports, E-commerce, Portals, and Forums are available now.
 Download today and enter to win an XBOX or Visual Studio .NET.
 http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet
 _072303_01/01
 ___
 JBoss-user mailing list
 [EMAIL PROTECTED]
 https://lists.sourceforge.net/lists/listinfo/jboss-user
 


---
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072303_01/01
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] ,100!(23:10:12)

2003-08-17 Thread





  

,remove [EMAIL PROTECTED]
  
  

23:10:12






---
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072303_01/01
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


Re: FW: [JBoss-user] Error when starting jboss 4.0.0 DR2

2003-08-17 Thread Adrian Brock
It is going to take me 3 hours to downlod DR2 from sourceforge.

Send me 
ls -lR  ls-LR.log 
of the distro and your log/boot.log

Are you sure this isn't a file permission problem on the extracted
files?

Regards,
Adrian

On Sun, 2003-08-17 at 17:05, [EMAIL PROTECTED] wrote:
 Hi adrian,
   i forward the mail to you coz i posted to the list 5 hours ago but
 the message (same as this) hasn't showed up.
 i tried to download from different mirrors but teh result was exactly the same.
 note that when i have tried instead with 4.0.0DR1 everything was working fine..
 
 thanx and regards
   marco
 
  -Original Message-
  From: Mistroni Marco (NET-IMN/Espoo) 
  Sent: 17 August, 2003 11:03
  To: '[EMAIL PROTECTED]'
  Subject: RE: [JBoss-user] Error when starting jboss 4.0.0 DR2
  
  
  Hi Adrian,
  no, i havent modified any classpath. i have just 
  downloaded from a mirror.
  i will try to get it from another mirror..
  attached anyway is the boot.zip which contains the boot.log, 
  if it can help
  
  regards
  marco
  
  
   -Original Message-
   From: ext Adrian Brock [mailto:[EMAIL PROTECTED]
   Sent: 16 August, 2003 20:15
   To: [EMAIL PROTECTED]
   Subject: Re: [JBoss-user] Error when starting jboss 4.0.0 DR2
   
   
   Either your download is incomplete or
   you have modified the classpath in such a way to
   break class visibility. Don't modify the classpath.
   
   We'll need a bit more information from log/server.log
   
   Regards,
   Adrian
   
   On Sat, 2003-08-16 at 17:38, [EMAIL PROTECTED] wrote:
hi all,
i got following errors when i  try to start jboss 4.0.0 DR2

19:36:27,076 INFO  [MainDeployer] Starting deployment of 
   package: file:/C:/jboss
-4.0.0DR2/server/default/conf/jboss-service.xml
19:36:34,437 INFO  [ServiceConfigurator] class not found 
   for mbean jboss.aop:ser
vice=AspectManager
19:36:34,457 INFO  [ServiceConfigurator] class not found 
   for mbean jboss.aop:ser
vice=AspectDeployer
19:36:34,507 INFO  [ServiceConfigurator] class not found 
   for mbean jboss.system:
type=Log4jService,service=Logging
19:36:34,577 INFO  [ServiceConfigurator] class not found 
   for mbean jboss.managem
ent.local:j2eeType=J2EEDomain,name=Manager
19:36:34,607 INFO  [ServiceConfigurator] class not found 
   for mbean jboss:service
=Naming
19:36:34,677 INFO  [ServiceConfigurator] class not found 
   for mbean jboss:service
=JNDIView
19:36:34,707 INFO  [ServiceConfigurator] class not found 
   for mbean jboss:service
=EJBTimerManager
19:36:34,787 INFO  [ServiceConfigurator] class not found 
   for mbean jboss:service
=EJBTimerService
19:36:34,817 INFO  [ServiceConfigurator] class not found 
   for mbean jboss.securit
y:service=SecurityConfig
19:36:34,837 INFO  [ServiceConfigurator] class not found 
   for mbean jboss.securit
y:service=XMLLoginConfig
19:36:34,867 INFO  [ServiceConfigurator] class not found 
   for mbean jboss.securit
y:service=JaasSecurityManager
19:36:34,907 INFO  [ServiceConfigurator] class not found 
   for mbean jboss.j2ee:se
rvice=EARDeployer


something missing in classpath? or some component need to 
   be downloaded separately?

regards
marco


---
This SF.Net email sponsored by: Free pre-built ASP.NET 
   sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.

   http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet
   _072303_01/01
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user
   
   
   
   ---
   This SF.Net email sponsored by: Free pre-built ASP.NET 
  sites including
   Data Reports, E-commerce, Portals, and Forums are available now.
   Download today and enter to win an XBOX or Visual Studio .NET.
   http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet
   _072303_01/01
   ___
   JBoss-user mailing list
   [EMAIL PROTECTED]
   https://lists.sourceforge.net/lists/listinfo/jboss-user
   
  



---
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072303_01/01
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


RE: FW: [JBoss-user] Error when starting jboss 4.0.0 DR2

2003-08-17 Thread Adrian Brock
You cannot run jboss4 with j2se1.3, you need j2se1.4

Regards,
Adrian

On Sun, 2003-08-17 at 18:23, [EMAIL PROTECTED] wrote:
 Hi adrian,
   unfortunately i m on windows :-( ..i run similar command
 from jboss home (dir /s /ar) and there are no files listed.
 i attach again the latest boot.log
 
 i'll try 2morrow again from office..maybe my laptop is broken.. :-(..
 
 thanx anyway for ur help
 
 regards
   marco
 
  -Original Message-
  From: ext Adrian Brock [mailto:[EMAIL PROTECTED]
  Sent: 17 August, 2003 19:17
  To: Mistroni Marco (NET-IMN/Espoo)
  Cc: [EMAIL PROTECTED]
  Subject: Re: FW: [JBoss-user] Error when starting jboss 4.0.0 DR2
  
  
  It is going to take me 3 hours to downlod DR2 from sourceforge.
  
  Send me 
  ls -lR  ls-LR.log 
  of the distro and your log/boot.log
  
  Are you sure this isn't a file permission problem on the extracted
  files?
  
  Regards,
  Adrian
  
  On Sun, 2003-08-17 at 17:05, [EMAIL PROTECTED] wrote:
   Hi adrian,
 i forward the mail to you coz i posted to the list 5 
  hours ago but
   the message (same as this) hasn't showed up.
   i tried to download from different mirrors but teh result 
  was exactly the same.
   note that when i have tried instead with 4.0.0DR1 
  everything was working fine..
   
   thanx and regards
 marco
   
-Original Message-
From: Mistroni Marco (NET-IMN/Espoo) 
Sent: 17 August, 2003 11:03
To: '[EMAIL PROTECTED]'
Subject: RE: [JBoss-user] Error when starting jboss 4.0.0 DR2


Hi Adrian,
no, i havent modified any classpath. i have just 
downloaded from a mirror.
i will try to get it from another mirror..
attached anyway is the boot.zip which contains the boot.log, 
if it can help

regards
marco


 -Original Message-
 From: ext Adrian Brock [mailto:[EMAIL PROTECTED]
 Sent: 16 August, 2003 20:15
 To: [EMAIL PROTECTED]
 Subject: Re: [JBoss-user] Error when starting jboss 4.0.0 DR2
 
 
 Either your download is incomplete or
 you have modified the classpath in such a way to
 break class visibility. Don't modify the classpath.
 
 We'll need a bit more information from log/server.log
 
 Regards,
 Adrian
 
 On Sat, 2003-08-16 at 17:38, [EMAIL PROTECTED] wrote:
  hi all,
  i got following errors when i  try to start 
  jboss 4.0.0 DR2
  
  19:36:27,076 INFO  [MainDeployer] Starting deployment of 
 package: file:/C:/jboss
  -4.0.0DR2/server/default/conf/jboss-service.xml
  19:36:34,437 INFO  [ServiceConfigurator] class not found 
 for mbean jboss.aop:ser
  vice=AspectManager
  19:36:34,457 INFO  [ServiceConfigurator] class not found 
 for mbean jboss.aop:ser
  vice=AspectDeployer
  19:36:34,507 INFO  [ServiceConfigurator] class not found 
 for mbean jboss.system:
  type=Log4jService,service=Logging
  19:36:34,577 INFO  [ServiceConfigurator] class not found 
 for mbean jboss.managem
  ent.local:j2eeType=J2EEDomain,name=Manager
  19:36:34,607 INFO  [ServiceConfigurator] class not found 
 for mbean jboss:service
  =Naming
  19:36:34,677 INFO  [ServiceConfigurator] class not found 
 for mbean jboss:service
  =JNDIView
  19:36:34,707 INFO  [ServiceConfigurator] class not found 
 for mbean jboss:service
  =EJBTimerManager
  19:36:34,787 INFO  [ServiceConfigurator] class not found 
 for mbean jboss:service
  =EJBTimerService
  19:36:34,817 INFO  [ServiceConfigurator] class not found 
 for mbean jboss.securit
  y:service=SecurityConfig
  19:36:34,837 INFO  [ServiceConfigurator] class not found 
 for mbean jboss.securit
  y:service=XMLLoginConfig
  19:36:34,867 INFO  [ServiceConfigurator] class not found 
 for mbean jboss.securit
  y:service=JaasSecurityManager
  19:36:34,907 INFO  [ServiceConfigurator] class not found 
 for mbean jboss.j2ee:se
  rvice=EARDeployer
  
  
  something missing in classpath? or some component need to 
 be downloaded separately?
  
  regards
  marco
  
  
  ---
  This SF.Net email sponsored by: Free pre-built ASP.NET 
 sites including
  Data Reports, E-commerce, Portals, and Forums are 
  available now.
  Download today and enter to win an XBOX or Visual Studio .NET.
  
 http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet
 _072303_01/01
  ___
  JBoss-user mailing list
  [EMAIL PROTECTED]
  https://lists.sourceforge.net/lists/listinfo/jboss-user
 
 
 
 ---
 This SF.Net email sponsored by: Free pre-built ASP.NET 
sites including
 Data Reports, E-commerce, Portals, and Forums are available now.
 

[JBoss-user] warning in starting jboss 4.0.0

2003-08-17 Thread Marco.Mistroni
hi all,
i am receiving following warning when starting jboss.
everything works fine, but i'd like to know where does that warning
comes from..

21:05:33,398 WARN  [ServiceController] Problem starting service jboss.remoting:s
ervice=Detector,transport=multicast
java.net.SocketException: IP_ADD_MEMBERSHIP failed (out of hardware filters?)
at java.net.PlainDatagramSocketImpl.join(Native Method)
at java.net.PlainDatagramSocketImpl.join(PlainDatagramSocketImpl.java:13
4)
at java.net.MulticastSocket.joinGroup(MulticastSocket.java:274)
at org.jboss.remoting.detection.multicast.MulticastDetector.start(Multic
astDetector.java:120)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
sorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.
java:72)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:45)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:70)
at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.
java:155)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:544)
at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceControl
ler.java:1036)
at $Proxy14.start(Unknown Source)
at org.jboss.system.ServiceController.start(ServiceController.java:401)
at sun.reflect.GeneratedMethodAccessor8.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
sorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.
java:72)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:45)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:70)
at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.
java:155)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:544)
at org.jboss.util.jmx.MBeanProxy.invoke(MBeanProxy.java:172)
at $Proxy6.start(Unknown Source)
at org.jboss.deployment.SARDeployer.start(SARDeployer.java:227)
at org.jboss.deployment.DeploymentInfo.start(DeploymentInfo.java:255)
at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
sorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.
java:72)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:45)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:70)
at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.
java:155)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:544)
at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceControl
ler.java:1036)
at $Proxy14.start(Unknown Source)
at org.jboss.system.ServiceController.start(ServiceController.java:401)
at sun.reflect.GeneratedMethodAccessor8.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
sorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.
java:72)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:45)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:70)
at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.
java:155)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:544)
at org.jboss.deployment.MainDeployer.start(MainDeployer.java:798)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:594)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:558)
at sun.reflect.GeneratedMethodAccessor30.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
sorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.
java:72)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:45)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:70)
at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.
java:155)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:544)
at org.jboss.util.jmx.MBeanProxy.invoke(MBeanProxy.java:172)
at $Proxy9.deploy(Unknown Source)
at 

[JBoss-user] Same Application, Two servers.

2003-08-17 Thread Stuart . Herring
Hi,

I have an ear file that contains an EJB module and a Web Module.
The web application calls methods on EJBS in the EJB module, and all
works fine, however, I want to be able to deploy the ear file on two
servers running jboss (Server1, and Server2).
Server1 will be used as the web server, and Server2 will manage the
EJBs.
I believe I should be able to deploy the same ear file to both servers,
and then modify the jboss-web.xml file in the application on Server1 to
specify the full JNDI name of the EJB on Server2, however, when I try
this, the application still accesses the local copy on Server1, rather
than the remote one on Server2.

Here's the jboss-web.xml from the copy of the application on Server1.

?xml version=1.0 encoding=UTF-8?
jboss-web
security-domainjava:/jaas/StuartsRealm/security-domain
ejb-ref
ejb-ref-nameejb/SecTestHome/ejb-ref-name
jndi-namejnp://192.168.211.128/ejb/SecTestHome/jndi-name
/ejb-ref
/jboss-web

Is there something I'm missing?


Stuart Herring
RD Development Engineer
HPA
Phone : 02 6239 2311
Direct: 02 6283 0319
Modile: 04022 376 76
www.hpa.com.au 



**
IMPORTANT
The contents of this e-mail and its attachments are confidential and intended
solely for the use of the individual or entity to whom they are
addressed.  If you received this e-mail in error, please notify
the HPA Postmaster, [EMAIL PROTECTED], then delete 
the e-mail.

This footnote also confirms that this e-mail message has been swept for
the presence of computer viruses by MimeSweeper.  Before opening or
using any attachments, check them for viruses and defects.

Our liability is limited to resupplying any affected attachments.

HPA collects personal information to provide and market our services.
For more information about use, disclosure and access see our Privacy
Policy at www.hpa.com.au
**



---
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072303_01/01
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] Business Processing Outsourcing

2003-08-17 Thread lc223402
Dear Sir/Madam:

We are a data entry company with a large number of skilled operators and
are interested in working with you. Many foreign companies are now
outsourcing information management services offshore because of lower labor cost.
The office of our company in US is in North Carolina and the center of our
company located in Jinzhou, which is 200 miles North of Beijing, China. 

What services do we offer?

DATA ENTRY AND PROCESSING 
DATA CONVERSION  
FORM PROCESSING- Medical/Insurance claim Form 
WEB RESEARCH 
BOOKKEEPING AND ACCOUNTING SERVICES 
FINANCIAL SERVICES

How do you contact our company?
Information Technology International Inc.
   U.S. Office
   Tel: (919) 931-1821
   112 Fan Branch Lane
   Chapel Hill, NC 27516
  
Center in China
   201 Shefei Street,
   Jinzhou, Liaoning, P. R. China
   Tel: +86-416-313-1255
We look forward to setting up a mutually beneficial business association.
With Warmest Regards,

Qiuyue Wang
Sales Representative


P.S.
It seems that your email address has been entered into our company's free
weekly newsletter mailing list accidentally.

I need your help to verify with me. If it is a mistake, please reply to me
with subject line Remove. Your email address will be deleted from our
database.

Thank you. Your help is much appreciated.



---
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072303_01/01
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] CMP2 JDBCCMP2xFieldBridge Storing Non-Dirty Fields

2003-08-17 Thread Nicholas
JBoss 3.2.2RC2
Win32
JDK 1.4.2

I have an entity bean which is being updated with a
coarse grained method that passes a value object which
was previosuly retrieved. In this test case, only one
field was updated, yet the store command stores every
field (except the PK).

Here is my log:

2003-08-17 22:47:25,899 346508 DEBUG
[org.jboss.ejb.plugins.cmp.jdbc.JDBCLoadEntityCommand.PayeeCheck]
(RMI TCP Connection(2)-169.254.25.129:) Executing SQL:
SELECT EVENT_ID, PAYEE_ID, CHECK_SEQ, CHECK_TYPE_CD,
CHECK_NUMBER, CHECK_AMOUNT, SUPPRESS_DIRECT_DEPOSIT,
CREATED, UPDATED, PAYEE_ID, EVENT_ID FROM PAYEE_CHECK
WHERE (PAYEE_CHECK_ID=?)
2003-08-17 22:47:25,899 346508 TRACE
[org.jboss.ejb.plugins.cmp.jdbc.bridge.JDBCCMP2xFieldBridge.PayeeCheck.payeeCheckId]
(RMI TCP Connection(2)-169.254.25.129:) Set parameter:
index=1, jdbcType=INTEGER, value=748
2003-08-17 22:47:25,899 346508 TRACE
[org.jboss.ejb.plugins.cmp.jdbc.bridge.JDBCCMP2xFieldBridge.PayeeCheck.eventId]
(RMI TCP Connection(2)-169.254.25.129:) Get result:
index=1, javaType=int, Simple, value=76
2003-08-17 22:47:25,899 346508 TRACE
[org.jboss.ejb.plugins.cmp.jdbc.bridge.JDBCCMP2xFieldBridge.PayeeCheck.payeeId]
(RMI TCP Connection(2)-169.254.25.129:) Get result:
index=2, javaType=int, Simple, value=373
2003-08-17 22:47:25,899 346508 TRACE
[org.jboss.ejb.plugins.cmp.jdbc.bridge.JDBCCMP2xFieldBridge.PayeeCheck.checkSeq]
(RMI TCP Connection(2)-169.254.25.129:) Get result:
index=3, javaType=int, Simple, value=1
2003-08-17 22:47:25,899 346508 TRACE
[org.jboss.ejb.plugins.cmp.jdbc.bridge.JDBCCMP2xFieldBridge.PayeeCheck.checkTypeCd]
(RMI TCP Connection(2)-169.254.25.129:) Get result:
index=4, javaType=java.lang.String, Simple, value=R
2003-08-17 22:47:25,899 346508 TRACE
[org.jboss.ejb.plugins.cmp.jdbc.bridge.JDBCCMP2xFieldBridge.PayeeCheck.checkNumber]
(RMI TCP Connection(2)-169.254.25.129:) Get result:
index=5, javaType=java.lang.String, Simple, value=001
2003-08-17 22:47:25,899 346508 TRACE
[org.jboss.ejb.plugins.cmp.jdbc.bridge.JDBCCMP2xFieldBridge.PayeeCheck.checkAmount]
(RMI TCP Connection(2)-169.254.25.129:) Get result:
index=6, javaType=java.lang.Double, Simple, value=0.0
2003-08-17 22:47:25,899 346508 TRACE
[org.jboss.ejb.plugins.cmp.jdbc.bridge.JDBCCMP2xFieldBridge.PayeeCheck.suppressDirectDeposit]
(RMI TCP Connection(2)-169.254.25.129:) Get result:
index=7, javaType=java.lang.String, Simple, value=2
2003-08-17 22:47:25,899 346508 TRACE
[org.jboss.ejb.plugins.cmp.jdbc.bridge.JDBCCMP2xFieldBridge.PayeeCheck.created]
(RMI TCP Connection(2)-169.254.25.129:) Get result:
index=8, javaType=java.util.Date, Simple,
value=2003-07-24 00:00:00.0
2003-08-17 22:47:25,899 346508 TRACE
[org.jboss.ejb.plugins.cmp.jdbc.bridge.JDBCCMP2xFieldBridge.PayeeCheck.updated]
(RMI TCP Connection(2)-169.254.25.129:) Get result:
index=9, javaType=java.util.Date, Simple,
value=2003-08-17 00:00:00.0
2003-08-17 22:47:25,899 346508 TRACE
[org.jboss.ejb.plugins.cmp.jdbc.bridge.JDBCCMP2xFieldBridge.PayeeCheck.payeeId]
(RMI TCP Connection(2)-169.254.25.129:) Get result:
index=10, javaType=int, Simple, value=373
2003-08-17 22:47:25,899 346508 TRACE
[org.jboss.ejb.plugins.cmp.jdbc.bridge.JDBCCMP2xFieldBridge.PayeeCheck.eventId]
(RMI TCP Connection(2)-169.254.25.129:) Get result:
index=11, javaType=int, Simple, value=76
2003-08-17 22:47:25,899 346508 TRACE
[org.jboss.ejb.plugins.cmp.jdbc.JDBCStoreEntityCommand.PayeeCheck]
(RMI TCP Connection(2)-169.254.25.129:) Store command
NOT executed. Entity is not dirty: pk=[payeeCheck:]748
2003-08-17 22:47:25,949 346558 DEBUG
[org.jboss.ejb.plugins.cmp.jdbc.JDBCStoreEntityCommand.PayeeCheck]
(RMI TCP Connection(2)-169.254.25.129:) Executing SQL:
UPDATE PAYEE_CHECK SET EVENT_ID=?, PAYEE_ID=?,
CHECK_SEQ=?, CHECK_TYPE_CD=?, CHECK_NUMBER=?,
CHECK_AMOUNT=?, SUPPRESS_DIRECT_DEPOSIT=?, CREATED=?,
UPDATED=? WHERE PAYEE_CHECK_ID=?
2003-08-17 22:47:25,949 346558 TRACE
[org.jboss.ejb.plugins.cmp.jdbc.bridge.JDBCCMP2xFieldBridge.PayeeCheck.eventId]
(RMI TCP Connection(2)-169.254.25.129:) Set parameter:
index=1, jdbcType=INTEGER, value=76
2003-08-17 22:47:25,949 346558 TRACE
[org.jboss.ejb.plugins.cmp.jdbc.bridge.JDBCCMP2xFieldBridge.PayeeCheck.payeeId]
(RMI TCP Connection(2)-169.254.25.129:) Set parameter:
index=2, jdbcType=INTEGER, value=373
2003-08-17 22:47:25,949 346558 TRACE
[org.jboss.ejb.plugins.cmp.jdbc.bridge.JDBCCMP2xFieldBridge.PayeeCheck.checkSeq]
(RMI TCP Connection(2)-169.254.25.129:) Set parameter:
index=3, jdbcType=INTEGER, value=1
2003-08-17 22:47:25,949 346558 TRACE
[org.jboss.ejb.plugins.cmp.jdbc.bridge.JDBCCMP2xFieldBridge.PayeeCheck.checkTypeCd]
(RMI TCP Connection(2)-169.254.25.129:) Set parameter:
index=4, jdbcType=VARCHAR, value=R
2003-08-17 22:47:25,949 346558 TRACE
[org.jboss.ejb.plugins.cmp.jdbc.bridge.JDBCCMP2xFieldBridge.PayeeCheck.checkNumber]
(RMI TCP Connection(2)-169.254.25.129:) Set parameter:
index=5, jdbcType=VARCHAR, value=001
2003-08-17 22:47:25,949 346558 TRACE

[JBoss-user] remove

2003-08-17 Thread Raymond Wee
2003/08/18 9:51:20, [EMAIL PROTECTED] wrote:

Dear Sir/Madam:

We are a data entry company with a large number of skilled operators and
are interested in working with you. Many foreign companies are now
outsourcing information management services offshore because of lower labor cost.
The office of our company in US is in North Carolina and the center of our
company located in Jinzhou, which is 200 miles North of Beijing, China. 

What services do we offer?

DATA ENTRY AND PROCESSING 
DATA CONVERSION  
FORM PROCESSING- Medical/Insurance claim Form 
WEB RESEARCH 
BOOKKEEPING AND ACCOUNTING SERVICES 
FINANCIAL SERVICES

How do you contact our company?
Information Technology International Inc.
   U.S. Office
   Tel: (919) 931-1821
   112 Fan Branch Lane
   Chapel Hill, NC 27516
  
Center in China
   201 Shefei Street,
   Jinzhou, Liaoning, P. R. China
   Tel: +86-416-313-1255
We look forward to setting up a mutually beneficial business association.
With Warmest Regards,

Qiuyue Wang
Sales Representative


P.S.
It seems that your email address has been entered into our company's free
weekly newsletter mailing list accidentally.

I need your help to verify with me. If it is a mistake, please reply to me
with subject line Remove. Your email address will be deleted from our
database.

Thank you. Your help is much appreciated.



---
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072303_01/01
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user







---
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072303_01/01
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user