I was able to find a solution. According to the Spring-WS documentation, endpoints are Singleton beans scoped within the IoC container, and thus, I was able to declare a "destroy-method" in the bean...
Type: Posts; User: newtontwo; Keyword(s):
I was able to find a solution. According to the Spring-WS documentation, endpoints are Singleton beans scoped within the IoC container, and thus, I was able to declare a "destroy-method" in the bean...
I am creating a connection to a BerkeleyDB database in my constructor of an AbstractDomPayloadEndpoint extension.
My question is simple, how can I have this connection closed when the Endpoint is...
Is there anyway to retain the Realm username in a variable?
I'd like to take data submitted by a user and retain it to a file specified by user.
Thanks.
Thanks for the info, I'll give that a go.
Sorry for not including the endpoint information, I'm using AbstractDomPayloadEndpoint.
Returning null responds with a 202 Accepted HTTP message, zero content length.
What I'm looking to achieve is a 200 OK message with an empty SOAP message, eg.
<SOAP ENVELOPE>
<SOAP BODY/>...
I seem unable to structure my invokeInternal to return an empty message, that is, an envelope with and empty body. Is it proper to have nothing but HTTP headers sent when
return null;
is...