Re: Saving login and password info in 2.1.3

2009-05-04 Thread Jack Cai
Yes it's a know problem that was fixed in 2.1.4. See [1]. -Jack [1] https://issues.apache.org/jira/browse/GERONIMO-1367 2009/5/1 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 f

Unable to start WICKET+OpenJPA application

2009-05-04 Thread Garimella Srinivas
I have a small wicket example application with data stored in a List and it runs in Geronimo ok. Now I have added the data to derby and want to use openjpa for data access and manipulation. With the following Geronimo-web.xml and web.xml I have installed the application. But it refuses to start.

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

2009-05-04 Thread Rex Wang
Hi Frank, sorry for the confusing, it can not be added to the application.xml, but should be added to the web.xml / ejb-jar.xml... here is an example in attachment. HTH rex. 2009/5/4 fmeili > > > > Rex Wang-2 wrote: > > > > hi frank > > > > This should be add to the application.xml(not geron

Re: Check server state?

2009-05-04 Thread Jack Cai
Rick, I suggest you to follow Jeff's advice to take a look at the code of [1] & [2], which perfectly demonstrates how to check whether Geronimo is running. Note you can specify the RMI port as you like. -Jack [1] https://svn.apache.org/repos/asf/geronimo/server/trunk/framework/modules/geronimo-c

Re: Building Apache Day Trader for JBoss

2009-05-04 Thread Kevan Miller
On May 4, 2009, at 9:31 PM, Andrig wrote: I have another missing artifact. If you could point me in the right direction on where to get it, it would be appreciated: [INFO] [ERROR] BUILD ERROR [INFO]

Re: Check server state?

2009-05-04 Thread Ivan
A common way : Create a Socket to connect the the port, if it could be connected, it means that a program is listerening on that port. A sample code like : public static boolean isConnected(String hostName, int port) { Socket socket = null; try { socket = new Socket(host

Re: Building Apache Day Trader for JBoss

2009-05-04 Thread Andrig
kevan wrote: > > > On May 4, 2009, at 11:31 AM, Andrig wrote: > >> >> I'm attempting to build the Apache Day Trader application, using the >> JBoss 5 >> instructions. I get the following when doing the mvn install clean: >> >> [ERROR] BUILD ERROR >> [INFO] >> --

Re: Building Apache Day Trader for JBoss

2009-05-04 Thread Andrig
kevan wrote: > > > On May 4, 2009, at 11:31 AM, Andrig wrote: > >> >> I'm attempting to build the Apache Day Trader application, using the >> JBoss 5 >> instructions. I get the following when doing the mvn install clean: >> >> [ERROR] BUILD ERROR >> [INFO] >> --

Re: Check server state?

2009-05-04 Thread RickI
I start new geronimo instance by changing port-offset in configuration file. All of that port are open but I dont want to access it through web-console but through java code. I want to know if geronimo instance in port 1199 (for example) is running or not. -R Ivan Xu wrote: > > Which port is a

Re: Building Apache Day Trader for JBoss

2009-05-04 Thread Kevan Miller
On May 4, 2009, at 11:31 AM, Andrig wrote: I'm attempting to build the Apache Day Trader application, using the JBoss 5 instructions. I get the following when doing the mvn install clean: [ERROR] BUILD ERROR [INFO] [

Geronimo2.1.0 build failure with Java5 (method getContentType() not found)

2009-05-04 Thread Mohanraj Loganathan
Hello, I was trying to build geronimo2.1.0 version of source with sunJDK5. I end up with the following failure [INFO] Compiling 24 source files to D:\g\2.1.0\plugins\webservices\geronimo-webservices\target\classes [INFO] [ER

Re: Dependency issue with commons-httpclient

2009-05-04 Thread Hari Krishna Korrapati
Attaching the log On Mon, May 4, 2009 at 12:09 PM, Hari Krishna Korrapati < harikrishna.korrap...@gmail.com> wrote: > Hi, > > Facing dependency issue with the use of Axis and CommonsHTTPSender, the > following is the description > > System Details: > Apache Geronimo 2.0.2 > commons-httpclient 3.

Dependency issue with commons-httpclient

2009-05-04 Thread Hari Krishna Korrapati
Hi, Facing dependency issue with the use of Axis and CommonsHTTPSender, the following is the description System Details: Apache Geronimo 2.0.2 commons-httpclient 3.1 My application is using basic axis configuration to make calls from client(deployed as part of web application on Geronimo) to Web

Building Apache Day Trader for JBoss

2009-05-04 Thread Andrig
I'm attempting to build the Apache Day Trader application, using the JBoss 5 instructions. I get the following when doing the mvn install clean: [ERROR] BUILD ERROR [INFO] [INFO] Failed to resolve artifact. Missing: --

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

2009-05-04 Thread fmeili
Rex Wang-2 wrote: > > hi frank > > This should be add to the application.xml(not geronimo-application.xml), > coz > it is NOT Geronimo specific. It is the JEE specific. > >jdbc/__mes >javax.sql.DataSource >Container >Shareable > > > HTH > > Rex > Hi Rex, thanks for the

Re: [ANNOUNCE] Availability of Geronimo 2.1.4

2009-05-04 Thread Donald Woods
Please note that everyone using a prior Geronimo 2.0.x through 2.1.3 release is urged to upgrade to the 2.1.4 level ASAP. The security vulnerabilities (XSS, XSRF and multiple directory traversal vulnerabilities) were mentioned on the ZDNet website last week and in their Zero Day newsletter -

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

2009-05-04 Thread Rex Wang
hi frank This should be add to the application.xml(not geronimo-application.xml), coz it is NOT Geronimo specific. It is the JEE specific. jdbc/__mes javax.sql.DataSource Container Shareable HTH Rex 2009/5/4 fmeili > > > > djencks wrote: > > > > > > On Apr 30, 2009, at 6:51 AM,

Re: How to get a ConnectionFactory into JNDI?

2009-05-04 Thread Rex Wang
*try both add the following snips to deployment plan & deployment descriptor not only in openejb-jar.xml:* wmq/ConnectionFactory wmqConnectionFactory *but also in ejb-jar.xml:* wmq/ConnectionFactory javax.jms.QueueConnectionFactory

Re: Really basic security question

2009-05-04 Thread Rex Wang
1. in \var\security, create 2 files, eg:rex_users.properties & rex_groups.properties rex_users.properties --- andy=aaa bill=bbb cindy=ccc dan=ddd --- rex_groups.properties ---

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

2009-05-04 Thread fmeili
djencks wrote: > > > On Apr 30, 2009, at 6:51 AM, fmeili wrote: > > So. geronimo is assembled out of plugins (e.g. your app becomes a > plugin once deployed). The plugins form a directed acyclic graph > (each plugin has a bunch of parents, and you can't have circular > dependencies

Re: Deployment takes forever with many files

2009-05-04 Thread Patrick Kranz
Hi Ivan, sorry it took me so long to answer. No, the log files donĀ“t give any hint about what is going on. It only prints messages coming from our application and those messages are the same for both cases (started with all data on the local disk and started with data located on an NFS share)