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
0 answers

Hessian ReadMap error

I am maintaining a silverlight application that uses Hessian. What I have noticed that when we are returning lots of data the deserialization code raises an error in the method: ReadMap(AbstractHessianInput abstractHessianInput, Object result) with…
JD.
  • 15,171
  • 21
  • 86
  • 159
0
votes
2 answers

How Objective-C support Java BigDecimal via Hessian?

Server has a Java Bean, it has a instance variable type BigDecimal, but Objective-C cannot map it! I have tried NSNumber, but doesn't work. Does anybody know how to fix it?
Smeegol
  • 2,014
  • 4
  • 29
  • 44
0
votes
1 answer

Java client & server app: Serialization or REST / SOAP / RPC?

I am writing application in Java. It has 2 parts, server and client. I need to communicate between server and client (secure using SSL). I don't have any other non-Java app connected to server (in long future too not), so I am not dependent on…
martin
  • 1,707
  • 6
  • 34
  • 62
0
votes
0 answers

how can i kill other tasks when i click on new button?

I'm developing an android application, so i have a nice GUI with many buttons. Every one when clicked, declenche w new task to load data from distant server (for that i'm using Hessian). for more detail: supposing we have two buttons: the first one…
Sidaoui Majdi
  • 399
  • 7
  • 26
0
votes
1 answer

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 accept the certificate, I click yes but I receive…
jagg
  • 95
  • 6
0
votes
2 answers

Spring RPC with hessian over HTTP works fine on maven tomcat plugin, but return http 500 error on Tomcat server

I work with Spring RPC with hessian over HTTP, it works fine when I tried it on maven tomcat-plugin(Servlet Engine: Apache Tomcat/6.0.29, Java 7). But after I packaged it with maven-war plugin and deployed on a tomcat server.(I have tried both…
Doug Hou
  • 550
  • 4
  • 14
0
votes
1 answer

hessiankit exception NSRangeException

my Service @protocol Service -(int)getPersonCount; -(id)getPerson:(int)index; @end my Protocol @protocol Person @property(assign, nonatomic) int age; @property(retain, nonatomic) NSString* name; @end proxy is made in this…
0
votes
1 answer

Implementing Hessian web service

Hi I am trying to create a web service using hessian but I can't seem to have any luck in implementing even the most basic example. This is my client
aleczandru
  • 5,319
  • 15
  • 62
  • 112
0
votes
1 answer

Force "charset=x-user-defined'" on jQuery Ajax Post

I am trying to call a Hessian web service from a Javascript application, but I'm having issues parsing the response, since jQuery is treating the response as text and stripping the first bytes of it. In my research, I have found out that you need…
FreemanAMG
  • 91
  • 2
  • 9
0
votes
2 answers

HessianConnectionException: 500 Caused by: java.io.EOFException (Android)

I'm using a hessdroid proxy to communicate between my android application and my webservice/hessianservlet. It works immediatly after starting the app, but when I wait a minute and let the app call a network function again (e.g. logout()) I get this…
trek711
  • 207
  • 3
  • 11
0
votes
1 answer

Hessian exclude Fields

Following writing hessian serivce I have setup Hessian webservice in my spring application and its working. Using org.springframework.remoting.caucho.HessianServiceExporter - SpringFramework 3.1, Hessian 4.0.1, public interface RetailService { …
yodhevauhe
  • 765
  • 3
  • 11
  • 33
0
votes
1 answer

class file for javax.serverlet.GenericServlet not found

I have stuck in the class->header file for couple days! I have tried on jni on Client by http://netbeans.org/kb/docs/cnd/beginning-jni-linux.html and http://ringlord.com/jni-howto.html. And it succeeded in return "hello JNI C++" from JNI's…
子昂 陳
  • 111
  • 1
  • 2
  • 7
0
votes
1 answer

Spnego / Kerberos support with hessian

I crawled google a lot to find some documentation on the subject but did not find anything. I am trying to use a kerberos ticket to access a secured server but i get a 401 error. What i do is add a header with the base64 encoded token before calling…
Kemoda
  • 284
  • 1
  • 9
0
votes
1 answer

Image ransfer using hessian protocol from client's folder to tomcat server

My goal is to upload a image(.jpg or .png) from client's folder to tomcat6 server through hessian protocol. And do image processing using opencv on server, then return the image back to client. Question1. Is the following transfering steps…
子昂 陳
  • 111
  • 1
  • 2
  • 7
0
votes
2 answers

Maintaining HTTP session between Hessian web service calls in Spring

I've set up my services as per Spring remoting documentation, but in the client applications I'd like to invoke service methods while reusing the same HTTP session as I'd like to store session related data on the server (instead of querying for that…
Vedran
  • 10,369
  • 5
  • 50
  • 57
1 2 3
10
11