Re: [JBoss-user] customer finder via JAWS not working?

2001-03-23 Thread Franco Biaggi
Your parameter %{1}% should be %{0}% Ciao. On Fri, 23 Mar 2001 15:59:27 -0500 (EST), Donald Ball wrote: >On Fri, 23 Mar 2001, Franco Biaggi wrote: > >> I think >sadly, that didn't change anything. is there a way to coax more debugging >information from the JAWS subsystem though? > >- donald >

Re: [JBoss-user] How install JBoss properly ?

2001-03-23 Thread danch
Dushan Karawita wrote: > Hi , >I'm very new to JBoss & wondering how to > install the jboss properly.The information available > in the manual is'nt enough.when we unzipped it, it > will not create proper directory structure. What did it do? It should have been just fine. What version are

RE: [JBoss-user] How install JBoss properly ?

2001-03-23 Thread Micheal J
The JBoss distribution is self contained. You don't need anything else to make it work AFAICT. You haven't specified the platform your are using but if it is Windows, try extracting the files from the .zip with WinZip and you'll be able to see the directory structure on disk. Try the Quick Start

[JBoss-user] How install JBoss properly ?

2001-03-23 Thread Dushan Karawita
Hi , I'm very new to JBoss & wondering how to install the jboss properly.The information available in the manual is'nt enough.when we unzipped it, it will not create proper directory structure.Is that mean, do we have to create the directory structure by our self ? if it is, how should it b

Re: [JBoss-user] java.lang.reflect.UndeclaredThrowableException

2001-03-23 Thread Brian Elliott
[EMAIL PROTECTED] wrote: > > Hmm.. I'm a bit of a newbie and I haven't read all the thread but.. > > ..but i had this error once with JBoss. I tracked it down to forgetting to > serialize a data holder I was trying to pass using RMI. Tim, I just added "implements Serializable" and the import f

[JBoss-user] embedded tomcat interceptor error

2001-03-23 Thread achandra
if i add any of the interceptor to server.xml, i cannot deploy my beans. [Container factory] org.jboss.ejb.DeploymentException: no standardjboss.xml found [Container factory] at org.jboss.metadata.XmlFileLoader.load(XmlFileLoader.java:102) [Container factory] at org.jboss.ejb.ContainerFac

[JBoss-user] embedded tomcat interceptor error

2001-03-23 Thread anaconda
-Original Message- From: achandra [mailto:[EMAIL PROTECTED]] Sent: Saturday, March 24, 2001 10:38 AM To: jBoss Users Subject: embedded tomcat interceptor error if i add any of the interceptor to server.xml, i cannot deploy my beans. [Container factory] org.jboss.ejb.DeploymentExceptio

Re: [JBoss-user] log4j

2001-03-23 Thread Victor Lan
Not sure what you mean by "integrated log4j". I use log4j in my beans and they seem to work in jBoss. Victor - Original Message - From: Doug Ferguson <[EMAIL PROTECTED]> Date: Friday, March 23, 2001 7:22 pm Subject: [JBoss-user] log4j > I've seen somethings in the list about an integ

Re: [JBoss-user] MacOS X Final

2001-03-23 Thread David Parker
Good to see another OS X person on this list; I just joined. I got mine going over the weekend and then had to go to D.C. to take a WebSphere class. I couldn't wait to get back home to OS X and jboss to start playing with it. A week of WebSphere is a long week indeed! Are you developing your j

RE: [JBoss-user] Problem with ORACLE CMP and BLOBS

2001-03-23 Thread Filip Hanik
technet.oracle.com has all the info you need to write your paper. > > For those who do not know much about LOB data (BLOB, CLOB etc) > versus LONG > > data (LONGVARBINARY, LONGVARCHAR etc) under Oracle, I am > thinking of putting > > a short whitepaper about this on my webserver. > > > > Give m

Re: [JBoss-user] Problem with ORACLE CMP and BLOBS

2001-03-23 Thread Donald Ball
On Sat, 24 Mar 2001, Peter Routtier-Wone wrote: > For those who do not know much about LOB data (BLOB, CLOB etc) versus LONG > data (LONGVARBINARY, LONGVARCHAR etc) under Oracle, I am thinking of putting > a short whitepaper about this on my webserver. > > Give me some feedback on the level of in

[JBoss-user] Jboss_Jetty with Oracle on Windows 2000 - Datasource?

