Re: Instance-level security frameworks

2009-05-19 Thread Jean-Louis MONTEIRO
Morten O. Hansen-4 wrote: > > Hi all > > I was just wondering if any of you had any suggestions for an > instance-level > security framework? (like JAAS, but not just class-level). > > I have a bunch of Nodes saved as entities and they all should have > different > security policies. > > //M

Re: http://localhost:8080/openejb/installer is not working

2009-05-19 Thread Jacek Laskowski
On Wed, May 20, 2009 at 3:02 AM, SofIAm wrote: > I've actually found the in the console. > Dcatalina.base=C:\Program Files\Apache Software Foundation\Tomcat 6.0 I think it's the spaces which causes the 404. Start it over with Tomcat installed in a directory without spaces. See http://openejb.apa

Instance-level security frameworks

2009-05-19 Thread Morten O. Hansen
Hi all I was just wondering if any of you had any suggestions for an instance-level security framework? (like JAAS, but not just class-level). I have a bunch of Nodes saved as entities and they all should have different security policies. //Morten

Re: http://localhost:8080/openejb/installer is not working

2009-05-19 Thread SofIAm
SofIAm wrote: > > I'm trying to figure out ${catalina.base}. > > I'm getting HTTP 404 error. I know Tomcat is running because my Struts > project is working. I tried http://127.0.0.1:8080/openejb, same 404 error. > > I have the following installed: > Tomcat 6.0 > jdk 6 > Eclipse 3.2 > > No

http://localhost:8080/openejb/installer is not working

2009-05-19 Thread SofIAm
I'm trying to figure out ${catalina.base}. I'm getting HTTP 404 error. I know Tomcat is running because my Struts project is working. I tried http://127.0.0.1:8080/openejb, same 404 error. I have the following installed: Tomcat 6.0 jdk 6 Eclipse 3.2 Not being a system guru, I tried to run my

Re: Cannot find datasource error...Please help!

2009-05-19 Thread Jacek Laskowski
On Tue, May 19, 2009 at 6:10 PM, SofIAm wrote: > > Sorry if I'm posting in the wrong forum, but I'm desperate at this point... > Please help me figure out how or why I'm not binding my datasource and > beans.  Please forgive for such a long message. > > I'm trying to deploy my container-managed EJ

Cannot find datasource error...Please help!

2009-05-19 Thread SofIAm
Sorry if I'm posting in the wrong forum, but I'm desperate at this point... Please help me figure out how or why I'm not binding my datasource and beans. Please forgive for such a long message. I'm trying to deploy my container-managed EJB3 in Eclipse running on JBoss 4.2/SQLServer 2005. For so

Re: OpenEJB and OSGi

2009-05-19 Thread Gauthier Libéral
It works well ^_^ For information, if you want to run this openejb-bundle inside tomcat via the bridge.war, your ejb will need 2 more lines in the MANIFEST.MF: Eclipse-RegisterBuddy: org.apache.openejb.server Eclipse-BuddyPolicy: registered For french people I will write a french tutorial in 3 o

Re: How to publish overloaded method in web service

2009-05-19 Thread Bharath Ganesh
I assume you use JAX-WS in which case you could customize the WSDL operation name (in the generated WDL) with the @WebMethod annotation. e.g. @WebMethod(operationName="doSomething") public int doSomething() @WebMethod(operationName="doSomethingMore") public int doSomething(int more) Thanks, Bha

How to publish overloaded method in web service

2009-05-19 Thread Maaku
I have an overloaded method in my class and I want to expose this as a web service. When I try it I get java.lang.IllegalArgumentException: An operation with name [{http://xxx.com/wsdl}getLocations] already exists in this service Is there a way to fix this without renaming one of the methods?