Re: How to get hold of a WorkManager in a web app?

2009-01-11 Thread David Jencks
put this gbean in your geronimo plan for your web app although there might be ordering issues if you try to look it up during servlet initialization... you could experiment. thanks david jencks On Jan 11, 2009, at 8:16 AM, fladimir wrote: I've tried searching for this a lot, but I

Re: package javax.resource.spi.security does not exist

2009-01-11 Thread David Jencks
think this is the correct syntax but haven't checked that exactly this snippet works) Then the dependencyManagement section of the geronimo pom will supply versions for all the jars used in geronimo when you use them in your app. david jencks axiez wrote: I am trying to compile

Re: package javax.resource.spi.security does not exist

2009-01-12 Thread David Jencks
/reference/public-book.html but you shouldn't need to read it to make a simple build work. david jencks djencks wrote: On Jan 11, 2009, at 9:59 AM, axiez wrote: It worked. How do I know the version of dependency geronimo- ejb_3.0_spec? Following entry in pom.xml generated compilation error

Re: How to Inject Datasource into session stateless bean?

2009-01-12 Thread David Jencks
plugin as a maven dependency of the ejb app plugin. If you are deploying directly you can include the datasource id in the list of dependencies in the geronimo plan. thanks david jencks Thanks -B - B Amigo:super: -- View this message in context: http://www.nabble.com/How-to-Inject

Re: system property for login configuration file

2009-01-14 Thread David Jencks
security realms using the GenericSecurityRealmGBean. See http://cwiki.apache.org/GMOxDOC22/configuring-login-modules.html There is an admin console wizard to help construct plans and I suspect there is also an eclipse plugin wizard in the GEP. thanks david jencks -- View this message

Re: Geronimo Deployment Error

2009-01-14 Thread David Jencks
this documentation in the 2.2 docs) Hope this helps. I'm not sure how this would have worked in g. 1.x or why it would work the first time you start the server. david jencks On Jan 14, 2009, at 6:21 AM, VijayR wrote: Hello, I have a Java application which uses the DB Database Pools and JMS

Re: How to get hold of a WorkManager in a web app?

2009-01-14 Thread David Jencks
exception, the cause, in the stack trace? If so, if you show the complete stack trace we might be able to diagnose the problem. thanks david jencks I tried putting the gbean-definition in config.xml, inside the module: module name=/car gbean name=WorkManagerBinding

Re: deploy and undeploy a gbean

2009-01-14 Thread David Jencks
tasks should be pretty easy to write also, I think no one here uses ant much so it hasn't been a priority. If you would like to try we can give you some advice and if you could contribute them that would be great! thanks david jencks Thanks, Ricky djencks wrote: On Aug 27, 2007

Re: Geronimo Cannot Auto-reload class File

2009-01-15 Thread David Jencks
including my app, and use selenium to run tests against it in the micro server. thanks david jencks On Jan 15, 2009, at 12:12 AM, Jack Cai wrote: I also agree that it's nice to have that. But I guess it's not as easy as just exposing the attribute. As David J. pointed out in another thread

Re: Semantics of application restart

2009-01-15 Thread David Jencks
david jencks I changed my code to empty the cache from the @PostConstruct method, this works. Thanks, Juergen -- View this message in context: http://www.nabble.com/Semantics-of-application-restart-tp21476759s134p21476759.html Sent from the Apache Geronimo - Users mailing list archive

Re: system property for login configuration file

2009-01-15 Thread David Jencks
, callbackHandler, configuration); so it might be worth seeing about converting all our login calls to supply the configuration from whatever source is needed. thanks david jencks 2009/1/14 David Jencks david_jen...@yahoo.com On Jan 13, 2009, at 11:05 PM, axiez wrote: Which file should

Re: Gbean to get list of modules?

2009-01-16 Thread David Jencks
ConfigurationManager.listConfigurations() In the geronimo vm the gbean is in j2ee-system and has the short name ConfigurationManager. hope this helps david jencks On Jan 16, 2009, at 2:41 PM, Ricky Ignatius wrote: Sorry for unclear question. I mean any gbean method that I can call using

Re: How to get hold of a WorkManager in a web app?

2009-01-18 Thread David Jencks
I think that spaces are not legal characters in the query portion of a URI so ?name=DefaultWorkManager# (no space after the '=') should work better. thanks david jencks On Jan 18, 2009, at 5:20 AM, fladimir wrote: Unable to set attribute abstractNameQuery to ?name= DefaultWorkManager

