Hi,
I am calling a web service using spring ws & also use jaxb generated classes.
From the ws client i use the WebServiceGatewaySupport, make use of getWebServiceTemplate().marshalSendAndReceive()...
Type: Posts; User: india; Keyword(s):
Hi,
I am calling a web service using spring ws & also use jaxb generated classes.
From the ws client i use the WebServiceGatewaySupport, make use of getWebServiceTemplate().marshalSendAndReceive()...
I am using RAD 7.5,WAS 6.1(EJB3 Feature Pack), EJB3 & Hibernate3 as JPA persistence provider. Not using Spring yet, wanted to see without spring first.
When i call my Session Bean from servlet, my...
Hi Patrick,
with the old dtd way, if u give like this it works fine. It does a lazy init even
without lookOnstartup thing or proxyInterface stuff.
<bean id="ds1" lazy-init="true"...
Hi,
It works fine, if the files are as shown below for beanRefContext & db.xml.
See the 'default-lazy-init="true"' in beanRefContext.xml.
-----------beanRefContext.xml------------------------...
Hi,
The lazy-init is there, it was mistake, i missed it when i sent to the forum.
Thnx
Actually below is my other files,
acutally db1.xml & db2.xml are the same file even though for example i showed it as different file.
db.xml
<bean id="db1" lazy-init="true"...
Hi,
I have following beanRefContext.xml with lazy-init=true.I refer this from ejb1 & ejb2,
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN"
...
Hi All,
I know this issue has been beaten to death. I am getting HibernateLazyLoading exception,
basically saying my session is closed. I think i understand the issue, and i want the...
Spring doesn't provide specific support for working with entity beans, although it does provide support for working with other EJB types.
---> I knew about it, just wanted to know the right way.
...
Hi,
I use spring framework and have session bean using entity beans. How do i achieve caching of entity bean home, so that i don't have do lookup everytime. I know there are some JndiSupport...
Hi,
I have a session bean which extends from org.springframework.ejb.support.AbstractStatelessSessionBean.
and my spring context file for the EJB.
<bean id="x1"...
Thanks.
Hi,
I have two submodules in struts application. I have defined the spring contextLoaderPlugIn in each
submodule sub1-config.xml(default) & sub2-config.xml(/test) file. Also i have two set of...
Thanks Rod.
Hi,
I was just playing around with spring AOP and, i am newbie as far as AOP is concerned. for the below advice, only "before" is getting called.Any idea what's wrong? or is it necessary to have...