2001-03-23 Thread rohan . oberoi
If anyone has successfully got the latest jboss_jetty.zip distribution (jboss-PRE-2.1 and Jetty-3.0.2) to run using an Oracle data source on Windows/JDK 1.3 or similar, I would appreciate seeing the config files you changed. I've been through the mailing list archives and edited the conf/jetty/jb

Re: [JBoss-user] Problem with ORACLE CMP and BLOBS

2001-03-23 Thread Peter Routtier-Wone
> one of my CMP fields is a byte[] that can get quite large > JAWS creates a table with this field mapped onto a BLOB type. > > When I try to create the entity if the byte[] contains several k's > of data I get the following exception. > > > [docSession] javax.ejb.CreateException: > Could not crea

Re: [JBoss-user] JBoss user archive search doesn't work

2001-03-23 Thread Peter Routtier-Wone
L:isten to Filip. He is one of those annoying people who are almost always right. In this case I can assure you from personal experience that if you are running Win9x you MUST increase the amount of space allocated to DOS environment strings. Filip provided you with the switches but he gave no ind

[JBoss-user] HelloEJB exception

2001-03-23 Thread jitendra patibandla
I recently downloaded jboss-tomcat-2.1-beta binaries When I try the example HelloEJB with URL http://localhost:8080/jboss/servlet/HelloEJB?speed the jboss console is scrolling with lot of exceptions. Some of the exceptions are as follows: [NonOptimized] at javax.naming.InitialContext.lookup(U

[JBoss-user] log4j

2001-03-23 Thread Doug Ferguson
I've seen somethings in the list about an integratred log4j Does anybody know the details. Do beans have access to the logging server or is this just for jBoss internals? If the log4j won't work for beans, does anybody have a working solution for EJB logging? thanks, d.

[JBoss-user] bean lookup failed

2001-03-23 Thread Victor Lan
I'm testing my jBoss + EmbeddedTomcat setup with the tomcat-test.ear application (available at the jboss site). I get the following exception while the servlet is looking up the EJB: javax.naming.CommunicationException. Root exception is java.lang.ClassNotFoundException: org.jboss.test.tomca

Re: [JBoss-user] access modifiers lost in EJB programming ?

2001-03-23 Thread Scott M Stark
There is no way to define anything but public method in any interface. This is not limited to remote interfaces or EJB. Interfaces are an OO pattern specifically about the publicly available views/facets of an object. If you want to hide some method of an EJB implementation then don't put the meth

[JBoss-user] Multiple Bean deployment Problem in JBOSS 2.1

2001-03-23 Thread Kirill Averianov
I am trying to deploy > stateless EJB's . When a put a several jar files (one for each EJB) > into deploy directory and than start JBOSS I get an output that all > my jar files are DEPLOYED . > > However when I try to do lookup for my EJB's from a different VM > using >

Re: [JBoss-user] access modifiers lost in EJB programming ?

2001-03-23 Thread danch
If it's not public, why is it in the interface? fractals wrote: > > AFAIK, there's no way to make a method anything else than public in a remote > interface. Sad, because I *would* like to hide some of the methods I define > for some of my beans. > > Really, is there no way to get this cornerst

[JBoss-user] access modifiers lost in EJB programming ?

2001-03-23 Thread fractals
AFAIK, there's no way to make a method anything else than public in a remote interface. Sad, because I *would* like to hide some of the methods I define for some of my beans. Really, is there no way to get this cornerstone of OO programming back into the EJB realm ? Thanks, candide __

[JBoss-user] Database access error

2001-03-23 Thread Kirill Averianov
Please help me with XADataSource error described below: This is a fragment from jboss.jcml ___ jdbc:oracle:thin:@USNJPRIDEV004:1521:DPRI 120 global_kir 0 global_kir false false false

Re: [JBoss-user] how to access servlet within embedded tomcat?? (solved)

2001-03-23 Thread Patrick Buchinger
Patrick Buchinger wrote: > Alvin Yap wrote: > >> In your application.xml you should have a web module context defined. >> >> >> >> sample.war >> /sample >> >> >> . >> >> To get to the servlet http://hostname:port/sample/servlet/ServletName >> >> Alvin >> > hi ev

Re: [JBoss-user] how to access servlet within embedded tomcat?? (solved)

2001-03-23 Thread Patrick Buchinger
Alvin Yap wrote: > In your application.xml you should have a web module context defined. > > > > sample.war > /sample > > > . > > To get to the servlet http://hostname:port/sample/servlet/ServletName > > Alvin > hi everyone!! ok, first of all thank you all f

