I've written a Spring-WS client app. For some reason the app requests the WSDL from the server when I construct my javax.xml.ws.Service implementation.
public class PoleService extends...
Type: Posts; User: david.easley; Keyword(s):
I've written a Spring-WS client app. For some reason the app requests the WSDL from the server when I construct my javax.xml.ws.Service implementation.
public class PoleService extends...
How do I override the default TransformerFactory?
I can see that TransformerObjectSupport has a transformerFactoryClass property but I can't see any way to access that bean.
The reason I want...
OK, I'm going to assume that Spring-WS provides no straightforward way to achieve this. (Surprising, since other parts of Spring generally provide ample hooks and extension points for customisation.)...
Is it possible to customise an auto-generated WSDL? If so, I'd be grateful if someone could point me in the right direction. I'm guessing it might involve either subclassing MessageDispatcherServlet...
> Why do you have to handle EJBExceptions? THey are runtime exceptions and should bubble up
Some of our web tier actions need to handle certain unchecked exceptions. For example, our...
"Professional Java Development with the Spring Framework" states that "Spring's EJB access proxies [allow you to] switch back and forth from a POJO, local EJB, or remote EJB implementation of a...
Well, I guess I would want it to work in an equivalent way to FormAction.bindAndValidate.
The following rough and ready hack seems to work (for the birthdate sample at least):
Sub-class...
OK, I switched to MultiAction and omitted the calls to setupForm and bindAndValidate. It's now working (with validation still commented out in validation.xml).
That's kind of what I was...
I attempted to convert the birthdate sample to use a DynaValidatorForm.
struts-config.xml:
<form-bean name="actionForm"
...
The Struts sample app (birthdate) uses a SpringBindingActionForm. I want to integrate SWF in to an existing Struts project that uses a lot of DynaValidatorForms. I note the JavaDoc for FlowAction...