[JBoss-user] [JBoss.NET] - Re: Webservice authentication

2004-09-07 Thread nehring
I would use code similar to below.  The idea is to:
1)  locate the SOAP service  (wsdl2java should have generated a Locator)
2)  Instantiate the stub class.
3)  Set the username and password in the stub.
4)  Make the SOAP call to a remote method.

The names of the Locator and Stub classes have been changed below to protect the 
innocent, but you'll get the idea.   The answer to your question  are the calls to the 
setUsername() and setPassword() methods.   These are provided by the 
org.apache.axis.client.Stub class that your stub extends.


  | package client;
  | 
  | import client.stub.MySOAPServiceLocator;
  | import client.stub.HelloSoapBindingStub; 
  | 
  | 
  | public class TestVersion
  | {
  |public static void main( String[] args ) throws Exception
  |{
  |   // Instantiate the webservice request.
  |   MySOAPServiceLocator l = new MySOAPServiceLocator();
  |   HelloSoapBindingStub tstub = (HelloSoapBindingStub) l.getHello();
  |   
  |   // Get the version from the SOAP service.
  |   // Assumes that the SOAP service has a method named getVersion
  |   // that returns a String.
  |   String version = null;
  |   try
  |   {
  |  tstub.setUsername( user1 );
  |  tstub.setPassword( pass1 );
  |  version = tstub.getVersion();
  |  System.out.println(Version:  + version);
  |   }
  |   catch( org.apache.axis.AxisFault af )
  |   {
  |  System.out.println(WRONG LOGIN: +af.getMessage());
  |   }
  |}
  | }
  | 

r,
Lance

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3847465#3847465

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3847465


---
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=5047alloc_id=10808op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - Re: JBoss 3.2.3 MS SQL Server 2000 Deployment problem

2004-09-07 Thread henrykey
ur message as shown
java.io.FileNotFoundException: 
/opt/jboss3/server/default/data/hypersonic/localDB.properties (Permission denied)) 

u may need to reset the attribution of the file. it seems not allow to be accessed.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3847466#3847466

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3847466


---
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=5047alloc_id=10808op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss.NET] - Re: Webservice authentication

2004-09-07 Thread arielah
nehring, 

What is the getHello method? My locate doesn't have any access to my defined methods. 
In the client code I'm doing the following below. Where first I get the locate, then 
from it I get my EJB remote interface (that was generate from wsdl2java) where I can 
call my defined methods. I'm not using my stub class AxisSoapBindingStub that was 
generated.


  |  RequestManagerServiceLocator service = new   
RequestManagerServiceLocator();
  | 
  |   Person p = new Person();
  | p.setFamiliarName(blah);
  | p.setLast(blahlast);
  | 
  | //RequestManager extends java.rmi.Remote
  | RequestManager port = service.getAxis();
  | p = port.testPerson(good one.. and now to break it again., p);
  | 
  | 

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3847467#3847467

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3847467


---
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=5047alloc_id=10808op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - Cannot bring up the jmx-console

2004-09-07 Thread milsteadrl
Does anyone know how to correct this error when I try to bring up the jmx-console.   I 
use this as a tool to see if my JBoss is up and running or not.  

type Exception report

message 

description The server encountered an internal error () that prevented it from 
fulfilling this request.

exception 

org.apache.jasper.JasperException: Unable to compile class for JSP

An error occurred at line: -1 in the jsp file: null

Generated servlet error:
[javac] Compiling 1 source file



at 
org.apache.jasper.compiler.DefaultErrorHandler.javacError(DefaultErrorHandler.java:130)
at 
org.apache.jasper.compiler.ErrorDispatcher.javacError(ErrorDispatcher.java:293)
at org.apache.jasper.compiler.Compiler.generateClass(Compiler.java:353)
at org.apache.jasper.compiler.Compiler.compile(Compiler.java:370)
at 
org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:473)
at 
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:190)
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.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
at 
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:256)
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.jboss.web.tomcat.security.JBossSecurityMgrRealm.invoke(JBossSecurityMgrRealm.java:220)
at 
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
at 
org.apache.catalina.valves.CertificatesValve.invoke(CertificatesValve.java:246)
at 
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
at 
org.jboss.web.tomcat.tc4.statistics.ContainerStatsValve.invoke(ContainerStatsValve.java:76)
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:2417)
at 
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
at 
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
at 
org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:171)
at 
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
at 
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:172)
at 
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
at 
org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:65)
at 
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:577)
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.StandardEngineValve.invoke(StandardEngineValve.java:174)
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.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:197)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:781)
at 
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:549)
at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:605)
at 

