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
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
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
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
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
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
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://
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