Re: [JBoss-user] JBossSx -- Authentication Exception

2001-07-06 Thread Scott M Stark
Use the 2.2.2 JBoss/Tomcat bundle with the integrated security and go through the security tutorial: http://www.jboss.org/documentation/HTML/ch11s84.html - Original Message - From: "Ivan Novick" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, July 06, 2001 10:40 PM Subject: [JBo

[JBoss-user] JBossSx -- Authentication Exception

2001-07-06 Thread Ivan Novick
Hi, I am using the org.jboss.security.auth.spi.UsersRolesLoginModule There is a servlet trying to access a Session Bean. A message in JBoss window says: "user 'bond' authenticated." Then the Home Interface is found with no errors. However on the line where the session bean is created, an exc

[JBoss-user] unsubscribe

2001-07-06 Thread Dinesh Khurana
- Original Message - From: Gregor Rayman <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, July 05, 2001 11:17 PM Subject: Re: [JBoss-user] findAll and RowSet > "Burkhard Vogel" <[EMAIL PROTECTED]> wrote: > > > > hi, > > > you certainly can do this. > > > Both methods would be

Re: [JBoss-user] Strange Behavior When DataSource goes down.

2001-07-06 Thread David Jencks
I've never seen this. Not to be snooty, but how do you know this is a jboss problem? I don't know why this would make a difference, but are you using the jca wrappers? Is jboss-auto.jcml safely out of the way or are you using a version where it is not read? Whats youre NPE? david jencks On

RE: [JBoss-user] Datasource Lookup from a standalone client

