[JBoss-user] New records not loaded by BMP Entity Bean

2001-07-12 Thread Syed
The following problem occurs with Bean Manager Persistence Entity Beans. For eg. If you have 5 records in your table and you use an Enumeration find method and get 5 records. Then if you add a record to the table by calling ejbCreate and call the Enumeration find method again, it fails to load th

Re: [JBoss-user] More on RMI/IIOP warnings

2001-07-12 Thread Burkhard Vogel
Hi, thanks for enlighting, this is far more detailed than my dodgy "not allowed statement", which was more or less aquired by "lookandseewhathappens" Burkhard - Original Message - From: "Fred Loney" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Thursday, July 12, 2

RE: [JBoss-user] Exception execution problem

2001-07-12 Thread Federico Vesco
Thank you! It works! Federico _ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.

[JBoss-user] Auto-incr

2001-07-12 Thread L. Yeung
jboss-user: i have decided to create a table "Trans" with a pk "transno" of type bigint without auto-increment defined. next i created a table "counter" with one field "cnt" which stores the last value of "transno" of table "Trans". I have an autonumber entity bean (cmp) to map this bean to table

[JBoss-user] Auto-incr (Revisited)

2001-07-12 Thread L. Yeung
jboss-user: i have decided to create a table "Trans" with a pk "transno" of type bigint without auto-increment defined. next i created a table "counter" with one field "cnt" which stores the last value of "transno" of table "Trans". I have an autonumber entity bean (cmp) to map this bean to table

Re: [JBoss-user] More on RMI/IIOP warnings

2001-07-12 Thread Frederick N. Brier
I think you hit the nail on the head with this one. As I mentioned, I was throwing java.lang.IllegalArgumentException in one business method in both of the classes in question. I commented out throwing that exception and all jboss verifier messages went away. So are you saying this is a bug

RE: [JBoss-user] URGENT: Monitoring data transfer

