Re: [JBoss-user] Deployment Problem: Creating fk-constraints before creating tables...???

2003-08-18 Thread Stefan Schubert
On Thu, 14 Aug 2003 19:52:55 +0300, Alexey Loubyansky [EMAIL PROTECTED] wrote: Hello Stefan, it should not happen. First, a table is created. Then, foreign key constraints are generated only if the related table exists. What JBoss version you are using? (jboss-3.2.0_tomcat-4.1.24) Hi, last

AW: [JBoss-user] JBoss.net questions

2003-08-18 Thread Jung , Dr. Christoph
Hi Marco, of course you are free to use any client library that supports the SOAP1.2 standard in order to contact our server-side AXIS. I´m currently trying to get ksoap2 connected, but there are of course a lot of things to be sorted out manually (namespaces, deserialization, etc.) There is

Re: [JBoss-user] Deployment Problem: Creating fk-constraints beforecreating tables...???

2003-08-18 Thread Alexey Loubyansky
Could you try it with 3.2.2 (better from CVS) and if it fails, please, submit a bug report. Thank you, alex Stefan Schubert wrote: On Thu, 14 Aug 2003 19:52:55 +0300, Alexey Loubyansky [EMAIL PROTECTED] wrote: Hello Stefan, it should not happen. First, a table is created. Then, foreign key

[JBoss-user] multiple instances of jboss on one server

2003-08-18 Thread Bruce Scharlau
Hi all, I though I'd had this sorted before, but it doesn't seem to work now. I've put one copy of jboss-3.2.1 in one location of a solaris server, say /local/jboss-3.2.1 this has everything BUT the server directory itself. It has full r+w+x permissions. The server/default directory is under

Re: [JBoss-user] CMP2 JDBCCMP2xFieldBridge Storing Non-Dirty Fields

2003-08-18 Thread Alexey Loubyansky
It is fixed in 3.2.2RC3 in CVS. alex Nicholas wrote: JBoss 3.2.2RC2 Win32 JDK 1.4.2 I have an entity bean which is being updated with a coarse grained method that passes a value object which was previosuly retrieved. In this test case, only one field was updated, yet the store command stores

Re: [JBoss-user] Deployment Problem: Creating fk-constraints before creating tables...???

2003-08-18 Thread Stefan Schubert
Hi Alex, On Mon, 18 Aug 2003 11:38:06 +0300, Alexey Loubyansky [EMAIL PROTECTED] wrote: Could you try it with 3.2.2 (better from CVS) and if it fails, please, submit a bug report. OK I will try it out somewhere during the week and will post the results again. Cheers, Stefan --

[JBoss-user] Entity Context Error

2003-08-18 Thread David McLoughlin
When I call the following method I get the following error. This is a method in my Entity Bean public void setEntityContext(EntityContext ctx) throws RemoteException { public void setEntityContext(EntityContext ctx) throws RemoteException { this.ctx = ctx; env =

[JBoss-user] JMX Timer

2003-08-18 Thread Juraj . Lenharcik
Hi, I am trying to implement a Timer-service which invokes an EJB workflow. This MBean has to be independent from the running container. So I dont want to use the Jboss packeges, only the JMX. I am able to deploy and install the MBean, but I get no notification. Also the available examples

RE: [JBoss-user] file upload problem

2003-08-18 Thread Brian McSweeney
After more digging around, Im beginning to suspect that this is a JBoss restriction. Ive read in some email archives that perhaps I dont have write access to the file system. a) Is this true b) If so, is there a way get around it I need to be able to upload files from a web page.

RE: [JBoss-user] file upload problem

2003-08-18 Thread Rupp, Heiko
HI, After more digging around, I'm beginning to suspect that this is a JBoss restriction. iTracker(.sf.net) stores files on disk on JBoss, so this is doable. Afaik, the J2EE inventors considered the filesystem as non transaction save (consider two servers writing to the same path on a

RE: [JBoss-user] JMX Timer

2003-08-18 Thread Marco.Mistroni
Hi, i have implemented a similar case using Timer service and a MessageDriven bean, but in jboss. will it help? i guess how i am retrieving the Timer service is independent from the JMX implementation anyway can u tell me how your application is working? i can attach (via private email)

RE: [JBoss-user] Entity Context Error

2003-08-18 Thread Danny . Yates
As the exception says: Deprecated According to the documentation, EJBContext.getEnvironment() is deprecated (and, IIRC, it has been for some time). Deprecated. Use the JNDI naming context java:comp/env to access enterprise bean's environment. Dan. -- Danny Yates -Original Message-