2001-07-06 Thread David Jencks
Hi, (I am not a jndi expert, so some of the things I say ought to work might not. If I say they won't, I'm pretty sure they won't) There are DataSources and DataSources. Some DataSources simply hand out jdbc1.0 connections, just like calling DriverManager.getConnection, except you can put the

[JBoss-user] ejb not bound ... or ... jboss-web.xml probs

2001-07-06 Thread G.L. Grobe
Sorry if this is double posted, I've had mail probs lately.I'm trying to get a servlet to make a lookup to an ejb's namespace.I'm not sure if I've got ~/WEB-INF/jboss-web.xml and~/META-INF/jboss.xml correct. Can someone go over this config tohelp me get it working?Be advised, I'm not even su

Re: [JBoss-user] Problem running Ant on Mac OS X ...

2001-07-06 Thread Dave Ely
Ant 1.3 doesn't know anything about OsX, so the environment support is not there, Execute.getProcEnvCommand() returns null for the command string. Download the Ant sources from and there is one small change

RE: [JBoss-user] ejb not bound

2001-07-06 Thread Frank Marx
Hi, as far as I know does it know work when you use java:comp/env/ejb under JBOSS, that is what the documentation online says. Frank -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of G.L. Grobe Sent: Friday, July 06, 2001 10:43 AM To: [EMAIL PROTECTED] S

[JBoss-user] DataSource Name Problem !

2001-07-06 Thread Huynh Tin
Hi all ,I developed my application and deployed it on Weblogic Application Server ,it run ok Could anyone help me ...and tell me how can i deployed my application onJBoss ..I use JBoss-2.2.1_Tomcat-3.2.1...my problem is how could i defineDataSource Name on Jboss Server to use in my J

[JBoss-user] test ... IGNORE

2001-07-06 Thread G.L. Grobe
testing why i can't send mail to list.

[JBoss-user] ejb not bound

2001-07-06 Thread G.L. Grobe
Sorry if this is double posted, I've had mail probs lately.I'm trying to get a servlet to make a lookup to an ejb's namespace.I'm not sure if I've got ~/WEB-INF/jboss-web.xml and~/META-INF/jboss.xml correct. Can someone go over this config tohelp me get it working?Be advised, I'm not even su

[JBoss-user] ejb not bound

2001-07-06 Thread G.L. Grobe
I'm trying to get a servlet to make a lookup to an ejb's namespace. I'm not sure if I've got ~/WEB-INF/jboss-web.xml and ~/META-INF/jboss.xml correct. Can someone go over this config to help me get it working? Be advised, I'm not even sure if I need all the listed files and if their in the correc

Re: [JBoss-user] rollback jdbc transaction

2001-07-06 Thread Burkhard Vogel
Hi, probably this an too simple answer, but you have declared Bean in ejb-jar.xml for this Bean, haven't you? And there is no stuff either? Really sorry, if this is too simple, but sometimes easiest things are hardest to find?! Burkhard - Original Message --

[JBoss-user] JMS Questions

2001-07-06 Thread Tom Marrs
Hi, I'm new to JBoss and JMS, although I've used the J2EE on other app servers. I've got a couple of questions about connecting to JMS queues from standalone Java applications (i.e., not from an EJB): 1) I'd like to use the default constructor for InitialContext, but no matter what I do to the

RE: [JBoss-user] Datasource Lookup from a standalone client

2001-07-06 Thread Frank Marx
Sure I can access a DB from a standalone client using JDBC. The question was why I cannot access a JNDI to access a Datasource there ? I mean what is the reason, as far as I know JNDI is a basic service and is not limited to EJB. When you look up a home interface of a EJB you can do this from a

Re: [JBoss-user] rollback jdbc transaction

2001-07-06 Thread Jure Lodrant
D > > > > > > setRollbackOnly is used in EJB's using Container managed transactions > > which is not the case here. > > If you're trying to do Bean managed transactions, you need to read up on > how to do it. See section 11.3.3 of the EJB 1.1 spec, or section 17.3.3 > of the EJB 2.0 pfd 2 spec. >

Re: [JBoss-user] Out of memory error

2001-07-06 Thread Jim Archer
Saul, watch your thread usage. jBoss will usually throw an out of memory exception when it can't create a new thread... On Solaris, you have a hard limit of threads. I don't know if this is your actual problem, but I thought I would mention it. Jim --On Friday, July 06, 2001 6:47 PM -0400 Sa

Re: [JBoss-user] Datasource Lookup from a standalone client

2001-07-06 Thread Burkhard Vogel
Let's put it simple: You can't do it, forget it, stop trying, use beans or servlets for DB access!!! Burkhard - Original Message - From: "Frank Marx" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, July 07, 2001 12:01 AM Subject: RE: [JBoss-user] Datasource Lookup from a standa

[JBoss-user] Out of memory error

2001-07-06 Thread Saul Farber
Hello again, I'm having some trouble with Jboss/Jetty running out of memory after some heavy use. There's 192M of real memory and another 256M of shared memory on a solaris 2.6 install. However, after some heavy use, the jvm running Jboss takes up about 85M of real memory, doesn't use swap, and

[JBoss-user] Tomcat 4.0 + Jboss 2.2

2001-07-06 Thread Patrick Munis
Title: Tomcat 4.0 + Jboss 2.2 Is anyone using tomcat 4.0 with Jboss 2.2. ? If yes could you please provide with installing and configuration instructions. thanks Patrick

[JBoss-user] resin + jboss vs. tomcat + jboss

2001-07-06 Thread Patrick Munis
Title: resin + jboss vs. tomcat + jboss Does anyone out there any benchmarks to prove resin + jboss scales(performance) better than tomcat + jboss.? What are some of the pros and cons of using either one.? thanks Patrick

Re: [JBoss-user] pass-by-value vs. pass-by-reference semantics

2001-07-06 Thread Scott M Stark
You can disable the optimized calling to return to pass by value with a flick of a configuration switch. See the Optimized flag docs here: http://www.jboss.org/documentation/HTML/ch06s08.html - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, July 06, 200

RE: [JBoss-user] Datasource Lookup from a standalone client

2001-07-06 Thread Frank Marx
HI, so where has this Datasource to be bound that I can access it from a stand alone JAVA Client ? As far a I understand a datasource (which beans can access) would be bound to: java:comp/env/jdbc/DSource so how does this have to look like that a stand alone JAVA Client can access this Dataso

RE: [JBoss-user] Problem with cmp-jaws example

2001-07-06 Thread Vincent Harcq
You find a 2.2 non compliant feature. It is a 2.4 feature. I will update the zip files on the web site. For you to continue, comment out lesson.subject and lesson.hours in jaws.xml. > -Message d'origine- > De : [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]De la part de Laurel > Neusta

[JBoss-user] pass-by-value vs. pass-by-reference semantics

2001-07-06 Thread Alex . Devine
I had a question about the pass-by-value vs pass-by-reference semantics of ejb calls. From how I understand the spec, any calls through the remote interface are supposed to use pass-by-value semantics. However, JBoss appears to use pass-by-reference semantics for beans running in the same jvm (an

[JBoss-user] Re: Test [why so many html msgs?]

2001-07-06 Thread kenneth
On Fri Jul 6 13:59:11 PDT 2001 "Hicks, James" <[EMAIL PROTECTED]> wrote: > This is a test > > James Yes. Your mail is an obnoxious htmlized message. Why do so many members of this list htmlize their mail? Are they all addicted to ms outlook? kb -- Kenneth Bowen [EMAIL PROTECTED] /\ moc.xo

Re: [JBoss-user] segfaults with 2.4.0 beta and ExternalContext

2001-07-06 Thread kevin1
> Segfaults are VM bugs, usually with the JIT or HotSpot. There is nothing > one can do in a pure Java app to cause them. Try running without > HotSpot. Tried that - no luck It only segfaults when I try to config the JNDI ExternalContext MBean to work with jboss -- it seems alright otherwise.

Re: [JBoss-user] Datasource Lookup from a standalone client

2001-07-06 Thread Alex . Devine
You are reading the spec incorrectly. You can only access things from remote clients that are present in the Global jndi namespace (to get a view of the namespace, use the jndiView mbean through http://localhost:8082 - or whatever port you have it set on). You don't want to access the DataSource

[JBoss-user] Custom finders coded in your beans

2001-07-06 Thread Perry Q Hertler
At http://jboss.org/documentation/HTML/ch05s07.html "Custom finders coded in your beans" is described. Has this only been made available since JBoss 2.4? Thanks, Perry __ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail http://pers

[JBoss-user] Datasource Lookup from a standalone client

2001-07-06 Thread gsekar ejb
Version : JBoss-2.2.2 I have defined a JDBC DataSource _pool and i can see that it is successfully bound as java:/_pool. [_pool] Starting [_pool] XA Connection pool _pool bound to java:/_pool [_pool] Started I have no problem accessing this datasource from within a

RE: [JBoss-user] InitialContext problem

2001-07-06 Thread Frank Marx
Hi, have you checked if the settings in the jndi.properties file are correct ? Frank -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Larry Kim Sent: Friday, July 06, 2001 12:32 PM To: [EMAIL PROTECTED] Cc: Larry Kim Subject: [JBoss-user] InitialContex

Re: [JBoss-user] segfaults with 2.4.0 beta and ExternalContext

2001-07-06 Thread danch (Dan Christopherson)
kevin1 wrote: > I got 2.4.0 beta up and running with sybase. (yay) However, when I tried to add > an external LDAP source, I get segfaults after I start. That is to say - I start > it, it works for a while, and then it dies... > Is this a known issue? > > I'm using sun JDK 1.3.1 on stock Linux

Re: [JBoss-user] segfaults with 2.4.0 beta and ExternalContext

2001-07-06 Thread Scott M Stark
Segfaults are VM bugs, usually with the JIT or HotSpot. There is nothing one can do in a pure Java app to cause them. Try running without HotSpot. - Original Message - From: "kevin1" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, July 06, 2001 12:07 PM Subject: [JBoss-user] seg

Re: [JBoss-user] ejb client classpath

2001-07-06 Thread Scott M Stark
Because its possible to use a different: - JMS implementation. - Security implementation - JNP implementation JBoss is not a monolithic app server. - Original Message - From: "Burkhard Vogel" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, July 06, 2001 12:23 PM Subject: Re: [

Re: [JBoss-user] InitialContext problem

2001-07-06 Thread Burkhard Vogel
Hi, I guess you did not include a jboss.xml in your jars META-INF, so by using localhost:8082 -> service=JNDIView -> list you will find that your Bean is deployed to java:/Hospital. Use the enterprise-beans section of jboss.xml to map your Beans to the java:comp/env/ namespace. There is a chapter

Re: [JBoss-user] ejb client classpath

2001-07-06 Thread VASQUEZ_JASON
I know this has changed recently, but better even would be an optional 'light' client jar that could use the HTTP classloader to load the required implementation classes as needed. Not so good for clients over slow links (i.e., applets, etc.), but great for collaborating services within a LAN

[JBoss-user] InitialContext problem

2001-07-06 Thread Larry Kim
Hello, i am having problems with a test client. Has anybody seen anything like this? Exception: Cannot lookup HospitalHome: javax.naming.NoInitialContextException: Need to specify class name in environment or system property, or as an applet parameter, or in an application resource file: java.n

Re: [JBoss-user] ejb client classpath

2001-07-06 Thread Burkhard Vogel
Hmm, why can't we pack the whole bunch of jars into one? from developing view I can understand that its far easier to have multiple jars, but seeing the load of mail regarding client problems with CNFE, wouldn't it be kinda user-friendly only to have to include one jboss-client.jar? Burkhard -

[JBoss-user] segfaults with 2.4.0 beta and ExternalContext

2001-07-06 Thread kevin1
I got 2.4.0 beta up and running with sybase. (yay) However, when I tried to add an external LDAP source, I get segfaults after I start. That is to say - I start it, it works for a while, and then it dies... Is this a known issue? I'm using sun JDK 1.3.1 on stock Linux kernel 2.2.17 (mandrake)

[JBoss-user] Test

2001-07-06 Thread Hicks, James
This is a test   James

Re: [JBoss-user] ejb client classpath

2001-07-06 Thread Scott M Stark
All servers have application server specific jar files that clients need to use. J2EE is just a collection of interfaces for the most part which means there has to be an implementation provided and this means jars in addition to those that contain the J2EE interfaces. - Original Message -

Re: [JBoss-user] ejb client classpath

2001-07-06 Thread Christofer Jennings
I think you may have missed my point. I figured out what was needed (though it is nice to know all the jars are in $JBOSS_DIST/jboss/client/ ... thanks)(and yes, shame on me for not searching first) but maybe my question is as much an EJB question as a JBoss question. That is, why do I need a

Re: [JBoss-user] Problem running Ant on Mac OS X ...

2001-07-06 Thread Christofer Jennings
Could you tell us more about that shell script? ,boz On Friday, July 6, 2001, at 10:38 AM, Hunter Hillegas wrote: > I am using Ant on OS X and don't have any problems... It's worked fine > with > both the shipping Java version in 10.0 and the beta Java Update. > > How are you executing ant? I

Re: [JBoss-user] Newbie having problems with Interest sample

2001-07-06 Thread Burkhard Vogel
its a typo: jbosssx-client.jar this sould be in your client dir. Burkhard - Original Message - From: "Martin Welch" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, July 06, 2001 7:28 PM Subject: RE: [JBoss-user] Newbie having problems with Interest sample > Um, I don't seem to

Re: [JBoss-user] Problem running Ant on Mac OS X ...

2001-07-06 Thread Christofer Jennings
I had the same problem. ... Used cut-n-paste too. Hope you don't mind me cc-ing this to the mac-java-dev list. ,boz On Friday, July 6, 2001, at 10:22 AM, BCD wrote: > Hi, > > I've been successfully using Jboss and MySql on Mac OS X but am having > trouble building the examples with Ant. When

RE: [JBoss-user] Newbie having problems with Interest sample

2001-07-06 Thread Martin Welch
Title: Newbie having problems with Interest sample Um, I don't seem to have a jbossmx-client anywhere. I've added all of the jars in the client directory now and I get the same result.   I'm going to set this stuff up at home over the weekend if I can find time and see if I can get any furth

Re: [JBoss-user] ejb client classpath

2001-07-06 Thread danch (Dan Christopherson)
[EMAIL PROTECTED] wrote: > As an experiment I tried deploying the interest example bean and running > the client not as said in the Manual (from the examples/build dir) but > from my root dir. To my surprise I needed to have all sorts of container > related jar files in my classpath to run the

Re: [JBoss-user] Newbie having problems with Interest sample

2001-07-06 Thread Christofer Jennings
Don't know if this will help, but your issue sounds very similar to the one I posted a few minutes ago "ejb client classpath". I noticed I had to add a number of jars to get it to work "my way"... maybe they'll be what you need too. Here they are without all the ant stuff: ${jboss.dist}/lib/ex

Re: [JBoss-user] ejb client classpath

2001-07-06 Thread Burkhard Vogel
Hi, have a look in the jboss-client dir... there is all you need! there have been LOADS of mails on this subject (ever tried searching the archieve (access through jboss site) on interest + client???) Burkhard - Original Message - From: <[EMAIL PROTECTED]> To: "Jboss-User-List" <[EMAIL PRO

[JBoss-user] Problem with cmp-jaws example

2001-07-06 Thread Laurel Neustadter
Hi: I am working through the examples in the JBoss Manual. Everything has worked fine until Chapter 5: Customizing Jaws. I successfully ran "ant cmp-jaws-compile", but when I drop "documentation-example/build-examples/cmp-jaws/ejb/class.jar" into the deploy directory I get the following error. Ho

[JBoss-user] Problem running Ant on Mac OS X ...

2001-07-06 Thread BCD
Hi, I've been successfully using Jboss and MySql on Mac OS X but am having trouble building the examples with Ant. When I used the supplied build.xml file (with all of the environment variables set correctly) I get the following Java IOException (see below) when Ant is trying to read "env" to ge

RE: [JBoss-user] Re: Jboss Performance problems

2001-07-06 Thread Frank Marx
Hi, one way we did it was pretty easy, you have a flag in the entity bean , let's say boolean bDirty = false; In very method that writes you set this flag to true and in the ejbStore() you set it back to false; Is modified is implemented the following way: public boolean isModified() {

[JBoss-user] Problems with JBoss 2.2.2 and MQ

2001-07-06 Thread Hunter Hillegas
When I try to deploy an MDB JBoss chokes. Right after it says "Desintation Type Queue", the log file reports "java.net.ConnectionException: Connection refused". Any ideas what port it's trying to connect to? I'm running this as root so it shouldn't be a permissions issue. This is running on Lin

Re: [JBoss-user] RE: Struts & Jboss?

2001-07-06 Thread Gregor Rayman
I wrote: > "Simon Tang" <[EMAIL PROTECTED]> wrote: > > > I am assuming that you packaged everything into an EAR file. In that > > case, you will need to specify in the Manifest.mf file in both JAR and > > WAR the classpath to the Struts JAR. > > > > In your manifest.mf add (or something like this

Re: [JBoss-user] Newbie having problems with Interest sample

2001-07-06 Thread Lachezar Dobrev
Title: Newbie having problems with Interest sample    Got me here... I didn't expect this.    However. Try to add jbossmx-client.jar also. The org.jboss.security.SecurityAssociation class is there.      Let me know what happens OK?      Lachezar. Wow! I didn't expect such a detailed and a

Re: [JBoss-user] RE: Struts & Jboss?

2001-07-06 Thread Gregor Rayman
"Simon Tang" <[EMAIL PROTECTED]> wrote: > I am assuming that you packaged everything into an EAR file. In that > case, you will need to specify in the Manifest.mf file in both JAR and > WAR the classpath to the Struts JAR. > > In your manifest.mf add (or something like this): > > Class-Path: ./

RE: [JBoss-user] RE: Struts & Jboss?

2001-07-06 Thread Simon Tang
I am assuming that you packaged everything into an EAR file. In that case, you will need to specify in the Manifest.mf file in both JAR and WAR the classpath to the Struts JAR. In your manifest.mf add (or something like this): Class-Path: ./struts.jar Make sure there's a CR at the end. ==

Re: [JBoss-user] problems with jms

2001-07-06 Thread Peter Antman
On Thu, 5 Jul 2001, Manfred Meyer wrote: > hi peter, > > i use the "XAQueueConnectionFactory". are there other factories for queues? > could you tell me which one i should use if i don't want to use transactions. Hi, look into jbossmq.xml, there are: QueueConnectionFactory (for fast two socket

Re: [JBoss-user] Strange Behavior When DataSource goes down.

2001-07-06 Thread Richard Bottoms
At 12:33 AM 7/6/01 -0700, you wrote: >JCA is a standard introduced in J2EE 1.3. JDBC is not being deprecated, How's this. JBoss conects to my datasource on start up. I shut down, add a new database, restart the computer even. New datasource generates NPE. Shutdown JBoss, restart, datasource con

[JBoss-user] Problem with Oracle 8i , Cyrillic and Unicode

2001-07-06 Thread jquest jquest
Hi all , I try to make a litle Application with JBoss. As client I use swing. My DB is Oracle 8i. I need to use Cyrillic in my App. and I use Unicode. In client all is OK. I can read and write a TextField. A get the value and call a simple session bean on JBoss. It make System.out.println ( my Str

[JBoss-user] ejb client classpath

2001-07-06 Thread boz
As an experiment I tried deploying the interest example bean and running the client not as said in the Manual (from the examples/build dir) but from my root dir. To my surprise I needed to have all sorts of container related jar files in my classpath to run the client. Could this be right or a

RE: [JBoss-user] Newbie having problems with Interest sample

2001-07-06 Thread Martin Welch
Title: Newbie having problems with Interest sample Wow! I didn't expect such a detailed and accurate reply so soon.   This (nearly) worked. The call to   Interest interest = home.create(); failed with   java.lang.NoClassDefFoundError: org/jboss/security/SecurityAssociation at org

RE: [JBoss-user] Session Bean Serialization Fun

2001-07-06 Thread Bordet, Simone
Hi ! > Great! > Thanks...Do we have an approximate ETA for a 2.4 stable release yet? Already out. Donwload it from SourceForge :) Since the minor release is even, then it's a stable release. Simon ___ JBoss-user mailing list [EMAIL PROTECTED] http://

Re: [JBoss-user] Passing remote interfaces from session bean to servlet

2001-07-06 Thread danch (Dan Christopherson)
Benjamin Hille wrote: > Hi, > I have a problem passing a vector of remote interfaces between a session > bean and a servlet. > Basically the servlet calls a method of a session bean that builds a vector > of remote interfaces of CMP beans. In the session bean there is no problems > in filling the

RE: [JBoss-user] Session Bean Serialization Fun

2001-07-06 Thread Nanda, Sameer (AT-Atlanta)
Great! Thanks...Do we have an approximate ETA for a 2.4 stable release yet? I checked out the Release Notes and it looks like it does just what we need--as well as other very useful stuff! -Sam -Original Message- From: Bordet, Simone [mailto:[EMAIL PROTECTED]] Sent: Friday, July 06, 2001

Re: [JBoss-user] JSP / EJB communication

2001-07-06 Thread danch (Dan Christopherson)
[EMAIL PROTECTED] wrote: > I'm disappointed. > I have the jboss-2.2.2_tomcat-3.2.2 release installed on my linux. > > It starts very well. > > But what I thought was EJB/JSP communication when connecting to > http://localhost:8080 is in fact only JSP examples from tomcat's part... > > What I d

RE: [JBoss-user] Session Bean Serialization Fun

2001-07-06 Thread Bordet, Simone
Hi ! > Hi, > is this OS specific? No, of course. > Running on Linux 2.2.16 (SuSE > Distribution) there is no > such thing as a db/session dir? Probably you remove your session beans when they're done, before they get passivated ? Simon > Burkhard > - Original Message - > From: "Nan

Re: [JBoss-user] Newbie having problems with Interest sample

2001-07-06 Thread Lachezar Dobrev
Title: Newbie having problems with Interest sample    You have to get the JBoss client jars in your client.    How about:    Create a library in JBuilder (Let's say JBoss_Library). Add the following jars to that library:     $JBOSS_HOME/client/ejb.jar -> REQUIRED     $JBOSS_HOM

Re: SV: [JBoss-user] Re: Jboss Performance problems

2001-07-06 Thread danch (Dan Christopherson)
Lennart Petersson wrote: > - Original Message - > From: danch (Dan Christopherson) <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Thursday, July 05, 2001 11:37 PM > Subject: Re: [JBoss-user] Re: Jboss Performance problems > > > >>Actually, tuned-updates is a little more overhea

Re: [JBoss-user] Session Bean Serialization Fun

2001-07-06 Thread Burkhard Vogel
Hi, is this OS specific? Running on Linux 2.2.16 (SuSE Distribution) there is no such thing as a db/session dir? Burkhard - Original Message - From: "Nanda, Sameer (AT-Atlanta)" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, July 06, 2001 4:50 PM Subject: [JBoss-user] Session Be

RE: [JBoss-user] Session Bean Serialization Fun

2001-07-06 Thread Bordet, Simone
Hi ! The feature you need is present and configurable in JBoss 2.4. Simon > -Original Message- > From: Nanda, Sameer (AT-Atlanta) [mailto:[EMAIL PROTECTED]] > Sent: venerdì 6 luglio 2001 16:51 > To: [EMAIL PROTECTED] > Subject: [JBoss-user] Session Bean Serialization Fun > > > I am ha

[JBoss-user] Session Bean Serialization Fun

2001-07-06 Thread Nanda, Sameer (AT-Atlanta)
I am having a problem with the number of serilized Session Beans jboss is creating on our server. JBoss seems to be serializing to disk all active Session Beans every 10 minutes but does not remove any. We have typically 50 to 100 serialized every 10 min., causing tens of thousands of files (all i

[JBoss-user] Newbie having problems with Interest sample

2001-07-06 Thread Martin Welch
Title: Newbie having problems with Interest sample Hi, Hopefully this is an easy one! I've just installed JBoss-2.2.2_Tomcat-3.2.2. I've deployed the Interest EJB into JBoss without any problems by following the tutorial in the online html help. I've tried to run the client in JBuilder

RE: [JBoss-user] JBoss Jetty Configuration

2001-07-06 Thread marc fleury
bring it on! I am waiting marcf |-Original Message- |From: [EMAIL PROTECTED] |[mailto:[EMAIL PROTECTED]]On Behalf Of Julian |Gosnell |Sent: Friday, July 06, 2001 10:33 AM |To: [EMAIL PROTECTED] |Subject: Re: [JBoss-user] JBoss Jetty Configuration | | |In a word - NO ! | |What you may

Re: [JBoss-user] Where to put property files for an application?

2001-07-06 Thread Steve Slatcher
"Joachim Schaaf" <[EMAIL PROTECTED]> wrote in message 0107061559120H.01758@skirtos">news:0107061559120H.01758@skirtos... > Hi, > > I'm new to JBoss and want to port an existing Java application to JBoss. I > wrote a simple EJB, taglib and JSP page and hey! - it works ;) > Currently the configur

Re: [JBoss-user] JBoss Jetty Configuration

2001-07-06 Thread Julian Gosnell
In a word - NO ! What you may be able to do - but should be careful that you are working with the same JBoss versions- is copy eveything but jboss.conf and jboss.jcml (you may have to patch changes that you have made to these) from jboss-tomcat/jboss/conf/tomcat into jboss-jetty/jboss/conf/jetty.

Re: [JBoss-user] Where to put property files for an application?

2001-07-06 Thread Matt Goodall
You can put in in your webapp's classes directory, i.e. $TOMCAT_HOME/webapps/myapp/WEB-INF/classes, and use getClass().getClassLoader().getResource() or getClass().getClassLoader().getResourceAsStream() to load it from inside the servlet. Cheers, Matt - Original Message - From: Joachim S

Re: [JBoss-user] Where to put property files for an application?

2001-07-06 Thread Mike Thompson
Well, if it's just database names/password/jdbc stuff, you should be able to use the javax.sql.DataSource. Just configure it in your jboss.jcml and snag it via JNDI. --m - Original Message - From: "Joachim Schaaf" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, July 06, 200

[JBoss-user] using JBoss to look up a JMS topic from an LDAP server

2001-07-06 Thread kevin1
How would I configure JBoss to look up JMS topics from an LDAP server? -- No one may be called "good" if they have had no chance to be bad... ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-user

[JBoss-user] Where to put property files for an application?

2001-07-06 Thread Joachim Schaaf
Hi, I'm new to JBoss and want to port an existing Java application to JBoss. I wrote a simple EJB, taglib and JSP page and hey! - it works ;) Currently the configuration is stored in a property file (database user name/passwd/jdbc and lots of app. specific things). Where should it put the pro

[JBoss-user] Problem in Integration with Tomcat and jboss

2001-07-06 Thread Rajesh Vilasrao Bhujbal
I am using tomcat-3.2.2 and jboss-2.2.2. I want to use tomcat with jboss. i follwed procedure given in Jboss documentation. But still i am not able to achive this. After starting jboss, i get error: could not start EmbeddedTomcat   can you help me: TIA RAJESH

[JBoss-user] About syncronaization of deploy

2001-07-06 Thread Keiichiro Katayama
Hello , This is Kei Katayama. When I update the ear file included servlets and EJBs JSPs , will JBOSS guarantee the consistency of component? For example , my ear file named test1.ear were include Servlet-1 , EJB-1 , JSP-1. And Servlet-1 uses EJB-1. Next I changed the EJB-1. Servlet

[JBoss-user] JBoss Jetty Configuration

2001-07-06 Thread Mark Crowley
Hi, I have previously been running with the JBoss/Tomcat installation. Am now trying the Jetty version. Is the JBoss exe the same in both configs? Can I just copy the jboss/conf/jetty directory to my existing jboss/conf directory (which already contains a tomcat sub-dir)? Also can I simply cop

[JBoss-user] JSP / EJB communication

2001-07-06 Thread Antoine . ISIDOR
I'm disappointed. I have the jboss-2.2.2_tomcat-3.2.2 release installed on my linux. It starts very well. But what I thought was EJB/JSP communication when connecting to http://localhost:8080 is in fact only JSP examples from tomcat's part... What I don't understand is how to test the "tomcat-t

Re: [JBoss-user] Re: Jboss Performance problems

2001-07-06 Thread Hermann RANGAMANA
Hi all, could you post here some example of an entity beans implementing isModified () ? --hermann - Original Message - From: "Devraj Mukherjee" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, July 06, 2001 1:53 AM Subject: Re: [JBoss-user] Re: Jboss Performance problems > Hi

Re: [JBoss-user] Re: mysql | postgresql XA Connection Pool problem

2001-07-06 Thread Larry Coleman
I have FreeBSD 4.3 running the 1.3 SDK with Linux emulation. I'm just getting started, but I have gotten JBoss to run and I set up a couple of database connection pools with PostgreSQL 7.1. Achilleus Mantzios wrote: > > Thanx Dragos, > Just a general question here, > Has anyone run jboss on a

[JBoss-user] EJBDoclet / JBoss entity bean Cache Problems / IllegalStateException in JDBCCommand

2001-07-06 Thread Vincent Harcq
Hi, This problem may be interresting for ejbdoclet/jboss users. But it can happen to other as well, if you picked up your template PK class from a book, ... I faced a problem, in fact different problems during... well some time now... on entity beans accessed by session beans. It gives strange

Re: [JBoss-user] Re: mysql | postgresql XA Connection Pool problem

2001-07-06 Thread Achilleus Mantzios
Thanx Dragos, Just a general question here, Has anyone run jboss on a FreeBSD 4.3 with linux emulation and j2sdk1.3.0 Dragos Haiduc wrote: > Hi. > Please make sure that your DB system is started before attempting to > start JBoss(this might be the reason that you get the NPE), because at >

RE: [JBoss-user] Data dirty problem in cmp entity bean.

2001-07-06 Thread Andre [EMAIL PROTECTED]
Change your Commit-option in your jboss.jcml file to at least B - restart the server - then test your scenario again - LOT of posts in the archives about this. av -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, July 06, 2001 11:33 AM To: [EMAIL PROTECT

Re: [JBoss-user] Passing remote interfaces from session bean to servlet

2001-07-06 Thread Burkhard Vogel
Hi, this is a design issue, try passing only necessary vaules, or do a lookup of the interfaces in the servlet (will only work on on integrated jboss-tomcat) Burkhard - Original Message - From: "Benjamin Hille" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, July 06, 2001 11:33 A

SV: [JBoss-user] Data dirty problem in cmp entity bean.

2001-07-06 Thread Lennart Petersson
Nope, it is more of a commit option problem. Look in the archives - there really is PLENTY of threads regarding this. Or try go chaning commit option from default A B or C in your conf/standardjaws.xml - just to verify that it is your problem. /Lennart - Original Message - From: <[EMAI

RE: [JBoss-user] How to map a Number field to a int correctly?

2001-07-06 Thread David Crecente
<< Hi, int is not allowed to be null. if exist the posibility of null in DateBase I belive cityId whould must to be Integer. >> -Mensaje original- De: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]En nombre de [EMAIL PROTECTED] Enviado el: miércoles 4 de jul

Re: [JBoss-user] Data dirty problem in cmp entity bean.

2001-07-06 Thread Burkhard Vogel
Hi, Use Commit option C for you bean, this is appropriate if legacy applications have access to the Database. Burkhard - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, July 06, 2001 11:33 AM Subject: [JBoss-user] Data dirty problem in cmp entity bean.

Re: [JBoss-user] JMS call & JBoss

2001-07-06 Thread Burkhard Vogel
Hi, try looking up "topic/FunctionTopic". use JNDIView to make sure it really exists. Burkhard - Original Message - From: "FRANCOIS Gilles" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, July 05, 2001 1:06 PM Subject: [JBoss-user] JMS call & JBoss > Hi, > here is my problem:

[JBoss-user] Passing remote interfaces from session bean to servlet

2001-07-06 Thread Benjamin Hille
Hi, I have a problem passing a vector of remote interfaces between a session bean and a servlet. Basically the servlet calls a method of a session bean that builds a vector of remote interfaces of CMP beans. In the session bean there is no problems in filling the vector. However the returned vecto

[JBoss-user] Data dirty problem in cmp entity bean.

2001-07-06 Thread li_c
I have created a cmp entity bean in jboss and now I find a problem. The bean name is service, and in oracle8i ,there is a table named Service with two field: name(PK) and value, so does the entity bean. There is a row like this namevalue - - jack 22 When I run the

Re: [JBoss-user] Error fetchning session bean

2001-07-06 Thread Burkhard Vogel
Stop!!! DON'T include J2ee.jar if you not necessarily MUST! It interferes with JBoss! Burkhard - Original Message - From: "Nick Taylor" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, July 05, 2001 10:33 AM Subject: RE: [JBoss-user] Error fetchning session bean > > > > -O

[JBoss-user] subsequent rmi-calls disturb jboss

2001-07-06 Thread Wagnerka1
Hi there, I'm running an RMI-Application inside JBoss. The application-classes reside in a jar file in the lib/ext-directory of JBoss. The client runs inside VisualAge and is getting the rmi-Stubs through JNDI. If I run the Application in Debugger, everything is o.k., but when I run it under no

Re: [JBoss-user] can i add a datasource at runtime.

2001-07-06 Thread Burkhard Vogel
Hi, uhmmm, I guess I'm sticking my head out here, but well, you can add Datasources at runtime, as they are pert of the JMX framework in JBoss. What you have to do is: 1. Read the JMX API carefully (I did it at least twice, and still didn't get full understanding). 2. Check chapter 11 of JBoss-doc

[JBoss-user] Re: mysql | postgresql XA Connection Pool problem

2001-07-06 Thread Achilleus Mantzios
In addition to my previous post i attach the output of 1) The freebsd run_with_tomcat, 2) the linux run_with_tomcat > Hi, > i am using JBoss2.2.2 with tomcat3.2.2. > It worked fine (deploying and running a sample Enterprise Bean > application), > on a FreeBSD 4.3, with linux kernel 2.2.12 emulati

  1   2   >