Ruby Socket to Java Socket

S

Serge Savoie

Hello !

I have some problem trying to establish dialog between a Ruby
socket(client) and a Java server socket (java.net.ServerSocket).

Everytime I try to write on the server socket I get an "Invalid stream
header" error from the server...

s = TCPSocket.open("host", 9061)
s.write("test \n");

=> Error

Can someone give a little hint on how to start inthe right way on this ?

Thx a lot !

Seurdge
 
S

Serge Savoie

Ok, I have experiment a lot and found that :

When the Java Server use :
in = requestSocket.getInputStream();

It works... I can read what the Ruby socket is sending...

But the real Java server that I have to talk with use :

in = new ObjectInputStream( new BufferedInputStream(
requestSocket.getInputStream() ) );

And in this case I get :

java.io.StreamCorruptedException: invalid stream header
at
java.io_ObjectInputStream.readStreamHeader(ObjectInputStream.java:753)
at java.io_ObjectInputStream.<init>(ObjectInputStream.java:268)
at project1.SergeServer1.main(SergeServer1.java:44)

The client can't change the server so...

Is there a mean to force a header in a way that the ObjectInputStream
will be able to read what I send from Ruby ?

Here's my test Ruby code :

addrinfo = Socket::getaddrinfo('localhost', 9501, nil,
Socket::SOCK_STREAM)
addrinfo.each do |af, port, name, addr|
begin
sock = TCPSocket.new(addr, port)
sock.send("test", 0)
rescue
end
end


Thx in advance !

Seurdge
 
J

Jim Morris

Serge said:
Ok, I have experiment a lot and found that :

When the Java Server use :
in = requestSocket.getInputStream();

It works... I can read what the Ruby socket is sending...

But the real Java server that I have to talk with use :

in = new ObjectInputStream( new BufferedInputStream(
requestSocket.getInputStream() ) );

And in this case I get :

java.io.StreamCorruptedException: invalid stream header
at
java.io_ObjectInputStream.readStreamHeader(ObjectInputStream.java:753)
at java.io_ObjectInputStream.<init>(ObjectInputStream.java:268)
at project1.SergeServer1.main(SergeServer1.java:44)

The Java server is reading a Marshalled Java object, Usually that will only be used for two Java
processes talking to each other.

If you are sending very simple Java Objects you could format it in Ruby and transmit it, but it
would be messy. You will have to read the Sun documents on Java serialized object formats, look at
the ObjectInputStream Javadoc for references to the required formats.

Try using JRuby instead and serialize the Java object in Java.
 
S

Serge Savoie

Thx jim...

we have finally made it by programming a little gateway that talk with
"ordinary" output stream to the outside world (Ruby) and translate to
his older brother that talk with pure Java stream...
 
J

Janna Brossard

Serge,
Can you share this solution with us? I am stuck on exactly the same
thing. I cannot believe I cannot communicate over sockets to a java
server socket! Thanks SO much! -Janna B
 
R

Robert Klemme

2008/9/25 Jim Morris said:
The Java server is reading a Marshalled Java object, Usually that will on= ly
be used for two Java processes talking to each other.

Exactly. Java and Ruby do *not* share a common serialization format.
You must take measures to explicitly handle serialization formats - or
more generally define the protocol you want to use on that connection.
If you are sending very simple Java Objects you could format it in Ruby a= nd
transmit it, but it would be messy. You will have to read the Sun documen= ts
on Java serialized object formats, look at the ObjectInputStream Javadoc = for
references to the required formats.

Try using JRuby instead and serialize the Java object in Java.

There are more alternatives:

- use one of the many XML serialization packages around,
- generally use a SOAP API,
- use YAML on both ends.

Kind regards

robert

--=20
remember.guy do |as, often| as.you_can - without end
http://blog.rubybestpractices.com/
 
S

Serge Savoie

Hello !

The trick is to use java.io.InputStream and java.io_OutputStream to
interface with Ruby socket, this work fine !

I have post the complete code to you Janna.

Hope this helps.

Serge
 
A

Adrian Gh

Hi Serge,
I'm also looking for a solution to this problem. Can you provide me also
with the code?
Thanks
 
Joined
Feb 28, 2018
Messages
1
Reaction score
0
Hello !

The trick is to use java.io.InputStream and java.io_OutputStream to
interface with Ruby socket, this work fine !

I have post the complete code to you Janna.

Hope this helps.

Serge
Hi Serge,
I'm try to do the same, but i can't, Can you share this solution with me ? Thanks SO much!!!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,768
Messages
2,569,574
Members
45,048
Latest member
verona

Latest Threads

Top