FWIW, I replaced AxiomSoapMessageFactory with SaajSoapMessageFactory and the response message was correctly produced:
<Parent>
<axis2ns1:SomeDate...
Type: Posts; User: breidenr; Keyword(s):
FWIW, I replaced AxiomSoapMessageFactory with SaajSoapMessageFactory and the response message was correctly produced:
<Parent>
<axis2ns1:SomeDate...
We are in the process defining a web service schema and the issue of what to do with null values came up. I wanted to get other's thoughts and what is considered a best practice.
Suppose I have a...
Is this available in any public Maven repository? If not, are there plans on making this available in the near future?
Thanks, and great work.
First, let me say I have been wrestling with this in my head for the past couple of weeks. I have not implemented this yet, but I think I have a workable solution...
In my mind, this really boils...
FWIW - I tried
DocumentBuilderFactory documentBuilderFactory = DocumentBuilderFactory.newInstance();
documentBuilderFactory.setNamespaceAware(true);
DocumentBuilder...
Try this:
<repositories>
<repository>
<id>springframework.org</id>
<name>Springframework Maven SNAPSHOT Repository</name>
...
(Appended: FWIW we changed from SaajSoapMessageContextFactory to AxiomSoapMessageContextFactory, which effectively goes from DOM to SAX, and everything worked like a charm. Hmmmm.... While we are...
I will try to get you all of the relevant info. First, the code:
Domain object:
package com.countrywide.businesscalendar.domain;
import java.util.Date;
/**
We have been struggling getting Castor to work as our marshalling framework, only to run across this in the org.springframework.oxm.castor.AbstractMarshallerTestCase class this morning:
public...
I am just getting started with Spring-WS. My ititial EndPoint implementation subclassed AbstractDomPayloadEndpoint and manually handled the Marshalling/Unmarshalling. I now want to try it by...