Tagged Questions

0
votes
0answers
9 views

What’s new in Hessian 4.0?

The Hessian web page doesn't reveal much about the new versions.
1
vote
2answers
28 views

Interoperability by using Spring and Hessian ? Is it possible ?

Hi, 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 …
3
votes
3answers
477 views

Getting started with Hessian

I have a new project that needs a good binary protocol. I was thinking of using Hessian, unless anyone has any better ideas. I was reading through some of their documentation and found it to not be …
1
vote
1answer
61 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
7answers
387 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 …
0
votes
1answer
148 views

How to have a Tomcat WebApp auto deploy sub services?

I've written a service framework using Hessian and want to keep URL's common but the flexability of auto-deploy. If i deploy a Service.war I can access it fine using /Service however, I want a …
1
vote
1answer
37 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
2answers
392 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
0answers
439 views

Which is better JETTY COMET implementation or Resin COMET implementation

We've been using JETTY's suspended servlet implementation to roll our own COMET web applications using JSON messages and XStream. Does anyone have experience with Resin's implementation of COMET and …
3
votes
3answers
555 views

Would you recommend Google Protocol Buffers or Caucho Hessian for a cross-language over-the-wire binary format?

Would you recommend Google Protocol Buffers or Caucho Hessian for a cross-language over-the-wire binary format? Or anything else, for that matter - Facebook Thrift for example?
0
votes
1answer
207 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 …