Re: How to get hold of a WorkManager in a web app?

2009-01-18 Thread David Jencks
I think there might be a bug in our jndi implementation so you have to look up java:/DefaultWorkManager. If this doesn't help I'll look further. thanks david jencks On Jan 18, 2009, at 12:17 PM, fladimir wrote: Yes, I actually guessed something like that when I checked the full stack

Re: Jetty/Tomcat plugin build failed with persistence.xml

2009-01-18 Thread David Jencks
Where exactly is the persistence.xml in your ear? BTW if you use auto-create tables or openjpa sequences you almost certainly need a non-jta-datasource as well, and it should really not have transactions enabled. thanks david jencks On Jan 18, 2009, at 2:52 PM, bongosdude wrote: in my

Re: deployment for MySQL XA.

2009-01-18 Thread David Jencks
Did you try these? Driver based connectors don't support xa. Also your ms sql sample doesn't include any transaction element at all. thanks david jencks On Jan 18, 2009, at 7:44 PM, Forrest Xia wrote: MySQL sample: resourceadapter outbound-resourceadapter connection

Re: deployment for MySQL XA.

2009-01-18 Thread David Jencks
The easiest way is to use the admin console database wizard. You can copy the plan out of the wizard to put into your plan.xml source. You can duplicate the xa pool and change the tx element to no- transaction for the non-jta datasource thanks david jencks On Jan 18, 2009, at 6:47 PM

Re: Jetty/Tomcat plugin build failed with persistence.xml

2009-01-18 Thread David Jencks
is still not able to find it. thanks david jencks Thanks bongosdude wrote: David, Here is my connector definition in my datasource plan.xml connector xmlns=http://geronimo.apache.org/xml/ns/j2ee/connector-1.2 resourceadapter outbound-resourceadapter connection

Re: java.lang.ClassNotFoundException: org.apache.activemq.jndi.ActiveMQInitialContextFactory

2009-01-18 Thread David Jencks
on how to use their jndi setup. I also don't think the openejb property will be helpful. http://activemq.apache.org/jndi-support.html If you are using a javaee app client let us know. thanks david jencks On Jan 18, 2009, at 10:35 PM, viola.lu wrote: HI, axiez: Have you added activemq-core

Re: How do I declare and inject a jms resource in a connector component?

2009-01-21 Thread David Jencks
you'll have to make sure your jca stuff is bound in global jndi under known names and look it up using those names. These global jndi names will be specific to a particular app server (at least). You might be able to configure them using config- properties. thanks david jencks

Re: inject EJB in Webapplication

2009-01-21 Thread David Jencks
Is the ear that contains the ejb running when you get this error? When an ejb app starts, openejb prints the global jndi names it binds the ejbs under in ${geronimo.home}/var/log/geronimo.log. Can you look and see what name your ejb is actually bound under? thanks david jencks On Jan 21

Re: deployment for MySQL XA.

2009-01-21 Thread David Jencks
artifactIdtranql-connector-ra/artifactId typerar/type scopeprovided/scope /dependency both in dependencies and as module elements in the car-maven-plugin configuration. thanks david jencks On Jan 21, 2009, at 5:04 PM, bongosdude wrote: Today I tried the embeded but when I

Re: Geronimo can't load Module 32/68 org.apache.geronimo.configs/activemq-ra/2.1.2/car

2009-01-22 Thread David Jencks
the activeMQ broker started before the error shows up? It should be org.apache.geronimo.configs/activemq-broker/2.1.3/car - what happens if you comment out the activemq-ra module in var/config/ config.xml? david jencks On Jan 22, 2009, at 9:39 AM, HuMark wrote: Hello, I've strange problem

Re: queueConnectionFactory in jndi.properties

2009-01-23 Thread David Jencks
in the geronimo log as it is starting to find the jndi name it is bound under, and use that. david jencks On Jan 23, 2009, at 3:37 AM, axiez wrote: How can I set queueConnectionFactory in jndi.properties file? Is there any example? I am trying to use a plain Java class to test. -- View

Re: How do you access a GBean via JNDI?

2009-01-23 Thread David Jencks
are looking up is the same as or an ancestor of the app that is looking it up so you are certain it has started before you try to use it. thanks david jencks Thanks, Juergen -- View this message in context: http://www.nabble.com/How-do-you-access-a-GBean-via-JNDI--tp21621410s134p21621410.html

