Re: Geronimo connection pool, Spring + Hibernate and Oracle Blobs

2009-04-30 Thread Ashish Jain
Thanks a lot Denıs ıt ıs really useful On Thu, Apr 23, 2009 at 11:46 AM, Denis Bessmertnyj denis.bessmert...@gmail.com wrote: finally we found solution which works. maybe it will be useful for someone. getJdbcTemplate().update( Insert into ...values (?,?,?,?,?,?,?,?,?),

Re: How to get a ConnectionFactory into JNDI?

2009-04-30 Thread Juergen Weber
It's Object o; Ashish Jain-5 wrote: What ıs o here:: Is ıt a QueueConnectionFactory:: On Wed, Apr 29, 2009 at 8:07 PM, Juergen Weber webe...@gmail.com wrote: Hi, I try to access a MQ ConnectionFactory using the code below, but I get an Exception. The resource adapter is in

Re: 2.1.3 to 2.1.4 Upgrade Virtual Hosts issue

2009-04-30 Thread Rex Wang
I got the JAASRealm errors too, but it won't impact the virtual host feature. I will take a look at the security realm issue further. John, can you deploy the web app to the real host ? can you access the web console from the virtual host after deploy a web app with the host set in plan? Rex

Re: 2.1.3 to 2.1.4 Upgrade Virtual Hosts issue

2009-04-30 Thread JohnD
Yes, I am able to access the geronimo console and can also deploy an app to the virtual host. Can I just ignore this error then? -Original Message- From: Rex Wang rwo...@gmail.com Reply-to: user@geronimo.apache.org To: user@geronimo.apache.org Subject: Re: 2.1.3 to 2.1.4 Upgrade Virtual

Re: Deployment takes forever with many files

2009-04-30 Thread Ivan
Does Geronimo output anything in the deployment process, could you please show us those logs ?Ivan 2009/4/30 Patrick Kranz patrick.kr...@immobilienscout24.de Sorry, I forgot to mention: I am doing a deployment with the --inPlace parameter, so the application is not being copied to the Geronimo

Re: Could not auto-map to resource problem when using EJB annotations only

2009-04-30 Thread David Jencks
On Apr 30, 2009, at 6:51 AM, fmeili wrote: Hi all, I try to deploy an EAR with some (skinny) WAR's and some EJB's. All EJB's use the @Resource tag for Database access. I always get a deployment error, that the resource could not auto-map. Instead the error message tell me to use a

Saving login and password info in 2.1.3

2009-04-30 Thread user2111
Hi, I saved my user Id and password using the ./deploy.sh login command. However I notice that the ./geronimo.sh stop command still prompts me for login and password in ver 2.1.3. In ver 2.1.4, it does not. Is this a known issue/limitation of 2.1.3? Any workaround? Thanks in advance. -- View

Re: Webservice handling consuming considerable CPU (Windows)

2009-04-30 Thread mdasari
Based on the dependency comment, this is what I figured out. There are several geronimo system modules referring to non existant (in geronimo distribution) JAR files. I don't know how the geronimo instance is still working fine if they are required or why those files are referenced if they are

Re: Check server state?

2009-04-30 Thread Ivan
Which port is available for you ? I mean you could connect from the remote machine 2009/5/1 RickI a...@worker.com Yes i think it's one way to check the main/default geronimo server. But I try to check the state of geronimo instances on other port. That way might not work. Thanks, Ricky

Re: Webservice handling consuming considerable CPU (Windows)

2009-04-30 Thread Ivan
IMO, although those files are in the claspath of the manifest file of some jars, Geronimo may not need them, like the saaj, Axis2 has their own implementations.The search is caused by the WSDLQueryHandler, it need to output the DOM to text. I guess that in you webservice client, the codes may

Re: How to get a ConnectionFactory into JNDI?

2009-04-30 Thread Ashish Jain
In my opinion your Object o should be QueueConnectionFactory. can you try the following Context initctx = new InitialContext(); QueueConnectionFactory o= (QueueConnectionFactory) initctx.lookup(java:comp/env/wmq/ConnectionFactory); Thanks Ashish On Thu, Apr 30, 2009 at 1:26 PM, Juergen