2001-07-12 Thread Kevin O'Neill
EJB's are not really designed for streaming. I believe that EJB methods are synchronous, if you required asynchronous operation you may want to have a look at JMS (though I'm still unsure if you can get the amount of data transferred etc). Your other choice would be to create a servlet (doesn't h

[JBoss-user] any idea what would cause this?

2001-07-12 Thread Ryan Marsh
I setup my environment in JBuilder 4 (JBoss 2.2.2) correctly but when I try to start it and debug it throws this exception while starting up within the JBuilder IDE. [MinervaNoTransCMFactory] Starting [Auto deploy] java.lang.NullPointerException [Auto deploy] at org.jboss.ejb.AutoDeployer.run(A

Re: [JBoss-user] Add DataSource (connection pool) Dynamically.

2001-07-12 Thread Scott M Stark
The existing data sources are configured via mbeans so start looking at them. Look at org.jboss.jdbc.XADataSourceLoader - Original Message - From: "C Murphy @ Intechtual" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, July 11, 2001 11:00 AM Subject: [JBoss-user] Add DataSour

[JBoss-user] Problem with jar file client

2001-07-12 Thread Jaime Gomez
I have a problem when try to run a jar file client. My jar file include : - ejb.jar - jboss-client.jar - jaas.jar - jbosssx-client.jar - jnp-client.jar - jndi.properties The message is : Exception occurred during event dispatching: java.lang.ClassFormatError

[JBoss-user] NullPointerException When Accessing JSPs with JBoss/Tomcat/Apache

2001-07-12 Thread Hicks, James
I am getting the following exception when I try to access a simple jsp page. I am running JBoss 2.2, Tomcat 3.2.1, and Apache 1.19. JBoss and Tomcat are running in the same VM and Apache is talking with Tomcat through mod-jk using ajp 12. I created a simple ear file containing 1 enterprise

[JBoss-user] about .tmp file

2001-07-12 Thread yan fan
Hi! seems that jboss$jetty produce many .tmp file. need we to delete that after the server shutdown. anything else besides .tmp Thx! Regards! fyml __ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail http://personal.mail.yahoo.co

[JBoss-user] URGENT: Monitoring data transfer

2001-07-12 Thread Nordahl, David C
Are there any ways of monitoring the progress of data transfer of objects from ejb methods. Is there any means of accomplishing this? If there's no clean way of doing this, is there a way of having the ejb generate events or messages that the client can listen for before a method execution compl

Re: [JBoss-user] Accessing MBeans through EJBs

2001-07-12 Thread Scott M Stark
> JNDI is probably not an option in this case, since presumably you want a single global, synchronized dispatcher instance rather than a serialized copy. Alternatively, you could bind to a RMI UnicastRemoteObject that acts a stub to your dispatcher, if you like that sort of thing. > Look at org/jb

Re: [JBoss-user] Accessing MBeans through EJBs

2001-07-12 Thread Fred Loney
Here's a standard way to invoke your MBean method: import javax.management.*; // Get the target MBean server (assumed here to be first server) java.util.ArrayList servers = MBeanServerFactory.findMBeanServer(null); if (servers.size() != 1) { // ...deal with it } MBeanServer server = servers

Re: [JBoss-user] 2 WEEKS EVICTION NOTICE

2001-07-12 Thread bcd
On Thu, Jul 12, 2001 at 03:41:12AM +0200, Peter Fagerlund wrote: > Ahhh ... pushing forward is hard ... change ... the pain of growing ... > cognisance dissonance - from having to change a GUI ... ;-) ... I to feel > uncomfortable but recognise it is me - having to adapt really ... Just have > hou

[JBoss-user] An Informix lesson learned the hard way...

2001-07-12 Thread Jim Brownfield
Just an FYI for those among us using Informix... (I'm using jdbc driver 2.20.JC2) I set up an Informix db pool in jboss.jcml, and I wanted to use the sqlhosts file for the connection. Seemed simple enough, use a URL of the form "jdbc:informix-sqli:/:" and "informixserver=;SQLH_TYPE=FILE;SQLH_FIL

Re: [JBoss-user] More on RMI/IIOP warnings

2001-07-12 Thread Fred Loney
The RuntimeException constraint arises from an overzealous intrepretation of the Java-CORBA mapping spec by the jboss Verifier. The jboss Verifier considers a RuntimeException declared in a business method invalid because it has no CORBA mapping. True enough, but that's because none is needed.

Re: [JBoss-user] Remote topic subscription problems continuing

2001-07-12 Thread Peter Antman
On Thu, 12 Jul 2001, kevin1 wrote: > > Hello all, > First I'd like to thank everyone for the help I've received. :) > Now: > > I am trying to have my MDB's subscribe to topics on a remote JMS server from JBoss. > I've set up the remote JMS provider MBean in jboss.jcml. When my bean depl

Re: Re: Re: [JBoss-user] MySQL, BMP, Table not found

2001-07-12 Thread tim . haley
Scott, I think your jboss.xml file is still not quite right: > >Here is my jboss.xml > > > > > jdbc/mySQLDB > java:/jdbc/mySQLDB > > > This should be: false jdbc/mySQLDB java:/jdbc

[JBoss-user] JBoss & JetSpeed Portlets?

2001-07-12 Thread Sigurður Reynisson
Hi all! Anyone had any luck with JBoss & JetSpeed? I've got JBoss-Tomcat up and running with a working database connection (CD example runs fine). Then I deployed the jetspeed.war file, just moved it to to the deploy dir for JBoss-Tomcat, got no errors. Did I miss a step or is this the correct w

RE: Re[2]: [JBoss-user] auto deploy not working on linux

2001-07-12 Thread Graham . Forte
I had a similar error, we seem to be at the same point on install. I got an error 500 I think, at java.lang...line 508, Upon searching the JBoss faqs I found out that the tools.jar from jdk needs to be copied into tomcat/lib folder. I am new to this so I would search JBoss with your specific error

RE: [JBoss-user] Accessing MBeans through EJBs

2001-07-12 Thread Dominik Baranowski
you can bind it to JNDI or invoke through reflection I believe you can find examples in the jboss documentation -dom -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of [EMAIL PROTECTED] Sent: Monday, July 09, 2001 10:02 AM To: [EMAIL PROTECTED] Subject: [JB

[JBoss-user] Setting & Accessing Resource Files in JBoss

2001-07-12 Thread jorisumu
Hi to all! I´m almost a newbye to JBoss (and even to J2EE development). I have some issues to be covered in the project we are developing, many of them aim to be solved with having access to a repository and "read" data from there. Since we don´t want to use the database for that and we cannot

Re: [JBoss-user] Re: Oracle Connection Pool Setup

2001-07-12 Thread danch (Dan Christopherson)
[EMAIL PROTECTED] wrote: > > // the Pool maintained by theserver. > InitialContext ic = new InitialContext(); > DataSource ds = (DataSource)ic.lookup("java:jdbc/DBName"); For portability, you should use an ENC name here ("java:comp/env/jdbc/DBName"), but that

Re[2]: [JBoss-user] auto deploy not working on linux

2001-07-12 Thread daljeetsingh
Hello Now that the DTD in web.xml file problem is fixed. I get ClassNotFoundExceptio n for all the classes that are present in the WEB-INF/classes folder. The same jar file works on the JBoss on NT while it throws ClassNotFoundExcept ion on the linux machine. Daljeet Singh ecExperts India Ph:

[JBoss-user] Re: Oracle Connection Pool Setup

2001-07-12 Thread tim . haley
Vinay, If I understand correctly; you are successfully using DB connections directly from your beans to access the Oracle database, and you want to change that to use a connection Pool set up by JBoss. If that is the case, then you already have your Oracle thin/OCI driver set up and working cor

RE: [JBoss-user] Exception execution problem

2001-07-12 Thread Maraya Michael
Check your client's classpath. Include everything in $JBOSS_HOME/client (you don't really need everything but start from everything then trim out the bits you don't need). --- Michael R. Maraya > -- > From: Federico Vesco[SMTP:[EMAIL PROTECTED]] > Reply To: [EMAIL P

Re: [JBoss-user] More on RMI/IIOP warnings

2001-07-12 Thread Burkhard Vogel
Hi, I thought in the same pattern, but its in the spec that RuntimeExceptions are not valid. Burkhard - Original Message - From: "Hermann RANGAMANA" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, July 12, 2001 5:58 PM Subject: Re: [JBoss-user] More on RMI/IIOP warnings > I'v

Re: [JBoss-user] Jboss.xml / JNDI lookup problems (lengthy)

2001-07-12 Thread Scott M Stark
This is still an invalid jboss.xml file, but it is working because we don't parse it very strictly. Check out the jboss.xml DTD to see how to construct a valid jboss.xml descriptor: http://www.jboss.org/documentation/HTML/ch06.html#N1f81 - Original Message - From: "Adam Lipscombe" <[EMAIL

RE: [JBoss-user] Suddenly my war won't work - help

2001-07-12 Thread Pelle Poluha
Seems to be something with my XSL... > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of > Pelle Poluha > Sent: den 12 juli 2001 15:47 > To: [EMAIL PROTECTED] > Subject: [JBoss-user] Suddenly my war won't work - help > > > Hello! > > After my latest

Re: [JBoss-user] More on RMI/IIOP warnings

2001-07-12 Thread Hermann RANGAMANA
I've had the same problem few days ago... Remove all EJBException from the throws clause of ALL of your business methods in the remote interface. If there's only ONE business methods wich declare EJBException in its "throws" clause, then that remote interface won't be a valid type of RMI/IIOP...

RE: [JBoss-user] finder stress

2001-07-12 Thread Nick Taylor
i thought it was activation/passivation issue to start with but after putting some tracing code in i saw that none of the beans had been passivated. then i noticed in my ejb-jar.xml that the KnowledgeBaseMgr bean was declared as Stateful so i changed it to Stateless and everything worked fine (no

Re: [JBoss-user] Exception execution problem

2001-07-12 Thread Burkhard Vogel
Hi, you are missing jbosssx-client.jar from jboss/client in your classpath. To be sure inclode ALL jars from jboss/client for your clients-classpath. Burkhard - Original Message - From: "Federico Vesco" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, July 12, 2001 5:14 PM Subje

Re: [JBoss-user] Exception execution problem

2001-07-12 Thread danch (Dan Christopherson)
Federico Vesco wrote: > Hi! > I'm developing a very simple application whith JBoss-2.2.2 and Postgresql. > I have the following message when i run the application > client,immediatly after I try to invoke create() from Home Inteface > (step 5 of client's code is never executed): > > > Except

RE: [JBoss-user] Jboss Security Tutorial

2001-07-12 Thread Nick Taylor
or you can write your own javax.security.auth.login.Configuration implementation and do away with the auth.conf file altogether (thank you Scott). > -Original Message- > From: Nicolai P Guba [mailto:[EMAIL PROTECTED]] > Sent: Thursday, July 12, 2001 12:41 PM > To: [EMAIL PROTECTED] > Subj

[JBoss-user] Exception execution problem

2001-07-12 Thread Federico Vesco
Hi! I'm developing a very simple application whith JBoss-2.2.2 and Postgresql. I have the following message when i run the application client,immediatly after I try to invoke create() from Home Inteface (step 5 of client's code is never executed): Exception in thread "main" java.lang.NoClassD

Re[2]: [JBoss-user] auto deploy not working on linux

2001-07-12 Thread daljeetsingh
Thanks guys removing the DOCTYPE statement works but can we make it something like the struts library does: [Auto deploy] register('-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN', 'jar:file:/usr/lib/JBoss-2.2.2_Tomcat-3.2.2/tomcat/webapps/abella/WEB-INF/lib/struts.jar!/org/apache/struts

RE: [JBoss-user] auto deploy not working on linux

2001-07-12 Thread Maraya Michael
I used to have this problem too using the stand-alone verifier until I switched to Xerces for my XML parsing (by putting xerces.jar in the classpath instead of crimson.jar). Crimson seems to have a problem dealing with DTD's. --- Michael R. Maraya > -- > From: Burkhard

RE: [JBoss-user] Deployment problem ...

2001-07-12 Thread Maraya Michael
Sound like your bean implementation has an anonymous inner class that wasn't included in the JAR file. When you build your EJB JAR file, make sure to include MyBean$7.class presumably in your com/blah directory. --- Michael R. Maraya > -- > From: Hermann RANGAMANA[SMTP:

RE: [JBoss-user] Jboss.xml / JNDI lookup problems (lengthy)

2001-07-12 Thread Adam Lipscombe
I have worked it out: The jboss.xml that does not work: jboss> OrganisationListBean ejb/organisation/OrganisationList The jboss.xml that *does* work: jboss> OrganisationListBean ejb/organisation/OrganisationList Note the tag. I suppose it is requir

Re: [JBoss-user] Testing performance

2001-07-12 Thread danch (Dan Christopherson)
the 'tuned-updates' option in jaws.xml is pretty critical - it prevents wasting time updating the database with data that hasn't changed. You can also impliment an 'boolean isModified()' method on your entity beans that returns false if nothing changed. This will allow JBoss to bypass even chec

RE: [JBoss-user] auto deploy not working on linux

2001-07-12 Thread Graham . Forte
Burkhard, I will add one thing that would have saved me time had I known, in case Daljeet does not know. The web.xml that needs to be modified is located inside your .ear.war file use zip ap to extract and modify. -Original Message- From: Burkhard Vogel [mailto:[EMAIL PROTECTED]] Sent: Th

RE: [JBoss-user] local reference to the DTD

2001-07-12 Thread Adam Lipscombe
Try this: file:///the-path-to-your-local-dtd-directory/web-app_2_2.dtd Works for me. Adam -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of [EMAIL PROTECTED] Sent: 12 July 2001 14:52 To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: RE: [

Re: [JBoss-user] 2 WEEKS EVICTION NOTICE

2001-07-12 Thread Ivan Novick
The mailing list is easy and fun...I find the forum cumbersome and probably would only use it in desperation. Ivan - Original Message - From: "Kemp Randy-W18971" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, July 12, 2001 6:17 AM Subject: [JBoss-user] 2 WEEKS EVICTION NOTICE

RE: [JBoss-user] More on RMI/IIOP warnings

2001-07-12 Thread Maraya Michael
AFAIK, The remote and home interfaces shouldn't be serializable, just their parameters and arguments. I'm still trying to get the hang of this, too. Send me your home and remote interfaces, your bean implementation and any referenced classes and let me see if I can help. Se

Re: [JBoss-user] Jboss.xml / JNDI lookup problems (lengthy)

2001-07-12 Thread Burkhard Vogel
Hmmm, at the end of my knowledge the last suggestion I would have is to check the InitialContext-properties... (server/port/java.naming.factory.url.pkgs) Burkhard - Original Message - From: "Adam Lipscombe" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, July 12, 2001 4:00 PM S

RE: [JBoss-user] auto deploy not working on linux

2001-07-12 Thread RRokytskyy
probably your Linux box does not allow connection to sun.com, the place where DTDs are located. Either allow HTTP connection there, or place DTDs in file system and change the DTD URLs in the .xml files. Roman. ___ JBoss-user mailing list [EMAIL PROTEC

Re: [JBoss-user] auto deploy not working on linux

2001-07-12 Thread Burkhard Vogel
Hi, I'm guessing that this (again) is related to the doctype line in web.xml... For a start, just delete this line. Report what happens... Burkhard - Original Message - From: "daljeetsingh" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, July 12, 2001 3:01 PM Subject: [JBoss-us

Re: [JBoss-user] JMS problem by running the client

2001-07-12 Thread Burkhard Vogel
Hi, try removing ALL jars and including ONLY jboss/client jars in your classpath and report what happens. Burkhard - Original Message - From: "Yongzheng Liang" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, July 12, 2001 4:03 PM Subject: [JBoss-user] JMS problem by running the

RE: [JBoss-user] 2 WEEKS EVICTION NOTICE

2001-07-12 Thread Roger Thomas
I would also be happier with the idea of keeping the mailing list. The use of newsgroups would also be of no issue to me as I would still have the ablity to store/seach for information offline, but an even greater number of people would have issues with accessing them, than a web based solution.

[JBoss-user] JMS problem by running the client

2001-07-12 Thread Yongzheng Liang
Hello, I am new in JBoss and trying to run the "Hello World" example in the Dokument. The mbean is deployed in the server. I use the J2EE 1.3 SDK command to run the client, and always get an error. C:\Liang\Probe_JBoss\dist\JClient>java -Djms.properties=C:\j2sdkee1.3\config\jms _client.properties

[JBoss-user] auto deploy not working on linux

2001-07-12 Thread daljeetsingh
Hello We have been developing our application on NT machines. Everything worked smoothly till we tried putting the application on a staging server (Linux box - we use JBoss with embedded TOMCAT) On putting our jar file into the deploy directory the JBoss server complains with the following error

[JBoss-user] Printable Docs (again)

2001-07-12 Thread Steven Webster
Hi all, I appreciate the following is an FAQ, but it's an unresolved one... I can't understand why the JBoss Docs are not available in a printable format - it can only serve to slow the uptake of JBoss... ...I'm sure I'm not unique, in that I'm desparate to introduce JBoss into production en

RE: [JBoss-user] Jboss.xml / JNDI lookup problems (lengthy)

2001-07-12 Thread Adam Lipscombe
Hi Burkhard, I get the a similar (or same) exception: [] looking up Home interface java:comp/env/ejb/organisation/OrganisationList [] Failed to find Home interface javax.naming.NameNotFoundException: env not bound at org.jnp.server.NamingServer.getBinding(NamingServer.java:473)

RE: [JBoss-user] local reference to the DTD

2001-07-12 Thread Graham . Forte
I still get the same error, I am putting the local copy of the dtd under the htdocs folder which resides in apache home, could that be the problem? also I cant view the web.xml file in IE 5 I get an error :cannot have multiple DOCTYPE declarations Line 1 position 11 --^ this is the web.xm

[JBoss-user] Suddenly my war won't work - help

2001-07-12 Thread Pelle Poluha
Hello! After my latest adjustment and redeployment, none of my servlets can be reached. When accessing them from my browser, I get to the login screen alright. But then I see the CPU load going up to 100%. And nothing happens. And the load stays the same until I shutdown jboss. JBoss displays th

Re: [JBoss-user] 2 WEEKS EVICTION NOTICE

2001-07-12 Thread Peter Fagerlund
Ahhh ... pushing forward is hard ... change ... the pain of growing ... cognisance dissonance - from having to change a GUI ... ;-) ... I to feel uncomfortable but recognise it is me - having to adapt really ... Just have hourly/daily/monthly *text* "tome's" downloadable for those who like to read

RE: [JBoss-user] 2 WEEKS EVICTION NOTICE

2001-07-12 Thread Reynir Hübner
I hope the mailinglist will not be discontinued but : I would like to see a newsgroup instead of the mailinglist. I think the forums are a good addon to the support service of jboss, but then again I dont think I will be browsing it for questions I can answer. I would rather do that on a newsgr

Re: [JBoss-user] 2 WEEKS EVICTION NOTICE

2001-07-12 Thread Burkhard Vogel
Hi, but they can surf to port 8080??? I guess neither... Burkhard - Original Message - From: "David Ward" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, July 12, 2001 3:02 PM Subject: Re: [JBoss-user] 2 WEEKS EVICTION NOTICE > To cast my vote (not that it's really up for a

[JBoss-user] RE: 2 WEEKS EVICTION NOTICE

2001-07-12 Thread Paul STEAD
Mailing list is the only viable option for me. Regards Paul STEAD S.W.I.F.T.s.c.r.l. ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-user

[JBoss-user] 2 WEEKS EVICTION NOTICE

2001-07-12 Thread Kemp Randy-W18971
I agree. Please keep the mailing list. Every major project, whether open or closed source, such as Tomcat, Enhydra, Orion, Resin, mysql, postgresql, etc., has a mailing list. Of course, I also consider jboss a major project. Granted, there are also other avenues, but can't these other avenu

Re: [JBoss-user] 2 WEEKS EVICTION NOTICE

2001-07-12 Thread Philipp Meier
On Wed, Jul 11, 2001 at 11:24:35PM +0200, Ole Husgaard wrote: > Hi, > > marc fleury wrote: > > the forums online seem to be holding, let's start bringing more pressure on. > > > > Unless something massive happens we are on track for this list disappearing. > > > > So get and get used to the for

Re: [JBoss-user] 2 WEEKS EVICTION NOTICE

2001-07-12 Thread David Ward
To cast my vote (not that it's really up for a vote) is for the earlier suggestion that both the forum and list survive, but have a mechanism that synchronizes the two so it doesn't get fragmented. This allows a person who needs (or prefers) to use one or the other to keep up with everything.

Re: [JBoss-user] 2 WEEKS EVICTION NOTICE

2001-07-12 Thread Jacques Thiebauld
I am in the same situation Andreas Maschke wrote: > I stronlgy agree. I simply have no time* to struggle with an always slow web > interface. > This list is not the only one I keep track. Every night I download about > 200...400 messages. > I want to identify the interesting threads quickly

[JBoss-user] Remote topic subscription problems continuing

2001-07-12 Thread kevin1
Hello all, First I'd like to thank everyone for the help I've received. :) Now: I am trying to have my MDB's subscribe to topics on a remote JMS server from JBoss. I've set up the remote JMS provider MBean in jboss.jcml. When my bean deploys, it fails with [Container factory] Deploy

Re: [JBoss-user] Out of memory error

2001-07-12 Thread Nicolai P Guba
> "JA" == Jim Archer <[EMAIL PROTECTED]> writes: JA> Hi All... --On Thursday, July 12, 2001 7:30 PM +1000 Robert JA> Schulz JA> <[EMAIL PROTECTED]> wrote: >> We are pretty close to production as well and run numerous stress >> test (creation of around 50,000 beans, 500,000+ SQL statements)

Re: [JBoss-user] finder stress

2001-07-12 Thread Burkhard Vogel
Hi, this is not about invalidating but activation/passivation. The container tries to activate (reload from ser-file) a stateful session bean which obviously does not exist. Sorry if I cannot provide further info, but show some code, probably it'll help (whats the session bean? KnowledgeBaseMgr? w

RE: [JBoss-user] 2 WEEKS EVICTION NOTICE

2001-07-12 Thread RRokytskyy
1 vote for mailing list. 1 vote for replicating list in forum and vice versa. Roman ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-user

Re: [JBoss-user] 2 WEEKS EVICTION NOTICE

2001-07-12 Thread Andreas Maschke
I stronlgy agree. I simply have no time* to struggle with an always slow web interface. This list is not the only one I keep track. Every night I download about 200...400 messages. I want to identify the interesting threads quickly and there are many interesting threads for me. So the loss of this

Re: SV: [JBoss-user] CMP and PK

2001-07-12 Thread Burkhard Vogel
Hi, now we are close: go to the archive and read hundreds of postings on autonumbering, pk generation, et al! Usually create a session-bean that encapsulates your DB number-generatio procedure, CMP CAN NOT ISSUE PKs!!! Burkhard - Original Message - From: "Max Krainov" <[EMAIL PROTECTED]> T

Re: [JBoss-user] Deployment problem ...

2001-07-12 Thread Hermann RANGAMANA
I checked out the DD and the remote interface was mistyped Thanx burkhard --hermann - Original Message - From: "Burkhard Vogel" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, July 12, 2001 12:01 PM Subject: Re: [JBoss-user] Deployment problem ... > Hi, > do you use in

Re: [JBoss-user] 2 WEEKS EVICTION NOTICE

2001-07-12 Thread Hermann RANGAMANA
So am i --hermann - Original Message - From: "Cor Hofman" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, July 12, 2001 1:03 PM Subject: RE: [JBoss-user] 2 WEEKS EVICTION NOTICE > Okay, lets have a vote. > I'm in favor of letting the mailing list live. > > Regards, > >Co

Re: [JBoss-user] Jboss.xml / JNDI lookup problems (lengthy)

2001-07-12 Thread Burkhard Vogel
Hi, Can you try looking up java:comp/env/ejb/organisation/OrganisationList and tell what happens. Burkhard ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-user

Re: [JBoss-user] 2 WEEKS EVICTION NOTICE

2001-07-12 Thread bcd
On Thu, Jul 12, 2001 at 01:03:14PM +0200, Cor Hofman wrote: > Okay, lets have a vote. > I'm in favor of letting the mailing list live. I would favour a solution where we have both ways to interface to the list. This would require forum software that understands SMTP. If I were forced to choose e

Re: [JBoss-user] Jboss Security Tutorial

2001-07-12 Thread Nicolai P Guba
> "NT" == Nick Taylor <[EMAIL PROTECTED]> writes: NT> looks like your client is failing to find NT> %JBOSS_HOME%\client\auth.conf which is the client login config NT> file. i thought the tutorial examples set this but you could try NT> passing the client something like NT> -Djava.security.aut

[JBoss-user] finder stress

2001-07-12 Thread Nick Taylor
I am seeing some strange behaviour to do with my finder methods: when the finder methods of my entity beans are able to locate the required data (using JDBC) everything is fine...but when a finder method fails by throwing a FinderException, any subsequent interaction with my session bean generates

Re: [JBoss-user] 2 WEEKS EVICTION NOTICE

2001-07-12 Thread Tim Yates
Mailing list for me to I'm afraid :-( Not that the forums aren't good :-) - Original Message - From: Cor Hofman <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, July 12, 2001 12:03 PM Subject: RE: [JBoss-user] 2 WEEKS EVICTION NOTICE > Okay, lets have a vote. > I'm in favo

RE: [JBoss-user] 2 WEEKS EVICTION NOTICE

2001-07-12 Thread Cor Hofman
Okay, lets have a vote. I'm in favor of letting the mailing list live. Regards, Cor. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Burkhard Vogel Sent: Thursday, July 12, 2001 10:29 To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] 2 WEEKS EVICTION N

[JBoss-user] Jboss.xml / JNDI lookup problems (lengthy)

2001-07-12 Thread Adam Lipscombe
Folks, I am getting ever more confused about how to lookup JNDI references. Take a simple stateless SessionBean being looked up from SOAP service. The SOAP service is invoked from the emebedded Tomcat via Apache SOAP 2.2: The ejb-jar.xml contains: OrganisationListEJB OrganisationLis

RE: [JBoss-user] Out of memory error

2001-07-12 Thread Jim Archer
Hi All... --On Thursday, July 12, 2001 7:30 PM +1000 Robert Schulz <[EMAIL PROTECTED]> wrote: > We are pretty close to production as well and run > numerous stress test (creation of around 50,000 beans, > 500,000+ SQL statements) and jboss never climbed over > 50MB ... we use RH7.1 (Linux) 2.4,

Re: SV: [JBoss-user] CMP and PK

2001-07-12 Thread Max Krainov
Hello! Recently (12.07.2001 14:38) you wrote: >> LP> what do you mean by 'count the value' ? >> I mean the value of the Primary Key if it is Integer, not a >> composite key. BV> what do you want to COUNT??? Ok,I'llsay another word: not to "count" but to "generate". I was

Re: [JBoss-user] Testing performance

2001-07-12 Thread Tobias Frech
Naresh, please have a look at the "JBoss in production" chapter in the manual. There is also a special "Performance" section. If you are already testing I would be really interested in hearing if switching between the native_ and green_thread implementation of the JDK gives any performance differ

RE: [JBoss-user] 2 WEEKS EVICTION NOTICE

2001-07-12 Thread Adam Lipscombe
Can I add my voice to the "please dont" camp? I find browsing an email folder far easier/quicker than using a web i/f. The mailing list is my primary jboss support. One can see at a glance the details of the problem rather than having to deduce from the (not always useful) web i/f header. Just

Re: [JBoss-user] Deployment problem ...

2001-07-12 Thread Burkhard Vogel
Hi, do you use inner classes? What do your DD look like? Are your Home and Remote interface in the jar? Burkhard - Original Message - From: "Hermann RANGAMANA" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, July 12, 2001 11:47 AM Subject: [JBoss-user] Deployment problem ...

Re: SV: [JBoss-user] CMP and PK

2001-07-12 Thread Burkhard Vogel
Still, what do you want to COUNT??? Burkhard - Original Message - From: "Max Krainov" <[EMAIL PROTECTED]> To: "Lennart Petersson" <[EMAIL PROTECTED]> Sent: Thursday, July 12, 2001 6:17 AM Subject: Re: SV: [JBoss-user] CMP and PK > Hello! > Recently (11.07.2001 19:12) you wrote: > >> I

[JBoss-user] Deployment problem ...

2001-07-12 Thread Hermann RANGAMANA
Hi all, I deploy my bean, and jBoss throws the following exception, once by the verifier, and then by [auto-deploy]. Here is the exception. Note that the my bean class name is, say, com.blah.MyBean, but the [verifier] (and then the the auto-deployer) is looking for another class (com.blah.MyBean

Re: [JBoss-user] local reference to the DTD

2001-07-12 Thread Burkhard Vogel
Hi, try using Http://supersunbob.tbcds.destin.com/subfolder/web-app_2_2.dtd";> Whats the error now? Burkhard - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Wednesday, July 11, 2001 7:27 PM Subject: RE: [JBoss-user] local reference to th

RE: [JBoss-user] Out of memory error

2001-07-12 Thread Robert Schulz
Not sure whether this help ... we wrote a little MBean which every 30 seconds runs System.gc() and reports on used and allocated memory. Will take you 3 minutes to write, but if you are interested I'll post the code. We use that to keep an eye on memory. Another approach would be to first run a s

Re: [JBoss-user] Jaws question

2001-07-12 Thread Burkhard Vogel
Hi, well I can tell you why does not work, however I can't tell you how to work it: The part of query will be put behind the where clause, the returned value are ALWAYS of type-pk, so the query generated will look like Select From WHERE MAX(col1) WHERE col2 = {0} and this will certainly not work

Re: [JBoss-user] jboss.xml and jboss-web.xml

2001-07-12 Thread Burkhard Vogel
Hi, well lets go by it step by step: 1. you call your bean: > DBaseListMaps so in JBoss.xml you will need: > DBaseFetch DBaseListMaps > acais/DBaseFetch now you can lookup your bean with java:comp/env/acais/DBaseFetch 2. for the web end: > ejb/DBaseListMaps > DBaseListMaps acais/DBaseFetch 3, no

[JBoss-user] How the secure the JMX Web-Interface (HtmlAdaptorServer)

2001-07-12 Thread Achim Baier
Hi all, I just want to know if (and how) it is possible to add an authentification to the JMX Web-Interface of JBoss. In the documentation of the adaptor class I found that it support HTTPBasicAuthentification. I also found a parameter "AuthentificationOn" (which is set to false) in the mbean v

[JBoss-user] Testing performance

2001-07-12 Thread Naresh Sharma
Hello Everybody, I have wrote a small application having 2 CMP beans and 1 session bean in it. Now i am testing the performance and resource consumption of application servers using this application. so i have deployed this application on JBoss 2.2.1 version and starting 25 client, each firing 10

Re: [JBoss-user] DataSources, JNDI, ejb-jar.xml and avoiding jboss.xml

2001-07-12 Thread Burkhard Vogel
Hi, you can also edit standardjboss.xml which is pared each time to map DB resources to jdbc/whatever. Burkhard - Original Message - From: "Maraya Michael" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, July 11, 2001 5:12 PM Subject: RE: [JBoss-user] DataSources, JNDI, ejb-ja

RE: [JBoss-user] Jboss Security Tutorial

2001-07-12 Thread Nick Taylor
looks like your client is failing to find %JBOSS_HOME%\client\auth.conf which is the client login config file. i thought the tutorial examples set this but you could try passing the client something like -Djava.security.auth.login.config=file:///auth.conf > -Original Message- > From: Nic

Re: [JBoss-user] BLOB

2001-07-12 Thread Burkhard Vogel
Hi, If your DB driver supports blobs, why not (oracle has problems, AFAIK) Burkhard - Original Message - From: "Ivan Novick" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, July 12, 2001 9:16 AM Subject: [JBoss-user] BLOB > Can an entity bean contain a BLOB type attribute tha

[JBoss-user] Announcement: Documentation update and latest progress

2001-07-12 Thread Tobias Frech
Hi! Here are the latest news about the updates in the documentation section of JBoss: - Visual Age for Java integration: Craig Doremus just provided us with an updated version of the VAJ integration guide. Check it out and update your IDE to JBoss 2.2.2 and VAJ 3.5p2. - Ongoing "JBoss 2.2.2 manu

Re: [JBoss-user] 2 WEEKS EVICTION NOTICE

2001-07-12 Thread Burkhard Vogel
Hi, I also disagree about shutting down the mailing list. I have done quiet a bit of posting trying to help people using jboss. This is usually done by glancing over the first part of a posting, trying to think of something reasonable, andd post it, BUT in the forum i only see the subject (which i

Re: [JBoss-user] Configuring castor to work with jboss - help!

2001-07-12 Thread Burkhard Vogel
Hi, during startup, do you get any exceptions, are there any messages that Castor is started successfully? Can you browse the state of CastorJDO on port 8082? Burkhard - Original Message - From: "Tim Fox" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Wednesday, Jul

Re[2]: [JBoss-user] Problems accessing an ejb from a servlet.

2001-07-12 Thread Ingo Bruell
Hi Allan, >> into tomcats lib directory, but the error persisted >> (even after restarting tomcat). Have you put the client jar fiels in WEB-INF/lib like David said ? >> Error javax.naming.NoInitialContextException: Cannot >> instantiate class: >> org.jnp.interfaces.NamingContextFactory [Root >

  1   2   >