Re: JMS ConnectionFactory Resource injection into a Session Bean

2009-01-24 Thread David Jencks
thanksd david jencks On Jan 24, 2009, at 12:24 PM, rsumner wrote: I've been beating my head on my desk for 2 days on this now. I hope you'll have a little patience with me as I'm a little sleep deprived as I've tried to beat Geronimo into my liking %-| Anyyyways... So, here's the layout of my

Re: Geronimo: connectionFactoryJndiName not recognized in MDB EJB 3.0

2009-01-26 Thread David Jencks
(propertyName = destinationType, propertyValue = javax.jms.Queue), @ActivationConfigProperty(propertyName = destination, propertyValue = OrderQueue) Did you find documentation somewhere to support the properties you are using? thanks david jencks On Jan 26, 2009, at 3:52 PM, Lenin David Lozano

Re: Geronimo: connectionFactoryJndiName not recognized in MDB EJB 3.0

2009-01-26 Thread David Jencks
documentation. thanks david jencks Did you find documentation somewhere to support the properties you are using? thanks david jencks -- View this message in context: http://www.nabble.com/Geronimo%3A-connectionFactoryJndiName-not-recognized-in-MDB-EJB-3.0-tp21674243s134p21678653.html Sent

Re: Use a keystore in java application

2009-01-27 Thread David Jencks
- tomcat which was ce version are you using? thanks david jencks On Jan 27, 2009, at 1:27 PM, cesarAugusto wrote: Hi, everybody, I formed a keystore from keystore configuration of was ce. I log me in for administrative console, in console navigation -Security --keystores. I created

Re: NameNotFoundException for connection factory

2009-01-28 Thread David Jencks
to access the geronimo global naming system through the activemq jndi system, which are disjoint, so it won't work. hope this helps david jencks -- View this message in context: http://www.nabble.com/NameNotFoundException-for-connection-factory-tp21703497s134p21703497.html Sent from the Apache

Re: Unable to resolve reference JtaDataSourceWrapper in gbean default/a1/1233553508187

2009-02-02 Thread David Jencks
You need to have a geronimo plan with the datasource listed as a dependency. hope this hint helps david jencks On Feb 1, 2009, at 10:08 PM, axiez wrote: I have a business interface, remotely accessible stateless session bean, entity, and a client that will access from a different JVM. I

Re: Monitor Remote Server Question

2009-02-04 Thread David Jencks
AFAIK there are no hard limits. david jencks On Feb 4, 2009, at 1:42 PM, Michael2 wrote: Does anyone know what the limitation is to add remote servers to the Monitoring server list or what is the maximum number of servers I can added to the server list? Thanks. Michael -- View

Re: Deploy to a non-running server how?

2009-02-05 Thread David Jencks
install plugins offline or not but at least its a plausible goal. Out of curiosity why don't you just build the custom server assembly to include your apps? thanks david jencks Thanks, Juergen var/temp/assembly/bin ./deploy.sh --offline deploy /tmp/MyGBean.jar /tmp/gbean-plan.xml Using

Re: Start server without open ports - possible?