[JBoss-user] [Installation Configuration] - Re: dual processor and single processor behaviour

2004-09-07 Thread mkgarnek
We have used a few combinations.

Windows 2000 Server + SP2, Java 1.4.2_01-b06
Windows 2000 Server + SP3, Java 1.4.2_01-b06
Windows 2000 Advanced Server + SP4, 1.4.2_04-b05

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3847469#3847469

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3847469


---
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=5047alloc_id=10808op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss.NET] - Re: Webservice authentication

2004-09-07 Thread nehring
Your method likely will not be named getHello.   In the Locator code generated by 
wsdl2java, you should see a few methods that return your Stub.  In mine, I see that 
one method has no arguments and one takes a URL object as an argument to return the 
Stub.

For example, I have web service named FTSCMI with a lengthy wsdl.  
When I run wsdl2java (using ant), I get 4 files:

CmiSOAP.java   (contains an interface)
CmiSOAPService.java  (contains an interface)
CmiSOAPServiceLocator.java  (contains the service locator)
FTSCMISoapBindingStub.java  (contains the stub)

You should see methods in the stub that correspond to  the web methods exposed in your 
web service.   Using those methods from the Stub class will save some pain and helps 
isolate the SOAP stuff from your client-side business code.  This works for me with 
MIME/DIME attachments and plain parametersI can't say that I've used Java Objects 
as parameters since I usually have to interop with MS .Net

I may be able to whip out a complete example using authentication in the next day or 
so.   Note that I'm running JBoss-3.2.5 and I use the axis service that is embedded by 
JBoss as /jboss-net.

r,
Lance

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3847470#3847470

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3847470


---
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=5047alloc_id=10808op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Performance Tuning] - PooledInvoker

2004-09-07 Thread zha
Does anyone know how to configure JBoss to use PooledInvoker rather than use 
JRMPInvoker?
Thanks!

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3847471#3847471

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3847471


---
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=5047alloc_id=10808op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [News Announcements] - 4.0.0RC2 Release Available (Repost)

2004-09-07 Thread [EMAIL PROTECTED]
The jboss-4.0.0RC2 release is available from here:
https://sourceforge.net/project/showfiles.php?group_id=22866package_id=16942release_id=254646

The change notes are available here:
https://sourceforge.net/docman/display_doc.php?docid=24552group_id=22866

The jboss-4.0.0 final release is targeted to be out next weekend, Sep 11-12.


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3847278#3847278

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3847278


---
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=5047alloc_id=10808op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - develop w/ jboss3.2.1 on pc, move to production running jbos

2004-09-07 Thread yetang
is there anything i need to pay paticular attention? such as doclet.xml or path change?

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3847473#3847473

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3847473


---
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=5047alloc_id=10808op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - dev w/ jboss3.2.1 on pc, move to production ....

2004-09-07 Thread yetang
develop w/ jboss3.2.1 on pc, move to production running jboss3.2.3 on solaris x86. 

using jboss3.2.1 eclipse2.1 lomboz2.1.2 to develop.

is there anything i need to pay paticular attention? such as path difference, version 
difference? any article or link to share?

thanx

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3847474#3847474

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3847474


---
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=5047alloc_id=10808op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [J2EE Compliance] - Re: JSP tag

2004-09-07 Thread bossJ
HEY darranl YOU'RE A F#CKING IDIOT. I'VE BEEN LOOKING AT THIS FORUM FOR 10 MINUTES AND 
THE ONLY REPLIES I SEE ARE YOU SAYING

THIS SHOULD BE IN THE BEGINNERS SECTION

OR 

1 - DONT DOUBLE POST

