Hi,
Is there any way to have remote calls from a given client being associated to a given session?
I changed the httpInvokerRequestExecutor property of my proxy beans, using commons...
Type: Posts; User: p.g.taboada; Keyword(s):
Hi,
Is there any way to have remote calls from a given client being associated to a given session?
I changed the httpInvokerRequestExecutor property of my proxy beans, using commons...
Thanks! Meanwhile I started using Spring 3.1. Thinks work really better there... :-)
I agree on many levels.
In my special case, I simply need to be able to property-config the locations of a PropertyPlaceholderConfigurer.
Even SPeL, as far as I know, could solve it here, as...
Thanks, well, I know it does not work.
Oh, you missed that the first PropertyPlaceholderConfigurer defined the "$app{" prefix.
Well, I need the value defined in the property files...
Hi,
there are quite a few postings to this topic. There are some new things in newest Spring versions, so I would like to ask if things have changed or stay the same (like PriorityOrder and things...
Hi.
i have a one2many relation here. I would like to create a Specification/ Predicate that checks if the sum of a give property on the many side is 0 or not.
Example:
BoxBean
...
It is my fault: one can provide the countQuery as attribute in the query annotation. That should do the trick, the only problem is I still get the "limit x,y" added to my countQuery.
Here is the...
I think I found it:
When paging, spring-data-jpa proxies issue a count statement against the database.
The problem is, the count statement in my case does have
limit 30, 2
This is driving me crazy...
What I have tried so far:
- downgraded from snapshots to RC1 (with core-common 1.1.0-M2)
- tried the code without pagination
- I can walk over all records
...
Hi,
I am still test driving spring data. On a given entity, I am not getting the second page of data (dao returns null instead of "page").
@Query("select t from appointment t where...
Hi,
I am test driving the jpa implementation of spring-data. Unfortunately I am having trouble starting the context, the exption is:
Unexpected exception parsing XML document from class path...
That is not true. I can configure the path:
<Context path="/apppath" docBase="/local/somepath/app_data/CMS_FILES">
But this is not my issue, this has always worked under tomcat so I do not...
Oh wow, so your product pages are outdated/ selling something that does not exist?
I am test-driving tc-server.
I like the pics of the admin console in the product homepage.
I downloaded the spring tc-server eval.
I crated an instance from scratch from the default (BIO)...
Hi,
I have some static resources stored under /local/some/path.
I need those files to be delivered under http://my.server:8080/static/....
I thought the best way would be to create the...
Hi,
I am playing with the tc-server developer edition and running into the problem of starting it behind an apache/ ajp connection.
My "developer setup" is on a vmware, that is the reason why I...
Hi,
I did not get it running out of the box. Is there somewhere a nice blog explaining how to do the Speed Tracer / STS / TC Server / Spring Insight magic on a plain GWT/ Spring application?
...
Hi,
I read it is gone for 3.x...
Is there a migration path?
brgds,
Papick
I am simply autowiring my rpc servlet implementation during initializiation. Ok, it's just for serverside, but it is
- easy
- works with annotations
- keeps me in control
I have just...
I am adding metadata to a RemoteInvocation (using HttpInvoker).
As soon as I add an instance of
public class SessionInformation implements Serializable {
...
}
I get an "Unexpected end of...
Solved the problem with greedy-proxying the osgi:set.
brgds,
Papick
As stated I am using a marker interface and an annotation for all my services that should be exported:
public interface MyService {
String getVersion();
}
@MyServiceMetadata(path =...
Hi,
I have a bundle that "collects" all osgi exported services via <osgi:set />. Now I would like to export those via http remoting.
I can collect all services by collecting them through a...
<s:http auto-config="false" >
<s:intercept-url pattern="/**" access="ROLE_EDITOR" />
<s:form-login/>
<s:anonymous />
</s:http>
...
Hi,
I am running into a quite simple problem. I am using the ns based config and would like to change the validity of the token. From looking at the code and the reference guide I thougt that his...