2009-02-05 Thread David Jencks
This will get merged into the constructed config.xml. You can turn off modules (should be unnecessary -- don't install them :-) ) or individual gbeans or use different attribute or reference values. hope this helps david jencks Thanks, Juergen Booting Geronimo Kernel (in Java 1.6.0_11

Re: [Transaction] TX Required: Started transaction

2009-02-05 Thread David Jencks
if anyone is actively working on fixing it. thanks david jencks On Feb 5, 2009, at 10:31 PM, axiez wrote: I have an entity being accessed through stateless session bean. JSE Client running on a different JVM accesses the bean. Client through exception. Log entries of application serve

Re: [Transaction] TX Required: Started transaction

2009-02-06 Thread David Jencks
is wrong is to call entityManager.flush() right before your method exits. This is what the synchronization is doing, and if your code does it you should have no problem seeing the error message. thanks david jencks axiez wrote: I have an entity being accessed through stateless session bean

Re: Pulling Geronimo Configuration

2009-02-10 Thread David Jencks
discovery of cluster members may not work for you... however changing this to a hardcoded set of servers should be pretty easy. Or perhaps you want a hybrid approach where a bunch of multicast-connected sub-clusters aggregate to a controller. thanks david jencks Thank you, Chance

Re: Jsf RI (Mojarra) in Geronimo

2009-02-10 Thread David Jencks
that installed and then turn off the myfaces-deployer in your server when deploying your app. (you'd also need a dependency on your new mojarra plugin). If you want to test this or know enough about what is going on to think this is plausible please let us know. thanks david jencks Thanks for your

Re: Jsf RI (Mojarra) in Geronimo

2009-02-10 Thread David Jencks
showing the problem would be ideal, although that seems a bit unrealistic if you can't do any investigation. BTW I'd also be curious if there is an xml equivalent to the seam annotation, to know if the same info in xml works. thanks david jencks. - Ray Clough -Original

Re: Changing the jta-data-source in openejb-jar.xml

2009-02-10 Thread David Jencks
dependencies need the type, hopefully also car. hope this helps david jencks Thanks for your help. ?xml version=1.0 encoding=UTF-8? ejb:openejb-jar xmlns:app=http://geronimo.apache.org/xml/ns/j2ee/application-2.0; xmlns:client=http://geronimo.apache.org/xml/ns/j2ee/application-client

Re: Pulling Geronimo Configuration

2009-02-10 Thread David Jencks
On Feb 10, 2009, at 1:52 PM, Russell E Glaue wrote: David Jencks wrote: On Feb 10, 2009, at 8:09 AM, Chance Yeoman wrote: Hello All, I am interested in setting up geronimo installations that can pull installed plugins and their dependencies exclusively from a repository within

Re: Gbean to get list of modules?

2009-02-10 Thread David Jencks
. thanks david jencks Thanks, Ricky djencks wrote: ConfigurationManager.listConfigurations() In the geronimo vm the gbean is in j2ee-system and has the short name ConfigurationManager. hope this helps david jencks On Jan 16, 2009, at 2:41 PM, Ricky Ignatius wrote: Sorry for unclear

Re: Pulling Geronimo Configuration

2009-02-11 Thread David Jencks
On Feb 11, 2009, at 7:41 AM, Russell E Glaue wrote: David Jencks wrote: On Feb 10, 2009, at 1:52 PM, Russell E Glaue wrote: David Jencks wrote: On Feb 10, 2009, at 8:09 AM, Chance Yeoman wrote: Hello All, I am interested in setting up geronimo installations that can pull installed

Re: Pulling Geronimo Configuration

2009-02-11 Thread David Jencks
to implement as it just replaces the multicast heartbeat with a more configured one. Would you be interested in contributing an implementation? thanks david jencks Thank you, Chance -- Center for the Application of Information Technologies - Original Message - From: David Jencks

Re: Problem with multi persistence units

2009-02-12 Thread David Jencks
in with the actual locations of the jars to be searched if exclude-unlisted- classes is off. I'd guess that openjpa internally uses a jdo friendly name rather than a jpa friendly name due to its history. thanks david jencks --kevan

Re: OpenJPA problems with multi persistence.xml

2009-02-12 Thread David Jencks
listing all your persistent classes explicitly and specifying exclude- unlisted-classestrue/exclude-unlisted-classes I haven't looked at this in a long time but IIRC exclude-unlisted-classes/ is the same as false thanks david jencks Please help Thank -B kevan wrote: On Feb 11, 2009

Re: Can't Publish

2009-02-14 Thread David Jencks
the deletion code. thanks david jencks Thanks. STACKTRACE: Distribution of module failed. See log for details. org.apache.geronimo.kernel.config.ConfigurationAlreadyExistsException: Configuration already exists: default/springapp/1.0/car org.apache.geronimo.common.DeploymentException

Re: Admin Console Access and Security Realm

2009-02-19 Thread David Jencks
the artifact aliases as recommended in the article). hope this helps david jencks Thanks. Michael Sophia Tang wrote: Hi Michael, As far as I can tell, the SQL database security realm is used to authenticate username and password from the built-in Derby database, not for Geronimo admin

Re: How to upgrade OpenJPA in Geronimo

2009-02-19 Thread David Jencks
code (1.2 branch?) and expect that 2.1.4 will include an up to date fully-working version. thanks david jencks Thanks. CG

Re: Admin Console Access and Security Realm

2009-02-19 Thread David Jencks
security realm you just need to make sure the names match -- the security realm doesn't need to be geronimo-admin unless you want to use your realm for the admin console. Hope this clarifies things :-) david jencks Thanks again. Michael djencks wrote: On Feb 19, 2009, at 5:31 AM

Re: Monitoring the database pool

2009-02-20 Thread David Jencks
console. thanks david jencks Thanks in advance -- View this message in context: http://www.nabble.com/Monitoring-the-database-pool-tp22120059s134p22120059.html Sent from the Apache Geronimo - Users mailing list archive at Nabble.com.

Re: How to write GBean wrapper for DatabasePool

2009-02-20 Thread David Jencks
/geronimo/components/txmanager/tags/geronimo-txmanager-parent-2.1.1 thanks david jencks -- View this message in context: http://www.nabble.com/How-to-write-GBean-wrapper-for-DatabasePool-tp22120103s134p22120103.html Sent from the Apache Geronimo - Users mailing list archive at Nabble.com.

Re: Geronimo Transaction manager

2009-02-23 Thread David Jencks
/geronimo-txmanager- parent-2.1.1 branches/geronimo-txmanager-parent-2.1 has a lot of bug fixes for exception handling: I think we'll be releasing this fairly soon. trunk includes j2ca connector 1.6 spec code which doesn't really alter the tm at all but has some other nice features. thanks david

Re: Geronimo sees jars in servlet, but in any object created within this servlet throws NoClassDefFoundError

2009-02-23 Thread David Jencks
using the hidden-classes plan element and include a copy of log4j in your app. It may also be possible to just hide the jms appender classes and include those in your app. hopefully this will point you in a useful direction. thanks david jencks On Feb 23, 2009, at 8:31 AM, Rogue angel wrote

Re: Geronimo Transaction manager

2009-02-23 Thread David Jencks
I don't mean an xa tx with more than one resource manager, but a transaction with more than one transaction manager involved). thanks david jencks Thanks very much for you explanations, Juergen -- View this message in context: http://www.nabble.com/Geronimo-Transaction-manager

Re: Admin Console Access and Security Realm

2009-02-23 Thread David Jencks
/GMOxDOC22/Basic+Hints+on+Security+Configuration (should get to http://cwiki.apache.org/GMOxDOC22/basic-hints-on-security-configuration.html soon) Please let us know if this is still not clear or you still have problems thanks! david jencks On Feb 23, 2009, at 3:44 PM, Michael2 wrote: Hi David: I

Re: java.lang.UnsatisfiedLinkError: Library is already loaded in another ClassLoader (On stopping and starting the application)

2009-02-24 Thread David Jencks
whenever you cycle a classloader. You might be able to figure out something similar to do but geronimo does not currently provide any support for this. david jencks -- View this message in context: http://www.nabble.com/java.lang.UnsatisfiedLinkError%3A-Library-is-already-loaded

Re: ejb Couldn't write EjbResponse to output stream

2009-02-24 Thread David Jencks
I can't understand from the information you've presented what the classpath of your client app is. Is it a javaee app client or a standalone java app? How do you run it? thanks david jencks On Feb 24, 2009, at 6:01 PM, Linda77 wrote: Are there some guys who can help me? %-| I'm very

Re: Custom Login Module HttpServletRequest access for webservice

2009-03-03 Thread David Jencks
for it yet. thanks david jencks Thanks in advance -Kaupo -- View this message in context: http://www.nabble.com/Custom-Login-Module-HttpServletRequest-access-for-webservice-tp22303812s134p22303812.html Sent from the Apache Geronimo - Users mailing list archive at Nabble.com.

Re: jndi datasource access problem

2009-03-03 Thread David Jencks
provide a full stack trace to the jndi lookup error? thanks david jencks Are you able to run the code successfully with the global JNDI name now? -Jack

Re: new IBM book: Using WASCE 2.1

2009-03-05 Thread David Jencks
thanks david jencks On Thu, Mar 5, 2009 at 4:39 PM, Ying Tang yingtang1...@gmail.com wrote: Hi Juergen, Thanks for your suggestion. I made some changes and added a GBean methods section: http://cwiki.apache.org/GMOxDOC22/developing-and-deploying-a-geronimo-gbean.html Any comment

Re: your current Geronimo evaluation

2009-03-05 Thread David Jencks
a server is rather new and we could certainly use advice from large projects on how to improve our implementation. thanks david jencks best regards Aldian Xasima Xirohata wrote: Boring note. I have a little remark on the easy word in your test questions. I think that this word DOES

Re: Newbie problem with Geronimo 2.1.3

2009-03-05 Thread David Jencks
but this is certainly not necessary. thanks david jencks Best regards and thanks. Ricardo Peironcely 2009/3/4 Kevan Miller kevan.mil...@gmail.com: On Mar 4, 2009, at 3:25 PM, Ricardo Peironcely wrote: Hello all!! I've a problem with a very simple application. I've developed an war with a simple JSP

Re: new IBM book: Using WASCE 2.1

2009-03-05 Thread David Jencks
there is code that examines the class using reflection and adds all the operations. This code works just as well if you are using annotations :-) thanks david jencks On Thu, Mar 5, 2009 at 5:05 PM, David Jencks david_jen...@yahoo.com wrote: On Mar 5, 2009, at 12:45 AM, Shawn Jiang wrote

Re: Gbean to install plugin from remote repository?

2009-03-09 Thread David Jencks
the geronimo-maven-plugin can also be used to install plugins into a running geronimo server. I don't recall if this made it into the 2.1.x series. thanks david jencks On Mar 9, 2009, at 10:50 AM, RickI wrote: You can also use tomcat/jetty that comes with geronimo to expose repo via http

Re: your current Geronimo evaluation

2009-03-09 Thread David Jencks
, geronimo plugins and custom assemblies, all the configuration is in scm and the build system is used to produce the servers for all workflow phases. david jencks -- View this message in context: http://www.nabble.com/your-current-Geronimo-evaluation-tp22329850s134p22411656.html Sent from

Re: Gbean to install plugin from remote repository?

2009-03-10 Thread David Jencks
running maven for me. thanks david jencks Thanks! On Mon, 2009-03-09 at 11:19 -0700, David Jencks wrote: Could you outline your goal a little more from a higher level viewpoint? If you are trying to produce a consistent reproducible server image with known contents through your build

Re: Recording resource consumption

2009-03-10 Thread David Jencks
somewhat simpler code (based on jpa). Otherwise you probably have to write something yourself although you might be able to leverage some jmx monitoring solution. david jencks Thanks!

Re: Description of plugins??

2009-03-11 Thread David Jencks
. It includes a way to offline upgrade a plan from the 1.0 to 1.1 formats. I don't think we've maintained it since. thanks david jencks +

Re: Admin console not working..

2009-03-11 Thread David Jencks
I suspect you are actually running on a jdk 5?? Geronimo is compiled with jdk 5 and the classes shouldn't load on a 1.4 jdk. thanks david jencks On Mar 11, 2009, at 5:29 AM, redwin wrote: I've installed Geronimo 2.1.3 onto Windows Vista. I am using j2sdk1.4.2_19 and i succesfully starting

Re: Geronimo 2.1.1 does not undeploy apache ActiveMQ 5.2.0 TransportListener(It seems cannot stop thread) with failover transport

2009-03-11 Thread David Jencks
I have no idea how to think about this without knowing how you have installed activemq 5.2 client stuff, how you are getting the activemq connections, and how you are attaching the transport listener. thanks david jencks On Mar 11, 2009, at 9:40 AM, Rogue angel wrote: Hello everyone

Re: JSF in Geronimo

2009-03-11 Thread David Jencks
any that you get errors about missing classes. In any case we'd need to see what kind of errors you get to give much other useful advice. thanks david jencks On Mar 11, 2009, at 10:50 AM, Bob78 wrote: Hi, I am new to Geronimo. I have worked on other Web-servers (Tomcat / Sunone/etc). I

Re: JSF in Geronimo

2009-03-11 Thread David Jencks
org.apache.geronimo.configs/myfaces-deployer/2.2-SNAPSHOT/car thanks david jencks THanks again for yoru help. Regards Joe djencks wrote: Your xml does not appear to be well formed (no -- for !--appbase) Geronimo comes with myfaces jsf implementation and unless you want to do a lot of integration

Re: Issues facing when connecting with Oracle10g

2009-03-12 Thread David Jencks
for it. thanks david jencks On Mar 12, 2009, at 6:19 AM, Hearty wrote: When I have configured database pool with oracle10g and running against the apache geronimo v2.1, I am getting some unusual errors where as when I've tried with tomcat5.5 it is working smoothly. Oracle driver I've used

Re: propagate security context across threads?

2009-03-12 Thread David Jencks
{ ContextManager.popCallers(null); } There might be a memory leak if you don't use a thread pool because popCallers(null) is calling thrreadLocal.set(null) rather than threadLocal.remove(): I'm not sure what happens with threadLocal.set(null) if the thread is then discarded. thanks david jencks

Re: security problem

2009-03-13 Thread David Jencks
specified) works Many thanks for finding this! david jencks On Mar 13, 2009, at 5:59 AM, Trygve Hardersen wrote: Hi I'm developing an application using Geronimo 2.2-SNAPSHOT. The whole system is rather complex but I'll try to explain only what's needed in this context. I have