AW: [JBoss-user] JMX Timer

2003-08-18 Thread Juraj . Lenharcik
Hi Marco, I am new to JMX but I assume a pure JMX implementation should be portable to other servers. I have developed a MBean which can be started. If this MBean is started, the configuration will be loaded and the Listener added. Thats all I want to do. I would be interested in your code.

[JBoss-user] Securing JNDI lookups

2003-08-18 Thread Poppe, Troy
Is there a way to setup a JAZN realm to handle JNDI lookups over JNP? I'd like to be able to require a username and password to connect, and log all connections that come in. I haven't been ablt to find any documentation on this in the comprehensive docs. Anyone done this before and can shed

RE: [JBoss-user] file upload problem

2003-08-18 Thread Brian McSweeney
Thanks Heiko, Before I start digging into iTracker's source code, perhaps someone has done this before? Cheers, Brian -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Rupp, Heiko Sent: 18 August 2003 13:38 To: [EMAIL PROTECTED] Subject: RE: [JBoss-user]

Re: [JBoss-user] JMX Timer

2003-08-18 Thread Adrian Brock
super.start(); If you want your own ObjectName override the preRegister method. Regards, Adrian On Mon, 2003-08-18 at 13:16, [EMAIL PROTECTED] wrote: Hi, I am trying to implement a Timer-service which invokes an EJB workflow. This MBean has to be independent from the running container. So

Re: [JBoss-user] multiple instances of jboss on one server

2003-08-18 Thread Adrian Brock
The -c option is only really intended for configs in the jboss distribution. You should use -Djboss.home.dir=whatver For the ports, investigate the binding service. Regards, Adrian On Mon, 2003-08-18 at 10:21, Bruce Scharlau wrote: Hi all, I though I'd had this sorted before, but it

AW: [JBoss-user] JMX Timer