IT MUST BE DIFFICULT FOR YOU TO FUNCTION IN LIFE, SINCE YOU'RE JUST SO DAMN SUPERIOR 
TO EVERYBODY ELSE!

INSTEAD OF BITCHING ABOUT PEOPLE WHO ARE JUST TRTING TO GET A LITTLE HELP WITH JBOSS, 
WHY DONT YOU ACTUALLY GIVE THEM A BIT OF ADVICE, OR BETTER YET, CHOKE OF FAECAL MATTER.




View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3847478#3847478

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3847478


---
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=5047alloc_id=10808op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - Having some trouble installing.....

2004-09-07 Thread kle
Hiya,
first of all, some system information:
Win xp pro sp1a
jboss 3.2.5
nuke 1.1.0 RC3
mysql-4.0.20d-win.zip
JDK SE 1.4.1
J2EE 1.3.1

I finally got the nuke-installer to work. I was trying to install under 
jboss-3.2.1-tomcat-4.1.24 and it would not connect to the DB. I downloaded jboss 3.2.5 
and it worked straight away.

now i am trying to run nukes it's self. i placed the nukes.ear directory in the 
%JBOSS_HOME%/server/default/deploy/ directory.

and i placed the nukes directory in the 
%JBOSS_HOME%/server/default/ directory.

this gave me the following errors.

(sorry for the long post)

any help would be appreciated. 
thanks
kle


  | 13:05:36,411 INFO  [EARDeployer] Init J2EE application: 
file:/C:/java/jboss-3.2.5/server/default/deploy/nukes.ear/
  | 13:05:37,098 WARN  [DeploymentInfo] Only the root deployment can set the loader 
repository, ingoring config=null
  | 13:05:37,614 WARN  [NestedThrowable] Duplicate throwable nesting of same base 
type: class org.jboss.deployment.DeploymentException is assignable from: class 
org.jboss.deployment.DeploymentException
  | 13:05:37,630 ERROR [MainDeployer] could not create deployment: 
file:/C:/java/jboss-3.2.5/server/default/deploy/nukes.ear/nukes.sar/
  | org.jboss.deployment.DeploymentException: create operation failed for package 
file:/C:/java/jboss-3.2.5/server/default/deploy/nukes.ear/nukes.sar/; - nested 
throwable: (org.jboss.deployment.DeploymentException: - nested throwable: 
(java.lang.reflect.UndeclaredThrowableException))
  | at org.jboss.deployment.SARDeployer.create(SARDeployer.java:227)
  | at org.jboss.deployment.MainDeployer.create(MainDeployer.java:790)
  | at org.jboss.deployment.MainDeployer.create(MainDeployer.java:782)
  | at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:644)
  | at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:608)
  | at sun.reflect.GeneratedMethodAccessor30.invoke(Unknown Source)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | at java.lang.reflect.Method.invoke(Method.java:324)
  | at 
org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:60)
  | at org.jboss.mx.server.Invocation.dispatch(Invocation.java:61)
  | at org.jboss.mx.server.Invocation.dispatch(Invocation.java:53)
  | at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
  | at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:185)
  | at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:473)
  | at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:176)
  | at $Proxy7.deploy(Unknown Source)
  | at 
org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:304)
  | at 
org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:478)
  | at 
org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:201)
  | at 
org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(AbstractDeploymentScanner.java:274)
  | at 
org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:271)
  | at 
org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:221)
  | at sun.reflect.GeneratedMethodAccessor8.invoke(Unknown Source)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | at java.lang.reflect.Method.invoke(Method.java:324)
  | at 
org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:60)
  | at org.jboss.mx.server.Invocation.dispatch(Invocation.java:61)
  | at org.jboss.mx.server.Invocation.dispatch(Invocation.java:53)
  | at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
  | at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:185)
  | at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:473)
  | at 
org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:837)
  | at $Proxy0.start(Unknown Source)
  | at org.jboss.system.ServiceController.start(ServiceController.java:367)
  | at sun.reflect.GeneratedMethodAccessor12.invoke(Unknown Source)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | at java.lang.reflect.Method.invoke(Method.java:324)
  | at 
