Thanks.
I found an example in the petstore example. Got it working.
Type: Posts; User: cig; Keyword(s):
Thanks.
I found an example in the petstore example. Got it working.
Hi I am trying to invoke a JAXRPC service which accepts a User Defined Object using the Spring JAXRPC client. It works great for standard types but breaks with a user defined type. Does anybody have...
Hi
I am trying to use spring jaxrpc remoting, when I run the client code I get the following exception:
My client code looks like this:
Just to expand on my question...
Any plans to build the same type of support as the Apache Beehive project?
Hi
Does anybody know whether there are any plans in place for Spring to support JSR181 (Web Services Metadata)?
thanks
Hi ram_2000
Thanks for your reply, unfortunately that did not work. To answer your question of whether the wsdl is generated by AXIS, the answer is yes.
Do you have a simple example which...
Hi
I am trying to use JaxRpc to consume a web service. I have configured my bean the same way that the jpetstore sample shows, ie: as follows
<beans>
<bean id="HelloWorldService"...
Hi Juergen
When I explicitly wrap the method doStore(Deal) - which calls DealsHolder.add(Deal) in a transaction, it works fine and that is without first loading DealsHolder first. Not sure if I'm...
Hi
I have used declarative transaction management to specify that a method called, add(Deal) on a class called DealsHolder should be executed within a transaction. Below is the declaration from...
Does anybody have any idea why the Kodo JDO implementation does not seem to pick up the transaction which I'm passing it? I have tried both the declarative and programmatic approaches. Any ideas...
The JdoTransactionManager. Below is a snippet from the applicationContext.xml,
<bean id="pmf" class="org.springframework.orm.jdo.LocalPersistenceManagerFactoryBean">
<property...
Hi
I am using Spring with kodo JDO. I am trying to get the programmatic transaction management working. The code I use looks as follows:
protected void doStore(final SPJDeal dealForAddition) {...