Hi,
I've noticed that I'm not seeing a redirect after POST where the result is a transition to an end-state. Either due to successful submission or due to an exception. The end-state in these...
Type: Posts; User: derek; Keyword(s):
Hi,
I've noticed that I'm not seeing a redirect after POST where the result is a transition to an end-state. Either due to successful submission or due to an exception. The end-state in these...
Hi,
This problem continues. It is still exclusive to Safari. In addition to the version mentioned before there has now also been one incidence with a slightly earlier version of Safari on Windows....
Hi,
Getting an error in logs where SWF is confused about the state it should be in.
Have seen the error a few times now and each time it appears to be a different user but a common factor is...
I suppose one solution to my question is to avoid using the Spring Form Tags for the Select control and just use plain html with standard jstl. Still interested in hearing any other thoughts on this...
Have a select tag in a form for the user to select 1 from a list of Drinks.
<form:select path="drink">
<form:option label="select drink ..." value=""/>
<form:options...
Hi Marten,
Thanks, I was just discovering that myself. ClassUtils is a handy tip.
I'm proxying JDBC connections and statements to try and see exactly what Hibernate is doing as I'm encountering...
Hi,
Am using:
org.springframework.aop.framework.ProxyFactorylike so:
if (returnValue instanceof Connection) {
ProxyFactory factory = new ProxyFactory();
...
For future reference:
Ran into a further problem as each of the Registries/Services was to be exposed via a different IP address. This means I couldn't simply specify the IP address to bind the...
Was able to solve the problem. Fortunately I was exporting a different interface to the Service each time. With only one of these extending Remote, the export of that was done in a traditional...
Have a service POJO that I need to export twice, once using plain sockets and again with SSL.
Running into all sorts of problems mainly due to the environment this is to be used in so wondered if...
Thanks, I'd even checked the reference but didn't find that.
Derek
Need to inject an int value where the value I need to inject is specified as a static field in API, so for example, config might end up looking like:
<property name="limit"...
Your setup is different to mine so your mileage may vary, but I'd recommend you upgrade to the latest 1.0.5-SNAPSHOT (not 1.0.4) as a first step. The problem I encountered was only introduced in...
Turns out this has already been reported and fixed for 1.0.5:
http://opensource.atlassian.com/projects/spring/browse/SWF-378
Am testing it now.
Trying to use SWF with Tomcat session replication clustering.
Where a flow starts in Server A, on the first request to Server B
The Session has been replicated ok ...
Server B Session...
Is it only Axis that has this problem, or is it the same with other implementations?
That's not entirely correct. I may be mistaken too, but my experience a year or so back was that the Spring proxy solution doesn't throw the business exceptions declared by the service interface. It...
I had a look at where that might fit in and found I could just use an anonymous inner class to extend AbstractExecuteJavascriptAction.
response.addAction(new...
Hi Sergio,
That's great, thanks.
I've read the code and it looks ok, would be much easier for me to test if MOD-386 was fixed too though :).
Cheers,
Derek
Odd problem that.
Affected both FF 1.0.8 and FF 2.0.0.4. I'm not familiar enough with the Javascript spec to know whether I was actually doing something wrong.
Problem seemed to stem from the...
On a related note, for the moment, I just added a wrapper function on the client but that is giving an error:
client side js
<script>
function scrollTo(params) {
...
I need add an Action to the response to call a Javascript function on the client.
Function I want to call is: window.scrollTo(0,0);
As far as I understand from the docs,...
That would be ok, except there is also a need to do some clean up work in removeOldErrors(...). Would be tricky to provide a generic solution that would be able to determine what to clean up.
...
The ErrorRenderingCallback is called once for each error. I want that but I also want to add some components/actions once only per response so long as there is 1 or more errors.
OK. By the way, I was obliged to implement my own ValidationHandler as, when there are field errors I also include an action to display a message at the top of the page alerting the user to the field...