[JBoss-user] deploying from a directory

2001-05-01 Thread Ivan
Hi, Has any one been able to deploy an EAR, JAR, or WAR as an expanded directory. If so do you know of a location on the web with instructions. It seems just placing the directory in the deploy folder does not do anything. Thanks Ivan ___

[JBoss-user] Integrating Tomcat and jBoss security logon

2001-05-01 Thread Bennett, Peter
I have looked in user manuals, FAQs and mailing list archives but cannot find the answer to a deceptively simple question that I hope you can help with ... How do I allow a user to logon to my Tomcat server and then pass their logon username and password transparently down to any enterprise

Re: [JBoss-user] Scary dumb question, classpaths..help..

2001-05-01 Thread JbossKnut
NamingContextFactory could be found in ...jboss\client\jnp-client.jar or ..jboss\lib\ext\jnpserver.jar - Original Message - From: Lisa Stuart [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, May 01, 2001 11:20 AM Subject: [JBoss-user] Scary dumb question, classpaths..help.. I'm

[JBoss-user] entity bean relationships?

2001-05-01 Thread Steve Zhang
Hi, folks: how I can create relationships between two CMP entity beans (voucher_master,voucher_details) I am using java j2sdkee1.2 that might supports EJB 1.1 whether it is possible in EJB1.1 or I have to move towards EJB2.0 if there is an alternative way in EJB1.1 than plaese tell me. Any

Re: [JBoss-user] It never finds beans in another *.jar's

2001-05-01 Thread Guy Rouillier
I'm going to be doing this in the near future, so I took a look at the docs. It said to use a jndi-name like this: jndi-namet3://otherserver/application/beanB/jndi-name If I understand this correctly, the JNDI name is the name we use in the ctx.lookup() call. With the above, a lookup for

Re: [JBoss-user] Problem with MySQL driver

2001-05-01 Thread Todd Chaffee
Here's a message I sent off-list to another person that asked this question. Following are the relevant sections of my jboss.jcml file: !-- JDBC -- !- NOTE: This section should already exist, you just need to add org.git.mm.mysql.Driver -- mbean code=org.jboss.jdbc.JdbcProvider

[JBoss-user] JSP's not finding classes in application

2001-05-01 Thread Leonard Kierstead
I can't get JBoss/Tomcat to find classes that are in my application war file. When I access any of the JSP's in application I get the following error: Class com.cerulean.amstel1.UnitInfoHome not found in import The class is in both my application jar file and the special jar file

Re: [JBoss-user] Scary dumb question, classpaths..help..

2001-05-01 Thread Vinay Menon
It *is* an issue with the class not being found the classpath. The jnp-client.jar should have this class in it. Vinay - Original Message - From:Lisa Stuart Sent:Tuesday, May 01, 2001 10:33 AM To:[EMAIL PROTECTED] Subject:[JBoss-user] Scary dumb question, classpaths..help.. I'm so stuck

Re: [JBoss-user] deploying from a directory

2001-05-01 Thread Vinay Menon
You should be able to simply unjar the jar file that you use for usual deployments into the JBOSS_DEPLOY directory [you can change this if you wanted] Vinay - Original Message - From:Ivan Sent:Tuesday, May 01, 2001 9:53 AM To:[EMAIL PROTECTED] Subject:[JBoss-user] deploying from a

Re: [JBoss-user] principal=null problem

2001-05-01 Thread Jeffrey Wescott
Are you speaking of EmbeddedTomcat? If so, in the contrib/tomcat module, there is a RequestInterceptor called org.jboss.tomcat.security.JbossRealm that will alleviate this problem. It's difficult to explain in words, but if you study the use-case diagrams on the JBoss website, it's easier to

[JBoss-user] Problem building JBoss-modified Petstore

2001-05-01 Thread Shriver, Ryan
Hey all, I'm new JBoss and I'm trying to get the PetStore v1.1.1 to run in JBoss. I'm following the directions at: http://www.jboss.org/documentation/petstore-1.1.1-01.html but not having luck building the petstore application after I apply the JBoss patch. Ant can't seem to find these two

RE: [JBoss-user] Scary dumb question, classpaths..help..

2001-05-01 Thread Reid Beckett
you need to put the jnpserver.jar file in your classpath it is located in %JBOSS_HOME%/lib/ folder. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Lisa Stuart Sent: Tuesday, May 01, 2001 5:21 AM To: [EMAIL PROTECTED] Subject: [JBoss-user] Scary dumb

Re: [JBoss-user] What is optimized?

2001-05-01 Thread toby cabot
I have downloade the jboss version which comes with tomcat, when i execute the example the page says: ...and once with the inVM optimization.. http://jboss.org/documentation/HTML/ch06s08.html Look for the explanation of the container-invoker-conf element.

RE: [JBoss-user] Does anyone know what this error means?

2001-05-01 Thread Jason Dillon
Have you gotten it to work yet? If not what version of JBoss are you using? Did you look at the online manual (specifically chapter 3: http://jboss.org/documentation/HTML/ch03.html)? This gives a fairly straight forward description of what you need to get a JDBC datasource running in JBoss.

Re: [JBoss-user] JAAS Tutorial for Jetty??

2001-05-01 Thread Joel Boehland
Hi Julian, Well, it looks like the main thing I would need is to figure out how to add the equivalent to a tomcat Request Interceptor to Jetty. All of the Tomcat examples seem to use this as a way of binding the Tomcat Realm to a Jboss realm. Below is an excerpt from an earlier message describing

[JBoss-user] Jboss archive

2001-05-01 Thread Micky I. Mimo
Does anyone now where I can find old archive binary versions of Jboss? jboss.org seems to only have the latest and greatest. I am looking for jboss 2.0. Michael Mimo Systems Specialist Voice: 781-457-1317 [EMAIL PROTECTED] ___ JBoss-user mailing

Re: [JBoss-user] from mod_jserv to mod_jk problems

2001-05-01 Thread Vinay Menon
This is some documentation I prepared as I configured my Apache-Tomcat instances. You might find it helpful. Also, remember that you can configure servlet aliases with your web.xml file.

Re: [JBoss-user] Docs for JBoss Test suite

2001-05-01 Thread Scott M Stark
There isn't any documentation for the tests currently. The tests manage their own dependencies by deploying the j2ee units they test against using the JMX connector interface. Only the security-tests target has a non-trivial setup step that must be performed once against a JBoss server dist

Re: [JBoss-user] It never finds beans in another *.jar's

2001-05-01 Thread Vinay Menon
Have had quitea few chaps usually put the jndi names in something as simple as a resource bundle/properties file. Then it wouldn't need a recompile of code an option you might want to try? However, I must add that it is recommended by folks at jboss that ejbs that are referenced by one another

[JBoss-user] Transaction Problem.

2001-05-01 Thread Roman Brouk
i am having problems resolving programmatic transactions. What i am running into is that if you have to create two entity beans in your transaction block between begin and commit, database connection which i get from Datasouce for the second bean is not able to understand that i already have one

Re: [JBoss-user] SUPPORT OF JBOSS --IMPORTANT-- PLEASE READ

2001-05-01 Thread Alexander Kogan
Mark, You can count on me. I guess Chris sad it right: Trawick, James wrote: I can see how that kind of experience can be useful to the JBoss group. I'll be willing to help out part-time as long as it doesn't interfere with my current full-time work. About myself: I've been working with

Re: [JBoss-user] deploying from a directory

2001-05-01 Thread Ivan
Unjaring the jar file into the deploy directory does not seem to generate an autodeploy. I think the docs metioned that the autodeployer looks for either ear, jar, war OR an xml deployment descriptor( i think i read that) However possibly because the deployment descriptor is within a

Re: [JBoss-user] should all ejbs be specified in one ejb-jar.xml file

2001-05-01 Thread danch
purushottam naktode wrote: Hi, I am trying to deploy multiple ejbs, each packaged in a seperate jar and having their own ejb-jar.xml and jboss.xml file ( Q 1. Should it also have jaws.xml ? Q2. Should jaws.xml be derived from \conf\standardjaws.xml Q3. Should all ejbs be specified in

Re: [JBoss-user] Problem building JBoss-modified Petstore

2001-05-01 Thread danch
These are in jbosssx-client.jar Shriver, Ryan wrote: Hey all, I'm new JBoss and I'm trying to get the PetStore v1.1.1 to run in JBoss. I'm following the directions at: http://www.jboss.org/documentation/petstore-1.1.1-01.html but not having luck building the petstore application after

Re: [JBoss-user] should all ejbs be specified in one ejb-jar.xml fil

2001-05-01 Thread Vinay Menon
Purushottam, 1. You need to have a jaws.xml file if you have entity beans. That's where you'd set up the datasource to use and the type mappings if you are not happy with the standardjaws.xml file, the bean fields and the mapping to the database columnsand so on and so forth. 2.To the best of my

Re: [JBoss-user] JSP's not finding classes in application

2001-05-01 Thread danch
I believe the problem is that when Jasper compiles JSP, it includes neither the ejb jar files nor any other application jar files in the compiler classpath. Try unjarring them into the war's WEB-INF/classes directory. HTH -danch Leonard Kierstead wrote: I can't get JBoss/Tomcat to find

Re: [JBoss-user] It never finds beans in another *.jar's

2001-05-01 Thread danch
The example you quote is for accessing a WebLogic managed bean from a JBoss managed one. Bean to Bean within a JBoss instance is simpler (If bean B is deployed in another application, but on the same jboss server, the jndi-name you provide must be the name under which bean B is deployed.). That

RE: [JBoss-user] ZOAP doc dead link

2001-05-01 Thread WMckean
I was under the impression that jboss ZOAP is on hold. Look at Apache SOAP. It works with Tomcat and jBoss EJBs. I've tried it. Works great. Wes -Original Message- From: fractals [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 01, 2001 3:38 PM To: [EMAIL PROTECTED] Subject:

[JBoss-user] jbosstest\mdb

2001-05-01 Thread WMckean
The MDB test in jbosstest is hanging. Not sure what is causing it, but the client hangs when it tries to return from Main. This is with the CVS from last night. Wes ___ JBoss-user mailing list [EMAIL PROTECTED]

[JBoss-user] problem with implementing test mdb

2001-05-01 Thread kidong
hello, i downloaded the latest jboss test jar file from cvs, and i tried implementing a client (in mdbtest.bat) for message driven bean, but the following error is caught like this: ... Deploying javax.naming.ServiceUnavailableException: connect (code=10055). Root exception is

Re: [JBoss-user] It never finds beans in another *.jar's

2001-05-01 Thread Scott M Stark
That is not the correct understanding of the jndi-name element from the jboss.xml descriptor. The docs show an example of an ejb-jar.xml of: ejb-jar enterprise-beans session ejb-nameBean A/ejb-name homeAHome/home remoteA/remote ejb-classABean/ejb-class

Re: [JBoss-user] javax/rmi/PortableRemoteObject

2001-05-01 Thread Toby Allsopp
On Tue, May 01, 2001 at 01:40:29PM -0700, Ivan wrote: Hi all, My servlet is trying to access a deployed ejb, but the servlet is getting the error java.lang.NoClassDefFoundError: javax/rmi/PortableRemoteObject I found that class in the file j2ee.jar and tried adding it to the class

Re: [JBoss-user] Integrating Tomcat and jBoss security logon

2001-05-01 Thread Scott M Stark
Use the bundled JBoss/tomcat binary release to ensure you get a correctly configured tomcat setup. http://prdownloads.sourceforge.net/jboss/JBoss-2.2.1_Tomcat-3.2.1.zip - Original Message - From: Bennett, Peter [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, May 01, 2001 1:53 AM

Re: [JBoss-user] It never finds beans in another *.jar's

2001-05-01 Thread Vinay Menon
My oversight! Yes. You might as well use an environmental variable. But most organizations drive applications from a config cache that store application variables. Just a practice and its definitely easier to manage... rather than editing config files across multiple machines! So yes, you could

Re: [JBoss-user] Integrating Apache+Tomcat+jBoss, can't see jBoss web apps

2001-05-01 Thread Todd Chaffee
When jboss deploys a tomcat app it has no way deploying it to a specific virtual hosts. You can get more details by searching the message archives with 'apache tomcat virtual host'. You should find a very detailed message with my findings about how to work around this limitation. Good luck. -

[JBoss-user] COM.cloudscape.coreRmiJdbcDriver

2001-05-01 Thread Shriver, Ryan
Thanks for the answer about where to find the org.jboss.security classes. I found them in jboss-jaas.jar and was able to build a patched Petstore successfully. Now I'm running to problems deploying the patched petstore.ear in JBoss 2.2.1 w/ Tomcat 3.2.1. I get this exception when starting JBoss:

Re: [JBoss-user] ZOAP doc dead link

2001-05-01 Thread fractals
I was under the impression that jboss ZOAP is on hold. Look at Apache SOAP. It works with Tomcat and jBoss EJBs. I've tried it. Works great. I was there already but I found nothing about interfacing with EJB's. Only RPC and SMTP stuff which I know nothing about. Or do you know how to use

Re: [JBoss-user] deploying from a directory

2001-05-01 Thread Vinay Menon
Do you want to give one last shot cleaning up the deploy directory - just remove the jar file and the tmp directoy files corresponding to the jar? Also, am assuming that the classes and the META-INF is not is the classpath otherwise??? I found that since Jboss uses the delegation model for class

Re: [JBoss-user] NoClassDefFoundError: javax/servlet/http/HttpServle

2001-05-01 Thread Vinay Menon
It is not loading servlet.jar cos that is only there in the tomcat lib. Just shove a copy of that under JBOSS_HOME/lib/ext and it should find it on restart. Vinay - Original Message - From:Norton Lam Sent:Tuesday, May 01, 2001 10:58 PM To:'[EMAIL PROTECTED]' Subject:[JBoss-user]

[JBoss-user] org.xml.sax.SAXParseException: Document root element is missing

2001-05-01 Thread Jason Durst
I am new to JBOSS and EJB's in general. I have created several beans and "jarr'ed" them along with the corresponding home interfaces, remote interfaces and the deployment descriptor. When I drop my jar file in the deploy folder, this is the error I get. I would appreciate it if anyone could

RE: [JBoss-user] COM.cloudscape.coreRmiJdbcDriver

2001-05-01 Thread Richard Feit
Yes, that was the problem; at least, I ran into this yesterday and adding the period fixed it. Rich -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Shriver, Ryan Sent: Tuesday, May 01, 2001 3:40 PM To: '[EMAIL PROTECTED]' Subject: [JBoss-user]

[JBoss-user] No valid deployment descriptor

2001-05-01 Thread Chris Wilson
Title: No valid deployment descriptor here's a weird one... i have several ejb's that deploy and work fine when i am connected to my local area network. however, when i'm dialed up to my companies isp (which has some firewall restrictions on port usage), jboss attempts to deploy my ejb jar

RE: [JBoss-user] org.xml.sax.SAXParseException: Document root element is missing

2001-05-01 Thread Filip Hanik
looks like you have crimson.jar in your classpath and this may conflict with some other JAXP implementation (Xerces, jaxp.jar, parser.jar) Filip ~Namaste - I bow to the divine in you~Filip HanikSoftware Architect[EMAIL PROTECTED]www.filip.net -Original Message-From: [EMAIL

Re: [JBoss-user] javax/rmi/PortableRemoteObject

2001-05-01 Thread Ivan
Toby, It seems it takes me 2 tries on everyting. After reinstalling JDK 1.3 everything worked. Thanks Ivan - Original Message - From: Toby Allsopp [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, May 01, 2001 1:54 PM Subject: Re: [JBoss-user] javax/rmi/PortableRemoteObject

Re: [JBoss-user] org.xml.sax.SAXParseException: Document root el

2001-05-01 Thread Vinay Menon
crimson.jar*is* required and is added in classpath by the run script. Might be worthwhile looking at other xml parsers you may have in classpath. So if your run.bat has something like set CLASSPATH=%CLASSPATH%;new items to put in cp remove the %CLASSPATH% to start jboss with a clean classpath.

Re: [JBoss-user] deploying from a directory

2001-05-01 Thread Ivan
Thank you very much for your help Vinay, It seems to work now as long as the folders are there before starting up JBoss. I appreciate your support, Ivan - Original Message - From: Vinay Menon To: JBOSS Sent: Tuesday, May 01, 2001 3:03 PM Subject: Re: [JBoss-user]

Re: [JBoss-user] No valid deployment descriptor

2001-05-01 Thread Vinay Menon
A wild thought! Can you ping localhost when dialling up? You should be able to get to the loopback 127.0.0.1 IP. Hmm, apart from that, what OS is this? Vinay - Original Message - From:Chris Wilson Sent:Wednesday, May 02, 2001 12:00 AM To:[EMAIL PROTECTED] Subject:[JBoss-user] No valid

Re: [JBoss-user] deploying from a directory

2001-05-01 Thread Vinay Menon
It should work even if JBoss is running. Just that it might have had the bean deployed via the JAR and found no changes in the classes [since they were from the same jar file!] and the Auto Deployer thought - well, its the same stuff so why bother redeploy! Good that it is working ! Vinay

Re: [JBoss-user] javax/rmi/PortableRemoteObject

2001-05-01 Thread Ivan
When running the servlet, after reinstalling JDK 1.3 thanks to a tip on this group the error went away - Original Message - From: Alexander Kogan [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, May 01, 2001 4:00 PM Subject: Re: [JBoss-user] javax/rmi/PortableRemoteObject When

RE: [JBoss-user] Newbie question

2001-05-01 Thread Steve Zhang
May be u can use ejb-ref tag, please check the following to see if it is helpful... http://www.jboss.org/documentation/HTML/ch06s05.html Best Wishes Steve Zhang Software Developer http://www.ensemble-systems.com -Original Message- From: Kadir Wijaya [mailto:[EMAIL PROTECTED]] Sent:

[JBoss-user] SOAP Client to connect to ZOAP

2001-05-01 Thread Mir S Islam
Could someone please tell me how much interoperable zoap is with other soap implo ementations out there? I wrote a zoap enabled sample ejb and deployed it. But my client written in perl is spitting out this error: Unrecognized/unsupported value of encodingStyle attribute n1:Envelope

[JBoss-user] Where to place java bean class of the same package?

2001-05-01 Thread DOREEN
hi all, I am migrating a web-based application from Inprise Application Server to JBoss with Tomcat. In my application, there are several CMP Entity Beans, and there is also a Stateless Session Bean which calls these CMP Entity Beans. I use other Java Bean object to stored users' input for

[JBoss-user] Where to place java bean class

2001-05-01 Thread doreen_cheng
hi all, I am migrating a web-based application from Inprise Application Server to JBoss with Tomcat. In my application, there are several CMP Entity Beans, and there is also a Stateless Session Bean which calls these CMP Entity Beans. I use other Java Bean object to stored users' input for

[JBoss-user] Cannot start jBoss2.2.1 container

2001-05-01 Thread Russell
Hi all , I am using RedHat6.1 , jdk1.3 and jBoss2.2.1.Recently i just download jBoss2.2.1 to my PC . When i tried to run the using java -jar run.jar , it gave me the error below : [Info] Java version: 1.2.2,Sun Microsystems Inc. [Info] Java VM: Classic VM 1.2.2,Sun

RE: [JBoss-user] Cannot start jBoss2.2.1 container

2001-05-01 Thread Jonathan Ackerman
You say that you are using jdk1.3, yet the log is showing that you are using jdk.1.2.2 I had some problems running JBoss under JDK 1.2, they went away when I switched to JDK1.3 Also I noticed that you had some # characters in the name of some of your classes in the shell script (i.e.