Re: [JBoss-user] NullPointerException while trying to obtain JMSTopicConnectionFa ctory on 2.4.6

2002-06-14 Thread Slava Voronin
I had the same problem and when I changed lookup(TopicConnectionFactory) to lookup(ConnectionFactory) it worked for jboss3. McLain, Mark - Apogent wrote: I have written the following test method in a JUnit 3.7 TestCase: public void testSendMessageToProcessor()

Re: [JBoss-user] How to look up queue with jboss3.0

2002-06-14 Thread Ionel Gardais
QueueConnectionFactory queueConnectionFactory = null; QueueConnection queueConnection = null; QueueSessionqueueSession = null; Queue queue = null; QueueSender queueSender = null; jndiContext = new InitialContext(); queueName = new

[JBoss-user] JBoss client jar files size

2002-06-14 Thread Ionel Gardais
Hi, I've developped a simple whitepages application to run at my company. GUI is made with swing. it has been developed in order to work both as a sandalone application and as an applet. unfortunatly, after having pruned the usefull client packages, it is about 1Mb of jar files that needs to

Re: [JBoss-user] JBoss client jar files size

2002-06-14 Thread Gunaseelan Nagarajan
perhaps you can make an installation diskette and give it to your employees On Friday 14 June 2002 09:32, you wrote: Hi, I've developped a simple whitepages application to run at my company. GUI is made with swing. it has been developed in order to work both as a sandalone application and

[JBoss-user] CMR

2002-06-14 Thread James Compton
Hi We are trying to use CMR in JBoss here, but are unsuccessful in our attempts. Basically, as an example, in a User-Address relationship we have the foreign key to Address in User. Thus we create a CMR in this and it creates the 2 tables with only the foreign key to Address in the User table.

Re: [JBoss-user] Using auto increment of mysql for PK

2002-06-14 Thread Markus Garscha
Hmmm, i look at this solution, too. there is one big disadvantage: if the databasebase is access via odbc _and_ jboss i run into trouble. i'm looking for a sequence session bean, because my primary-keys in my tables are generated (by default) by sequences (or by stored procedures). So, is there

Re: [JBoss-user] CMR - CMP Problem on Jboss 3.0 final

2002-06-14 Thread Jonathan . O'Connor
This problem can be fixed easily, if you are willing to change the JBoss source code. See my message below for more details. Dain, I'm not sure if you saw my post, but I'd appreciate your opinion as to whether this code is safe or not. Ciao, Jonathan O'Connor Ph: +353 1 872 3305 Mob: +353 86

RE: [JBoss-user] Is deadlock possible with multiple connection po ols?

2002-06-14 Thread Geer, Benjamin
David Jencks wrote: However, my opinion is that what I think you meant is allowed, and that the connections are (as far as tx/xid go) stateless. I just noticed this passage in the JTA spec (3.4.6): 'To initiate the transaction commit process, the transaction manager is allowed to use any of

Re: [JBoss-user] CMR

2002-06-14 Thread Phil Cornelius
This bug was fixed last night.. you have to get the latest source from cvs. Yours Phil - Original Message - From: James Compton [EMAIL PROTECTED] To: '[EMAIL PROTECTED]' [EMAIL PROTECTED] Sent: Friday, June 14, 2002 9:16 AM Subject: [JBoss-user] CMR Hi We are trying to use CMR in

Re: [JBoss-user] Using auto increment of mysql for PK

2002-06-14 Thread Simon Stewart
On Sat, Jun 08, 2002 at 09:15:50AM -0500, Dain Sundstrom wrote: That won't work with CMP. It does work with BMP if you are going that route. Unknown primary keys are are at the top of the new features list, so it will be at least a month. Is this going to be DB dependent? I know that

[JBoss-user] 'Transaction marked for rollback, possibly a timeout' problem

2002-06-14 Thread Panagiotis Korros
I have 2 stateless session beans called ClassInfoBean and TreeInfoBean and several cmp entity bean. Both ClassInfoBean and TreeInfoBean calle NodeClassBean. Specifically NodeClassBean calls the findByPrimaryKey method and the getNodeClass method to get the beans value object. ClassInfoBean calls

[JBoss-user] jboss 3.0 + tomcat 4.0.3 context error

2002-06-14 Thread Gaetano Di Gregorio
Title: Message Hi, After installingjboss 3.0 + tomcat 4.0.3 and starting it, I'm trying toopen the http://localhost:8080url to see if tomcat is running as usual. Instead of having the typical tomcat documentation page, I've this error page: Apache Tomcat/4.0.3 - HTTP Status 500 - No

[JBoss-user] JBoss 3.0 Acrtivation Failure

