Questions tagged [hessian]

Hessian is a simple binary protocol for connecting web services.

Hessian is a simple binary protocol for connecting web services. More info at http://hessian.caucho.com/

158 questions
2
votes
2 answers

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
Jens Schauder
  • 77,657
  • 34
  • 181
  • 348
2
votes
0 answers

Pytorch second derivative stuck between two errors: Buffers have been freed and variable is volatile

I have a loss function and a list of weightmatrices and I'm trying to compute second derivatives. Here's a code snippet: loss.backward(retain_graph=True) grad_params_w=torch.autograd.grad(loss, weight_list,create_graph=True) for i in…
Jonasson
  • 293
  • 1
  • 2
  • 11
2
votes
1 answer

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 instead of the servlet. I can control the class that…
Sarel Botha
  • 12,419
  • 7
  • 54
  • 59
2
votes
0 answers

Is there a easy way to test Hessian service?

Is there any easy way to test Hessian service? For example, if we write a web service, we can publish it and use http client to test it. So is there any similar way to do that?
xi.lin
  • 3,326
  • 2
  • 31
  • 57
2
votes
2 answers

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 not compile for windows phone 7/silverlight.…
Michal
  • 961
  • 1
  • 12
  • 19
2
votes
0 answers

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 me? My version always shows 404 when accesing with…
ILya
  • 2,670
  • 4
  • 27
  • 40
2
votes
0 answers

How to use spring remoting with hessian and spring security?

We have a three tier architecture and we are using spring remoting in combination with hessian. Currently we have a client app and the business app is running on two different tomcats. Tomcat 1 Tomcat 2 ---------- ------------ |…
Daniel
  • 835
  • 1
  • 7
  • 18
2
votes
2 answers

Avoiding WARNING: Hessian/Burlap: is an unknown class in WebappClassLoader

I'm using Spring and Hessian together in this project with Tomcat as its container. All the Hessian codes work properly (the data is sent and saved without any hitches) but there is this thing that keeps getting logged into the catalina.out Sep 12,…
Cid Immacula
  • 213
  • 7
  • 18
2
votes
0 answers

RabbitMQ with Hessian web service protocol

In my iphone application to get request/response from server using RabbitMQ and my server side using java application. In this case i need to integrate hessian protocol inside my iphone app, what we have to send serialise and de-serialise the…
iOS.j
  • 41
  • 4
2
votes
1 answer

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 google "hessian j2me" you will find posts about this…
Alexandre Victoor
  • 3,104
  • 2
  • 27
  • 27
2
votes
1 answer

Is there any documentation for what runtime exceptions or underlying causes can be thrown when using Hessian?

I have a Java 1.4 web app that uses Hessian to make web service calls. I'm trying to write it as robust and transparent as possible. I don't want any hessian exceptions to make it out of my delegate class when calling the proxy. I want to be able…
Jeff Mercado
  • 129,526
  • 32
  • 251
  • 272
2
votes
1 answer

Intercept Hessian remote call to add information

I suppose this might not be possible but just in case... We have a frontend Java application that communicates with a (ours as well) backend application through Hessian. For logging and auditing purposes we need to pass the user_id of the User that…
Stijn Geukens
  • 15,454
  • 8
  • 66
  • 101
2
votes
5 answers

Hessian serialization library for javascript?

I am just getting started with Hessian and have been surprised to discover that there is apparently no library for Hessian functionality (particularly serialization / deserialization) in javascript. I guess I have 2 questions: 1) Is there in fact a…
Tom McIntyre
  • 3,620
  • 2
  • 23
  • 32
2
votes
1 answer

Spring Hessian Exception

Im looking into handling recovery from Spring Hessian connection being down. What are the exceptions possible that hessian proxy can throw if the connection is down?
Iqbal
  • 81
  • 1
  • 5
1
vote
0 answers

HttpInvoker get choked when trying to return a list with 1000 elements

I wrote a small service class which return a list with 1000 strings. I am using Spring Httpinvoker to get the service and read the list. If the number of the elements in the list is 100 all is going well when I try 1000 it freeze utill there is a…
Nehemia
  • 211
  • 1
  • 3
  • 8
1 2
3
10 11