[JBoss-user] xa Error

2001-03-23 Thread Kirill Averianov
when I am accessing the XADataSource I get this exception : java.lang.IllegalArgumentException: null xaRes Unable to register with TransactionManager: java.lang.IllegalArgumentException: null xaRe Please help.

[JBoss-user] Container Exception

2001-03-23 Thread MacConnell, Rick (AT-Atlanta)
I'm getting an exception when using JBoss (version: JBoss PRE-2.1) with the following configuration: [Info] Java version: 1.3.0,Sun Microsystems Inc. [Info] Java VM: Java HotSpot(TM) Server VM 1.3.0,Sun Microsystems Inc. [Info] System: SunOS 5.8,sparc Here's the stack trace from the exception:

Re: [JBoss-user] customer finder via JAWS not working?

2001-03-23 Thread Franco Biaggi
I think i wrote a little customer finder using the jawx.xml conf file, but it's >not working, i get this exception: > >[balld@localhost news]$ java com.webslingerZ.news.client.NewsClient >Exception in thread "main" javax.ejb.FinderException: Find failed >at >sun.rmi.transport.StreamRemoteC

Re: [JBoss-user] customer finder via JAWS not working?

2001-03-23 Thread Donald Ball
On Fri, 23 Mar 2001, Franco Biaggi wrote: > I think http://lists.sourceforge.net/lists/listinfo/jboss-user

Re: [JBoss-user] how to access servlet within embedded tomcat??

2001-03-23 Thread Alvin Yap
In your application.xml you should have a web module context defined. ... sample.war /sample To get to the servlet http://hostname:port/sample/servlet/ServletName Alvin Joe wrote: > what context are you deploying the web app under ? > and are you type the address

[JBoss-user] customer finder via JAWS not working?

2001-03-23 Thread Donald Ball
i wrote a little customer finder using the jawx.xml conf file, but it's not working, i get this exception: [balld@localhost news]$ java com.webslingerZ.news.client.NewsClient Exception in thread "main" javax.ejb.FinderException: Find failed at sun.rmi.transport.StreamRemoteCall.exceptionR

Re: [JBoss-user] how to access servlet within embedded tomcat??

2001-03-23 Thread Joe
what context are you deploying the web app under ? and are you type the address correctly ? for some reason the address is case sensative it is for me anyways - Original Message - From: "Patrick Buchinger" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, March 23, 2001 4:01 PM Sub

[JBoss-user] CLASSPATH with JBOSS

2001-03-23 Thread Kirill Averianov
Do I have to put my EJB.jar files into lib/ext folder if I intent to use them from another EJB's ? Thanks a lot , Kirill. ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-u

[JBoss-user] nested exception when running EJB's

2001-03-23 Thread Kirill Averianov
I am trying to run the following programm: Client from another VM calls Controller stateless EJB ( transaction type : Bean , Required ) Controller looks up EJB Bean1 stateless ( transaction type : Bean , Supports ) Controller looks up EJB Bean2 stateless ( transa

RE: [JBoss-user] Null Pointer on Linux but Fine On NT

2001-03-23 Thread Fink, Paul
Yes it does. unset the CLASSPATH and all will be fine. OR cd to the jboss/bin run: java -server -cp run.jar org.jboss.Main > -Original Message- > From: Dan Christopherson [SMTP:[EMAIL PROTECTED]] > Sent: Friday, March 23, 2001 1:18 PM > To: [EMAIL PROTECTED] > Subject: Re: [JBo

Re: [JBoss-user] Re: [JBoss-dev] Cleaning up xml parsers

2001-03-23 Thread Scott M Stark
Ok, I tried a clean co/build and saw the same problem. I have commited the missing lib/crimson.jar and a clean co is building now. - Original Message - From: "Ralf Purnhagen" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, March 23, 2001 4:25 AM Subject: [JBoss-user] Re: [JBoss

RE: [JBoss-user] EJB concurrency

2001-03-23 Thread Trawick, James
we are having this discussion because i presented a JMS/messagebean scenario that could potentially eat up resources by increasing the number of concurrent threads (and total memory usage) exponentially if it isn't throttled in some fashion. it wouldn't be feasable to throttle the queue senders s

Re: [JBoss-user] Null Pointer on Linux but Fine On NT

2001-03-23 Thread Dan Christopherson
Run jboss with run.sh, in the bin directory (which runs with the classpath). Although this is an interesting error: the linux 1.3 JDK doesn't bother to grab its own classes when started with -jar? I've not noticed this, but I've been running things from ant for quite some time. On Fri, 23 Mar 20

[JBoss-user] CMP entity bean relationships?

2001-03-23 Thread Donald Ball
Hi guys. I'm quite new to jboss and the world of EJB, but i think i've got a fairly good handle on things - got jboss-2.1 installed and running, developed a few little entity beans, convinced JAWS to use postgresql as a backend, etc. hooray, jboss is good stuff. i'm having trouble making it do dep

[JBoss-user] EAR apllication xml descriptor

2001-03-23 Thread Kirill Averianov
Please send me an example of ear META-INF/application.xml where specified several EJB's jar files. Thanks , Kirill. ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinf

RE: [JBoss-user] Notify the container developers :-) // Version JBoss PRE-2.1

2001-03-23 Thread Charles Miller
Below is what happens when one "extends Object" instead of "implementing javax.ejb.SessionBean" Everything works perfect... :) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Charles Miller Sent: Friday, March 23, 2001 1:17 PM To: 'jboss-user' Subject:

[JBoss-user] Null Pointer on Linux but Fine On NT

2001-03-23 Thread Ashish Gupta
hi! I am not able to start JBOSS on linux. The JDK is installed on the system and the CLASSPATH include all the jar under JDK1.3 If i run JBOSS with this command java -jar run.jar It throws Null pointer exception If i run JBOSS with this command java -classpath $CLASSPATH -jar run.jar I get

[JBoss-user] Notify the container developers :-) // Version JBoss PRE-2.1