2002-06-14 Thread Kris Allsop
I am having a problem with JBoss 3.0 (i have tried the Jetty and Tomcat 4.0.3 bundles). The full stack trace is below: I think it is falling over trying to activate a container managed stateful session bean. I am pretty sure this might be a configuration problem as the beans deploy and work on

Re: [JBoss-user] JBoss client jar files size

2002-06-14 Thread kris . kristensen
If you think 1 mb. is a problem, try it with weblogic instead. That is about 15 mb you'll have to download. Regards OM Technology A/S Denmark Kris Kristensen [EMAIL PROTECTED] |+-- || Ionel Gardais | ||

Re: [JBoss-user] CMP Bug: Bad SQL for FK field

2002-06-14 Thread Jonathan . O'Connor
Dain, Thanks for the reply. I'm beginning to see why this is hard to do, and why we let CMP containers do the hard work! It works, but it is not a great solution. The problem is you effectively end up with two caches of column values (one in the CMP field and on the CMR field), which could

AW: [JBoss-user] CMP/CMR Example of 1:n or n:m relation for JBoss 3.0.0/PostgreSQL7.2

2002-06-14 Thread Dr. D. Sturzebecher
Hi, On Thu, Jun 13, 2002 at 07:23:52PM +0200, Dr. D. Sturzebecher wrote: Hi, I have been trying to get a 1:n relation (and as well n:m) to work for some time, but to no success. I have a JBoss 3.0.0 with no changes to the setup, except for the DB access, a PostgreSQL 7.2 (both on

Re: [JBoss-user] How to look up queue with jboss3.0

2002-06-14 Thread ch ejb
Dear Gardais, Thanks ,it helped me a little bit but again iam getting error when i am looking the queue.this below is the error iam getting.actually iam looking the queue/A ,which is already defined in the server/default/deploy/jbossmq-destinations-service.xml. do i need to change the look

Re: [JBoss-user] jboss 3.0 + tomcat 4.0.3 context error

2002-06-14 Thread Bruce Scharlau
At 11:49 AM 6/14/2002 +0200, you wrote: Hi, After installing jboss 3.0 + tomcat 4.0.3 and starting it, I'm trying to open the http://localhost:8080http://localhost:8080 url to see if tomcat is running as usual. Instead of having the typical tomcat documentation page, I've this error page:

RE: [JBoss-user] jboss 3.0 + tomcat 4.0.3 context error

2002-06-14 Thread Georg Schmid
Title: Message Hi, Don't worry. Everything is ok. It's just that the Tomcat documentation and example webapps are not included in the JBoss/Tomcat bundle. You have to deploy some war or ear containing a war. Maybe you download and read the quickstart manual from the SourceForge page.

[JBoss-user] JBoss website

2002-06-14 Thread shaun . appleton
Title: JBoss website The JBoss website appears to be playing up - I just get a directory listing.

[JBoss-user] axis on jboss-3.0.0_tomcat-4.0.3

2002-06-14 Thread Bruce Scharlau
Hi all, I'm trying to get axis-beta2 up and running on jboss-3.0.0_tomcat-4.0.3 under win2k and encounter this error: java.lang.NullPointerException at java.io.File.(File.java:180) at org.apache.axis.configuration.FileProvider.(FileProvider.java:132) at

[JBoss-user] Cannot fiond security-domain

2002-06-14 Thread Marcus Ahnve
I cannot for the life of me get the security-domains to work using JBoss-3.0.0.. Since nobody has reported any similar problems previously on this list I assume it is my bad. I've read the Quick Start Guide, searched the mail-archive and toyed around with changing different settings but nothings

RE: [JBoss-user] JBoss website

2002-06-14 Thread Georg Schmid
Title: Message Same with me. Or not: IE gives me 404, Netscape6 (on Solaris) empty pages for all links on the main page. And the front page lost its style (browsers are using default fonts..., /style/style.jsp not working any more?). Georg -Original Message-From: [EMAIL

Re: [JBoss-user] Cannot fiond security-domain

2002-06-14 Thread Marcus Ahnve
I forgot to mention what does not work specifically :-/. Howver this is what I get when deploying 13:36:43,187 ERROR [EjbModule] error adding container to app. org.jboss.deployment.DeploymentException: Could not find the security-domain specified for this container, name=

Re: [JBoss-user] Cannot fiond security-domain

2002-06-14 Thread Marcus Ahnve
Forget that last message, the error reads: 13:36:43,187 ERROR [EjbModule] error adding container to app. org.jboss.deployment.DeploymentException: Could not find the security-domain specified for this container, name= java:/jaas/lecando-realm /Marcus On Fri, 2002-06-14 at 13:46,

Re: [JBoss-user] Unable load stub in rmi/iiop application

2002-06-14 Thread Gerard BUNEL
This is the RMI/CORBA way to manage connections. These stubs are sort of adaptater to the underlying middleware (IIOP in your case). Lee a écrit : Thanks BUNEL for responses. I have successfully resolve this problem,the step is: 1.Use the following command to generate Stub classes:

Re: [JBoss-user] CMR

2002-06-14 Thread Andre Selton
--- Phil Cornelius [EMAIL PROTECTED] wrote: This bug was fixed last night.. you have to get the latest source from cvs. Phil, please answer this to me. This is leting me crazy, I am for one week halted on my project because of this. I have a 2 entity with a relationship 1-N bettwen

Re: [JBoss-user] JBoss website

2002-06-14 Thread Ionel Gardais
netscape 4 on solaris 8 gives my the directory listing. ___ Don't miss the 2002 Sprint PCS Application Developer's Conference August 25-28 in Las Vegas - http://devcon.sprintpcs.com/adp/index.cfm?source=osdntextlink

AW: [JBoss-user] axis on jboss-3.0.0_tomcat-4.0.3

2002-06-14 Thread Jung , Dr. Christoph
You must put axis-config.xml, e.g., under server/default/conf Alternatively, you could use the already installed axis engine/web service archive deployer from jboss-net.sar CGJ -Ursprüngliche Nachricht- Von: Bruce Scharlau [mailto:[EMAIL PROTECTED]] Gesendet: Freitag, 14. Juni 2002

[JBoss-user] How to configure SRP login module

2002-06-14 Thread Becker, Ralf
Hi, I'm searching for help how to configure the SRP login modules in the JBoss 3.0.0 release. The client side comes with a precofigured 'auth.conf' file, but I can't find any documentaion on how to configure the server side. Can anybody tell me how to change the 'login-config.xml' file to use

Re: [JBoss-user] JBoss client jar files size

2002-06-14 Thread Andre Selton
If you want the code run as an applet/swing application the jboss client code must go to the client. One idea is use WebStart to deploy you application. Of course the first time it is loaded it will need to download all but in the future this will be cached on the client.

[JBoss-user] Delegating Jetty Authentication to JBoss

2002-06-14 Thread Tom Mahaffey
I'm interested in delegating Jetty authentication and authorization to JBoss 3.0.0. I have the docs for JBoss 2.4.x, and the section on authentication shows pseudocode on how to do this. However, in JBoss3, I see the class JBossUserRealm. Unless I'm totally missing something, I have not seen

[JBoss-user] Unable to locate login configuration

2002-06-14 Thread Anton R.
Hello, I`m newbie in J2EE programming and I`m looking for advice.. I`ve built example according to http://www.javaworld.com/javaworld/jw-08-2001/jw-0831-jaas.html (Customized EJB security in JBoss ) to run it on JBoss-2.4.4_Tomcat-4.0.1. When I run java-client then error occures:

Re: [JBoss-user] CMR

2002-06-14 Thread Julien Viet
I have had a similar problem but it was in an ejbPostCreate method. I fixed it yesterday and cvs has been updated in head and jboss3.0.0. The problem might come from the findByPrimaryKey which trigger a synchronisation and the synchronisation for cmr is lost after that he consequence is that the

Re: AW: [JBoss-user] axis on jboss-3.0.0_tomcat-4.0.3

2002-06-14 Thread Bruce Scharlau
Christoph, more about the setup (which I thought I'd put in, but guess I didn't, sorry about that): jboss-catalina/server/default/lib axis.jar, commons-logging.jar, jaxp.jar, jaxrpc.jar, log4j.jar, xerces.jar, wsdl4j.jar, tt-bytecode.jar (ie the ones that come with apache-axis, plus the other

Re: [JBoss-user] JBoss client jar files size

2002-06-14 Thread Greg Turner
One solutions would be to rearchitect your app so that all the parts are MBeans. Then package up all the parts as sar files. You could then install a minimal version of JBoss on clients' machines and configured to deploy from a central server. Then the client machines only have to start

Re: [JBoss-user] Shorten server boot time

2002-06-14 Thread Greg Turner
[EMAIL PROTECTED] wrote: Hi Greg, please send again your jboss-service.xml - I just joined this list. Thanx, Aralos Doh.. Good Idea !! In true_minimal/lib, put log4j.jar, jnpserver.jar,jnet.jar,jmxtools.jar,jmxri.jar,jboss.jar In true_minimal/deploy put

Re: [JBoss-user] Problem binding on Name Server using RMI/IIOP

2002-06-14 Thread Gerard BUNEL
Hello Francisco, I've tried hard to find where was my problem but still not found any solution. I've tested many configurations: using jacorb or not on client side, using a simple COSNaming without JBoss to try to isolate the problem. And that's the point I am: Below is the stack trace from

Re: [JBoss-user] Delegating Jetty Authentication to JBoss

2002-06-14 Thread Jules Gosnell
Tom, JBossUserRealm is the bridge between Jetty and JBossSX. If you are running JBoss/Jetty, you are already using it. To control the backend security stuff, it's now a matter of configuring JBossSX, not Jetty. There should be something in the free doc - it's not my bag ! Jules Tom

[JBoss-user] Need examples of working 1-to-N CMR under JBoss 3.0.0

2002-06-14 Thread Patrice Cousineau
Hi all, I would greatly appreciate any working examples that you may have of a 1-to-N relationship between 2 entity beans Running on Jboss 3.0.0. I'm using MySQL as my database, but a working example using any RDBMS will be more than welcome. I'm pretty sure that my Java code is correct, but

[JBoss-user] Looking for free J2EE components

2002-06-14 Thread Tobias Frech
Hi folks! I am looking for further suggestions which components should be covered by a survey I am going to write. The components should be free and help J2EE developers to more efficiently develop J2EE based applications. I am not talking about development tools (like JBuilder or xdoclet), but

Re: [JBoss-user] Looking for free J2EE components

2002-06-14 Thread Nicholas
I could be wrong, but I do not think either Flux or htmlKona are free. //Nicholas --- Tobias Frech [EMAIL PROTECTED] wrote: Hi folks! I am looking for further suggestions which components should be covered by a survey I am going to write. The components should be free and help J2EE

AW: AW: [JBoss-user] axis on jboss-3.0.0_tomcat-4.0.3

2002-06-14 Thread Jung , Dr. Christoph
Bruce, web services are in jboss.net not deployed as .war files (that is what the webcontainer is reponsible for), but as .wsr files containing the axis deployment descriptor and additional serialization code. I have not yet looked at how to get the *.jws files deployed this way, but I guess

[JBoss-user] yet another documentation request

2002-06-14 Thread Eric Kaplan
Where can I go to find a complete up to date reference on jboss 3.0 configuration? I'd pay a lot more than the $10 you guys are asking for the hardcopy documentation, which at this point is out of date wrt 3.0. Thanks Eric Kaplan Armanta, Inc. 55 Madison Ave. Morristown, NJ 07960 Phone: (973)

RE: [JBoss-user] RE: JBoss 3/Tomcat 4.0.3 IllegalAccessError

2002-06-14 Thread Jerry Smith
Ah-ha! It's the classloader that's killing me. Thanks for the info! -Original Message- From: Adrian Brock [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 13, 2002 5:56 PM To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] RE: JBoss 3/Tomcat 4.0.3 IllegalAccessError Hi, StandardSession

Re: [JBoss-user] yet another documentation request

2002-06-14 Thread Greg Turner
Have you taken a look at the QuickStart Guide from here? http://sourceforge.net/project/showfiles.php?group_id=22866 Eric Kaplan wrote: Where can I go to find a complete up to date reference on jboss 3.0 configuration? I'd pay a lot more than the $10 you guys are asking for the hardcopy

RE: [JBoss-user] NullPointerException while trying to obtain JMS

2002-06-14 Thread Demyanovich, Craig - Apogent
I had the same problem and when I changed lookup(TopicConnectionFactory) to lookup(ConnectionFactory) it worked for jboss3. Mark made the original post on my behalf, as my subscription request was taking quite some time. Now that I'm here, let me carry on the discussion. I neglected to

[JBoss-user] Sending queue messages from SB (to MDB)

2002-06-14 Thread Jonas Bergqvist
Hi all! I have the following problem: I have successfully deployed a Message Driven Bean. I have a stand-alone java client which successfully sends a message to the queue and the MDB receives and processes this message. But when I try to do the same thing with a Session Bean the

Re: [JBoss-user] Looking for free J2EE components

2002-06-14 Thread Tobias Frech
Nicholas wrote: I could be wrong, but I do not think either Flux or htmlKona are free. //Nicholas Your are perfectly right. I extracted these two names from an article and didn't check their licenses. Two less candidates ... :) Ciao, Tobias Turbine, Struts, cocoon, Torque, webmacro,

[JBoss-user] possible to use COUNT in ejbql / jbossql / declared sql ?

2002-06-14 Thread Marius Kotsbak
Is it possible to get the COUNT-functionality in CMP 2.0? I don't think EJB-QL suppports it, and JBossQL complains when including it. I couldn't find a way to specify it using declared sql either. I know it is possible to do it with a finder and .size on the collection returned, but I think this

[JBoss-user] 3.0 a moving target?

2002-06-14 Thread Eric Kaplan
I was happily using jboss3.0.0RC1_tomcat-4.0.3. However, I stumbled across a problem with hot re-deploy in which it seemed that after i hot re-deployed by .ear i got a classcastexception on the server when trying to lookup a bean that had worked before. It was almost as if the jndi mapping for

Re: [JBoss-user] JBoss Has Many Open Files

2002-06-14 Thread Scott M Stark
Unpackaged deployments are not copied and there are no jars that would be kept open the the URLClassLoaders. You could also just crank up the open files limit. I don't know what the absolute upper bound on linux is. Scott Stark Chief Technology Officer JBoss Group, LLC

Re: [JBoss-user] JBoss3.0.0 final / tuned-updates

2002-06-14 Thread Dan Christopherson
I don't think that's a bug. The tuned-updates and the store are separate issues. Tuned updates sends a sql update query altering only the fields whose state has been altered. Modified Beans need to be stored right _before_ a findXXX is executed to guarantee consistent results. -danch Ionel

[JBoss-user] JBossManagedConnectionPool throws ResourceException

2002-06-14 Thread Arjen Hup
Currently we are migrating our applications from JBoss-2.4.6 to 3.0. We have a problem with the new ConnectionPool wich shows the following error: Does anyone have an idea? Thanks in advance, Arjen [org.jboss.resource.connectionmanager.JBossManagedConnectionPool] ResourceException returning

[JBoss-user] JBossMQ questions

2002-06-14 Thread Gary Grobe
Can someone explain this, or give an example? According to these JBoss docs (http://www.jboss.org/online-manual/HTML/ch08s07.html), it seems queues can be added on-the-fly, or programatically (it states) w/o needing to administer them. The reason I need this is I don't know the names of my queues

Re: [JBoss-user] 3.0 a moving target?

2002-06-14 Thread Burkhard Vogel
Hi, JDBC-access has changed, see the provided examples. As for portableremoteobject.narrow: if you are on JDK 1.4, this is a known sun bug. Regards, Burkhard - Original Message - From: Eric Kaplan [EMAIL PROTECTED] To: Jboss-User [EMAIL PROTECTED] Sent: Friday, June 14, 2002 10:22 AM

Re: [JBoss-user] possible to use COUNT in ejbql / jbossql /declared sql ?

2002-06-14 Thread Marcus Ahnve
MVCSoft, http://www.mvcsoft.com, supports as an extension to EJBQL. /Marcus On Fri, 2002-06-14 at 17:24, Marius Kotsbak wrote: Is it possible to get the COUNT-functionality in CMP 2.0? I don't think EJB-QL suppports it, and JBossQL complains when including it. I couldn't find a way to

[JBoss-user] security-domain make jboss loop.

2002-06-14 Thread Dag Kilskar Naess
Hi all! JBoss doesn't agree with me today, and I have (temporarly) run out of ideas on how to persuade it ro see thiings my way. Can you help me? This is the problem: Since data to authenticate users lies within 2 entity CMP beans. I have subclassed the

Re: [JBoss-user] Delegating Jetty Authentication to JBoss

2002-06-14 Thread Tom Mahaffey
Thanks Jules...that at least narrows me down. Here's what I've done so far: In JBoss: 1) Added an application-policy element to login-conf.xml to use UsersRolesLoginModule 2) Added a users.properties and roles.properties in server/myservername/conf In my webapp: 1) Altered

RE: [JBoss-user] 3.0 a moving target?

2002-06-14 Thread Eric Kaplan
jdbc access has changed from 3.0RC to 3.0? if so, where are the NEW examples? and yes, i am on jdk1.4. any news about this bug getting fixed? regards eric -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Burkhard Vogel Sent: Friday, June 14, 2002

Re: [JBoss-user] Problem binding on Name Server using RMI/IIOP

2002-06-14 Thread Francisco Reverbel
Hello Gerard, Right now I would suggest you to use JacORB at both sides, so we can weed out any chance of ORB interoperability problems. Please use at the client side the jacorb.jar file in the JBoss 3.0 distribution. From the stack trace below (the second one) I see that you have already

Re: [JBoss-user] JBoss Has Many Open Files

2002-06-14 Thread Hunter Hillegas
Just FYI, in case someone else runs into this... The default open file limit for Red Hat 7.2 is 8192 files. We doubled it and have been watching our system to see if we were just hitting a resource limit. It doesn't look like JBoss is leaking file descriptors... But if we suspect that I'll file

RE: [JBoss-user] JBoss Has Many Open Files

2002-06-14 Thread Lucas McGregor
We ran into a big problem with max number of open files. Remember, on UNIX, all network connections are counted as open files too. I run JBoss on a solaris box, so you can configure this in the /etc/system by adding the following lines: * THIS SETS THE MAX NUMBER OF OPEN FILES A

[JBoss-user] xaRes not enlisted(JBoss3Final BUG or !BUG?)

2002-06-14 Thread Andrew
Hi, in my stateless session bean client invokes method1 that in turns invokes method2 of the same bean: int method1(){ ((Bean)ctx.getObject()).method2();//ctx is SessionContext object } trans-attributes: method1- Never method2- Required. method1 dosen't make use of any datasources but

Re: [JBoss-user] 3.0 a moving target?

2002-06-14 Thread David Jencks
docs/examples/jca or in cvs at connector/etc/example-config Also read the quickstart guide from sourceforge download page. david jencks On 2002.06.14 12:26:39 -0400 Eric Kaplan wrote: jdbc access has changed from 3.0RC to 3.0? if so, where are the NEW examples? and yes, i am on jdk1.4.

[JBoss-user] Open Ports Question

2002-06-14 Thread Deepak Kumar
Hi All, I am running JBoss 2.4.6 bundled with Tomcat 4.0.3. Every once in a while, when JBoss/Tomcat is started, I get this as a result of nmap: [deepak@deepak: deepak] nmap mephisto Starting nmap V. 2.54BETA31 ( www.insecure.org/nmap/ ) Warning: You are not root -- using TCP pingscan

[JBoss-user] XATxConnectionManager with Oracle?

2002-06-14 Thread Geer, Benjamin
I'm trying to get XA transactions to work in JBoss 3.0.0 with Oracle 9i. I've tried the oracle-service.xml provided with JBoss in docs/examples/jca (which uses LocalTxConnectionManager), and it works fine. I modified it to make an oracle-xa-service.xml (attached), using XATxConnectionManager,

[JBoss-user] Tomcat/Jetty/JBoss Authentication through NT Domain

2002-06-14 Thread Michael Angelo Libio
I was wondering if anyone has ever come up with or thought of a solution for an internal web application that authenticates the users against the NT Domain controller. Id like to use the built-in authentication mechanism provided by Tomcat of Jetty (via Realms), maybe even delegate it to

Re: [JBoss-user] Error with generated sql statements for cmp using cloudscape

2002-06-14 Thread Dain Sundstrom
Scheil, Sven wrote: hello, i've tried to deploy an entity bean on jboss 3.0.0 that i've developed and tested with the j2ee ri and cloudscape. cloudscape's table names are case sensitive. the sql statements generated from the persistence manager of the j2ee ri are build with around the

RE: [JBoss-user] How to Look up a remote Object via JNDI

2002-06-14 Thread Starsinic, Frank
Title: RE: [JBoss-user] How to Look up a remote Object via JNDI In JBoss, If i create an object and put it into JNDI like this, how do i lookup and get a reference to that object from a remote machine.. Here's how i'm binding the object... ServiceSettings ss = new ServiceSettings();

RE: [JBoss-user] XATxConnectionManager with Oracle?

2002-06-14 Thread Igor Fedorenko
Title: RE: [JBoss-user] XATxConnectionManager with Oracle? I spent last two days trying to make this work and it looks like there are number of issues with both oracle xa datasource and jboss itself. I am getting close to have this configuration work (it's oracle 8.1.7.3 in my case but this

[JBoss-user] forums

2002-06-14 Thread Gary Grobe
Any idea when they'll be back up? ___ Don't miss the 2002 Sprint PCS Application Developer's Conference August 25-28 in Las Vegas - http://devcon.sprintpcs.com/adp/index.cfm?source=osdntextlink

[JBoss-user] JBoss and Jetty Configuration

2002-06-14 Thread bryan hansen
I had a basic servlet that was deploying just fine on Tomcat and JBoss 2.4.4. I tried to deploy the app on Jetty and JBoss 3.0.0 and it deploys fine, but I am unable to find where the page was deployed to. Is there a different url pattern for Jetty? I don't even get a splash page to come up for

Re: [JBoss-user] XATxConnectionManager with Oracle?

2002-06-14 Thread David Jencks
Thanks for your work on this. Please post the results when you are satisfied. IMO the entire xa wrapper needs replacing which I unfortunately won't have time for soon. I'm not sure if associateConnection can be implemented easily. You can avoid it being called if you always close connection

Re: [JBoss-user] CMR

2002-06-14 Thread Dain Sundstrom
Julien, You are right; this is the same problem. The problem you were having, could happen in any business method. -dain Julien Viet wrote: I have had a similar problem but it was in an ejbPostCreate method. I fixed it yesterday and cvs has been updated in head and jboss3.0.0. The

Re: [JBoss-user] Using auto increment of mysql for PK

2002-06-14 Thread Dain Sundstrom
Simon Stewart wrote: On Sat, Jun 08, 2002 at 09:15:50AM -0500, Dain Sundstrom wrote: That won't work with CMP. It does work with BMP if you are going that route. Unknown primary keys are are at the top of the new features list, so it will be at least a month. Is this going to be DB

Re: [JBoss-user] possible to use COUNT in ejbql / jbossql / declared sql ?

2002-06-14 Thread Dain Sundstrom
There was a guy working on this on the side, but I think he got to busy with work. Yes it is possible, and not to difficult. It involves a quick patch to the grammar, and a rewrite of the results handling code, which needs one anyway. The results handling code was designed to be simple and

Re: [JBoss-user] Doesn't anyone have this problem?

2002-06-14 Thread danch
You really shouldn't need to call configure - the JBoss startup does. Mitchell Kim wrote: Not calling DomConfigurator.configure()? That certainly a viable thing to try. ___ Don't miss the 2002 Sprint PCS Application Developer's

[JBoss-user] How to get XA transactions with oracle datasource

2002-06-14 Thread Tim
The oracle-service.xml in cvs seems to be using local transactions. (??) Does anyone know how to configure it to use xa transactions? I need this to get my data access from inside MDBs working. I've looked at the volunteer docs, but they seem to be referring to 2.4.x on this. Thanks.

Re: [JBoss-user] CMR

2002-06-14 Thread Julien Viet
I understand why Dain, it is because the EntityCreation interceptor invokes the ejbPostCreate() as any other business methods of the bean by making a new Invocation in the interceptors chains. - Original Message - From: Dain Sundstrom [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent:

Re: [JBoss-user] JBoss client jar files size

2002-06-14 Thread Chris Chen
actually, java webstart will not solve his problems with using JBoss on the client side. There are problems with webstart working with JAAS as of right now due to some classloading issues. From what I hear, JDK 1.4 already has webstart as part of the package and the webstart version that

Re: [JBoss-user] XATxConnectionManager with Oracle?

2002-06-14 Thread Radu Mateescu
This may be a little out of the topic, but I thought it won't hurt to have a look too: In my attempts to write a resource adapter I've noticed a strange behaviour (I also posted some messages on this forum about it): When the getConnection is called for the first time, everything works fine. For

Re: [JBoss-user] JBoss Has Many Open Files

2002-06-14 Thread Stephen Davidson
Greetings. In Linux, each Java Thread needs a file descriptor While you are tuning, watch out for thread and process counts as well. What normally happens is that each Java thread takes a Linux process, and each linux process needs a File Descriptor. Linux defaults are

Re: [JBoss-user] NullPointerException while trying to obtain JMS

2002-06-14 Thread Slava Voronin
I run sucsessfully example under JbossBook-2.4.x in chap4 with messages. I use lookup(TopicConnectionFactory) for this version. The same example work for jboss3 if changed lookup(TopicConnectionFactory) to lookup(ConnectionFactory). I bought this documents for $10. Demyanovich, Craig - Apogent

[JBoss-user] 2.4.6 w/ 4.0.3 - Trying to find a workaround for context definition

2002-06-14 Thread Duarte Nuno Loreto
Hello! We started developing an application in JBoss2.4.4 w/ Tomcat 3.2.3. We have a file (NS_Ref from the JacORB implementation) that we used to put on the JBoss-2.4.4_Tomcat-3.2.3/tomcat/webapps/ROOT so that it would be available to remote clients. When we moved to 2.4.6 w/ 4.0.3, we

[JBoss-user] problems running interest client with new Jboss 3.0

2002-06-14 Thread ytse
Hi all, I'm having some problems running the interest client with the new jboss 3.0. If I run it with jboss 3.0 RC2, it runs fine . Here's the output from the console : ant intro-interest-client Buildfile: build.xml validate-servlet: validate-jboss: fail_if_not_valid: init: [echo]

RE: [JBoss-user] XATxConnectionManager with Oracle?

2002-06-14 Thread Igor Fedorenko
Title: RE: [JBoss-user] XATxConnectionManager with Oracle? Thanks for a helpful hint, David. As you correctly guessed my test ssb was leaking sql connections. I'll post my patch and config files here shortly. -Original Message- From: David Jencks [mailto:[EMAIL PROTECTED]] Sent:

Re: [JBoss-user] How to get XA transactions with oracle datasource

2002-06-14 Thread David Jencks
I've been asking for months for someone with Oracle to please contribute an xa configuration, with so far no takers. david jencks On 2002.06.14 14:45:40 -0400 Tim wrote: The oracle-service.xml in cvs seems to be using local transactions. (??) Does anyone know how to configure it to use xa

[JBoss-user] JBoss Documentation

2002-06-14 Thread Patrick Munis
is the documentation based on Jboss 3.0 cause the website says it covers Jboss 2.4.5? ___ Don't miss the 2002 Sprint PCS Application Developer's Conference August 25-28 in Las Vegas -

RE: [JBoss-user] XATxConnectionManager with Oracle?

2002-06-14 Thread Igor Fedorenko
Title: RE: [JBoss-user] XATxConnectionManager with Oracle? Attached, please fine a patch which fixes problems with Oracle XA driver I have described earlier and example configuration file. The patch is against JBoss_3_0_0 cvs tag (branch?). Hope this helps. PS: sorry for html posting

[JBoss-user] XDoclet: 1-n relationship definition

2002-06-14 Thread Gary S. Cuozzo
Hey all, I'm trying to convert an existing application that I had written the hard way over to use XDoclet. I have two beans, Client and Domain, that I'm trying to relate. A Client can have many Domains. Seems like it should be straight forward but is throwing an exception

[JBoss-user] xml config files in 3.0.0

2002-06-14 Thread Beau Cronin
Hi all. I have a question about where to put config information in 3.0.0. I have a MySQL database which I want to use as a datasource. I've used the mysql-service.xml example file as a template and modified it for my purposes. I assume that these settings should go somewhere in the same

Re: [JBoss-user] JBoss Documentation

2002-06-14 Thread Ryan Marsh
To my knowledge there isn't even for-pay 3.0 documentation much less free. I've been just winging it. -ryan On Fri, 2002-06-14 at 16:03, Patrick Munis wrote: is the documentation based on Jboss 3.0 cause the website says it covers Jboss 2.4.5?

Re: [JBoss-user] xml config files in 3.0.0

2002-06-14 Thread Gary S. Cuozzo
I don't know if this is the right thing to do or not... But I deploy my datasource XML file (postgres) separately and before I deploy my application. I just copy the XML file right into the deploy directory and it works. Then, I just redeploy the application as-needed. gary. Beau Cronin

RE: [JBoss-user] What's better FREE BEER or JNDI?

2002-06-14 Thread Starsinic, Frank
Title: RE: [JBoss-user] What's better FREE BEER or JNDI? It seems like FREE BEER is better because I cannot for the life of me figure this out. If you can help shed some light, i'd appreciate it. In JBoss, If i create an object and put it into JNDI like this, how do i lookup and get a

Re: [JBoss-user] XDoclet: 1-n relationship definition

2002-06-14 Thread Tom Mahaffey
Are you calling client.getDomains() remotely? If so, the problem may be that CMP is for local interfaces only. Also, you have view-type=both for the CMP methods...they should be view-type=local Then you'll need to make sure that the getClient/setClient methods are setting/getting local

Re: [JBoss-user] xml config files in 3.0.0

2002-06-14 Thread Tom Mahaffey
Using JBoss's Hypersonic config as an example, I've been putting my other DB configs in the deploy directory. -mahaffey --- Beau Cronin [EMAIL PROTECTED] wrote: Hi all. I have a question about where to put config information in 3.0.0. I have a MySQL database which I want to use as a

Re: [JBoss-user] Tomcat/Jetty/JBoss Authentication through NT Domain

2002-06-14 Thread Sundaram Ramasamy
check out here: http://sfg.sourceforge.net/ - Original Message - From: Michael Angelo Libio To: [EMAIL PROTECTED] Sent: Friday, June 14, 2002 1:04 PM Subject: [JBoss-user] Tomcat/Jetty/JBoss Authentication through NT Domain I was wondering if anyone

Re: [JBoss-user] How to get XA transactions with oracle datasource

2002-06-14 Thread Tim
ok, i shall try on monday i think someone else posted a message on this subject, but i have only seen one message - i only recently subscribed to the list hopefully forums will be up soon :) and it will be easier to communicate - Original Message - From: David Jencks [EMAIL PROTECTED]

Re: [JBoss-user] Delegating Jetty Authentication to JBoss

2002-06-14 Thread Tom Mahaffey
I'm still having no success. Can someone tell me if I need a jboss-web.xml in my WAR/EAR? I see jboss-web.xml in the JBoss2.4x docs and the free docs, but see no mention in the JBoss-3.0.0 QuickStart guide. I just don't understand where the delegation of authentication from Jetty to JBoss is

  1   2   >