I just hit a similar problem; it appeared that the culprit in my app was a bean method that accessed the database but was not wrapped in a transaction. From stepping the through the commons DBCP and...
Type: Posts; User: wabrit; Keyword(s):
I just hit a similar problem; it appeared that the culprit in my app was a bean method that accessed the database but was not wrapped in a transaction. From stepping the through the commons DBCP and...
Thanks for your reply Tareq; I'm using assertions to capture logical errors within my code (i.e. "this should just never happen" things) rather than validating inputs; for the latter I throw...
I use the
SoapFaultAnnotationExceptionResolver.setDefaultFault() method to ensure that any uncaught exceptions in my web service get mapped to a SOAP Fault rather than some grungy stack trace.
...
Hi
I am writing a web service consumer that acts as a client to a SOAP service which authenticates the caller using signed SAML assertions within the WS-Security <Security> header.
These SAML...
Sorry false alarm; found the solution. I was including commonj-twm.jar in the WEB-INF\lib folder of my WAR, and there was presumably a conflict with the WebSphere libraries.
I'm using Spring core 2.5.6 on WebSphere 6.1.
Following the information in the article at http://www.ibm.com/developerworks/websphere/techjournal/0609_alcott/0609_alcott.html, I have set up a...
Hi
I'm using spring-ws 1.5.7, and wiring up my SOAP endpoints using annotations. This is all working fine on Tomcat.
When I try to run on Websphere (and I have wired up the class loader to run...
Hi
I have an application that presents a Web UI and a SOAP service. My
SOAP service uses WS-Security to authenticate (i.e. NOT HTTP authentication), but must be restricted to only be accessed...
Thanks - exactly what I needed.
I'm trying to figure out how to define custom logout handling whilst using the <security:http> tag (e.g. I want to create a DB record indicating the logout event).
I want to use the...
Hi
I apologize if this is an oft-asked question, but I have not been able to find a suitable response in the forum.
I've got a very simple demo setup for spring security in my web app,...
I figured out to get the graph output displayed by BeanDoc; just in case anyone else is ever tripped up by this you need the beandoc.properties file to specify:
graphs.outputType=svg
Hi
Apologies if this is the wrong alias for Spring/BeanDoc issues. Any redirection gratefully received.
I'm using Spring 2.5.6 and decided to try out BeanDoc; I've downloaded the latest...
I don't know whether this is by design as I'm new to using Spring AOP, but thought it worth mentioning in case it's a bug; it's certainly occupied a day of my time before I figured out what was going...
I'm using spring-ws 1.5.5; in my application I have:
- An applicationContext.xml file that defines a PropertyPlaceholderConfigurer bean and gives it the standard id of propertyConfigurer.
- A...
I believe this is still an issue in Spring-WS 1.5.5; is there any timetable for a fix?
Thanks
Alan
Hi
I'm using the Spring-WS 5.5 release, and specifically the SimpleActionEndpointMapping.
For my endpoint the request action is urn:fooRequest, and the response action is urn:fooResponse.
...
Hi Arjen
Bug duly filed:
http://jira.springframework.org/browse/SWS-465
Many thanks,
Alan
Hi
I'm using Spring WS 1.5.5 together with the SimpleActionEndpointMapping, but getting wsa:MessageAddressingHeaderRequired errors from the server when I don't expect them.
As I understand it,...