Has anyone implemented ONC RPC in Javascript? I need this to talk to a legacy server system and I was wondering if I could source the data directly rather than proxying through another server in Java or C.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
i’m deep into javascript. specialy serversided with nodejs.
clientsided this is impossible because javascript in the browser can only speak http so you could only implement it serversided.
in case you would want to use javascript serversided, nodejs could do this without any external dependencies but sadly there has not been made a module for this special purpose yet. (as far as i seen)
if you would go this way i would recommend you to take a look at socket.io in order to have realtime communication between your browser and your server.
this way making a serversided proxy would not create a too huge overload.