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
0
votes
1 answer

Determinant of hessian matrix of a grayscale image is too small in matlab

I am trying to find determinant of hessian matrix of a 50x50 grayscale image. Determinant of matrix I am getting is a very small value i.e 4.7612e-134. I think I am missing something. My code is below. Thanks % computing second derivatives in each…
0
votes
3 answers

How to Set hessian's property" isOverloadEnabled = true "In Dubbo

Thanks in advance. I try to use the "dubbo" to invoke a method which is override.But the console tell me that "Caused by: com.caucho.hessian.io.HessianProtocolException: '' is an unknown code". Search Engines told me that error may cased by…
JK.Huang
  • 1
  • 1
0
votes
1 answer

What does Hessian in Security / Certificate / SSL Context mean?

I am getting an error message that hessian has an issue with active sync Connection. What does hessian in an SSL-Certificate Context? Is it used for handshake?
0
votes
1 answer

R optim(){fExtremes} gets 0 hessian matrix

I am using R {fExtremes} to find best parameters of GEV distribution for my data (a vector). but get the following error message Error in solve.default(fit$hessian) : Lapack routine dgesv: system is exactly singular: U[1,1] = 0 I traced back to…
D.deng
  • 23
  • 3
0
votes
1 answer

Object.requireNonNull skip nullable String

My desktop client communicates with the server through Hessian. Clients call search API method to find member by passed string teamId. public Member findMemberByTeamId(FeedProvider provider, String teamId) { Objects.requireNonNull(provider,…
4ex0V
  • 3
  • 5
0
votes
1 answer

Burlap java server to work with python client

I'm trying to connect a burlap java server with a python client but I can't find any detail whatsoever regarding how to use burlap with python or if it even is implemented for python. Any ideas? Can I build burlap python clients? Any resources?…
Mocktheduck
  • 1,333
  • 1
  • 22
  • 43
0
votes
3 answers

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 seem to be compatible with Guice. public class…
0
votes
1 answer

How to get @Autowire annotation work with Hessian web service? (Setter autowire work fine)

I have spring project use Hessian web service (userMgr). In my client (UserProfileHelperImpl), spring config work with setter autowiring but not with @Autowire annotation. How can I get the same thing with @Autowire? Thanks. web.xml
drakid
  • 320
  • 4
  • 13
0
votes
1 answer

How to send a file from PHP to Java via Hessian?

I am evaluating Hessian to do RPC from PHP to Java. Java is the backend server , which exposes hessian service (via Spring) for PHP . (Yes , I know there are modern/standard REST-style to transfer(POST) file , but Hessian is more efficient , doesn't…
smallufo
  • 11,516
  • 20
  • 73
  • 111
0
votes
1 answer

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
  • 1
  • 1
0
votes
2 answers

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 : UIViewController { idbasicAPI; } @end /// // In…
iPhoneDev
  • 2,995
  • 4
  • 33
  • 44
0
votes
1 answer

hessian, compatibility when server interface upgrade

We are using hessian for java client server remoting. Now we need to change a interface to add a new field. Is there any other way except to add a new interface. the interface looks like public void process(fieldA, fieldB) we want to just to change…
hongshuwei
  • 652
  • 2
  • 7
  • 17
0
votes
1 answer

Which spring version is right when work with Hessian(3.1.3)?

Now i start a hession server with spring(3.2.3.RELAESE)+Hession(3.1.3), then i run a client to call the server, it always print errors as follows: [12:54:20.876] org.springframework.web.util.NestedServletException: Hessian skeleton invocation…
FennZheng
  • 23
  • 6
0
votes
1 answer

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:
ILya
  • 2,670
  • 4
  • 27
  • 40
0
votes
0 answers

Hessian binary web service protocol- C language

I want to use Hessian binary web protocol (http://hessian.caucho.com/) for a J2EE server and I need to communicate with the server using C code (low level hardware devices, that cannot handle C++ programs). I understand that C is not the object…
Radim Burget
  • 1,456
  • 2
  • 20
  • 39