Before you go ahead with the RC's of Spring Web Services, I would like to point you to this issue registered against spring-oxm: https://jira.springframework.org/browse/SPR-7696
I would consider...
Type: Posts; User: Paul Nyheim; Keyword(s):
Before you go ahead with the RC's of Spring Web Services, I would like to point you to this issue registered against spring-oxm: https://jira.springframework.org/browse/SPR-7696
I would consider...
I think they are supposed to be more or less the same, however we have encountered an issue when using spring-oxm from springframework, so we had to revert back to using spring-oxm from springws.
I...
Yes it is possible. We are doing this in our project.
Just reference the schemas with the standard springframework classpath prefix "classpath:", so in your case that would mean this:
<bean...
Hi.
We are creating web services that will be consumed by a .NET WCF Client. The .NET team wants to use the DataContractSerializer http://msdn2.microsoft.com/en-us/library/ms733112.aspx instead...
When you use and instantiate Jaxb2Marshaller in your testcase, you must remember to call afterPropertiesSet so that it gets propertly initialized
This is normally done by the springframework, and...
When we had this problem it was related to the xalan version on classpath.
see my comment on thread http://forum.springframework.org/showthread.php?t=48691
for more information.
Regards,
Paul
We had the same error message, and it was related to the Xalan version on classpath. 2.6.0 did not work, but 2.7.0 worked for us. Xalan got added to classpath transitively from Xom via Jaxen, so by...
Yes, default it uses Threadlocal, but the strategy can be controlled with a SecurityContextHolderStrategy configuration. I don't know the details here, but the javadoc of the SecurityContextHolder...
If you are using Acegi, you have the information available in the SecurityContextHolder.
Regards,
Paul
I am also looking for this, and I think the correct way to do it is to use WS-Policy, or more specific, WS-SecurityPolicy. I have posted a question on this mailinglist yesterday asking if anyone has...
Hi.
As far as I can see, there is no support for WS-Policy in Spring-WS.
Have anyone implemented WebServices in Spring-WS with WS-Policy?
Are there any plans to include support for it in...
What we have done is to define two MessageDispatcherServlets in our web.xml,
<servlet>
<servlet-name>unsecure-ws</servlet-name>
...
This might be a long-shot, but I had a problem earlier when the xsd did not include the
<xs:schema ... elementFormDefault="qualified"> in my xsd.
...
Hi.
I have been struggling with the problem of automatically generating wsdl on WebSphere (see issue: http://jira.springframework.org/browse/SWS-166), and have had no luck changin to PARENT_LAST...
I have the last couple of days experienced the problem of:
I could not find any simple answer to this on google, so I thought I should share with you the solution in my case which was very...