org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:60)
  | at org.jboss.mx.server.Invocation.dispatch(Invocation.java:61)
  | at org.jboss.mx.server.Invocation.dispatch(Invocation.java:53)
  | at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
  | at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:185)
  | at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:473)
  | at 

[JBoss-user] [Installation Configuration] - RuntimeErrorException: java.lang.NoClassDefFoundError: org/w

2004-09-07 Thread bill78b
when i try to start the jboss server i am going to get this runtime exception

RuntimeErrorException: java.lang.NoClassDefFoundError: org/w3c/dom/Node
Cause: java.lang.NoClassDefFoundError: org/w3c/dom/Node
at 
org.jboss.mx.server.ReflectedDispatcher.handleInvocationExceptions(ReflectedDispatc
her.java:99)
at 
org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:64)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:61)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:53)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:185)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:473)
at 
org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:837)
at $Proxy0.create(Unknown Source)
at org.jboss.system.ServiceController.create(ServiceController.java:283)
at org.jboss.system.ServiceController.create(ServiceController.java:216)
at java.lang.reflect.Method.invoke(Native Method)
at 
org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:60)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:61)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:53)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:185)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:473)
at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:176)
at $Proxy4.create(Unknown Source)
at org.jboss.deployment.SARDeployer.create(SARDeployer.java:213)
at org.jboss.deployment.MainDeployer.create(MainDeployer.java:790)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:644)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:608)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:592)
at java.lang.reflect.Method.invoke(Native Method)
at 
org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:60)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:61)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:53)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:185)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:473)
at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:176)
at $Proxy5.deploy(Unknown Source)
at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:407)
at org.jboss.system.server.ServerImpl.start(ServerImpl.java:311)
at org.jboss.Main.boot(Main.java:144)
at org.jboss.Main$1.run(Main.java:389)
at java.lang.Thread.run(Thread.java:484)

jboss version is 3.2.4
jdk version is 1.3
O.S is windows 2000

and this is a default instalation

i didnt change any default settings.
any solution.

thanks

venu

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3847480#3847480

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3847480


---
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=5047alloc_id=10808op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - Re: Having some trouble installing.....

2004-09-07 Thread kle
Is it only compatible with that exact version?

I did try the 1.0 version in 3.2.1 but that didn't work either.

i will download 3.2.3 from source forge and give that a go.

cheers
kle

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3847483#3847483

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3847483


---
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=5047alloc_id=10808op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - Re: Having some trouble installing.....

2004-09-07 Thread theute
Nukes versions = 1.1 are only compatible with JBoss 3.2.3.

For more information about installation, please read:
http://www.jboss.org/wiki/Wiki.jsp?page=InstallUninstallUpgrade

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3847481#3847481

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3847481


---
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=5047alloc_id=10808op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: Cannot get the list of categories: java.rmi.RemoteExcept

2004-09-07 Thread chava
Hi,
Every thing is fine with jboss.xml, ejb-jar.xml,jbosscmp-jdbc.xml.Getting error due to 
jndi resource reference in jboss.xml doesnot match with InitialContext.lookup in 
seesion beans .

Thank you.
CHAVA.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3847482#3847482

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3847482


---
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=5047alloc_id=10808op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - Re: Having some trouble installing.....

2004-09-07 Thread kle
Hiya,
an update i have got it mostly working now in version 3.2.3. The only problems is one 
of the modules won't load, and as i am new to this i am not sure how importent this 
module is.

the error is below,

'thanks in advance,
kle


  | 15:31:10,989 ERROR [URLDeploymentScanner] MBeanException: Exception in MBean 
operation 'checkIncompleteDeployments()'
  | Cause: Incomplete Deployment listing:
  | Packages waiting for a deployer:
  |   none
  | Incompletely deployed packages:
  |   none
  | MBeans waiting for classes:
  |   none
  | MBeans waiting for other MBeans:
  | [ObjectName: nukes.themes:name=seabreeze
  |  state: FAILED
  |  I Depend On:  nukes.modules:name=core
  | 
  |  Depends On Me: java.lang.OutOfMemoryError]
  | 

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3847484#3847484

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3847484


---
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=5047alloc_id=10808op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user