Tagged Questions
Hessian is a simple binary protocol for connecting web services.
7
votes
7answers
2k 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?
4
votes
1answer
262 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 ...
4
votes
3answers
2k 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 ...
2
votes
0answers
243 views
If Hessian is Dead, what should one use instead?
In the comments to this question: Testing Hessian remoting-servlet.xml
Skaffman labeled Hessian a dead duck. So question is: what to use as a replacement.
Criteria for evaluation are:
a drop in ...
2
votes
0answers
345 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
2answers
387 views
Hessian on Windows Phone 7/ Silverlight?
I'm using hessian protocol for communication betwee server (java) and various client applications. Now I started to develop Windows Phone 7 client. I downloaded hessian C# implementation but it does ...
2
votes
1answer
913 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
838 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
1answer
193 views
Is there anyway to return the Hessian matrix when using nlminb in R?
I would like to optimize a few parameters using nlminb in R, and also calculate the standard error of each parameter estimation in order to get t-value. However, nlminb doesn't return a Hessian matrix ...
1
vote
0answers
146 views
Is there any HessianKit Sample project?
I found the hessian/hessiankit for iphone very interesting and i am thinking of using it for this new project im working on that's targeting ipad.
i just couldnt find any sample complete project ...
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
607 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
226 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?
1
vote
1answer
2k 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 ...
0
votes
0answers
23 views
HessianKit linking failure
I am trying to link HessianKit with a simple Xcode iOS test project.
I tried different build configurations.
I added the -ObjC switch to both the linker command line for the library project and for my ...
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
0answers
24 views
Accessing Hessian Java End-point from C++
Say I have a custom object in Java
public com.porto.CustomObject {
String path;
}
and my hessian service interface:
com.porto.CustomObject myRemoteMethod (com.porto.CustomObject);
Using ...
0
votes
1answer
29 views
About matlab quadprog using a structure hessian
I've been using matlab for solving a quadratic optimization problem, using a factor structured hessian, say I have a covariance matrix H and I wrote it as H=A+B*B'.
Then I have a small piece of ...
0
votes
0answers
36 views
hessian protocol deserialization is far slower than the native compiler in c#
I am creating 1000 objects of hessian with 100 entries each so the native C# compiler is completing the job in 300 milliseconds but hessian is taking more than 12 seconds which is too much.
I don't ...
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
60 views
android hashmap to object deserialization
I'm developing for a client for an Hessian server using hessdroid which is a port of hessian to android. The remote method I'm calling returns an ArrayList of objects (Node). That works fine with java ...
0
votes
0answers
163 views
HessianProxy cannot connect to remote service
I wrote a java client that connects to a remote hessian service installed in a remote Virtual linux server. when i try my application with local hessian service (localhost:8080) it works fine ;but ...
0
votes
0answers
33 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
1answer
71 views
Edge Response Removal in SIFT
In Lowe's paper Section 4.1 the ratio of principal curvatures using the Hessian Matrix is used to eliminate points that may belong to an edge.
The paper does not specify whether the Hessian matrix ...
0
votes
1answer
103 views
How to make requests with HessianKit
I am working on an ios app that needs to connect to a hessian service to get live stock prices. I am using HessianKit for ios.
I was told to connect to:
...
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
213 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
379 views
writing hessian serivce
I am new to Spring and Hessian and never used them before.
I want to write a small Hello World Program which clearly shows how this service works.
I am using Maven for list project details and ...
0
votes
1answer
46 views
Record Server Interaction of Hessian based Server Communication for VUGen
Does anybody know of a way to record hessian based server interaction so that it can be used for load tests using Mercury Virtual User Generator (VUGen)?
Possibly something using a logging proxy and ...
0
votes
1answer
221 views
hessianKit in iphone SDK
if I have the custom value object in this framework, how should I do? I have declared and defined the interface and implementation of LoginRequest and LoginResponse, and also, the protocol of ...
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
3answers
3k views
How to decleare custom protocol in iPhone
I want to use a protocol, how can we implement it in iPhone.
///In POCViewController.h
#import
@protocol BasicAPI
-(NSString*)hello;
@end
@interface HessianPOCViewController : ...
0
votes
1answer
200 views
Spring + iBatis + Hessian caching
I have a Hessian service on Spring + iBatis working on Tomcat.
I'm wondering how to cache results...
I've made the following config in my sqlmap file:
<sqlMap namespace="Account">
...
0
votes
1answer
445 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
2answers
539 views
How to set timeout in hessian c sharp
I am using Hessian C# client in my project to talk to a Hessian Java server.
using hessiancsharp.client;
String url = "http://127.0.0.1:2000/test";
CHessianProxyFactory factory = new ...
0
votes
1answer
482 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 ...
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 ...