Hessian is a simple binary protocol for connecting web services.
0
votes
1answer
59 views
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 ...
0
votes
0answers
29 views
HessianKit iOS: Write/Read Hessian Byte Code to/from file
I'd like to simulate the communication between a server and a client (iOs) both using the hessian protocol.
I don't want to implement a server component for providing the mockup data/objects, so ...
0
votes
0answers
60 views
Hessian: C++ server
I am going to write a client-server application using Hessian protocol for binary serialization.
Do you know if there is a way to do it with C++ server and Java client?
I have found only vice versa ...
1
vote
2answers
119 views
ClassCastException after Data Communication with Hessian Servlet on Android
Heyho. I'm writing an android client which is communicating between a Hessian Servlet and Hessdroid. Everything went fine until i wanted to transmit this selfimplemented type:
client & server ...
0
votes
0answers
38 views
Hessian Client for Image Uploading [closed]
We are using JNLP based client for image uploading. It's quite heavy and needs extra effort.
Is there any JavaScript based simple client available thats supports Hessian Service? We don't want to ...
0
votes
1answer
257 views
spring hessian client socket connection reset
I am using spring 3.1.0, com.springsource.com.caucho-3.2.1.jar and tomcat-6.0.33 both sides (client/server). All the remote service calls are working fine without any issues except long time taking ...
0
votes
0answers
51 views
Can a non web application connect to a hessian server to retrive data?
I have made a simple Java application that tries to retrieve data through a hessian web service. Unfortunately I am getting a response code of 301(access denied) Using the same keys that worked before ...
0
votes
0answers
172 views
hessian webservice client spring
Hessian webservice call fails after initializing spring/AnnotationSessionFactoryBean.
The call before initializing spring works ,but the same call after initializing spring fails.
public class ...
0
votes
1answer
53 views
(Hessian + Swing desktop) Or Struts web application [closed]
Please tell us,
What is the best for performance and speed to get response ..
(Hessian+ Swing application )or (Struts web application?)
-5
votes
2answers
2k views
Autowiring fails: Not an managed Type
I have a big problem in my diploma project and would be very glad if you guys could help me!
I made a Maven Multi Module Project and have 3 "Core-projects"
NaviClean: (Parent)
NaviCleanDomain: ...
3
votes
1answer
108 views
Avoid Hessian to log into catalina.out
i have a problem using Caucho Hessian. I get a lot of messages into catalina.out (tomcat) like this:
'Dec 20, 2012 8:33:08 PM com.caucho.hessian.io.SerializerFactory getDeserializer
WARNING: ...
1
vote
1answer
263 views
Hessian Webservice with REST, Java Spring
Is it possible to have a REST service work hand-in-hand with a Hessian service?
To elaborate I have this interface:
@Controller
public interface PhotoServices {
@RequestMapping(value = ...
0
votes
1answer
57 views
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, ...
1
vote
1answer
79 views
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 ...
0
votes
1answer
313 views
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 ...
0
votes
0answers
60 views
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 ...
0
votes
0answers
214 views
HessDroid: HessianConnectionException: Hessian Proxy cannot connect to http://10.0.0.16:8888/api
I'm developing an Android application that communicates with a Hessian web service running on GAE.
Communication with a deployed service running on GAE works fine, however testing it locally (running ...
0
votes
1answer
75 views
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 ...
1
vote
0answers
127 views
How to implement the file download API function using Java Hessian library
I am trying to implement the file download api as the Hessian document page mentions:
file download API
package example;
public interface Download {
public InputStream ...
0
votes
1answer
195 views
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.
...
1
vote
0answers
267 views
serialization of Base64 string in JSON payload with HessianKit (Objective-C/Cocoa)
I'm trying to connect my iOS-App to an existing Grails backend server. The backend exposes a hessian webservice by using the grails remoting plugin (version 1.3). My Android app successfully calls all ...
0
votes
1answer
266 views
Apache Cayenne ROP Server “No session associated with request.” on Tomcat 7
I develop a cayenne project with a java rich client and an remote obejct persistence server. If i the rich cient connects with a Cayenne-ROP-Server that is deployed on the same machine on localhost ...
0
votes
2answers
285 views
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 ...
0
votes
1answer
450 views
Client side basic HTTP authentication with Hessian remoting in Spring
On the client side i have the following spring bean:
<bean id="partneriLogicImpl" class="org.springframework.remoting.caucho.HessianProxyFactoryBean">
<property name="serviceUrl" ...
1
vote
2answers
338 views
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 ...
0
votes
1answer
115 views
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?
0
votes
2answers
83 views
Return a string values without using return statment in Java
Thank in advance.
I am looking for message type or anything which is fast and easy way to return a String value in Java.
for example. I have a method
void getStringvalues(int a, int b){
int c = ...
0
votes
0answers
299 views
(HessianCSharp) CHessianException: not supported in compact version
I'm using a Hessian C# client library for my .NET Compact Framework mobile app from the following project: https://sourceforge.net/projects/hessiancsharp/. This open-source project produces two dlls: ...
2
votes
4answers
475 views
BigDecimal value is always zero when transfered with Spring remoting via Hessian
When I call a remote method that returns a BigDecimal value via Spring's Hessian functionality, it always returns zero.
Calling the method directly or using the plain Hessian servlet (non Spring) ...
0
votes
1answer
217 views
Calling Java Methods from Php
I have an application with php at front end and Java as Backend. I was using Hessian from php to call Java methodes with returns data from Java to php. and now i got some problem with hessian and I am ...
0
votes
0answers
172 views
HessianServiceExporter only supports POST requests
I am using hessian to connect with php. But it guess there is some thing wrong in my hessian configuration.
I have applicationContect.xml as
<bean name="export" ...
4
votes
0answers
715 views
optimum hessian threshold for SURF feature extraction in opencv + Minimum descriptors matching
Currently I am working on face recognition project where I am using Fisherfaces/LDA to filter out the images on a broader level and then using SURF to verify the output from LDA. What would be a good ...
2
votes
2answers
784 views
HessianConnectionException: (HTTP) 500 error when using Hessian 4.0.7 & Spring 3.1.1
Ok, can't figure this one out at all!
I'm using Spring 3.1.1 and Hessian 4.0.7 deploying into Tomcat 6.0.29
I've created a simple Hessian remote interface but my test keeps failing with;
Exception ...
0
votes
4answers
110 views
Non-container based java remoting?
We're trying to design a new addition to our application. Basically we need to submit very basic queries to various remote databases accessed over the internet and not owned or controlled by us.
Our ...
0
votes
1answer
494 views
How to configure Hessian on Spring MVC with xml config?
I am using Hessian in a Spring MVC project. I create server side implementation and then would like to configure the client. Client can be configured with code that uses HessianProxyFactory for the ...
2
votes
0answers
174 views
Hessian deserializes java.lang.Character as a String
I've used Hessian for a while but just noticed the following behavior. If you serialize a java.lang.Character in Hessian, it deserializes as a String.
public class TestHessianChar {
public ...
1
vote
0answers
172 views
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 ...
3
votes
1answer
207 views
Injecting many decorated instances with Guice — on mixing HessianServlet with Guice
Given the following code in a Guice servlet module configureServlets():
serve("/a").with(new Decorator(new A()));
serve("/b").with(new Decorator(new B()));
...
serve("/z").with(new Decorator(new ...
1
vote
1answer
208 views
Custom objects with HessianKit and java backend
I have an iPhone app that uses HessianKit to talk to my java server. A couple of the methods I use return custom objects, and I haven't been able to figure out how to make them load as the correct ...
1
vote
1answer
114 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
1answer
253 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 ...
1
vote
1answer
183 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
2answers
423 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
1answer
385 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
321 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:
...
1
vote
2answers
256 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
1answer
87 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 ...
2
votes
2answers
640 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 ...
3
votes
1answer
1k 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 ...
0
votes
0answers
275 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 ...