2003-08-18 Thread Juraj . Lenharcik
yes I saw it now... :-) it is working now -Ursprungliche Nachricht- Von: Adrian Brock [mailto:[EMAIL PROTECTED] Gesendet: Montag, 18. August 2003 15:06 An: [EMAIL PROTECTED] Betreff: Re: [JBoss-user] JMX Timer super.start(); If you want your own ObjectName override the preRegister

Re: [JBoss-user] Entity Context Error

2003-08-18 Thread Adrian Brock
You should use new InitialContext().lookup(java:comp/env); Regards, Adrian On Mon, 2003-08-18 at 12:44, David McLoughlin wrote: When I call the following method I get the following error. This is a method in my Entity Bean public void setEntityContext(EntityContext ctx) throws

[JBoss-user] error in running application that uses JDO - cannot locate persistencemanagerfactory

2003-08-18 Thread Marco.Mistroni
hi all, i have written a web app that uses jdo. i have written a class named Test in the package com.marco.test i have placed the Test.jdo in the same package, and then created a jar file. i have subsequently added the jar file to the lib directory of the web application. the Test.jdo

RE: [JBoss-user] file upload problem

2003-08-18 Thread Brian McSweeney
Yeah Neal, That was the problem. A struts guy sent me the same answer about 2 minutes ago. Thanks very much for the reply. Appreciate the help. Brian -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Neal Sanche Sent: 18 August 2003 14:46 To: [EMAIL

RE: [JBoss-user] file upload problem

2003-08-18 Thread Brian McSweeney
Hi Adrian, Thanks for the help. Actually I figured out what the problem was. Just in case anyone else encounters this problem. I was trying to upload the file in a servlet and I thought JBoss was blocking the servlet from accessing the file system. This would have been strange from a servlet

Re: [JBoss-user] error in running application that uses JDO - cannotlocate persistencemanagerfactory

2003-08-18 Thread Alexey Loubyansky
Unfortunately, it is a limitation of JDODeployer. At the moment, you can't place JDO jar packages into the lib directories of the WAR. The JAR in the WAR will be added to the classpath but won't be deployed by the JDODeployer. Actually, it behaves like EJBDeployer. alex [EMAIL PROTECTED]

RE: [JBoss-user] file upload problem

2003-08-18 Thread Alastair Rodgers
My company is doing file upload via a servlet without any problems (JBoss 3.0.6 with Jetty, using Jason Hunter's com.oreilly.servlet.MulipartRequest class to get the file from the HTTP request). I think the IO restrictions Heiko is referring to are the EJB restrictions - i.e. no file system

Re: [JBoss-user] CMP2 JDBCCMP2xFieldBridge Storing Non-Dirty Fields

2003-08-18 Thread Nicholas
I got the 3.2.x snapshot, built the 3.2.2RC3 server and ran the same test, and the results seem to be exactly the same: (The only thing I am not sure about is that I did not rebuild the EJB jar with the RC3 libraries) 2003-08-18 10:37:21,900 115446 DEBUG

[JBoss-user] ejbStore(): Again!!!

2003-08-18 Thread Muraly R
Hi Gurus, One of the main problems I am facing now is transactions getting stuck in the Entity beans ejbStore() method. I am using Jboss3.0.7 and Sybase 7.0.3 and I am having Container managed transaction. My project currently involves of porting the application from JOnAs 2.4 to

[JBoss-user] [ANN] Pixory beta-3.2

2003-08-18 Thread joe panico
Pixory is a freeware personal image server that comes package ready for hot-deploy into jboss. The application can be found - http://www.pixory.org WHATSNEW in this release: Pixory Beta.3.1 - Pixory Beta.3.2 (08/17/03) Fixed bugs: * filename

Re: [JBoss-user] ejbStore(): Again!!!

2003-08-18 Thread Alexey Loubyansky
Are there more some info available other than I have a problem in ejbStore? is it BMP? does it occur for one client (one thread)? what is the tx isolation level in the db? any stacktrace? alex Muraly R wrote: Hi Gurus, One of the main problems I am facing now is transactions getting stuck

[JBoss-user] (no subject)

2003-08-18 Thread Marko Friedemann
Hi folks, sorry for the long message, but I think I have to report this or I'll find me working around it again next time. After finally being able to go from 3.2.0beta to 3.2.1, I realized that a flaw I encountered earlier in the jboss.net module for xdoclet still exists. The flaw affects the

Re: [JBoss-user] CMP2 JDBCCMP2xFieldBridge Storing Non-Dirty Fields

2003-08-18 Thread Alexey Loubyansky
Well, try again tomorrow. It's non-flying weather today ;) Have you received my answer on your private email to me? I noted, you should wait for 24 hours before checking it out. alex Nicholas wrote: I got the 3.2.x snapshot, built the 3.2.2RC3 server and ran the same test, and the results seem

Re: [JBoss-user] error in running application that uses JDO - cannotlocate persistencemanagerfactory

2003-08-18 Thread Alexey Loubyansky
Yes, it is possible. For now, you can deploy war and jar seperately from each other, or pack them together in a JAR or SAR archive. JAR and SAR deployers look for nested packages and deploy them. EAR deployer deploys only packages specified in application.xml (there is no jdo module). So, you

Re: [JBoss-user] Load-Balancing Problems

2003-08-18 Thread Simone Milani
Hi Sacha, Thanks again! Yes is very easy to check it provided that you know how to check it :) Cheers Simone - Original Message - From: Sacha Labourey [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, August 16, 2003 7:20 AM Subject: RE: [JBoss-user] Load-Balancing Problems

[JBoss-user] Adding a virtual host to embedded tomcat

2003-08-18 Thread Brian McSweeney
Hi all, I want to add a virtual host to the embedded tomcat service that comes with Jboss. It seems that the way I do this is in the deploy\jbossweb-tomcat.sar\META-INF\jboss-service.xml file I tried adding Context path=/imageStore docBase=c:/imageStore debug=0

RE: [JBoss-user] Load-Balancing Problems

2003-08-18 Thread Sacha Labourey
BTW, I implemented this feature this week-end: if you don't have at least one clustered invoker attached to a clusteredtrue/clustered container, you receive a WARNING message at deployment time. It is in Branch_3_2. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]

RE: [JBoss-user] Load-Balancing Problems

2003-08-18 Thread Kevin Duffey
When is 3.2.2 final going to be released and put up? I seem to have a hell of a time getting the branch out of CVS and building it, not to mention our boss's are not keen on seeing us use our own compiled version of jboss. They prefer stable releases. As we have a need for all these load

RE: [JBoss-user] error in running application that uses JDO - cannot locate persistencemanagerfactory

2003-08-18 Thread Marco.Mistroni
Hi Alexey, i tried to do the following, but i didnt help out.. i have packaged my webapp as WAR file. however, i kept the package that contains jdo classes outside the WAR file, and i added that jar to JBOSS CLASSPATH. however, i keep on getting same exception is it so that in order

RE: [JBoss-user] Load-Balancing Problems

2003-08-18 Thread Sacha Labourey
In the meantime, this should be quicker: http://jboss.sf.net/snapshots/ Every day at 2h00 US Western Time -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Kevin Duffey Sent: lundi, 18. août 2003 19:14 To: [EMAIL PROTECTED] Subject: RE:

Re: [JBoss-user] CMP2 JDBCCMP2xFieldBridge Storing Non-Dirty Fields

2003-08-18 Thread Nicholas
Oherr... yes Sorry about that. I will try again tomorrow. Cheers. //Nicholas --- Alexey Loubyansky [EMAIL PROTECTED] wrote: Well, try again tomorrow. It's non-flying weather today ;) Have you received my answer on your private email to me? I noted, you should wait for 24 hours

Re: [JBoss-user] Adding a virtual host to embedded tomcat

2003-08-18 Thread Gary S. Cuozzo
I have had very little luck getting tomcat configurations that work fine in standalone tomcat to work in jboss-tomcat. Particularly with virtual hosts and configuring multiple contexts. I've posted multiple questions about the issues to this list (quite some time ago) but have never gotten any

Re: [JBoss-user] error in running application that uses JDO - cannotlocate persistencemanagerfactory

2003-08-18 Thread Alexey Loubyansky
Just drop the JAR into the deploy dir. Then do the same for WAR. There is an example JDO app on the site. Please, check it. alex [EMAIL PROTECTED] wrote: Hi Alexey, i tried to do the following, but i didnt help out.. i have packaged my webapp as WAR file. however, i kept the package that

RE: [JBoss-user] MDB Singleton retry semantics

2003-08-18 Thread Barlow, Dustin
No it is done that way for two reasons: 1) Symmetry - JMS doesn't care that when it invokes onMessage on the MDB container that it actually gets delivered to a pooled EJB underneath. The MDB either runs in the transactional context or suspends it (Requred or NotSupported) it never controls the

RE: [JBoss-user] MDB Singleton retry semantics

2003-08-18 Thread Adrian Brock
On Mon, 2003-08-18 at 19:57, Barlow, Dustin wrote: No it is done that way for two reasons: 1) Symmetry - JMS doesn't care that when it invokes onMessage on the MDB container that it actually gets delivered to a pooled EJB underneath. The MDB either runs in the transactional context or

RE: [JBoss-user] MDB Singleton retry semantics

2003-08-18 Thread Barlow, Dustin
The transaction is started by JMS when it enlists the XASession's XAResource. The MDB either uses it or suspends it. When you move away from the ConnectionConsumer used in the 3.x series to the JCA1.5 MessageEndpoint approach for the 4.x series, will the above behavior still apply? Dustin

[JBoss-user] differences between JBoss 4.0 and 3.2.1

2003-08-18 Thread Matthew Hixson
I've seen little to no documentation on Jboss 4.0 on the web and there isn't anything in the downloaded DR2 tarball either. I was wondering if there was anywhere that I could see what the changes to Jboss 4.0 have been. I am in the process of moving from Resin to Jboss and want to pick the

RE: [JBoss-user] MDB Singleton retry semantics

2003-08-18 Thread Adrian Brock
On Mon, 2003-08-18 at 22:14, Barlow, Dustin wrote: The transaction is started by JMS when it enlists the XASession's XAResource. The MDB either uses it or suspends it. When you move away from the ConnectionConsumer used in the 3.x series to the JCA1.5 MessageEndpoint approach for the 4.x

[JBoss-user] MySQL XA Configuration

2003-08-18 Thread Bruce Slawson
I am trying to configure MySQL to use XA transactions. I understand JBoss (3.2.1) provides some sort of wrapper for drivers that don't support XA natively. I have looked at the examples and the pay docs but haven't clearly worked out what needs to be done. Can someone provide a working

[JBoss-user] Son postayý attýn mý xigkijgpm

2003-08-18 Thread Kemal Basuguducu
Title: xavchrffmrgfsadxkcrbllispkmexrjwrfbbwg Çýtýr okullu kýzlarýn amatör kayýtlarý! Okul arkadaþlarý ve öðretmenleri ile skiþen hatunlar! 70,000 zipli Resim Arsivimiz!!! Turkmankenler Amator turk kizlarý Aileiçi ensest iliþkiler Hayvanlarla s e*k s Ve daha binlercesi...

[JBoss-user] file upload problem

2003-08-18 Thread Brian McSweeney
Hi all, Im trying to do a file upload action based on the example struts-upload.war. I want to save the uploaded file to a folder on disk. However when I try to run the action I get an error saying I dont have access to the folder. Ive tried changing the folder access and also