Re: Problem accessing JNDI resources from inside custom resource adapter

2009-03-13 Thread David Jencks
another resource adapter it seems that at least much of your code is not doing this. thanks david jencks Thx, Olaf -- View this message in context: http://www.nabble.com/Problem-accessing-JNDI-resources-from-inside-custom-resource-adapter-tp22496418s134p22496418.html Sent from the Apache

Re: Access resources in rar embedded inside an ear

2009-03-13 Thread David Jencks
a problem (I think :-) thanks david jencks My expectation is that this is such a common requirement and that when accessing resources from inside a JEE module you naturally expect those resources to be resolved relative to the current module and not relative to the enclosing ear so

Re: Securing queues and topics in embedded ActiveMQ

2009-03-13 Thread David Jencks
might want to work with geronimo trunk (2.2-SNAPSHOT) as it uses the much more up to date activemq 5.3-SNAPSHOT and if changes to activemq are needed there's a much better chance of getting them included in a future release. thanks david jencks Regards, Raj

Re: Issues facing when connecting with Oracle10g

2009-03-13 Thread David Jencks
what the code is trying to do that is causing this error? thanks david jencks Mar 12, 2009 6:20:33 PM com.telelogic.focalpoint.bus.report.ReportManagerImpl setDefaultReportImage SEVERE: Error when uploading default report image org.springframework.dao.InvalidDataAccessApiUsageException