2001-03-23 Thread Charles Miller
Hello, The following trace exception was produced when attempting to run Interest sample. I keyed in on the specific statement "Notify the container developers :-)"... below is the output. There was a message from [Verifier] when I deployed the interest.jar Bean: Interest Section: 6.5.1 Warni

RE: [JBoss-user] Bean deployment Problem in JBOSS 2.1

2001-03-23 Thread Kirill Averianov
Same EJB's work fine -Original Message- From: Alexander Kogan [mailto:[EMAIL PROTECTED]] Sent: Friday, March 23, 2001 12:24 PM To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] Bean deployment Problem in JBOSS 2.1 The same EJB's work fine in JBOSS-2.0 what is going on I cannot understand.

Re: [JBoss-user] Bean deployment Problem in JBOSS 2.1

2001-03-23 Thread Alexander Kogan
Kirill Averianov wrote: > > I checked and they all have a different jndi names. Well, but where did the message > > > [Container factory] Deploying bean1 - this message is repeated in > > many places !!! come from? > > Is it allowed to have more then one jar file in deploy directory or

Re: [JBoss-user] [JBoss-user]

2001-03-23 Thread Dan Christopherson
SQL server will work. Instructions on configuration have been posted to the list recently. On Thu, 22 Mar 2001, wei shung chung wrote: > Hi, > > Can we use entity beans with SQL server or mySQL ? > > Thanks. > > Wei(new to EJB/JBoss) > > __ > D

Re: [JBoss-user] A little BMP philosophy/understanding

2001-03-23 Thread Dan Christopherson
Sorry. I meant the 'obtain a connection, create prepared statements and close statements and the connection at the very end of the method' part. Note that it's usually a good idea to do the closes in a finally clause so that you're sure they happen even if an exeption happens. On Fri, 23 Mar 200

Re: [JBoss-user] Some question regarding Jboss

2001-03-23 Thread Dan Christopherson
On Fri, 23 Mar 2001, Ricky wrote: > > Hi all , I am using Linux6.1 , jdk1.3 , postgresql7.0.2 and jboss2.1. > > I have a question regarding finder method code below : > >ArrayList result = new ArrayList(); >Collection collection = usercompanyHome.findByLikeTrade(trade); >Iter

[JBoss-user] (no subject)

2001-03-23 Thread Mike Jau
unsubsribe ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-user

[JBoss-user] MacOS X Final

2001-03-23 Thread Hunter Hillegas
Just FYI, Jboss2.1 works great on MacOS X... Just loaded it up on the retail release a minute ago... Hunter ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-user

[JBoss-user] JBoss 2.1 and Catalina ( Tomcat 4.0)- JDBCRealm supported??

2001-03-23 Thread Alvin Yap
I know that JBoss 2.1 now works with Tomcat 4.0(catalina). Does anybody know if JDBCRealm is supported yet??. If not, Is there any alternative to using JDBCRealm?? Alvin ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists

