Tagged Questions
4
votes
1answer
261 views
Testing Hessian remoting-servlet.xml
We are using Hessian for communication between a rich client and a server.
Due to moving and renaming it happens from time to time that the entries in the remoting-servlet.xml don't match the actual ...
2
votes
0answers
344 views
Hessian with large binary file
how to create file Upload/Downlod servlet using Hessian binary protocol? for files larger than 1GB. I create test for Hessian with large binary data, but if file is more than available RAM size ...
2
votes
1answer
911 views
ClassFormatError: 56 while using hessian in j2me
I am trying to use the hessian j2me implementation @ http://hessian.caucho.com/ using java me sdk 3.0.
http://hessian.caucho.com/doc/hessian-overview.xtp#Hessian%20Client%20for%20a%20cell-phone ...
2
votes
8answers
836 views
How can I integrate Java with .Net?
I have one SDK that is available in Java and another SDK that is available for .Net and would like to write a single application that interfaces with both of them. I imagine I will need to use a cross ...
2
votes
1answer
677 views
Workaround for J2ME Hessian limitations?
The official J2ME implementation of Hessian seems to have serious limitations : complex objects are not supported. This limitation is not mentioned anywhere on the online documentation, but if you ...
1
vote
1answer
26 views
parsing error when sending double from android to php with hessian
I want to send a double value from my android client to the PHP server using hessian but either the writeDouble function on the client or the parseDouble function on the server has an error. (We ...
1
vote
2answers
114 views
How do I send a DateTime or some sort of timestamp from PHP to Java using Hessian binary remoting protocol?
There is a Java service that I need to invoke from PHP that looks something like this:
getProductsForMode(java.util.Calendar date, int modeId)
I'm having trouble mapping my PHP date class to the ...
1
vote
0answers
44 views
Cache Hessian services results base on the service name and parameters
I have to call to get many data from Hessian services, the services are quite slow. Because the Hessian calls do not update data and the results are rarely changed. I wonder is there anyway to cache ...
1
vote
2answers
193 views
Spring AOP ignores some methods of Hessian Service
I have an Aspect with the following pointcut definition
@Pointcut("execution(public de.company.project..* *(..))")
and a spring configuration containing the following
<aop:aspectj-autoproxy ...
1
vote
1answer
86 views
What are the options, settings and exceptions for HessianProxyFactory?
I can't find javadoc for Hessian lib. I want to know how to configure and full usage of Hessian client.
1
vote
1answer
606 views
Spring + Hessian on Tomcat
I have a task to write a web service with use of Hessian and Spring.
Unfortunately there is not enough information so i can't make it work myself...
Please can anyone write a simple Hello World for ...
1
vote
2answers
225 views
Interoperability by using Spring and Hessian ? Is it possible?
Spring in Action book says:
Hessian, like RMI, uses binary messages to communicate between client and service. However, unlike other binary remoting technologies (such as RMI), the binary message ...
1
vote
2answers
221 views
Is the Hessian class SerializerFactory thread-safe?
I'd like to use the Hessian (Java) serialization and need to create a SerializerFactory with custom serializers (to handle BigInteger). Can I create one of these and share it among threads?
0
votes
0answers
14 views
Hessian with JRockit Compatibility
Has anyone run into this exception when running hessian on a JRockit VM?
Caused by: java.lang.ArrayIndexOutOfBoundsException: -418
at ...
0
votes
1answer
50 views
Hessian, Adding a header
I am calling a Java method using Hessian, is it possible to also add HTTP headers before sending a message - so I can add "Authorization" to the header of the message?
I am using Spring, so I ...
0
votes
0answers
32 views
Spring HessianClientInterceptor overloadEnabled default value?
I see the default value of org.springframework.remoting.caucho.HessianClientInterceptor.overloadEnabled is false. So why is it false? What is the disadvantage when set it true?
Thanks!
0
votes
0answers
180 views
Release client hangs forever when server has issue (may be socket reset) during calling hessian
I have a client calls to a server through Hessian. During that time the server is not stable and ussually have Socket reset error. And the client was hangs at the below log. So how can I release this ...
0
votes
1answer
210 views
Does Hessian have a timeout?
Does the Hessian protocol have a timeout?
Note: I am not using Hessian4J. Instead, I am using Spring for exporting the Hessian services and my own code for handling Hessian request.
0
votes
2answers
162 views
How to integrate Hessian with Guice?
We're looking at technologies for an up and coming project here and I really want to use Guice as our dependency injection framework, I also want to use Hessian for client/server comms, but it doesn't ...
0
votes
1answer
263 views
Hessian with large binary data (java)
I'am looking for a complete example of large binary data transfer with Hessian (java) caucho implementation.
Where can I found one ?
Zig
0
votes
1answer
444 views
Hessian Web service invocation from a JavaFX Applet
I'm trying to invoke a Hessian Web Service from a JavaFX applet. I know it needs some reflection permissions so I signed it myself for testing but even then it doesn't work. The browser asks me if I ...
0
votes
1answer
479 views
With hessian in Java, how do you control instantiation?
I have a cache of objects (not the HTTP session attributes) and I want to be able to get an object from this cache when a Hessian request comes in and have Hessian execute the call on this object ...