An ejb security question

2007-10-16 Thread Vamsavardhana Reddy
Can someone help me with an ejb security question? I have an EJB with three methods, m1 with unrestricted access, m2 accessible by guest role and m3 accessible by guest and admin roles. I am accessing all these three methods from three different jsps and displaying whether the access is successful

[jira] Commented: (GERONIMO-3416) make some -test artifacts that for instance start up a mock server suitable for testing deployment parts

2007-10-15 Thread Vamsavardhana Reddy (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-3416?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12534756 ] Vamsavardhana Reddy commented on GERONIMO-3416: --- Related rev 566893. make some -test artifacts

Re: svn commit: r584163 - /geronimo/server/branches/2.0.2/RELEASE_NOTES-2.0.2.txt

2007-10-15 Thread Vamsavardhana Reddy
On 10/12/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Author: kevan Date: Fri Oct 12 06:45:18 2007 New Revision: 584163 URL: http://svn.apache.org/viewvc?rev=584163view=rev Log: Update MEJB group information Modified: geronimo/server/branches/2.0.2/RELEASE_NOTES-2.0.2.txt

Re: [VOTE] Geronimo 2.0.2 (rc1)

2007-10-14 Thread Vamsavardhana Reddy
+1 ++Vamsi On 10/13/07, Kevan Miller [EMAIL PROTECTED] wrote: All, I've prepared a 2.0.2 release candidate for review and vote. http://people.apache.org/~kevan/release-votes/geronimo-2.0.2-dist/ contains the 8 Java EE and Minimal server (tar/zip and tomcat/jetty) binaries. Here are

Re: [VOTE] Release geronimo-txmanager 2.0.2

2007-10-12 Thread Vamsavardhana Reddy
+1 ++Vamsi On 10/10/07, Kevan Miller [EMAIL PROTECTED] wrote: As discussed in the Geronimo 2.0.2 release discussion thread, we need to release geronimo-txmanager 2.0.2 to pick up fixes for the Geronimo 2.0.2 release. geronimo-txmanager contains the geronimo-transaction and

Re: svn commit: r578812 - /geronimo/server/trunk/configs/jetty6/src/main/plan/plan.xml

2007-10-08 Thread Vamsavardhana Reddy
AM, Vamsavardhana Reddy wrote: I am surprised that the ServerInfo reference is not there in the file because http://svn.apache.org/viewvc/geronimo/server/trunk/configs/jetty6/src/plan/plan.xml?r1=577801r2=577800pathrev=577801 shows that it is there in the commit!! That's because it's

[jira] Closed: (GERONIMO-3473) CA Helper app should support submitting Certificate Requests from Internet Explorer