[JBoss-user] CMP entity beans over multiple tables

2001-03-23 Thread Andrea Bacchetta
I have two quite huge tables linked by a one to one relationship. I meant to create a CMP entity bean to map the content of a join, but for what I know jaws doesn't allow such a mapping, and cocoBase is not exactly free(..). Since this seems to me quite a common issue, I was wondering how the iss

Re: [JBoss-user] PortableRemoteObject.narrow() was: Some question regarding Jboss

2001-03-23 Thread Daniel G. Koulomzin
This is something that has always bothered me... IAS claims that the spec requires you to use PortableRemoteObject.narrow() on objects in the Collection returned in a find().   Monson-Haefel backs this up on p.135 of Enterprise JavaBeans (2nd Edition).  The spec seems to imply that its a good ide

Re: [JBoss-user] JBoss 2.1 and Tomcat 3.2.1 in different JVMs

2001-03-23 Thread Alexander Kogan
Tim, "Penhey, Tim" wrote: > > If I follow the instructions on > http://www.jboss.org/manual/third_party.html#tomcat I get the following > error: That instruction is almost correct for Tomcat standalone (is it what you wanted?). But just a few corrections: 1. I'm not sure that adding jndi.prop

Re: [JBoss-user] how to access servlet within embedded tomcat??

2001-03-23 Thread Patrick Buchinger
Tahir Awan wrote: > Are u sure you .ear is deployed properly? I could never got it to work until > I remove all the encodings from web.xml, application.xml, ejb-jar.xml etc. > > Tahir yes, the ear deploys without any error message. plus, i'm able to access the ejb from the jar file in the ear

RE: [JBoss-user] New to jBoss

2001-03-23 Thread Swami Iyer
There is something wrong with the class file. Why don't you try doing this javap -classpath interest.jar ex.web.in.Interest and you can see the bad class error. You got to fix this before you deploy. Swami -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Frida

RE: [JBoss-user] Re: ejbjar Ant task for JBoss

2001-03-23 Thread Steve Magoun
This one threw me, too. I eventually discovered that I could replace castor.jar with metadata.jar (from dist/external) and jpl-util-0_5b.jar (from dist/lib/ext) and it would work fine. HTH, Steve (PS sorry about the non-HTML emailExchange Server is buggy :) > -Original Message- > F

RE: [JBoss-user] how to access servlet within embedded tomcat??

2001-03-23 Thread Tahir Awan
Are u sure you .ear is deployed properly? I could never got it to work until I remove all the encodings from web.xml, application.xml, ejb-jar.xml etc. Tahir -Original Message- From: Patrtick Buchinger [mailto:[EMAIL PROTECTED]] Sent: Friday, March 23, 2001 10:11 AM To: Jboss (E-mail) Su

[JBoss-user] BMP entity beans and MS SQL Server 7 ??

2001-03-23 Thread jef.cumps
Hi, I recently started working with J2EE and ejb's. I cannot get my entity beans working with a MS SQL Server 7 database, not even with the doc's on the jboss-site. Does anyone of you has an example for me ?? I would really appreciate any code of a bean, the xml-files, the changes in the properti

