[JBoss-user] [EJB/JBoss] - Re: java.lang.NoClassDefFoundError: org/jboss/aspects/asynch

2006-02-21 Thread michael_f_kahn
I had the same problem in 4.0.4RC1.  I downloaded the Jboss-AOP 1.3.5 kit and 
added the lib-50/jboss-aspect-jkd50-client.jar to my classpath and it fixed the 
problem.

Shouldn't this jar be in the jbossall-client.jar?


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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=103432bid=230486dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: java.lang.NoClassDefFoundError: $Proxy246

2006-02-14 Thread jasonb2
I've got the same issue running on AIX 5.3, JRE 1.5.0.  In my case, though, 
JBoss is running on AIX and one EJB is invoking a method on another EJB within 
the same instance of JBoss.   

The same thing works when I run it on Windows.  Anyone know what could be 
causing this?

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=103432bid=230486dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: java.lang.NoClassDefFoundError

2005-12-17 Thread dirk.koehler
I suggest to post such problems in a java forum... it's not EJB related if you 
can't get your main running...

1) cd C:\TEST\EJB\

2) %JAVA_HOME%\bin\java -classpath 
.;C:\jboss-4.0.2\client\jboss-j2ee.jar;C:\TEST\EJB\FirstEJB\Fir
stEJB.jar FirstEJBClient 

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: java.lang.NoClassDefFoundError

2005-12-08 Thread Ayusman
Hi all,
I wrote a small java program that will use the EJB that has been deployed (I 
believe that the following lines mean a successfull deployment)

21:11:30,664 INFO  [EjbModule] Deploying First
21:11:30,851 INFO  [EJBDeployer] Deployed: 
file:/C:/jboss-4.0.2/server/default/deploy/FirstEJB.jar
21:11:30,945 INFO  [TomcatDeployer] deploy, ctxPath=/jmx-console, 
warUrl=file:/C:/jboss-4.0.2/server/default/deploy/jmx-console.war/
21:11:31,273 INFO  [Http11Protocol] Starting Coyote HTTP/1.1 on 
http-0.0.0.0-8080


Now I have this program..

import javax.ejb.*;
import java.rmi.*;
import javax.rmi.*;
import javax.naming.*;
import com.stardeveloper.ejb.session.First;
import com.stardeveloper.ejb.session.FirstHome;
import java.util.Properties;

public class FirstEJBClient
{
  public static void main(String[] args) throws Exception
   {
 long t1 = System.currentTimeMillis();
 Properties props = new Properties();
 props.put  
(Context.INITIAL_CONTEXT_FACTORY,org.jnp.interfaces.NamingContextFactory);
props.put(Context.PROVIDER_URL, localhost:8080);
Context ctxt = new InitialContext(props);
FirstHome home = (FirstHome)ctxt.lookup(JndiFirst);
First bean = home.create();
String time = bean.getTime();
bean.remove();
ctxt.close();
long t2 = System.currentTimeMillis();
}
}


I compiled the code as:

C:\Documents and Settings\Administrator%JAVA_HOME%\bin\javac -classpath 
C:\jboss-4.0.2\client\jboss-j2ee.jar;C:\TEST\EJB\FirstEJB\Fi
rstEJB.jar C:\TEST\EJB\FirstEJBClient.java

C:\Documents and Settings\Administrator

There are no compilation errors, but as I try to run the JAVA program as 

C:\Documents and Settings\ayusman_dikshit%JAVA_HOME%\bin\java -classpath 
C:\jboss-4.0.2\client\jboss-j2ee.jar;C:\TEST\EJB\FirstEJB\Fir
stEJB.jar C:\TEST\EJB\FirstEJBClient
Exception in thread main java.lang.NoClassDefFoundError: 
C:\TEST\EJB\FirstEJBClient

I have set C:\TEST\EJB in my classpath,
any suggestions, on this problem???

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: java.lang.NoClassDefFoundError: $Proxy246

2005-02-04 Thread newsted
and I am running JBoss 3.2.3 on jvm ibm 1.4.1


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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user