2007-10-08 Thread Vamsavardhana Reddy (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-3473?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Vamsavardhana Reddy closed GERONIMO-3473. - Resolution: Fixed Fix Version/s: (was: 2.0.x

Re: [DISCUSS] G 2.0.2 Release plan

2007-10-08 Thread Vamsavardhana Reddy
On 10/8/07, Kevan Miller [EMAIL PROTECTED] wrote: All, I've created a 2.0.2 release branch -- https://svn.apache.org/repos/ asf/geronimo/server/branches/2.0.2 And have updated the branches/2.0 version to be 2.0.3-SNAPSHOT (with a helping hand from Donald :) Vamsi is working on an update

[jira] Closed: (GERONIMO-2964) Cannot specify the Tomcat work directory for a web application

2007-10-05 Thread Vamsavardhana Reddy (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-2964?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Vamsavardhana Reddy closed GERONIMO-2964. - Resolution: Fixed Cannot specify the Tomcat work directory for a web

[jira] Closed: (GERONIMO-3501) The geronimo tuscany plugin cannot be started in Geronimo 2.0.1

2007-10-04 Thread Vamsavardhana Reddy (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-3501?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Vamsavardhana Reddy closed GERONIMO-3501. - Resolution: Fixed Completed: At revision: 581787 The geronimo tuscany

[jira] Commented: (GERONIMO-3456) Make MEJB security configurable

2007-10-03 Thread Vamsavardhana Reddy (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-3456?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12532010 ] Vamsavardhana Reddy commented on GERONIMO-3456: --- Rev 579681 in branches\2.0. Make MEJB security

Re: svn commit: r578812 - /geronimo/server/trunk/configs/jetty6/src/main/plan/plan.xml

2007-10-03 Thread Vamsavardhana Reddy
I am surprised that the ServerInfo reference is not there in the file because http://svn.apache.org/viewvc/geronimo/server/trunk/configs/jetty6/src/plan/plan.xml?r1=577801r2=577800pathrev=577801shows that it is there in the commit!! Vamsi On 9/24/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:

[jira] Updated: (GERONIMO-3450) Unable to Run Pluto 1.1 on Geronimo 2.0

2007-10-03 Thread Vamsavardhana Reddy (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-3450?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Vamsavardhana Reddy updated GERONIMO-3450: -- Fix Version/s: (was: 1.1.2) (was: 1.1.x

Re: Anyway to get the generic type from a generic class?

2007-10-01 Thread Vamsavardhana Reddy
Jason, As per my understanding, an ArrayListString will help generating compilation errors should one try to add a non String object to the list. It does not mean that you can not add a non String object to the underlying list. For e.g. the following code does not result in an error: public

Re: Anyway to get the generic type from a generic class?

2007-10-01 Thread Vamsavardhana Reddy
On 10/1/07, Jason Dillon [EMAIL PROTECTED] wrote: Alright... thanks, that is what I figured :-( So lame... I can figure out that a class as T and E bound, but I can't figure out the type of those buggers... The underlying object does not impose any restrictions as such (and so there is

Re: Anyway to get the generic type from a generic class?

2007-10-01 Thread Vamsavardhana Reddy
() ).getActualTypeArguments()[0]; } Not sure if this is the sort of thing your after? Gareth Vamsavardhana Reddy wrote: On 10/1/07, *Jason Dillon* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: Alright... thanks, that is what I figured :-( So lame... I can figure out that a class

Re: Geronimo box on Download page still says 1.1

2007-09-28 Thread Vamsavardhana Reddy
boxes. Hernan can you try opening them with your Adobe Photoshop? - Shiva On 9/26/07, * Vamsavardhana Reddy* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: Hernan

[jira] Commented: (GERONIMO-3481) Offline deployer throws BIND Exception when port 1099 is in use

2007-09-27 Thread Vamsavardhana Reddy (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-3481?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12530679 ] Vamsavardhana Reddy commented on GERONIMO-3481: --- Thanks David. I have verified that (2

[jira] Closed: (GERONIMO-3481) Offline deployer throws BIND Exception when port 1099 is in use

2007-09-27 Thread Vamsavardhana Reddy (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-3481?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Vamsavardhana Reddy closed GERONIMO-3481. - Resolution: Fixed Fix Version/s: (was: 2.0.x) Assignee

Re: svn commit: r577890 - in /geronimo/server: branches/2.0/modules/geronimo-deployment/src/main/java/org/apache/geronimo/deployment/xmlbeans/ branches/2.0/modules/geronimo-j2ee-schema/src/test/resour

2007-09-26 Thread Vamsavardhana Reddy
On 9/26/07, Kevan Miller [EMAIL PROTECTED] wrote: On Sep 25, 2007, at 12:38 PM, Jarek Gawor wrote: Vamsi, In general I think we agree on how things should be handled when schema changes. Also, the patch I looked at had schema changes made in the existing .xsd files and I assumed that

[jira] Updated: (GERONIMO-3481) Offline deployer throws BIND Exception when port 1099 is in use

2007-09-26 Thread Vamsavardhana Reddy (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-3481?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Vamsavardhana Reddy updated GERONIMO-3481: -- Attachment: GERONIMO-3481-for-2.0.patch GERONIMO-3481-for-2.0.patch: 0. Do

[jira] Reopened: (GERONIMO-3484) openejb-deployer should not require openejb to be running

2007-09-25 Thread Vamsavardhana Reddy (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-3484?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Vamsavardhana Reddy reopened GERONIMO-3484: --- Does not seem to solve the problem on branches\2.0. Openejb config

[jira] Closed: (GERONIMO-3484) openejb-deployer should not require openejb to be running

2007-09-25 Thread Vamsavardhana Reddy (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-3484?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Vamsavardhana Reddy closed GERONIMO-3484. - Resolution: Fixed Changed the dependency scope to runtime. Revision: 579289

Re: Can someone push a 3.0-beta-1 snapshot of openejb-core?

2007-09-25 Thread Vamsavardhana Reddy
On 9/25/07, Jacek Laskowski [EMAIL PROTECTED] wrote: On 9/25/07, David Jencks [EMAIL PROTECTED] wrote: I just tried and it tried to install into my local maven repo (?!?!?!) and I have to go get on a plane. Until this is straightened out building g. 2.0.2-SNAPSHOT will require building

[jira] Commented: (GERONIMO-3481) Offline deployer throws BIND Exception when port 1099 is in use

2007-09-25 Thread Vamsavardhana Reddy (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-3481?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12530145 ] Vamsavardhana Reddy commented on GERONIMO-3481: --- GERONIMO-3484 is resolved. But then axis2

Re: Geronimo box on Download page still says 1.1

2007-09-25 Thread Vamsavardhana Reddy
Hernan, I see some 2.0 box images at https://svn.apache.org/repos/asf/geronimo/site/trunk/art and they have been there since end of March!! Can you update the downloads page to show a 2.0box? Vamsi On 8/22/07, Hernan Cunico [EMAIL PROTECTED] wrote: I've been trying for ages to get these

Re: [DISCUSS] G 2.0.2 Release plan

2007-09-25 Thread Vamsavardhana Reddy
I guess it is rev 570242 in trunk. Vamsi On 9/26/07, Donald Woods [EMAIL PROTECTED] wrote: OK, I'm done updating the 2.0.x closed issues (sorry for all the JIRA emails.) The only one I couldn't figure out, was: https://issues.apache.org/jira/browse/GERONIMO-3423 -Donald Donald

[jira] Commented: (GERONIMO-3423) Ensure that users can change the ejb jndi name format

2007-09-25 Thread Vamsavardhana Reddy (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-3423?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12530262 ] Vamsavardhana Reddy commented on GERONIMO-3423: --- I guess it is Rev 570242. Ensure that users can

[jira] Commented: (GERONIMO-3481) Offline deployer throws BIND Exception when port 1099 is in use

2007-09-22 Thread Vamsavardhana Reddy (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-3481?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12529674 ] Vamsavardhana Reddy commented on GERONIMO-3481: --- I am unable to use importclasses/import in openejb

[jira] Commented: (GERONIMO-3481) Offline deployer throws BIND Exception when port 1099 is in use

2007-09-22 Thread Vamsavardhana Reddy (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-3481?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12529732 ] Vamsavardhana Reddy commented on GERONIMO-3481: --- The --port is not the way to point the deployer

[jira] Commented: (GERONIMO-3481) Offline deployer throws BIND Exception when port 1099 is in use

2007-09-21 Thread Vamsavardhana Reddy (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-3481?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12529322 ] Vamsavardhana Reddy commented on GERONIMO-3481: --- David, thanks for the patch. GERONIMO-3481-1

[jira] Commented: (GERONIMO-3481) Offline deployer throws BIND Exception when port 1099 is in use

2007-09-21 Thread Vamsavardhana Reddy (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-3481?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12529358 ] Vamsavardhana Reddy commented on GERONIMO-3481: --- Added the missing attributes substitutionsFile

[jira] Updated: (GERONIMO-3481) Offline deployer throws BIND Exception when port 1099 is in use

2007-09-21 Thread Vamsavardhana Reddy (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-3481?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Vamsavardhana Reddy updated GERONIMO-3481: -- Attachment: GERONIMO-3481-weird.patch GERONIMO-3481-weird.patch addressed

Re: What exactly is going into 2.0.2?

2007-09-21 Thread Vamsavardhana Reddy
Will we have a released version of MyFaces 1.2.1? I believe we do not want to include any SNAPSHOT versions as dependencies in our releases. Vamsi On 9/21/07, Paul McMahan [EMAIL PROTECTED] wrote: After thinking about this some more I upgraded the MyFaces version to 1.2.1-SNAPSHOT in

[jira] Created: (GERONIMO-3483) Redeploy should start any dependent configurations it stops.

2007-09-21 Thread Vamsavardhana Reddy (JIRA)
Security Level: public (Regular issues) Components: deployment Affects Versions: 2.0.1, 2.0.x, 2.1 Reporter: Vamsavardhana Reddy Fix For: 2.0.x, 2.1 When a configuration is redeployed, any dependent configurations stopped are not automatically restarted after

[jira] Commented: (GERONIMO-3481) Offline deployer throws BIND Exception when port 1099 is in use

2007-09-21 Thread Vamsavardhana Reddy (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-3481?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12529472 ] Vamsavardhana Reddy commented on GERONIMO-3481: --- Oh well... after looking at the code, GERONIMO

Re: svn commit: r577890 - in /geronimo/server: branches/2.0/modules/geronimo-deployment/src/main/java/org/apache/geronimo/deployment/xmlbeans/ branches/2.0/modules/geronimo-j2ee-schema/src/test/resour

2007-09-21 Thread Vamsavardhana Reddy
not go into a patch and/or minor release. Jarek On 9/21/07, Vamsavardhana Reddy [EMAIL PROTECTED] wrote: On 9/21/07, Jarek Gawor [EMAIL PROTECTED] wrote: I'm not sure about these changes. Personally, I'm against any schema changes in branches/2.0 but I can live with introducing

Re: svn commit: r578231 - /geronimo/components/txmanager/tags/geronimo-txmanager-parent-2.0.1/

2007-09-21 Thread Vamsavardhana Reddy
Kevan, This should be created from rev 563889. I had one commit to the branch in rev 577161 (just correcting a typo) post what was used in 2.0.1. Though I had sent an e-mail earlier to the dev-list about creating this tag I forgot to follow it up :o( Vamsi On 9/22/07, [EMAIL PROTECTED] [EMAIL

[jira] Commented: (GERONIMO-3481) Offline deployer throws BIND Exception when port 1099 is in use

2007-09-20 Thread Vamsavardhana Reddy (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-3481?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12529015 ] Vamsavardhana Reddy commented on GERONIMO-3481: --- I am seeing the following gbean in configs/online

ApacheCon US 2007 Tutorials

2007-09-20 Thread Vamsavardhana Reddy
Hi Hernan, I visited Tuscany's homepage and in the news section I see they highligthed the tutorial Tuscany committers have at ApacheCon US 2007. See http://incubator.apache.org/tuscany/. I got this idea that we can do the same for the tutorial sessions Shiva and myself have at ApacheCon US

Re: ApacheCon US 2007 Tutorials

2007-09-20 Thread Vamsavardhana Reddy
be it will help us in getting the minimum number of registrations (8 for ApacheCon and 10 for OS Summit) quickly without which the sessions will be cancelled :o( Cheers! Hernan Vamsavardhana Reddy wrote: Hi Hernan, I visited Tuscany's homepage and in the news section I see they highligthed

Re: ApacheCon US 2007 Tutorials

2007-09-20 Thread Vamsavardhana Reddy
it to the live site. Can you change my name in the events page http://cwiki.apache.org/GMOxSITE/events.html to Vamsavardhana Reddy. Also, there is an extra / after my name under the OS Summit section that you can get rid of. Cheers! Hernan Vamsavardhana Reddy wrote: On 9/20/07

[jira] Commented: (GERONIMO-2964) Cannot specify the Tomcat work directory for a web application

2007-09-20 Thread Vamsavardhana Reddy (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-2964?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12529134 ] Vamsavardhana Reddy commented on GERONIMO-2964: --- No one has objected to using GERONIMO-2964-2.0-w

[jira] Commented: (GERONIMO-2964) Cannot specify the Tomcat work directory for a web application

2007-09-20 Thread Vamsavardhana Reddy (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-2964?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12529230 ] Vamsavardhana Reddy commented on GERONIMO-2964: --- Schemas renamed in rev 577890. Cannot specify

[jira] Created: (GERONIMO-3481) Offline deployer throws BIND Exception when port 1099 is in use

2007-09-19 Thread Vamsavardhana Reddy (JIRA)
Security Level: public (Regular issues) Components: deployment Affects Versions: 2.0.1 Environment: G 2.0.1 - Running multiple instances Reporter: Vamsavardhana Reddy Fix For: 2.0.2, 2.0.x, 2.1 Offline deployer throws Bind Exception when port

[jira] Updated: (GERONIMO-3481) Offline deployer throws BIND Exception when port 1099 is in use

2007-09-19 Thread Vamsavardhana Reddy (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-3481?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Vamsavardhana Reddy updated GERONIMO-3481: -- Affects Version/s: 2.1 2.0.x Offline deployer

Re: [VOTE] Release Geronimo Eclipse Plugin 2.0.0 (RC3)

2007-09-18 Thread Vamsavardhana Reddy
+1 --vamsi On 9/15/07, Tim McConnell [EMAIL PROTECTED] wrote: Hi, Please review and vote on the release of the Geronimo Eclipse Plugin 2.0.0 RC3 (to correspond with the Geronimo 2.0.1 Server release). The deployable zip file is here:

Re: Build problem on Trunk

2007-09-18 Thread Vamsavardhana Reddy
After jarek said he was able to build using 1.5.0_10, I tried using that but ran into the same error :( Vamsi On 9/17/07, Vamsavardhana Reddy [EMAIL PROTECTED] wrote: I guess I am the only one for now hitting this build error. Anyone else seeing this error? Output from command window posted

Re: [Discuss] Release Geronimo Eclipse Plugin 2.0.0 (RC3)

2007-09-18 Thread Vamsavardhana Reddy
True. We should document the changes needed in the ini file instead of making the changes automatically. Vamsi On 9/19/07, Tim McConnell [EMAIL PROTECTED] wrote: Hi Shiva, thanks for the information. I'm not sure I feel comfortable modifying a user's eclipse.ini file, especially without

[jira] Created: (GERONIMO-3473) CA Helper app should support submitting Certificate Requests from Internet Explorer

2007-09-17 Thread Vamsavardhana Reddy (JIRA)
Project: Geronimo Issue Type: Bug Security Level: public (Regular issues) Components: sample apps, usability Affects Versions: 2.0.1, 1.2, 2.0.x, 2.1 Reporter: Vamsavardhana Reddy Fix For: 2.0.x, 2.1 The CA Helper app currently enable submitting

[jira] Updated: (GERONIMO-2964) Cannot specify the Tomcat work directory for a web application

2007-09-17 Thread Vamsavardhana Reddy (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-2964?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Vamsavardhana Reddy updated GERONIMO-2964: -- Attachment: GERONIMO-2964-2.0-w-cons-change.patch Cannot specify

[jira] Updated: (GERONIMO-2964) Cannot specify the Tomcat work directory for a web application

2007-09-17 Thread Vamsavardhana Reddy (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-2964?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Vamsavardhana Reddy updated GERONIMO-2964: -- Attachment: GERONIMO-2964-2.0.patch Cannot specify the Tomcat work

[jira] Updated: (GERONIMO-2964) Cannot specify the Tomcat work directory for a web application

2007-09-17 Thread Vamsavardhana Reddy (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-2964?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Vamsavardhana Reddy updated GERONIMO-2964: -- Attachment: GERONIMO-2964-trunk.patch Cannot specify the Tomcat work

[jira] Updated: (GERONIMO-2964) Cannot specify the Tomcat work directory for a web application

2007-09-17 Thread Vamsavardhana Reddy (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-2964?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Vamsavardhana Reddy updated GERONIMO-2964: -- Attachment: suid.patch Cannot specify the Tomcat work directory for a web

[jira] Commented: (GERONIMO-2964) Cannot specify the Tomcat work directory for a web application

2007-09-17 Thread Vamsavardhana Reddy (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-2964?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12528080 ] Vamsavardhana Reddy commented on GERONIMO-2964: --- Submitted the last comment accidentally and here

[jira] Commented: (GERONIMO-2964) Cannot specify the Tomcat work directory for a web application

2007-09-17 Thread Vamsavardhana Reddy (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-2964?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12528088 ] Vamsavardhana Reddy commented on GERONIMO-2964: --- Please see the comments above. If you have

[jira] Commented: (GERONIMO-2964) Cannot specify the Tomcat work directory for a web application

2007-09-17 Thread Vamsavardhana Reddy (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-2964?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12528079 ] Vamsavardhana Reddy commented on GERONIMO-2964: --- I have attached three patches this time: 1

Re: What exactly is going into 2.0.2?

2007-09-17 Thread Vamsavardhana Reddy
On 9/17/07, Paul McMahan [EMAIL PROTECTED] wrote: I agree that 2.0.2 should be limited to bug fixes but I think new features are OK as long as they are very low risk and don't cause any backwards compatibility problems. I think when users pick up a x.y.z +1 release they want and expect

Build problem on Trunk

2007-09-17 Thread Vamsavardhana Reddy
I guess I am the only one for now hitting this build error. Anyone else seeing this error? Output from command window posted below.. I am using Sun JDK 1.5.0_12 on WinXP SP2. [INFO] - --- [INFO] Building Geronimo ::

[jira] Commented: (GERONIMO-2964) Cannot specify the Tomcat work directory for a web application

2007-09-16 Thread Vamsavardhana Reddy (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-2964?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12527841 ] Vamsavardhana Reddy commented on GERONIMO-2964: --- Forget about startup failures on G2.0.1-Jetty

Re: Obscuring passwords in new ways

2007-09-15 Thread Vamsavardhana Reddy
David, Thank you for initiating this discussion and also implementing a quick solution too. Matt asked if I could start a discussion on this. I said yes and then went in to a long sleep mode :(. Let me get to business (before I go to sleep again). More inline... On 9/15/07, David Jencks

[jira] Commented: (GERONIMO-2925) Key used for encryption same for all server instances

2007-09-15 Thread Vamsavardhana Reddy (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-2925?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12527743 ] Vamsavardhana Reddy commented on GERONIMO-2925: --- Definitely better than what exists now. Key used

[jira] Commented: (GERONIMO-2964) Cannot specify the Tomcat work directory for a web application

2007-09-15 Thread Vamsavardhana Reddy (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-2964?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12527744 ] Vamsavardhana Reddy commented on GERONIMO-2964: --- The stacktrace I posted earlier was from

Re: Obscuring passwords in new ways

2007-09-15 Thread Vamsavardhana Reddy
On 9/15/07, David Jencks [EMAIL PROTECTED] wrote: On Sep 15, 2007, at 10:24 AM, Vamsavardhana Reddy wrote: David, Thank you for initiating this discussion and also implementing a quick solution too. Matt asked if I could start a discussion on this. I said yes and then went in to a long

[jira] Commented: (GERONIMO-2964) Cannot specify the Tomcat work directory for a web application

2007-09-15 Thread Vamsavardhana Reddy (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-2964?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12527757 ] Vamsavardhana Reddy commented on GERONIMO-2964: --- Anitha, I have proposed two patches. One

[jira] Commented: (GERONIMO-2964) Cannot specify the Tomcat work directory for a web application

2007-09-15 Thread Vamsavardhana Reddy (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-2964?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12527758 ] Vamsavardhana Reddy commented on GERONIMO-2964: --- Donald, Incase of patch with constructor change I

[jira] Commented: (GERONIMO-2964) Cannot specify the Tomcat work directory for a web application

2007-09-15 Thread Vamsavardhana Reddy (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-2964?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12527760 ] Vamsavardhana Reddy commented on GERONIMO-2964: --- Got the same error at plugin startup Unknown realm

Re: [jira] Commented: (GERONIMO-2964) Cannot specify the Tomcat work directory for a web application

2007-09-15 Thread Vamsavardhana Reddy
Donald, Just wondering whether you installed the plugin using Plugins portlet or using the command-line deployer. Were you able to install the servlet examples plugin prior to testing the patch provided by Aman? Vamsi On 9/16/07, Vamsavardhana Reddy (JIRA) [EMAIL PROTECTED] wrote

[jira] Updated: (GERONIMO-2964) Cannot specify the Tomcat work directory for a web application

2007-09-15 Thread Vamsavardhana Reddy (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-2964?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Vamsavardhana Reddy updated GERONIMO-2964: -- Fix Version/s: (was: 1.2) 2.0.x

[jira] Commented: (GERONIMO-2964) Cannot specify the Tomcat work directory for a web application

2007-09-15 Thread Vamsavardhana Reddy (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-2964?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12527823 ] Vamsavardhana Reddy commented on GERONIMO-2964: --- SUID change may or may not result in unexpected

Re: [DISCUSS] G 2.0.2 Release plan

2007-09-14 Thread Vamsavardhana Reddy
On 9/14/07, Kevan Miller [EMAIL PROTECTED] wrote: All, I think it's time to start rolling out a 2.0.2 release. There have been a number of fixes in response to user issues, since 2.0.1. Time, I think, to make these available in a release. We'd also be able to make use of released versions of

Re: [DISCUSS] Release Geronimo Eclipse Plugin 2.0.0

2007-09-14 Thread Vamsavardhana Reddy
Why is the discussion on the eclipse plugin release happening in the [VOTE] thread? Vamsi On 9/12/07, Tim McConnell [EMAIL PROTECTED] wrote: Hi Donalds, Yes now that all the License files have been fixed (thanks to Kevan) I plan on another vote later today. Thanks Donald Woods wrote:

[jira] Commented: (GERONIMO-1053) Session Bean, Finder, Method Permissions

2007-09-14 Thread Vamsavardhana Reddy (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-1053?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12527639 ] Vamsavardhana Reddy commented on GERONIMO-1053: --- Can someone verify if this is still a problem

[jira] Commented: (GERONIMO-2964) Cannot specify the Tomcat work directory for a web application

2007-09-13 Thread Vamsavardhana Reddy (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-2964?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12527039 ] Vamsavardhana Reddy commented on GERONIMO-2964: --- Have you tried changing/fixing the SUID

[jira] Commented: (GERONIMO-2964) Cannot specify the Tomcat work directory for a web application

2007-09-12 Thread Vamsavardhana Reddy (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-2964?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12526710 ] Vamsavardhana Reddy commented on GERONIMO-2964: --- I downloaded http://repo1.maven.org/maven2/org

[jira] Commented: (GERONIMO-2964) Cannot specify the Tomcat work directory for a web application

2007-09-12 Thread Vamsavardhana Reddy (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-2964?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12526830 ] Vamsavardhana Reddy commented on GERONIMO-2964: --- Updating geronimo-plugin.xml in servlet-examples

[jira] Updated: (GERONIMO-2964) Cannot specify the Tomcat work directory for a web application

2007-09-12 Thread Vamsavardhana Reddy (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-2964?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Vamsavardhana Reddy updated GERONIMO-2964: -- Attachment: GERONIMO-2964-combined-new.patch GERONIMO-2964-combined

[jira] Commented: (GERONIMODEVTOOLS-202) A geronimo installation was detected, however the version could not be verified warning while adding Geronimo 2.0.1

2007-09-11 Thread Vamsavardhana Reddy (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-202?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12526399 ] Vamsavardhana Reddy commented on GERONIMODEVTOOLS-202: -- What happens

[jira] Commented: (GERONIMO-2964) Cannot specify the Tomcat work directory for a web application

2007-09-10 Thread Vamsavardhana Reddy (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-2964?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12526353 ] Vamsavardhana Reddy commented on GERONIMO-2964: --- I think we should come up with a test case to see

Re: [DISCUSS] Release Geronimo Eclipse Plugin 2.0.0

2007-09-07 Thread Vamsavardhana Reddy
Does it mean we will need to spin a new RC? Vamsi On 9/7/07, Kevan Miller [EMAIL PROTECTED] wrote: Hey Tim, Apologies for my slow review of the Eclipse plugin. Reviewing the binary distribution, it looks like we are missing license and notice information for xpp3. There may be a few more

Re: A presentation on Java EE 5.0 App Development on Geronimo 2.0 simplified using Eclipse + WTP 2.0

2007-09-07 Thread Vamsavardhana Reddy
I hope the presentation is also under AL 2.0 :o) Vamsi On 9/8/07, Jacek Laskowski [EMAIL PROTECTED] wrote: On 9/7/07, Shiva Kumar H R [EMAIL PROTECTED] wrote: Just in case someone is interested in doing Java EE 5 app development using Eclipse + WTP and looking for some instructions, here

[ANNOUNCE] Welcome Shiva Kumar H R as Apache Geronimo's latest committer

2007-09-07 Thread Vamsavardhana Reddy
Hi All, The Geronimo PMC is pleased to announce that Shiva Kumar H R has recently accepted our invitation to become an Apache Geronimo committer. Shiva has been contributing to Geronimo for quite sometime and is very active on lists. His Eclipse Plugin Development skill is awesome and I am sure

Re: [ANNOUNCE] Welcome Tim McConnell as the newest member of the Geronimo PMC

2007-09-06 Thread Vamsavardhana Reddy
Congrats Tim. Vamsi On 9/5/07, Hernan Cunico [EMAIL PROTECTED] wrote: Please us in congratulating Tim McConnell as the newest member of the Geronimo PMC. Tim has contributed a lot to the project in areas such as annotations, dev tools and documentation just to name a few. We are very

Re: [ANNOUNCE] Welcome Donald Woods as the newest member of the Geronimo PMC

2007-09-06 Thread Vamsavardhana Reddy
Congrats Donald!! Vamsi On 9/6/07, Hernan Cunico [EMAIL PROTECTED] wrote: Please join us in congratulating Donald Woods as the newest member of the Geronimo PMC. Donald has contributed to Geronimo in many different areas; he has provided tons of patches, added functionality, testing and

[jira] Updated: (GERONIMO-3248) Extraneous WARN messages during deployment of resource-env-refs in EJB jar

2007-09-05 Thread Vamsavardhana Reddy (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-3248?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Vamsavardhana Reddy updated GERONIMO-3248: -- Fix Version/s: 2.1 2.0.x 2.0.2

[jira] Closed: (GERONIMO-3248) Extraneous WARN messages during deployment of resource-env-refs in EJB jar

2007-09-05 Thread Vamsavardhana Reddy (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-3248?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Vamsavardhana Reddy closed GERONIMO-3248. - Resolution: Fixed Completed: At revision: 572902 Extraneous WARN messages

Re: [ANNOUNCE] Welcome Jarek Gawor as the newest member of the Geronimo PMC

2007-09-04 Thread Vamsavardhana Reddy
Congrats Jarek!! Vamsi On 9/4/07, Joe Bohn [EMAIL PROTECTED] wrote: Please us in congratulating Jarek Gawor as the newest member of the Geronimo PMC. In addition to being involved in all things related to web services, he also has demonstrated a clear commitment to Geronimo in numerous

Re: Trouble with 2.0.1 main pom and building anything a G dependency

2007-09-03 Thread Vamsavardhana Reddy
On 9/3/07, Jason Dillon [EMAIL PROTECTED] wrote: IMO, we need to ween ourselves off of the local repository module completely... and avoid future use of any such local repository. +1 When I (er we) did the main Maven 2 conversion I added some of these local modules as short-term work

Re: Trouble with 2.0.1 main pom and building anything a G dependency

2007-09-02 Thread Vamsavardhana Reddy
I thought I would initiate this discussion on the dependency issue I have run into with projects dependent on G 2.0.1. But, then I had to go offline for a few days. Now that someone else has run into the same problem, I guess it needs to be addressed for good. On 8/31/07, Jeff Genender [EMAIL

[jira] Commented: (GERONIMO-2964) Cannot specify the Tomcat work directory for a web application

2007-08-29 Thread Vamsavardhana Reddy (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-2964?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12523468 ] Vamsavardhana Reddy commented on GERONIMO-2964: --- Looks like we can not have this in 2.0.2 without

Tuscany plugin for Geronimo moved from Geronimo sandbox to Geronimo Plugins

2007-08-29 Thread Vamsavardhana Reddy
Hi, I have moved the Tuscany Plugin for Geronimo from sandbox to Geronimo Plugins. The svn URL is https://svn.apache.org/repos/asf/geronimo/plugins/tuscany . I had to add a few additional repositories to the parent pom so that the plugin can be built successfully with a clean m2 local

[jira] Updated: (GERONIMO-3208) In-place deployment fails when renaming file

2007-08-29 Thread Vamsavardhana Reddy (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-3208?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Vamsavardhana Reddy updated GERONIMO-3208: -- Affects Version/s: 2.1 2.0.x Fix Version/s

[jira] Closed: (GERONIMO-3208) In-place deployment fails when renaming file

2007-08-29 Thread Vamsavardhana Reddy (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-3208?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Vamsavardhana Reddy closed GERONIMO-3208. - Resolution: Fixed Thanks Aman for providing the patch. Fixed in trunk

Re: New threads launched from an EJB do not run as the same Subject as the launching thread

2007-08-29 Thread Vamsavardhana Reddy
What ever way we want to deal with this, I have created a JIRA GERONIMO-3448 to track it. Vamsi On 8/28/07, Jacek Laskowski [EMAIL PROTECTED] wrote: On 8/27/07, David Jencks [EMAIL PROTECTED] wrote: Aren't we supposed to prevent ejbs from starting threads? Does the commonj thread pool

[jira] Created: (GERONIMO-3448) New threads launched from an EJB do not run as the same Subject as the launching thread

2007-08-29 Thread Vamsavardhana Reddy (JIRA)
Project: Geronimo Issue Type: Improvement Security Level: public (Regular issues) Affects Versions: 2.0.x, 2.1 Reporter: Vamsavardhana Reddy Fix For: 2.0.x, 2.1 New threads launched from an EJB context do not run as the same Subject as the thread

Top level wiki page for Plugins

2007-08-29 Thread Vamsavardhana Reddy
Should we create a top-level wiki page in our documentation for Plugins? Or is there one already that I am unable to find? Vamsi

[jira] Created: (GERONIMO-3447) Tuscany plugin for Geronimo

2007-08-28 Thread Vamsavardhana Reddy (JIRA)
: G 2.0.1 Reporter: Vamsavardhana Reddy Assignee: Vamsavardhana Reddy This JIRA is created to track moving of Tuscany plugin for geronimo into geronimo\plugins. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment

[jira] Commented: (GERONIMO-3447) Tuscany plugin for Geronimo

2007-08-28 Thread Vamsavardhana Reddy (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-3447?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12523327 ] Vamsavardhana Reddy commented on GERONIMO-3447: --- Initial code drop from work in sandbox in Revision

Re: Too easy to kill the server using the web console

2007-08-28 Thread Vamsavardhana Reddy
Or simulate some burning smell by maxing on the CPU and burning some hardware if possible :o) On 8/29/07, Matt Hogstrom [EMAIL PROTECTED] wrote: One other thought...perhaps we could play an audio clip of a shotgun or other firearm action being moved to suggest the consequences of hitting

New threads launched from an EJB do not run as the same Subject as the launching thread

2007-08-27 Thread Vamsavardhana Reddy
New threads launched from an EJB context do not run as the same Subject as the thread that launched it. This causes a failure when this new thread calls an EJB with restricted method permissions. Looks like JBoss and BEA Weblogic carry over Subjects to new threads that are launched from within

<    1   2   3   4   5   6   7   8   9   10   >