[JBoss-user] jboss-tomcat security configuration problem

2001-05-10 Thread François Charoy
This one cost me a day... I use jboss-tomcat-2.2 from the distrib It seems that there is a problem in the jboss-tomcat configuration all the configurations files are located in the conf/tomcat dir but the auth.conf used by the security manager is the auth.conf from conf/default This must be chan

[JBoss-user] jboss-tomcat security configuration problem

2001-05-10 Thread François Charoy
This one cost me a day... I use jboss-tomcat-2.2 from the distrib It seems that there is a problem in the jboss-tomcat configuration all the configurations files are located in the conf/tomcat dir but the auth.conf used by the security manager is the auth.conf from conf/default This must be chan

[JBoss-user] How to get IP address from ejb

2001-05-10 Thread Russell
Hi all , I am using RedHat6.1 , jdk1.3 and jboss2.1 . Can i get the computer IPAddress which accessed the ejb and stored in the ipaddress in table ? Thanks ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/list

Re: [JBoss-user] Weird error in jboss2.1.1

2001-05-10 Thread David Jencks
Hi, Apparently what I thought was a clear response, you did not find so. I'll try again. Here's your code annotated. private ProjectInfoHome projectinfohome; private ProjectInfo projectinfo; public ProjectInfoJB getProjectInfoJB(int projectid) throws RemoteException, ICantFindItException {

Re: [JBoss-user] SessionBean or ConnectionCache Problems (not sure...)

2001-05-10 Thread Guy Rouillier
For ShowPressBean, you need entries in your deployment descriptors to PressBean like so: ejb-jar.xml ejb/Press Session com.ctp.corp.PressHome com.ctp.corp.Press jboss.xml ejb/Press Press This is

Re: [JBoss-user] Unable to resolve JNDI name

2001-05-10 Thread Scott M Stark
Read the jboss.xml dtd which is available here: http://www.jboss.org/documentation/jboss.dtd A descriptor like this: com.asset.SMTPAdapter com.asset.SMTPAdapterBean com.asset.SMTPAdapterHome com.asset.SMTPAdapter Statele

Re: [JBoss-user] How to use getResourceAsStream() from a EJB

2001-05-10 Thread Guy Rouillier
Show us the definition of "resource." - Original Message - From: Pedro E. Gómez <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, May 10, 2001 9:56 PM Subject: [JBoss-user] How to use getResourceAsStream() from a EJB > I need to read a resource that i have in the classpath, >

Re: [JBoss-user] Unable to resolve JNDI name

2001-05-10 Thread Guy Rouillier
My apologies for my previous post, which I wrote in a hurry. You should of course do a lookup on the jndi name, which gets mapped to the ejb-name (via jboss.xml). My second point still holds, however - using the home class name as your jndi name is confusing. - Original Message - From:

Re: [JBoss-user] JBoss and Rules Engine

2001-05-10 Thread David Jencks
Hi, You can find version 2 on my "website" http://home.earthlink.net/~davidjencks/ So far it has 2 silly and one not so silly examples. All suggestions, comments, and not-too-hard example projects gratefully accepted. There are several messages on jboss-dev about this, also. This code is sti

Re: [JBoss-user] Unable to resolve JNDI name

2001-05-10 Thread Manu Srivastava
Hi Danch, Thanks for the answer. Problem in copy and paste :-( tag is there in the jBoss.xml but it still it does not get the correct JNDI name. It deploys correctly though. Any other clues?? Thanks and regards Manu Manu Srivastava wrote: > Hi, > > > jBoss.xml > = > >

Re: [JBoss-user] Deploy a J2EE without .ear'n, .war'n and .jar'n?

2001-05-10 Thread Ivan
Do you have a code snippet for doing this? Thank you, Ivan - Original Message - From: "Simon Tang" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, May 10, 2001 3:11 PM Subject: RE: [JBoss-user] Deploy a J2EE without .ear'n, .war'n and .jar'n? > Yes, you don't need to have WA

[JBoss-user] BUG?: when JAWS CMP field type is java.langObject

2001-05-10 Thread Matthew Cooper
Somebody please tell me I am doing something really dumb and that this explanation below is all wrong! I have a CMP managed entity with some cmp fields, one of which is java.lang.Object. After persisting a value in this field (it happens to be a String) and bouncing jboss to make it re-load fr

Re: [JBoss-user] FW: Security Exception , but from where and how

2001-05-10 Thread Rama Rao
Hi, I think attached word document we have documented the procedure to jsse. bye rama rao - Original Message - From: menonv <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, May 10, 2001 9:33 PM Subject: RE: [JBoss-user] FW: Security Exception , but from where and how > make su

[JBoss-user] How to use getResourceAsStream() from a EJB

2001-05-10 Thread Pedro E. Gómez
I need to read a resource that i have in the classpath, The code is: Object o = new Object(); System.out.println("O es:" + o); Class c = o.getClass(); System.out.println("Class es:" + c); System.out.println("Resourc

Re: [JBoss-user] Weird error in jboss2.1.1

2001-05-10 Thread Russell
Hi David , If i ignoring the exception , didn't the method will throw null pointer exception to client. I have do a testing and found that because my session is stateless bean , instance variable is not specific for all client. If i change the session to stateful , the method will throw n

RE: [JBoss-user] JBuilder Integration for edit/compile/test

2001-05-10 Thread Robert Schulz
We develop with JBuilder for JBoss - run your client out of JBuilder and deploy the EJB stuff into JBoss with ant - based scripts. With the hot deploy stuff this works very well for us and you get a short development cycle. R. > -Original Message- > From: Adam Lipscombe [mailto:[EMAIL

Re: [JBoss-user] JBuilder and JBoss - Please Help!

2001-05-10 Thread Anil Tatineni
this seems to be a problem for me too. I tried to do installation as given (which says no configuration needed on the download site for binaries). the error is "No web container found - only EJB deployment available" then i stepped back and tried to install Jboss-2.2 + tomcat-3.2.1 this one seems

[JBoss-user] JBuilder Integration for edit/compile/test

2001-05-10 Thread Adam Lipscombe
Hi, Is it possible to integrate JBoss with JBuilder4? I need to create EJB's and minimise the edit/compile/test cycle. Ideally I want JB4 to compile and then deploy the bean to JBoss automatically. I believe (bit I haven't tried it) that JB4 can do this with the Inprise App Server and Weblogic..

[JBoss-user] JBuilder and JBoss - Please Help!

2001-05-10 Thread John P. Coffey
Could someone please give me the CORRECT settings for Jboss 2.2.1 and Tomcat, The JBoss documentation just plain does'nt work for me, I have spent 2 days struggling with it and in the end I ended up with the following. If anyone has a managed to make this combination work, I would be extremely gr

[JBoss-user] SessionBean or ConnectionCache Problems (not sure...)

2001-05-10 Thread Jason Trust
This is my first posting here, and I am pretty new at jboss, so be kind. I have an application (EAR) that I have built in Sun RI and have working nicely, and now I am trying to deploy it to jboss. I have made some minor modifications to the WAR xml file since tomcat is under the 2.2 Web Applicat

[JBoss-user] Non-ejbean client access jnp-federated file system? can it be done???

2001-05-10 Thread QuKN
Anybody succeed in making non-ejbean client (i.e. ordinary client) access windows file system via jnp federated namespace? The federated namespace itself seems working, after setup, the tree is like this: Global JNDI Namespace +- jmx:TWILIGHT:rmi +- TopicConnectionFactory +- XAQueueConne

Re: [JBoss-user] Unable to resolve JNDI name

2001-05-10 Thread Guy Rouillier
You are supposed to do a lookup on the remote interface. You will be returned a reference to a home object, from which you can call the create() method to get an object of the target class. So I think the failure you indicate is appropriate. In your jboss.xml, why are you using your home classn

Re: [JBoss-user] How to get connection

2001-05-10 Thread Guy Rouillier
In your bean code, lookup the connection: Connection connection = ((DataSource)(new InitialContext()).lookup("java:comp/env/jdbc/metricsDB")).getConnection(); - Original Message - From: "Hari Shanker Ravindran" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursd

RE: [JBoss-user] Catalina and Jboss2.2.1 InitialContext error

2001-05-10 Thread John Menke
Maybe the -nonaming is not getting executed then? (if it fixed your problem). I am using Catalina from within the Turbine TDK which contains a schell script startup.sh which calls the catalina.sh script. I have added the -nonaming to this line so it reads $BASEDIR/catalina.sh start -nonaming "$@"

RE: [JBoss-user] Deploy a J2EE without .ear'n, .war'n and .jar'n?

2001-05-10 Thread Simon Tang
Well, for Web applications, I used Resin and inside the resin.conf, you can have something like this: So, the context is /foo and maps to the directory. Inside the directory, you'll need to have the WEB-INF directory and also all the JSP files. For your EJBs, you will need to have them ins

Re: [JBoss-user] Slightly Off-Topic: Java on Solaris

2001-05-10 Thread Alexander Kogan
Hi, All following is based ONLY on my/our experience: 1. usually java on Sparc/Solaris much faster then on Linux/Intel (actually I know that unix-vm group at Sun has spend a lot of time to tune the VM performance) 2. usually java is more stable on Sparc/Solaris then on Linux/Intel (c

R: [JBoss-user] Catalina and Jboss2.2.1 InitialContext error

2001-05-10 Thread Bordet, Simone
Hey John > Yes, I have tried that, and I still get the error. (It seems > like it has no > effect) Do you have this configuration working? Not exactly. I'm using Catalina with another server application that has its own Naming service, and at the beginning I got the same error on startup, but

[JBoss-user] CMP finder method problem

2001-05-10 Thread Jason Wells
Hello, When I call the findAll() method on a CMP entity bean I've written, I'm getting a stack trace containing this exception: java.rmi.ServerException: Store failed; nested exception is: com.sybase.jdbc2.jdbc.SybSQLException: Too many table names or referential constraints in the query, maximu

RE: [JBoss-user] Deploy a J2EE without .ear'n, .war'n and .jar'n?

2001-05-10 Thread Jeremy C
Can you expand on this a little? How do I map a connect? Jeremy - [EMAIL PROTECTED] At 03:11 PM 5/10/2001 -0700, you wrote: >Yes, you don't need to have WAR EAR or JAR. Just map a contect to the >directory that contains WEB-INF. > > >=== >Simon Tang >Senior Software Engineer >Pro

RE: [JBoss-user] Catalina and Jboss2.2.1 InitialContext error

2001-05-10 Thread John Menke
Yes, I have tried that, and I still get the error. (It seems like it has no effect) Do you have this configuration working? > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of Bordet, > Simone > Sent: Thursday, May 10, 2001 6:15 PM > To: '[EMAIL PROTE

RE: [JBoss-user] apache doesn't invoke mod_jk after jboss restart

2001-05-10 Thread McDonnell, David
Title: apache doesn't invoke mod_jk after jboss restart Hi Ernest,   I remember reading somewhere that this is a limitation of Apj13 protocol, if you stop tomcat you have to restart Apache (it needs a socket connection open). You can try and switch back to using Apj12 and there should be no

R: [JBoss-user] Dynamic class downloading from distant host: working? Bug?

2001-05-10 Thread Bordet, Simone
Sacha, repost it to jboss-dev. >From a very rapid glance, IMHO you're right... Simon > -Messaggio originale- > Da: Sacha Labourey [mailto:[EMAIL PROTECTED]] > Inviato: mercoledì 9 maggio 2001 0:32 > A: jBoss-User Mailing List > Oggetto: [JBoss-user] Dynamic class downloading from distan

R: [JBoss-user] Catalina and Jboss2.2.1 InitialContext error

2001-05-10 Thread Bordet, Simone
Do you start Catalina with the -nonaming option, so that from it you connect to JBoss' Naming service ? Simon > -Messaggio originale- > Da: John Menke [mailto:[EMAIL PROTECTED]] > Inviato: mercoledì 9 maggio 2001 23:30 > A: jboss > Oggetto: [JBoss-user] Catalina and Jboss2.2.1 InitialCon

Re: [JBoss-user] Error Message When Running run.sh

2001-05-10 Thread Lan Nguyen
*This message was transferred with a trial version of CommuniGate(tm) Pro* Hi everyone. When I run the run.sh script, I get a java.lang.NoClassDefFoundError java/lang/Object error message. i'm using the latest vesion of jdk for linux 1.3.0.02, and I'm using Redhat 7.1 with a 2.4 kernal. Can any

RE: [JBoss-user] Deploy a J2EE without .ear'n, .war'n and .jar'n?

2001-05-10 Thread Simon Tang
Yes, you don't need to have WAR EAR or JAR. Just map a contect to the directory that contains WEB-INF. === Simon Tang Senior Software Engineer Professional Services Voxeo Corporation -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of J

[JBoss-user] java/lang/Object Error Message

2001-05-10 Thread Lan Nguyen
Hi everyone.   When I run the run.sh script, I get a java.lang.NoClassDefFoundError java/lang/Object error message.  i'm using the latest vesion of jdk for linux 1.3.0.02, and I'm using Redhat 7.1 with a 2.4 kernal. Can any one help me   Thanks   --Lan

RE: [JBoss-user] Is there a step by step guide to porting apps fr om iPlanet Applic ation Server to JBoss?

2001-05-10 Thread Samuel Bucholtz
I fixed the descriptors, though there are a few things I had to rip out because JBoss does not support them that may or may not cause me problems in the future. They seem to work fine right now, most of my problem was that I wrote none of the code, so I was not sure what was doing what. ;-) Samue

Re: [JBoss-user] apache doesn't invoke mod_jk after jboss restart

2001-05-10 Thread danch (Dan Christopherson)
Ernest Chen wrote: > Not sure if I'm posting to the right place. Basically I have the > following setup: > > Apache > mod_jk > Tomcat 3.2.1 + jBoss 2.2.1 > > Each time I shut down jboss and bring it up again, Apache doesn't > recognize the connection anymore, my pages result in Not found, I

[JBoss-user] Deploy a J2EE without .ear'n, .war'n and .jar'n?

2001-05-10 Thread Jeremy C
Is it possible to deploy a J2EE app with JSP's and EJB's without packaging it all up into a .ear file? I would like to do this for development purposes. Thank you, Jeremy - [EMAIL PROTECTED] ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists

Re: [JBoss-user] Is there a step by step guide to porting apps fr om iPlanet Applic ation Server to JBoss?

2001-05-10 Thread danch (Dan Christopherson)
Samuel Bucholtz wrote: > Thanks, > > It is actually pretty simple. There are only a few beans and no entity beans > at all. > > I just keep getting the same error, and have no clue what it is trying to > ask for. > > org.jboss.ejb.DeploymentException: expected only one assembly-descriptor tag

[JBoss-user] apache doesn't invoke mod_jk after jboss restart

2001-05-10 Thread Ernest Chen
Title: apache doesn't invoke mod_jk after jboss restart Not sure if I'm posting to the right place.  Basically I have the following setup: Apache > mod_jk > Tomcat 3.2.1 + jBoss 2.2.1 Each time I shut down jboss and bring it up again, Apache doesn't recognize the connection anymore, my pag

[JBoss-user] Using Jakarta Struts with JBoss/Tomcat

2001-05-10 Thread Ross Greinke
Title: Using Jakarta Struts with JBoss/Tomcat I've been using Struts with Tomcat and they've been working fine (probably because they're both Jakarta apps). I tried to get the struts-example.war to run under the JBoss/Tomcat all-in-one release (now that I'm ready to add EJB's to my apps) an

[JBoss-user] Problem with JSP Includes

2001-05-10 Thread Samuel Bucholtz
I want to thank people for their help yesterday, I managed to get the dtd and create the proper jboss.xml. I am now able to load the jar file of EJBs and the run and are verified just fine. I have run into a few other problems: 1. I have an ear file with the EJB jar file and a war file with all t

RE: [JBoss-user] JNDI Lookup of Datasources

2001-05-10 Thread Nikhil Patil
Title: RE: [JBoss-user] JNDI Lookup of Datasources Hi I apologize for the typo in my mail, but my code was using "workflowDS". One the reasons it was not working cause I was making the lookup in a different vm. It seems that lookups for datasources only work in-vm. Even then one has to speci

[JBoss-user] Slightly Off-Topic: Java on Solaris

2001-05-10 Thread Hunter Hillegas
My question is off-topic so maybe anyone that responds should do so off list... Anyway, I'm wondering how much better Java is on the Sparc/Solaris vs. Linux/Intel. Those Sun Blade 100 workstations are pretty cheap and I'm curious about getting one... Worth it? Hunter _

Re: [JBoss-user] JNDI Lookup of Datasources

2001-05-10 Thread danch (Dan Christopherson)
If this is a client (running in a separate process from JBoss) you won't be able to do this: JDBC connections and datasources aren't serializable and can't be accessed accross process boundaries. Nikhil Patil wrote: > Hi > I have set a datasource called "workflowDS" in JBOSS. I am trying to do

RE: [JBoss-user] JNDI Lookup of Datasources

2001-05-10 Thread Mayo, Eric
Try precluding the data source name with "java:/", that is, try javax.sql.DataSource source = (javax.sql.DataSource)jndiContext.lookup("java:/defaultDS"); I believe I had that problem in the past and that fixed it. Cheers, Eric -Original Message- From: Nikhil Patil [mailto:[EMAIL PROT

RE: [JBoss-user] JNDI Lookup of Datasources

2001-05-10 Thread Miranda Carlos
Title: RE: [JBoss-user] JNDI Lookup of Datasources javax.sql.DataSource source = (javax.sql.DataSource)jndiContext.lookup("java:/defaultDS"); -Original Message- From: Nikhil Patil [mailto:[EMAIL PROTECTED]] Sent: Jueves, 10 de Mayo de 2001 04:26 p.m. To: jboss Subject: [JBoss-user]

Re: [JBoss-user] Integration w/ IIS?

2001-05-10 Thread danch (Dan Christopherson)
If you look at the Tomcat site, I believe you'll find an ISAPI plug-in that speaks AJP in order to forward JSP/servlet requests to Tomcat. You should be able to configure that against the JBoss-Tomcat combo. -danch Sean LeBlanc wrote: > Is there any way to have JBoss "integrate" with > IIS (a

Re: [JBoss-user] JNDI Lookup of Datasources

2001-05-10 Thread MailingLists
well, if your code is not a type-o check the following line: jndiContext.lookup("defaultDS"); according to your e-mail, that should be workflowDS ;) - Original Message - From: "Nikhil Patil" <[EMAIL PROTECTED]> To: "jboss" <[EMAIL PROTECTED]> Sent: Thursday, May 10, 2001 12:26

RE: [JBoss-user] JNDI Lookup of Datasources

2001-05-10 Thread Christian Thrum
check your code. in the lookup() u use "defaultDS" instead of "workflowDS" christian -Original Message- From: Nikhil Patil [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 10, 2001 9:26 PM To: jboss Subject: [JBoss-user] JNDI Lookup of Datasources Hi I have set a datasource called "workf

Re: [JBoss-user] EJBContextImpl not serializable

2001-05-10 Thread Toby Allsopp
On Thu, May 10, 2001 at 03:58:23PM +0200, Martin Renner wrote: > Hi. > > As far as I know, every instance variable of an EJB has to be serializable or marked > as transient (because the EJB by itself is implementing java.io.Serializable). The relevent section of the spec (version 2.0pd2) is 6.4

Re: [JBoss-user] WebApp to WebApp Communication

2001-05-10 Thread Julian Gosnell
You might get an answer to this on jetty-discuss - I have cross-posted. Jules --- Michael Oswall <[EMAIL PROTECTED]> wrote: > Hello JBoss(+Tomcat/Jetty) Users > > I have a large j2ee project that divides nicely into > a bunch of small > modules that do not need to know about each other. > Ther

[JBoss-user] JNDI Lookup of Datasources

2001-05-10 Thread Nikhil Patil
Hi I have set a datasource called "workflowDS" in JBOSS. I am trying to do a client lookup from a client and this how my code looks like. Properties env = new Properties(); env.setProperty("java.naming.factory.initial", "org.jnp.interfaces.NamingContextFactory"); env.setProper

[JBoss-user] JBossMQ problem on JBoss_Tomcat

2001-05-10 Thread Ryan Sackenheim
Hi, I just installed JBoss for the first time yesterday, and I had an error occur on the Message Queue during startup. But JBoss would continue to run anyway. Looking into it, I had to manually create the [JBOSS_HOME]\db\jbossmq directory which fixed the problem. I just wanted to let everyone

[JBoss-user] Re: OO Design in Java : a tough question

2001-05-10 Thread QuKN
Haven't read such fun post for a while. I read it in my lunch time. In the spirit of the fable-style, my work is exactly the same, so, perhaps I can show my 2 cents. Just to clearify a little bit first, I'm only a programmer, so ... ;-) Please see the interleaved.

[JBoss-user] Integration w/ IIS?

2001-05-10 Thread Sean LeBlanc
Is there any way to have JBoss "integrate" with IIS (ala something like JRun)? All I really want to do is to be able to add JSP capability to an already-running application done in IIS-Coldfusion: IIS acts as gateway to Coldfusion, but I want to be able to hand off things to JBoss (JRun's licensin

[JBoss-user] WebApp to WebApp Communication

2001-05-10 Thread Michael Oswall
Hello JBoss(+Tomcat/Jetty) Users I have a large j2ee project that divides nicely into a bunch of small modules that do not need to know about each other. There is one main HTTP entry point, that is, one primary Request Handling servlet in a small web app that uses the parameters of the request t

Re: [JBoss-user] tomcat-service.jar

2001-05-10 Thread Scott M Stark
I just verified this using the new jbosstest web integration testsuite. I'll update the bundle with the correct tomcat-service.jar. - Original Message - From: "Mayo, Eric" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, May 10, 2001 10:11 AM Subject: [JBoss-user] tomcat-servi

Re: [JBoss-user] JMS Topic question

2001-05-10 Thread danch (Dan Christopherson)
Try looking up "topics/testTopic" If you point a browser at port 8082 on the server you'll get the JMX web interface. One of the mbeans is a JNDIViewer. Drill into that and invoke its operation and you'll be able to see the server's JNDI namespace. Balazs Lichtl wrote: > Hi everybody, > > i

Re: [JBoss-user] jBoss architecture question

2001-05-10 Thread danch (Dan Christopherson)
If your running 'embedded' tomcat, there's actually only one process running. What you're seeing in top is an artifact of the Linux thread model - each individual thread shows as a separate process. Really in Linux the only difference between a process and a thread is all threads in a process

RE: [JBoss-user] jBoss architecture question

2001-05-10 Thread Jim Archer
OK, thanks very much Chris and Hunter. I'm running SUNs JDK 1.3. So if each java process I see is a thread within the same VM, does anyone know what causes a new thread to be started? Also, is there any way to know which of these are Hypersonic, which are Tomcat and which are jBoss? Jim --On

Re: [JBoss-user] JMS Topic question

2001-05-10 Thread Balazs Lichtl
> Is your initial context set up to point to the right naming server? > yes, i think so, because the "TopicConnectionFactory" is found, only the topic itself not. only the second call of the both > > topicConnectionFactory = > > (TopicConnectionFactory)jndiContext.lookup("TopicConnect

[JBoss-user] tomcat-service.jar

2001-05-10 Thread Mayo, Eric
Hi all, If anyone is authenticating with tomcat and passing the credentials through to jboss, there is a problem with the latest tomcat/jboss bundle: JBoss-2.2.1 + Tomcat-3.2.1 (9671204) [APR-19-2001] It seems that the tomc

Re: [JBoss-user] jBoss architecture question

2001-05-10 Thread Hunter Hillegas
It's my understanding that on Linux, threads show as processes. So if you are using a VM with native threads, each thread will show as a process in top, ps, etc... > From: Jim Archer <[EMAIL PROTECTED]> > Reply-To: [EMAIL PROTECTED] > Date: Thu, 10 May 2001 12:49:23 -0400 > To: [EMAIL PROTECTED]

RE: [JBoss-user] jBoss architecture question

2001-05-10 Thread Kimpton,C (Chris)
Hi, > -Original Message- > From: Jim Archer [mailto:[EMAIL PROTECTED]] > > My question is, are each of these a seperate VM or different > processes > running within the same VM? See http://www.jguru.com/faq/view.jsp?EID=125066 > > Also, what causes the number of java processes to c

Re: [JBoss-user] entity bean properties set to null values

2001-05-10 Thread Mike Hoolehan
There's been a bit of chat about that recently on the list. If you have non JBoss modification of your persistence, you'll probably want to use commit option B or C for entity beans. Commit option A assumes exclusive access to persistence. Using commit options B/C isn't quite as speedy as A. I

[JBoss-user] JBoss and Rules Engine

2001-05-10 Thread Matthew Baird
I read the following on jboss news: Rule Engine: David Jencks posts a Rule Engine integration prototype. Does anyone know where to look for this prototype? Is it even available? regards, Matthew ___ JBoss-user mailing list [EMAIL PROTECTED] http://l

[JBoss-user] jBoss architecture question

2001-05-10 Thread Jim Archer
Hi All... I have read the architecture notes on the jBoss site, but I'm still wondering a few things about what jBoss does when it is run. I'm using jBoss 2.2.1 bundled with Tomcat on a Debian/Linux SMP machine. Currently, I'm still running Hypersonic as bundled, so I guess there are three jav

Re: [JBoss-user] entity bean properties set to null values

2001-05-10 Thread Mike Hoolehan
Oh, and for info about commit options, see the jboss.xml dtd http://www.jboss.org/documentation/jboss.dtd Mike On (09/05/01 16:52), Rafael Alves Chaves wrote: > > > The ejbCreate method or postCreate of Documento must insure that all the beans > > properties are set. > > Thanks, Victor, this w

RE: [JBoss-user] JBuilder 4.0 ServiceNotFoundException (cannot startup debug session)

2001-05-10 Thread John P. Coffey
I have managed to get JBuilder to go a little further now, however things are still not incorrect, any ideas from the console listing below from JBuilder 4. Thanks in advance John Coffey D:\JBuilder4\jdk1.3\bin\javaw -classic -classpath "D:\main\product\sw\pds\classes;D:\jboss-2.2\jboss\lib\cri

[JBoss-user] JSSE

2001-05-10 Thread Maksims_Zizkuns
Hi, does JBoss supports JSSE? If so, how this can be configured? Thank you Max

Re: [JBoss-user] Security Exception , but from where and how

2001-05-10 Thread Eric Lindauer
Have you updated the client code to use the same version of jboss as your server code? I had some problems updating that went away when I made this switch. - Original Message - From: "Scott M Stark" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, May 10, 2001 11:17 AM Subjec

RE: [JBoss-user] JMS Topic question

2001-05-10 Thread menonv
Is your initial context set up to point to the right naming server? > -Original Message- > From: Balazs Lichtl [SMTP:[EMAIL PROTECTED]] > Sent: Thursday, May 10, 2001 4:39 PM > To: [EMAIL PROTECTED] > Subject: [JBoss-user] JMS Topic question > > Hi everybody, > > i have the probl

RE: [JBoss-user] FW: Security Exception , but from where and how

2001-05-10 Thread menonv
make sure you have all the required jar under JBOSSHOME/clients > -Original Message- > From: Mukul Kumar [SMTP:[EMAIL PROTECTED]] > Sent: Thursday, May 10, 2001 3:12 PM > To: [EMAIL PROTECTED] > Subject: [JBoss-user] FW: Security Exception , but from where and > how > > hi friend

Re: [JBoss-user] JBoss Future

2001-05-10 Thread Jim Archer
Sill in draft... --On Thursday, May 10, 2001 8:42 AM -0400 Kemp Randy-W18971 <[EMAIL PROTECTED]> wrote: > Is the Sun EJB 2.0 spec finalized yet, or is it still officially in draft > stage? > > From: "Ivan" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Date: Wed, 9 May 2001 17:34:34 -0700 > Su

[JBoss-user] JMS Topic question

2001-05-10 Thread Balazs Lichtl
Hi everybody, i have the problem, that my external java client does not find any JMS Topics of the running jboss: by the second fo following calls: topicConnectionFactory = (TopicConnectionFactory)jndiContext.lookup("TopicConnectionFactory"); topic = (Topic) jndiContext.l

Re: [JBoss-user] HELP! JBoss client problem

2001-05-10 Thread Eric Lindauer
Looks like a simple Classpath problem. The NamingContextFactory is a class provided by jboss and is in one of the jars you specifically included on your classpath when you executed the file from the command line. Presumably when you run the executable jar you are not making these jars available

Re: [JBoss-user] HELP! JBoss client problem

2001-05-10 Thread Mike Simpson
On Thursday, May 10, 2001, at 07:49 AM, Doyle, Steven wrote: > Hi All, > > I have developed JBoss client application which works perfectly when I > execute it from the command line i.e. > > java -classpath > "c:\jboss-2.2.1\client\jboss- > client.jar;c:\jboss-2.2.1\client\jbosssx-client > .jar;

Re: [JBoss-user] Security Exception , but from where and how

2001-05-10 Thread Scott M Stark
See: http://www.jboss.org/documentation/migration.html - Original Message - From: "Mukul Kumar" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, May 10, 2001 7:00 AM Subject: [JBoss-user] Security Exception , but from where and how > hi friends, > > I am having this strang

[JBoss-user] OO Design in Java : a tough question

2001-05-10 Thread connecstasy
Hi userlist, hi David Jencks. Well I think I have sufficiently done research now to come up with a complete description of the problem and ask precise questions. Try not thinking about jboss or any ejb server here. Here is what I try to implement, how it will be realised best, is treated in a

[JBoss-user] HELP! JBoss client problem

2001-05-10 Thread Doyle, Steven
Hi All, I have developed JBoss client application which works perfectly when I execute it from the command line i.e. java -classpath "c:\jboss-2.2.1\client\jboss-client.jar;c:\jboss-2.2.1\client\jbosssx-client .jar;c:\JBuilder3 5\lib\jbcl3.1.jar;c:\projects\classes" com.wa.apps.flightmanager.Fli

RE: [JBoss-user] Security Exception , but from where and how

2001-05-10 Thread Scherr Gerolf
NoClassDefFoundError: org/jboss/security/SecurityAssociation means that your client cannot find the class org/jboss/security/SecurityAssociation all you have to do is to tell your application where it can find that class -> add (the matching version of) jbosssx-cl

[JBoss-user] FW: Security Exception , but from where and how

2001-05-10 Thread Mukul Kumar
hi friends, I am having this strange problem . My bean compiles fine and is deployed fine on JBOSS2.2 . My client gives me the following exce[ption. I have tried this with all kind of beans from BMP's to stateles session beans. The point woth noting is that the same beansand clients used to work

RE: [JBoss-user] JBoss Future

2001-05-10 Thread Steve Magoun
It's still a draft. The second PFD came out just a week or two ago; it included some fairly major changes: http://java.sun.com/products/ejb/docs.html JBoss will support EJB 2.0 once the spec is final... Steve -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behal

[JBoss-user] jboss2.2.-Tomcat 4b3 ???

2001-05-10 Thread elouan le coq
dear gurus, I was wondering if anyone was trying to integrate jboss 2.2.1 into tomcat 4b3 ? The reason is that i need to use two others xml parsers than crimson and i have reached to the conclusion that it is impossible till 2.2.1 and B3 got integrated. Moreover the integration jb2.1-t4b1 i

RE: [JBoss-user] JBuilder 4.0 ServiceNotFoundException (cannot startup debug session)

2001-05-10 Thread John P. Coffey
Belou, thanks for your quick response, Much better however I now get the following output: Any idea what a sealing violation is? One piece of information I noticed that the help guide refers to using dynaserver.jar (I could not find this jar in my latest 2.2.1 installation) also I normally run

Re: [JBoss-user] Weird error in jboss2.1.1

2001-05-10 Thread awc
Russell, If your second time is a 5 minutes apart from first time. I guess your value Object retains some thing after it passivated. try this on ejbPassivate() { ProjectInfoJB = null; } anil Russell wrote: > Hi all , I am using RedHat6.1 , jdk1.3 and jboss2.1 . > > I have an entity

RE: [JBoss-user] jboss works, tomcat does not. why ?

2001-05-10 Thread Bordet, Simone
You don't have $JDK/jre/lib/tools.jar in the classpath. See, *please* the archives for further details, this problems has been issued zillion of times. Simon > -Original Message- > From: Graf Laszlo [mailto:[EMAIL PROTECTED]] > Sent: giovedi 10 maggio 2001 15:50 > To: [EMAIL PROTECTED] >

[JBoss-user] Security Exception , but from where and how

2001-05-10 Thread Mukul Kumar
hi friends, I am having this strange problem . My bean compiles fine and is deployed fine on JBOSS2.2 . My client gives me the following exce[ption. I have tried this with all kind of beans from BMP's to stateles session beans. The point woth noting is that the same beansand clients used to work

[JBoss-user] JBoss - Even Closer to a BEA Killer

2001-05-10 Thread Norton Lam
I thought all of you would be interested in this article: http://www.theserverside.com/reviews/thread.jsp?thread_id=6215 Kudos to all the JBoss developers. I, too, have been happy with my use of JBoss. Keep up the good work. Norton ___ JBoss-user m

[JBoss-user] EJBContextImpl not serializable

2001-05-10 Thread Martin Renner
Hi. As far as I know, every instance variable of an EJB has to be serializable or marked as transient (because the EJB by itself is implementing java.io.Serializable). I just realized, that org.jboss.ejb.EnterpriseContext contains an inner class EJBContextImpl which is implementing javax.ejb.E

[JBoss-user] jboss works, tomcat does not. why ?

2001-05-10 Thread Graf Laszlo
Hi everyone I downloaded JBoss 2.1 and Jakarta Tomcat 3.2.1. JBoss starts fine without any error messages. When visit http://localhost:8080/examples/jsp/num/numguess.jsp it returns the following error messages: Error: 500 Location: /examples/jsp/num/numguess.jsp Internal Servlet Error

Re: [JBoss-user] Unable to resolve JNDI name

2001-05-10 Thread danch
Manu Srivastava wrote: > Hi, > > > jBoss.xml > = > > > com.asset.SMTPAdapter > com.asset.SMTPAdapterHome > > > > > Also if use keep the file name of jboss.xml in small > letters the deployment fails. If you rename it to all > caps or jBoss.xml it starts

[JBoss-user] JBoss Vs Jonas and Enhydra

2001-05-10 Thread Kemp Randy-W18971
If you want a truely enlightened answer, you should also post this question to Enhydra and Jonas. For the record, I have played with Enhydra, Jonas, and Jboss. Enhydra Enterprise is now in beta, and is intergrated with Jonas and Tomcat. Jboss comes intergrated with Tomcat or Jetty. You need to

[JBoss-user] JBoss Vs Jonas and Enhydra

2001-05-10 Thread Pedro E. Gómez
Hello Some one can tell me what are the diferences between those products and why JBoss is better? Thanks. __ Message sent with Misiva Visit us at http://www.pragma.com.co/misiva ___ JBoss-user mailing list [EMAIL

Re: [JBoss-user] Weird error in jboss2.1.1

2001-05-10 Thread David Jencks
Hi, I doubt your code as reported is complete. From what you show us, the object returned from getProjectInfoJB is never created. The "no exception" is presumably from your trapping and ignoring the FinderException when you look for your bean. I suspect what is happening is that jboss is reus

[JBoss-user] How to get connection

2001-05-10 Thread Hari Shanker Ravindran
hi, I am pretty new 2 JBoss.Query i have is i have deployed a connection pool in the JBoss Server,now how will i get the connection object from from the Server context 2 the Session Bean. thanking you regar

[JBoss-user] JBoss Future

2001-05-10 Thread Kemp Randy-W18971
Is the Sun EJB 2.0 spec finalized yet, or is it still officially in draft stage? From: "Ivan" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Date: Wed, 9 May 2001 17:34:34 -0700 Subject: [JBoss-user] JBoss Future Reply-To: [EMAIL PROTECTED] Hello, Does anyone know if JBoss will in the future sup

[JBoss-user] getPrimaryKey() on session bean

2001-05-10 Thread Piotr Kania
I tried to call getPrimaryKey() on Session Bean (Stateless or Stateful) and expected to get java.rmi.RemoteException but nothing happens. (JBoss 2.2, jdk1.3 ) EJB 1.1 Specifications says that such a call should raise exception. Is JBoss fully compatible with this specification ? with regards,

  1   2   >