[JBoss-user] Problems with mySQL (or Null Pointer Exception

2001-03-23 Thread Sylvain Tourrière
Hi, I am attempting to use a mySQL datasource (version 3.23.35) with CMP and I keep jboss (version 2.1) to deploy the EJB's. JBoss run on my desktop (Windows 2000) and the datasource is stored on a remote server running with LINUX My problem : I keep on getting a null pointer exception when

[JBoss-user] how to access servlet within embedded tomcat??

2001-03-23 Thread Patrtick Buchinger
hi everyone! i'm trying to access a servlet which is part of a web-application (well, the web-application itself is part of an enterprise application), but when i call the url http://192.168.0.2:8080/servlet/ExportStream i allways get the following error: Not Found (404) *Original requ

RE: [JBoss-user] Bean deployment Problem in JBOSS 2.1

2001-03-23 Thread Kirill Averianov
I checked and they all have a different jndi names. Is it allowed to have more then one jar file in deploy directory or I have to package all my jars into ear file ? Please tell me how to use jndiView ? Thanks , Kirill. -Original Message- From: Alexande

Re: [JBoss-user] JBoss Embedded Tomcat error

2001-03-23 Thread Alvin Yap
Check the server.xml file in /usr/local/tomcat/conf. Based on the error you added an Interceptor that it couldn't find a class for it. Normally its mispelled or the class is not one of the jar file in the /usr/local/tomcat/lib Alvin Nallakkandi Rajeevan wrote: > Hello, > > I am having problem r

[JBoss-user] Re: [JBoss-dev] Cleaning up xml parsers

2001-03-23 Thread Ralf Purnhagen
Hi Scott, i just did a clean CVS checkout from Sourceforge and tried to build the JBoss distribution. I got the following error: Buildfile: build.xml BUILD FAILED javax.xml.parsers.FactoryConfigurationError: java.lang.ClassNotFoundException: org.apache.crimson.jaxp.SAXParserFactoryImpl

RE: [JBoss-user] A little BMP philosophy/understanding

2001-03-23 Thread Jeff Markham
Thank you for all who've replied for giving me a better understanding of jBoss's use of Connections and PreparedStatements in BMPs. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Jeff Markham Sent: Thursday, March 22, 2001 6:53 AM To: [EMAIL PROTECTED] S

[JBoss-user] deployment problems

2001-03-23 Thread Christian Seifert
Hi All, I am using the JBossDoclet to generate my interfaces and xml files and have some problems deploying the result. I get the error msg: [Container factory] org.jboss.ejb.DeploymentException: Error in jboss.xml for Be an bank/Customer: ejb-ref bank/Account found in jboss.xml but not in ejb-j

RE: [JBoss-user] [JBoss-user]

2001-03-23 Thread Reynir Hübner
yes. regards, -Original Message- From: wei shung chung [mailto:[EMAIL PROTECTED]] Sent: 23. mars 2001 07:57 To: [EMAIL PROTECTED] Subject: [JBoss-user] [JBoss-user] Hi, Can we use entity beans with SQL server or mySQL ? Thanks. Wei(new to EJB/JBoss) _

[JBoss-user] Re: SV: Re: ejbjar Ant task for JBoss

2001-03-23 Thread Ralf Purnhagen
Sorry Lennart, you can safely delete the line with castor.jar from the task. I only had to include it, because i use Castor for BMP. Ralf Lennart Petersson wrote: > > castor.jar - how can i get that jar file? Can't find it in jboss and neither build >it like verifier.jar. > /Lennart > - O

SV: [JBoss-user] Re: ejbjar Ant task for JBoss

2001-03-23 Thread Lennart Petersson
castor.jar - how can i get that jar file? Can't find it in jboss and neither build it like verifier.jar. /Lennart - Original Message - From: Ralf Purnhagen <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, March 21, 2001 7:31 AM Subject: [JBoss-user] Re: ejbjar Ant task for JB

Re: [JBoss-user] New to jBoss

2001-03-23 Thread anarain
Hi,       Actually i am trying out a sample example, and the creation of the jar also showed correct result as per the example.I have put ejb-jar.xml and jboss.xml in the META-INF directory and then prepared the jar file. What else can i try out. to correct this error ..( i am attaching the

Re: [JBoss-user] Some question regarding Jboss

2001-03-23 Thread Dragan Milic
Hello ricky, On Fri, 23 Mar 2001, Ricky wrote: > > Hi all , I am using Linux6.1 , jdk1.3 , postgresql7.0.2 and jboss2.1. > > I have a question regarding finder method code below : > > > Why in the line 2 , i do not need the PortableRemoteObject.narrow() ? > Cause why i tried t

Re: [JBoss-user] JAAS Based Security in JBoss

2001-03-23 Thread thierry birre
thanks scott,   my error is that my both dist/auth.conf and client/auth.conf are the same.   they must be different. client should call ClientLoginModule    thierry

[JBoss-user] JBoss 2.1 and Tomcat 3.2.1 in different JVMs

2001-03-23 Thread Penhey, Tim
I am using the JBoss 2.1 default configuration and created the interest session bean from their installation doc. All that works fine. The next step was to access the session bean from a JSP through tomcat. If I follow the instructions on http://www.jboss.org/manual/third_party.html#tomcat I ge

Re: [JBoss-user] New to jBoss

2001-03-23 Thread Franco Biaggi
Seem to be a corrupted jar (???) --Original Message Text--- From: [EMAIL PROTECTED] Date: Fri, 23 Mar 2001 12:57:10 +0530 Hello friends, I am trying to run a sample example using EJB jboss application server. I have already put the jar file containing the following in deploy directory of jb