Questions tagged [httpinvoker]

HttpInvoker is a Spring-specific remoting option that essentially enables RPC over HTTP.

HttpInvoker is a Spring-specific remoting option that essentially enables Remote Procedure Calls (RPC) over HTTP. In order to accomplish this, an outbound representation of a method invocation is serialized using standard Java serialization and then passed within an HTTP POST request. After being invoked on the target system, the method's return value is then serialized and written to the HTTP response. There are two main requirements.

First, you must be using Spring on both sides since the marshalling to and from HTTP requests and responses is handled by the client-side invoker and server-side exporter.

Second, the Objects that you are passing must implement Serializable and be available on both the client and server.

36 questions
0
votes
1 answer

httpinvoker not working when csrf protection is enabled in server

I have two spring web applications secured with spring security. These two applications communicate with each other through spring httpInovoker. Access controlling is working fine. But when I enable in spring security under
0
votes
1 answer

Spring Batch : Remote Chunking & Partitioning without using jms

I am new to spring batch. I want to run spring batch jobs using remote chunking & partitioning technique on multiple servers without using jms. I want to use HTTP Invoker or RMI rather than using jms. But, All examples of remote chunking &…
0
votes
1 answer

Difference between JRMP vs HTTP

While going through spring remoting i came across remoting vis RMI and via HTTP invoker. The only striking difference between the two seemed to be the protocols used by the two ie JRMP(java remote method protocol) by rmi and http by http…
jayendra bhatt
  • 1,337
  • 2
  • 19
  • 41
0
votes
1 answer

Client identifier in jboss httpinvoker (auditing)

I am using httpinvoker in JBoss 4.0.4 (little old) for EJB invocations. Since there are so many clients that make calls to my server, I want to identify the clients for each call in server. Is there a way to do this with JBoss httpinvoker? I could…
Suraj Chandran
  • 24,433
  • 12
  • 63
  • 94
0
votes
1 answer

spring httpinvoker error (org.springframework.remoting.RemoteAccessException) on google appengine

I've been trying to set up a httpinvoker based server on my google appengine account. I followed instructions given in spring documentation, but it doesn't seem to work. Can someone please review my code below and let me know whats wrong. My…
user2177316
  • 1
  • 1
  • 2
0
votes
2 answers

HttpInvokerServiceExporter + HttpInvokerProxyFactoryBean - Could not access HTTP invoker remote service

I'm trying to use HttpInvokerServiceExporter + HttpInvokerProxyFactoryBean, but whatever I do I get an exception: org.springframework.remoting.RemoteAccessException: Could not access HTTP invoker remote service at…
T.Dabrowski
  • 165
  • 1
  • 5
  • 14
1 2
3