Re: custom derby UserAuthenticator implementation

2009-03-13 Thread David Jencks
authenticator. This would let you also configure it directly. Hope this provides some hope and a clue.. david jencks - Brian -- View this message in context: http://www.nabble.com/custom-derby-UserAuthenticator-implementation-tp22501437s134p22501437.html Sent from the Apache Geronimo - Users mailing

Re: Class Loader Problem

2009-03-15 Thread David Jencks
david jencks On Mar 14, 2009, at 5:56 PM, Russell Collins wrote: When trying to deploy an EAR file, I get the error down below. It ultimately says that there is not class not found. How do I correct this error? 16:20:44,728 WARN [ConfigurationUtil] Could not load gbean default/ ecommerce

Re: Starting from framework

2009-03-17 Thread David Jencks
I'm always working with trunk I rely on my local maven repo. I do know I've seen commits for these plugin catalogs and you can tell geronimo about them if they aren't already configured. hope this helps david jencks Thanks -- View this message in context: http://www.nabble.com

Re: Suggestion to improve packaging of ejb-jars

2009-03-18 Thread David Jencks
they can think about. So, in geronimo I recommend packing as little as possible in an ear, instead using dependencies to include the same jars from the geronimo repo into the appropriate classloaders. thanks david jencks Cheers, Olaf -- View this message in context: http

