Iassan,
I know its been over a year but I'm in a similar situation. However I can't get Tomcat to see remote EJBs on Glassfish. I've setup my spring config in a similar manor as you have above,...
Type: Posts; User: sellerjd; Keyword(s):
Iassan,
I know its been over a year but I'm in a similar situation. However I can't get Tomcat to see remote EJBs on Glassfish. I've setup my spring config in a similar manor as you have above,...
Thanks for the response gmatthews,
Our application is client/server and not web (yet). So adding the WAR simply to get the hibernate mappings loaded, seemed like a bit of overkill. But, since we...
It appears that if you put the HbmMappings.jar file in ExampleEAR/lib and then reference EACH hbm individually in the context file via the "mappingResources" property, the mapping files are found and...
It appears that if you put the HbmMappings.jar file in ExampleEAR/lib and then reference EACH hbm individually in the context file via the "mappingResources" property, the mapping files are found and...
Maarten,
It turns out that I got it to work by creating a jar of my hbm files, creating a WAR, adding the WAR to the EAR and then putting my hbm jar in the WAR's WEB-INF/lib directory. The .sar...
gmatthews, thanks for the response.
It turns out that I got it to work by creating a jar of my hbm files, creating a WAR, adding the WAR to the EAR and then putting my hbm jar in the WAR's...
I'm having problems loading the hibernate mapping files in the following configuration:
JBoss 4.0.3
Spring 1.2.7
Hibernate 3.0.5
EAR containing MDB and multiple JAR files.
I've tried various...
Wow, what a workaround. I'm attempting (as most all developers) to be as non-vendor specific as possible, I'm somewhat new to the guts of deployment and expected to have some vendor tie-ins for each...
I am having this exact same issue. Trying to specify hibernate mappings via the mappingJarLocations property and get the same error "file not found" as stated in this thread.
Did anyone come up...
Ok, so I understand a bit more now. I deploy my MDB that extends AbstractJmsMessageDrivenBean and Spring takes care of most things behind the scenes for me (getting context etc).
Where do I tell...
Bill,
Thanks for the response. Looking into it more...
-Jay
Are you saying that Spring and MDBs shouldn't/can't be used together?
I found the JBossSpringIntegration written by Justin, on JBoss.com and I seem to have my MDB depolyed via this approach, but...
I'm attempting to implement an asynchronous messaging client/server solution using Spring. One of the requests is to solve this using MDBs (Message Driven Beans). I've found very little support for...