[JBoss-user] [Persistence, JBoss/CMP, Hibernate, Database] - how do I run SELECT queries against CMR tables ?

2006-06-28 Thread zoolai
I have a CMR defined on 2 entity beans and I've inserted in both entities XDoclet "@ejb.data-object" tags so I expect that my exposed CMR methods should be available for me in the generated data object classes... but they are not. I've annotated my CMR methods with "@ejb.interface-method" so I g

[JBoss-user] [JBossWS] - Re: anyone know the Username and Password for accessing the

2006-03-13 Thread zoolai
Folks, thanks for the replies to this issue. I was able to get the SSL EJB endpoint to work by storing the generated .wsdl file at a separate url (a regular HTTP url) and accessing it from there in order to create my Service object. In this way, I avoided the realm authentication problems. Then

[JBoss-user] [JBossWS] - Re: anyone know the Username and Password for accessing the

2006-03-13 Thread zoolai
By the way, the realm credentials I mentioned above have nothing to do with the SSL keystore information - these credentials have to be defined in the EJB config files (in \server\xxx\conf\props\*.properties) and directly in the bean's xdoclet code: e.g. @ejb.security-role-ref

[JBoss-user] [JBossWS] - anyone know the Username and Password for accessing the EJBS

2006-02-23 Thread zoolai
I recently set up JBossWS to use a stateless EJB endpoint over SSL connections. My app deployed fine (no errors) on the server, and I have my required client-side truststore and server-side certificate and keystore set up. However I tried to access the .wsdl file via web browser and up popped a

[JBoss-user] [JBoss Eclipse IDE (users)] - Re: EJB web service development in JBoss-IDE 1.5 via xdoclet

2006-02-08 Thread zoolai
sorry, the merge point code was left blank in translation. should have read: : : < ejbdoclet destDir="${generate.dir}" ejbspec="2.1" mergedir="mergepnt/ejb"> : : View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3922331#3922331 Reply to th

[JBoss-user] [JBoss Eclipse IDE (users)] - Re: EJB web service development in JBoss-IDE 1.5 via xdoclet

2006-02-08 Thread zoolai
Have you tried implementing a *merge point* in ant ? Perhaps you can circumvent the problem by forcing ant to insert the correct nested xml nodes for you : e.g. in your build.xml file define a merge point : : : : : then in the merge directory, define a "session

[JBoss-user] [EJB/JBoss] - Re: "FROM NOT FOUND" errors

2006-02-03 Thread zoolai
Eventually figured out what was happening: I had several "findAll()" ejb finder methods empty. This works fine under JB3.2.7 but for some reason, JB4 did not implement them for me. Had to go through each EJB and manually flesh out the SQL queries for each one. View the original post : http://

[JBoss-user] [EJB/JBoss] - "FROM not found" EJB-QL errors when deploying to JB4(jdk1.4)

2006-01-27 Thread zoolai
I'm using JBoss 4.0.3SP1, JDK1.4.2_10 (and EJB2.1) and I'm seeing these errors during deployment of my .ear file to JB4. I checked my ejb finders methods for empty queries but they're fine. Also, the same "LiveView" code runs just fine when deployed to JBoss3.2.7. Any ideas on how to solve this pr