I currently have server side remoting calls provided by
<bean name="/application" class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter">
What would be the best way to...
Type: Posts; User: mores; Keyword(s):
I currently have server side remoting calls provided by
<bean name="/application" class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter">
What would be the best way to...
org.springframework.web.context.request.ServletRequestAttributes sra = (org.springframework.web.context.request.ServletRequestAttributes)...
When using HTTPInvoker, how can one access the HttpServletRequest inside the service object ?
I need to access methods like getUserPrincipal() and isUserInRole("manager").
It seems that CasAuthenticationCommonsHttpInvokerRequestExecutor will not work against the current cas client for java.
A feature request has been submitted to support sending a ticket in via...
within the override of createPostMethod:
postMethod.addRequestHeader( "ThisIsWorking", "Yes" );
postMethod.addParameter( new...
I am trying to implement CasAuthenticationCommonsHttpInvokerRequestExecutor from this: http://forum.springsource.org/showthread.php?102691-cas-spring-security-proxy-authentication&p=347818
But so...
I have a web service that is protected by jasig CAS.
I need to pass a ticket as a parameter along with the execution of the web service.
Is there an example how this can be accomplished ?
Here is how I can change parameters at runtime:
org.springframework.beans.factory.support.DefaultListableBeanFactory factory = new...
The docs say that CommonsHttpInvokerRequestExecutor allows to use a preconfigured HttpClient instance. How can this be accomplished ?
I would like to change HttpClient parameters at runtime.
The...