Re: Suggestion to improve packaging of ejb-jars

2009-03-18 Thread David Jencks
. thanks david jencks Thanks, Olaf djencks wrote: On Mar 18, 2009, at 2:33 PM, Olaf Bergner wrote: I have several ejb-jar packaged inside an ear. Libraries to be shared between some or all of these ejb-jars are placed inside the encompassing ear's lib directory, as decreed

Re: Suggestion to improve packaging of ejb-jars

2009-03-19 Thread David Jencks
but I don't know if this is supported yet. Anyway your ear-building seems like it will work. How important do you see separate classloaders for each ejb jar and rar? Do you expect any actual problems from a shared classloader or does it just seem inelegant? thanks david jencks Thx

Re: Suggestion to improve packaging of ejb-jars

2009-03-19 Thread David Jencks
specify exactly what is available inside the company. The geronimo solution built on this is to assemble a custom server from bits in the repo manager and give that to IT operations all they have to do is unpack and start it. thanks david jencks Greetings, Juergen -- View

Re: Starting from framework

2009-03-19 Thread David Jencks
release, but since I'm always working with trunk I rely on my local maven repo. I do know I've seen commits for these plugin catalogs and you can tell geronimo about them if they aren't already configured. hope this helps david jencks When I run deploy/list-modules, I only get a list of 14. If I

