vote up 0 vote down star

Is it possible to deploy service in the cloud , which does not use standard http protocol for providing services ?. Basically I have requirement to write service which does not use http to exchange messages between client/server. It is traditional client server application , which uses non standard protocol running on port other than port 80. Can we deploy this kind of application in the cloud ?.

What is the recomended approch for such kind of services ?.

flag

2 Answers

vote up 0 vote down

XML-RPC may be what you're looking for.

link|flag
vote up 1 vote down

Sure, as long as no firewalls get in the way "the cloud" per se doesn't require port 80 nor does it require HTTP. For example it's pretty common to deploy DNS services (by UDP or TCP on port 53). All you need to do is check with your "cloud supplier" what ranges of ports can be made available (by removing whatever firewalls might otherwise be in the way); different suppliers will have different policies.

Not really a programming problem, BTW: strictly a system/network administration one.

link|flag

Your Answer

Get an OpenID
or

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