JAX-RPC Webservice deploys with NPE

2006-12-14 Thread D. Strauss
Hello, I read the Geronimo Wiki about the Sample JAX RPC webservice. Good tutorial :P However, I fail in developing my own version of it (and YES I don't want to install seven hundred tools to get it working as suggested already on the ML :P ) Basically, the error is a NullPointerException on de

Re: Geronimo eclipse WTP plugin

2006-09-04 Thread D. Strauss
e Geronimo distribution while i just need the > eclipse plugin? > > Regards, > > Raj > > > > */"D. Strauss" <[EMAIL PROTECTED]>/* wrote: > > Hello, Raj > > AFAIK you need to grab the feature from a mirror. At least I didn't >

Re: Geronimo eclipse WTP plugin

2006-09-02 Thread D. Strauss
Hello, Raj AFAIK you need to grab the feature from a mirror. At least I didn't encounter any problems doing so :/ Best regards Dirk Raj Saini schrieb: > Hi, > > I have been trying to install the Geronimo Eclipse WTP plugin in Eclipse > 3.2. Clicking on "Don't see your server listed? Click here

Re: Absolute paths within includes

2006-08-28 Thread D. Strauss
Hello, Bob AFAIK the JSP include statement is used to refer to a file starting from the actual JSP file location. So, let's assume you have a file index.jsp which should include a file from a subdirectory, your idea is right: (I tend to use JSPFs :P) The problem is: you can only reference file

Re: Geronimo Tomcat vs. EJB Webservices

2006-07-18 Thread D. Strauss
Hello, Kevan yes, it is. I'll file a jira entry. Best regards Dirk Kevan Miller schrieb: > Hi Dirk, > First that I've seen of this sort... I'd say a Jira is definitely in > order... This is 1.1, correct? > > --kevan > > On Jul 18, 2006, at 1:17 AM, D.

Geronimo Tomcat vs. EJB Webservices

2006-07-17 Thread D. Strauss
Hello, geronimo users, as I'm trying to investigate a problem with Geronimo tomcat and webservices, I want to know if you encountered some strange behaviour. Something like: Retrieving document at 'META-INF/wsdl/firefox.wsdl'. 06:59:41,443 INFO [ContextConfig] Missing application web.xml, using

Jetty vs. encoded URLs

2006-07-13 Thread D. Strauss
Hello, Jetty users a new problem has occured: [ResourceCache] Alias request of 'file:/opt/geronimo-1.1/repository/Testapp/Ear1/1.0/Ear1-1.0.ear/w2.war/register.jspx;jsessionid=5d54fc882vp54' for 'file:/opt/geronimo-1.1/repository/Testapp/Ear1/1.0/Ear1-1.0.ear/w2.war/register.jspx;jsessionid=5d54f

Re: ejbQL with relations

2006-07-12 Thread D. Strauss
r that you figured it out! Thanks for following up. > > Aaron > > On 7/12/06, D. Strauss <[EMAIL PROTECTED]> wrote: >> Hello, Aaron, >> >> after re-reading your answer I came up with a strange idea. After some >> research and testing I can finally say:

Re: ejbQL with relations

2006-07-12 Thread D. Strauss
people: the working ejbQL is: select distinct object(g) from Guild as g order by g.realm.realmName asc Best regards Dirk D. Strauss schrieb: > Hello, Aaron > > seems that my "workaround" failed. As soon as a relation column is used > within a finder ejbQL TranQL gives up

Re: ejbQL with relations

2006-07-12 Thread D. Strauss
tity (as in a > 1-to-1 relationship between r and p) but the "in" operator expects its > argument to be a group or set (as in a 1-to-many) relationship. Does > that sound right? > > Thanks, >Aaron > > On 7/7/06, D. Strauss <[EMAIL PROTECTED]> wrote: >&

Re: Entity bean can not remove itself

2006-07-10 Thread D. Strauss
Hello, Markus try this: Way a (the Collection way): java.util.Collection c=ejbHome.findAll(); EjbLocal delBean=null; for(EjbLocal l : c){ //find the bean you want to remove: for now, find the last one delBean=l; } c.remove(delBean); Way b (the usual way): EjbLocal delBean=ejbHome

Re: Locally Reffered EJB by Servlet Problem

2006-07-09 Thread D. Strauss
Hello, Lasantha can you post your web.xml please? Check, if there is an element called ejb-local-ref in it ^^ Best regards Dirk [EMAIL PROTECTED] schrieb: > Hi All, > > I have been writing a sample EAR application to the Geronimo 1.1. This > sample application is basically HelloWorld applicati

Re: ejbQL with relations

2006-07-09 Thread D. Strauss
rtei refers to a single entity (as in a > 1-to-1 relationship between r and p) but the "in" operator expects its > argument to be a group or set (as in a 1-to-many) relationship. Does > that sound right? > > Thanks, >Aaron > > On 7/7/06, D. Strauss <[EMAIL PR

Re: ejbQL with relations

2006-07-08 Thread D. Strauss
me.RawInvoker.invoke(RawInvoker.java:57) I'll now try to exchange the group-name. Maybe that makes Geronimo load my ear :/ D. Strauss schrieb: > Hello, ejbQL profs ^^ > > seems that I missunderstood my ejbQL knowledge. I setup some ejbs and > wanted to create some finder methods (ejb-ja

Re: How to unsubscribe... if you want to.

2006-07-07 Thread D. Strauss
Not to mention: use your email address that you have registered with this ML ;) [EMAIL PROTECTED] schrieb: > Sens a short and sweet email to: > > [EMAIL PROTECTED] > >

ejbQL with relations

2006-07-07 Thread D. Strauss
Hello, ejbQL profs ^^ seems that I missunderstood my ejbQL knowledge. I setup some ejbs and wanted to create some finder methods (ejb-jar.xml). Unfortunately, Geronimo (or OpenEJB?) ends in an exception that I can't figure out what it wants to tell me. Caused by: org.tranql.ql.QueryException: F

Re: Support for Java EE 5

2006-07-07 Thread D. Strauss
Hello, David it is, AFAIK, on the list for Geronimo 2.0. /(I read it somewhere, don't know where from)/ Best regards Dirk Chudnow, David schrieb: > Hi, > > I was wondering if you plan to support Java EE 5. I'm particularly > interested in the web service annotation aspect. > > David Chudno

Re: Any 1 tested Java 5 with Geronimo...?

2006-07-07 Thread D. Strauss
Hello, Santosh if you mean Tiger then: yes, Geronimo runs with Tiger. However, I haven't tested the shipped apps (Daytrader). All I can say is that all of my apps are running fine with Geronimo 1.1. Hope that helps. Best regards Dirk Santosh Koti schrieb: > Has any 1 found any issues with G o

Re: Entity bean can not remove itself

2006-07-06 Thread D. Strauss
Hello, Markus now I get it ^^ (at least I think so) So, to summarize it: you work with a CMP bean that is used by various other beans (JMS in particular). After all things have been done I want to remove the bean? Using ejbRemove() is OK but you may want to use the Collection version of ejbRemov

Re: Entity bean can not remove itself

2006-07-03 Thread D. Strauss
Hello, Markus It's just a little bit difficult to understand why you (the user) should handle the instance of a bean :-/ That's the job of the EJB container (greetings to the OpenEJB people). Or can you post a scenario where you definitely need to remove an EJB? Share your idea :P AFAIK it's not

Creating webservices for Geronimo 1.1 - fixed

2006-06-20 Thread D. Strauss
Hello, David (OT: thx to a wonderful mail server who dropped any responses to my request I have to start a new thread ...) Last time we talked about an issue about creating a EJB webservice. It ended in a stacktrace saying that there was a problem finding the webcontainer for it. You mentioned th

Creating Webservices with 1.1

2006-06-18 Thread D. Strauss
Hello, everyone, thx to the new startup script Geronimo 1.1 has now no real problems booting here on my server. My first task was to create a EJB jar that contains a simple webservice. And that brings me to the problem: Geronimo accepts my openejb-jar.xml with the new dependency system without an

Re: 1.1-rc1 Now Available

2006-06-13 Thread D. Strauss
I can start working with RC1. As always, keep up the good work. As you mentioned: maybe there is a workaround for the [L line. Let's hope for the future. Best regards Dirk David Jencks schrieb: > > On Jun 12, 2006, at 11:12 PM, D. Strauss wrote: > >> Hello, Matt >>

Re: 1.1-rc1 Now Available

2006-06-12 Thread D. Strauss
Hello, Matt how did you and the others got RC1 working?? I tried the windows version, I tried the linux version now: all crash with the same exception: 07:56:58,268 ERROR [FileKeystoreManager] Unable to dynamically load java.lang.ClassNotFoundException: [Ljavax.net.ssl.KeyManager; in classlo

Re: TransactionRolledbackException when accessing a Webservice

2006-05-29 Thread D. Strauss
Hello, Aaron, sorry for my late response. Here we go: Aaron Mulder schrieb: > On 5/24/06, D. Strauss <[EMAIL PROTECTED]> wrote: >> Hello, Aaron >> >> I've found the error: it was an initialization problem of the bean. >> Funnily, OpenEjb didn't care

Re: TransactionRolledbackException when accessing a Webservice

2006-05-24 Thread D. Strauss
Hello, Aaron I've found the error: it was an initialization problem of the bean. Funnily, OpenEjb didn't care to inform me about it ;) So, task resolved :P Best regards D. Strauss schrieb: > Hello, Aaron > > I did. But there is nothing noteworthy. I attach the part of the

Re: TransactionRolledbackException when accessing a Webservice

2006-05-21 Thread D. Strauss
nks, >Aaron > > On 5/21/06, D. Strauss <[EMAIL PROTECTED]> wrote: >> Hello, folks >> >> In October, Deepesh encountered an exception that seems to stayed >> unanswered. However, I ran into the same exception today and I want to >> know under wh

TransactionRolledbackException when accessing a Webservice

2006-05-21 Thread D. Strauss
Hello, folks In October, Deepesh encountered an exception that seems to stayed unanswered. However, I ran into the same exception today and I want to know under which conditions this exception occurs. The ST is: Web Service EJB Invocation failed: method public abstract int ds2.kert.ws.WSIF.holeA