I have 1.WebSphere web app and 2.Node.js web app, both are running independently. Currently WebSphere app is able to speak to Node.js app via HTTP/HTTPS. Now I have reached to the point where I want to inform the WebSphere app for certain changes from Node.js app. I know about socket.io but it will work within the application. Is there any solution like socket.emit
from Node.js and socket.on
in WebSphere app?
Asked
Active
Viewed 99 times
0

Rahul Matte
- 1,151
- 2
- 23
- 54
-
I'm not sure I understood why `socket.io` is not a viable solution. Can you explain in more detail what do you want to do and why socket.io does not work for you? – Deividas Mar 01 '17 at 11:37
-
@DeividasKaržinauskas I didn't tried socket.io for two different servers, I have tried within nodejs – Rahul Matte Mar 01 '17 at 11:46
-
What is it that you are trying to achieve? – Deividas Mar 01 '17 at 11:48
-
I want to send data from nodejs server to websphere server – Rahul Matte Mar 01 '17 at 11:50
-
Possible duplicate of [How to make an HTTP POST request in node.js?](http://stackoverflow.com/questions/6158933/how-to-make-an-http-post-request-in-node-js) – Deividas Mar 01 '17 at 11:53
-
Please check the page above - I think making an HTTP post request may achieve what you want to do. – Deividas Mar 01 '17 at 11:54
-
ok thanks @DeividasKaržinauskas – Rahul Matte Mar 01 '17 at 12:00