DanielY
DanielY

Reputation: 1171

Java program to a web service\servlet

I've written a java program that handles certain http requests.

Now I'm asked to run this as a web service in IIS.

I've tried to export it as a jar and maybe run it like that...but I didn't succeed.

As far as I understood, I need to re-write the program as a web service or servlet and upload it this way to IIS.

My question is, how to do it (I'm using eclipse)? So far I managed to run a server but I never couldn't make my program to work. Can I have guidance please?

Upvotes: 0

Views: 129

Answers (1)

Bitman
Bitman

Reputation: 2006

This is pretty old article but you can take a look here

For new IIS I'm not sure you can because Microsoft has it's own tech called .NET so I suppose it's better to use other server or use .NET

Also you can use Tomcat connector for IIS which is filter with redirect

Upvotes: 1

Related Questions