up vote 1 down vote favorite
share [g+] share [fb]

I'm searching for a possibility to run a java RMI application via webservice or an internet protocol.

is there any framework or solution that says "I can run RMI as WebService with WS-Security" or "I can run RMI via HTTPS" etc.

or is tunneling RMI over HTTP or SSH the only way?

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

May I ask why you're intending on using two remoting technologies over one another?

Edit: RMI over SSL

link|improve this answer
it is a prototype for a protcol in a research project. first the protocol was implemented as a webservice and now the technology shall be changed to java RMI. but there also shall be a fall back strategy for this prototype to run it as a webservice again. i think the major points are the firewall aspect (because webservices dont have problems there) and the second is the security aspect - therefore HTTPS not HTTP or a WS with WS-security – axel Jul 30 '10 at 9:19
1  
Easiest way is RMI over SSL, see my edit. RMI over WS is also possible, albeit more involved. – NT_ Jul 30 '10 at 9:30
thx a lot for the SSL solution. could you be so kind to explain the way RMI over WS in a very short and simple way – axel Jul 30 '10 at 9:45
Have a look here: java.sys-con.com/node/37012 – NT_ Jul 30 '10 at 9:58
ok thx. i think this fits my needs at the moment. this article is from 2002 and describes the development of such a framework - do you know if there are any frameworks available now? have you heart about XSOAP (aka SoapRMI) extreme.indiana.edu/xgws/xsoap – axel Jul 30 '10 at 10:24
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.