Hello,
I am using Spring-ws MTOM-JAXB.
It works perfect with small files, but with big ones truncate that files.
any idea?
thanks in advance,
César.
Type: Posts; User: cesar; Keyword(s):
Hello,
I am using Spring-ws MTOM-JAXB.
It works perfect with small files, but with big ones truncate that files.
any idea?
thanks in advance,
César.
hello,
JIRA issue:
http://opensource.atlassian.com/projects/spring/browse/SWS-156
thanks.
Hello again,
i think that i have mtom enable in web service , because log:
09 jul 2007 13:15:36,965 DEBUG...
Hello,
i have a web service that i want to return an attachment.
i use jaxb2 and spring-ws- rc1.
i try with 2 schemas:
first:
Hello,
I'm sorry, i don't see the Next>link.
effectively the problem is resolved, thanks.
César.
Hello Arjen,
i download rc2-SNAPSHOT from
http://s3browse.com/explore/maven.springframework.org/org/springframework/ws/spring-ws/1.0-rc2-SNAPSHOT/
and my problem continue,
the endpoint: ...
Hello,
i have an application that was working with m3, but when i migrate to rc1 i have this problem:
the client call:
getWebServiceTemplate().sendAndReceive(requestSource, result);
when i...
Thank you Arjen.
Hello Arjen,
i need to sign the soap body referenced by an Id attribute.
i would like to use XwsSecurityInterceptor but i can't, because my company have buy a product to sign and i have to use...
hello,
how can i add an attribute to soap body in an Interceptor?
thanks in advance,
César.
Hello all,
i need to access a web service via ssl with saaj api.
all i found to do this is setting system properties:
System.setProperty("javax.net.ssl.keyStore", "...");
......
hello,
i don't have experience with maven, but i try build airline and trace:
[INFO] Cannot execute mojo: resources. It requires a project with an existing pom.xml, but the build is not using...
i have a AbstractDomPayloadEndpoint with:
Element invokeInternal(Element requestElement, Document doc)
this web service have to call another with the same body (requestElement). i have create a...
Hello again,
i have change the jars
saaj-api.jar
saaj-impl.jar
with the distributed in jwsdp 1.6, and add
FastInfoset.jar
and run in j2se1.4. but for now don't validate the request.
...
hello again,
i dowload jaxp 1.3 from java net, and have put jars in WEB-INF\lib. Application startup well, but when i do a request, SaajSoapMessageContextFactory.createContext throws this...
hello,
i use websphere 5.1 (j2se 1.4 and j2ee 1.3) with classloader configure parent_last (classes and jars of WEB-INF load first).
In many applicationes i put the xml api's (xalan, xerces,...
hello Arjen,
i have a web service, and the request is signed (with a private key), the XwsSecurityInterceptor have to validate the sign in validateRequest(SoapMessageContext soapMessageContext)....
Hello,
i could want to validate request and sign response with the XwsSecurityInterceptor. I was reading the IntegrationTest of the unit test of xwss and the interceptor has 2 callbacks:...
Hello,
jet I have read that spring-ws requires j2ee 1.4.
I try to execute in j2ee 1.3 (was 5.1), and throws exception:
org.springframework.web.util.NestedServletException: Handler...
hello,
like poutsma said, i has implement SoapEndpointInterceptor.handleResponse()
i wanted to add an attribute Id to the soap body (to sign the body later), but when i add it:
...
hello poutsma,
thanks for your help.
i'll try do it like you said.
hello,
i try to create a web service with AbstractDomPayloadEndpoint.
i need to sign the payload with xmldsig and add the signature to a soap header.
how access to MessageContext? have i use...
hello routis,
yes, i use XML-Signature (apache xmldsig) and the signature is also XML, like this:
<message_signed xmlns="http://.../messages">
<message Id="12345">
...
</message>
...
hello,
i have a web application with Spring that in the manager create a xml and sign with enveloped signature, and send it via https with java.net.URL.
i have to expose as a web service,...
Hello,
i have an application that works fine un Spring 1.2.5.
i update to 1.2.6, and not work.
in a FormController, i have:
public ModelAndView onSubmit(
HttpServletRequest request,
...