Re: Starting from framework

2009-03-19 Thread David Jencks
install OK. I'm going to look at the missing-version problem in 2.1.4 maybe there will be something we can fix for the release I guess we need integration tests for this somehow... but we really need to actually release these private artifacts. david jencks -- View this message

Re: GBean documentation improvement

2009-03-20 Thread David Jencks
again the framework will create a whole new object for you. In practice no one has ever implemented doFail. thanks david jencks -- View this message in context: http://www.nabble.com/GBean-documentation-improvement-tp22607392s134p22616649.html Sent from the Apache Geronimo - Users mailing

Re: Starting from framework

2009-03-21 Thread David Jencks
On Mar 19, 2009, at 6:44 PM, David Jencks wrote: On Mar 19, 2009, at 6:11 PM, Derek Potts wrote: djencks wrote: 1. edit var/config/config.xml to look like this: attribute name=userRepositories~/.m2/repository,http://geronimo.apache.org/plugins/geronimo-2.1.4 /attribute

Re: Geronom 2.1.4, Thread Pools are reporting zero usage

2009-03-25 Thread David Jencks
In particular no one ever got around to getting tomcat to use our thread pools, it currently manages its own threads. It would probably be a fairly simple project for someone who knows their way around tomcat to get the connectors to use an external thread pool. thanks david jencks

Re: Trouble posting to this list

2009-03-31 Thread David Jencks
expert, but similar things have happened to me on some apache lists -- e.g. subscription requests get bounced unless I include some dummy text content) thanks david jencks On Mar 31, 2009, at 9:20 AM, ckn...@onebox.com wrote: Any time I reply to a message, the reply is tossed back as spam

Re: Oracle10g deployment plan how to set the connectionProperties

2009-03-31 Thread David Jencks
On Mar 31, 2009, at 8:06 AM, Hearty wrote: How to set connectionProperties with the connectionUrl? You'd have to consult oracle documentation for that. thanks david jencks djencks wrote: On Mar 13, 2009, at 7:58 AM, Hearty wrote: I would like to configure

Re: Trouble setting up Axis

2009-03-31 Thread David Jencks
the axis2 jar to geronimo it is extremely out of date. We might be able to do something so that its status is clearer to the next person to find it. thanks david jencks -- View this message in context: http://www.nabble.com/Trouble-setting-up-Axis-tp22796621s134p22816610.html Sent from

Re: Injecting EJBs into Wicket

2009-04-01 Thread David Jencks
On Mar 31, 2009, at 11:31 PM, Maarten Billemont wrote: On 01 Apr 2009, at 01:02, David Jencks wrote: Apparently the ejbs are bound in a different unrelated global jndi context. Personally I consider this a bug. Should I file a bug report on this? I don't think its necessary

Re: Release 2.2

2009-04-01 Thread David Jencks
be appreciated. We have a lot of balls up in the air at once in trunk. I think it would be great to get a 2.2 release out but there are a lot of loose ends to tie up. I've started discussion on the dev list please feel free to encourage a release there. thanks david jencks Thanks.

Re: Is Axis running?

2009-04-02 Thread David Jencks
(such as if you are using the tomcat server) then axis2 will be started up to help. If you want to use a proprietary non-javaee axis2 web service described by (IIUC) an .aar file then you may have to do something else, I don't know what. thanks david jencks Thanks for your consideration

Re: G trunk and maven dependencies question

2009-04-09 Thread David Jencks
Where exactly do you see the file with the dated version? I've looked around in my build and don't see anything obvious. BTW this problem sounds familiar but I don't remember yet when I ran into it... thanks david jencks On Apr 9, 2009, at 4:36 PM, Peter Petersson wrote: I am building some

Re: G trunk and maven dependencies question

2009-04-10 Thread David Jencks
For some reason I'm not seeing this locally, perhaps due to the local changes in my build. I took a heavy-handed approach of just deleting the timestamped artifacts from the snapshot repo. Please let us know if this does not fix the problem. thanks david jencks On Apr 10, 2009, at 4:11

<    5   6   7   8   9   10   11   12   13   >