Creating an oData service question

Associate
Joined
4 Jan 2010
Posts
603
Hi guys,

Ive been asked to set up an odata service on a development server for testing purposes - my googling shows i can do this using a visual studio web api template.

However, the development server is firewalled from the internet and has no visual studio installed. Can i set up the odata service just using my local copy of visual studio 2013 and or do i need to do this development on the server?

I have admin privs, so can install vs but cant download any updates.
 
You won't need Visual Studio installed on the server you deploy to. You'd usually write, build, and test the service locally, then deploy it (copy the files) to the server.
 
You might not need local IIS. VS has its own (cut down) implementation which tends to run most things while you're developing.

There's likely a folder that sites are kept in, but you can configure IIS to tell it where the new service is served from.

Or look at setting up something like Octopus Deploy for automated deployment.
 
Back
Top Bottom