WCF Data Services (OData) deployment on IIS 5.1 - wcf

I have developed a WCF Data service using VS 2010, I am able to run it and get the data as feed by running using VS 2010.
I published the service on IIS 5.1 but I m getting http: 404 error.
Can anyone help to deploy the service on IIS 5.1 step by step?

I found a bit on it here.

Related

Asp.Net Core 3.0 API app requires restart frequently on IIS Windows Server 2016

I have hosted my Asp.Net Core API project on IIS on Windows Server 2016 and also installed hosting bundle for Asp.Net core apps on that; have to restart my application after few hours. Please help me to solve this.
What is the problem? Is there any error message? You need to be more specific on your issue.

WCF Web Service : How to run?

Am planning to build a WCF Web service using Visual Studio 2015. I came up with a sample web service that i can launch from visual studio and this works fine when i call the APIs from browser on local host.
Now i want to deploy it in a server. Am not sure how I can deploy in a server. The final out put of the web service is a DLL.
Can someone explain to me how to deploy this in a Windows server?
Do i need to run this web service DLL as a service?
Does it got anything to do with IIS?
As per your request, I have made this an answer.
If you're looking to host a WCF service which is exposed to the outside world then the best solution is to host the service via IIS which you can find out how to do by reviewing the following article.
You can find a more visual tutorial here.
If you encounter errors after publishing to IIS then please refer to the following StackOverflow answer to see which Windows Features must be enabled.

Installing Silverlight 4 in Windows server 2012, Ria service applications not working

I have the flowing setup
Windows server 2012 Standard
IIS-8
Ria services 1.0 sp1
Silverlight 4
I need to make this applications work but I tried about anything to make this setup work. Any one know What i need to install to make Ria services work in this environment.
Already tried to install ria service on the server and using the option SERVER=true
I just keep getting the 404 when trying to connect to the server on web-config. I tried to include the wcf tracing on the web-config but the trace doesn't register anything.
Anyone have a step by step installation guild from a just installed server to a server that cans run ria service application of silverlight 4?
already tried everything here WCF RIA Service deployment issue
You also need the HTTP Activation feature installed for your IIS.
http://social.msdn.microsoft.com/Forums/en-US/silverlightwcf/thread/6539af8b-96f1-4c4b-b03e-3973f3a5744f

Authentication error during acess WCF service through IIS 5

I have hosted a WCF service in my local machine(XP SP3) lets name as PushService, I am consuming this service in PushServiceClient. When I keep PushService project in running mode and try to push data from PushServiceClient I am able to Push the Data(DB is in another machine). When I stop PushService project in VS 2010 and Consume PushService hosted through IIS then I am not able to Push the Data.I am facing Authentication error during connect to DB. I am not getting where its going wrong.
IIS Version: 5.0
Permission in IIS : Anonymous Acess
Binding: WSHttpBinding(Tried Basic http also)
Security mode: None
Thanks in advance,
Manjunath
Does IIS worker process have permission for database access? Impersonating the host would solve your problem.
This is due to lack of Permisswion to acess the DB, If using IIS 5.1 then in coding set it to take Default credentials if its in IIS 6.0 (Windows server 2003) set it to take local Identity in IIS AppPool. I will get back with full details on it.
Thanks Guys for your reply.
Manjunath

Debugging WCF service hosted in IIS 6.0 using Visual Studio 2005

I've created a WCF service selecting 'WCF Service' in installed web site templates in VS2005. I've added a ASP.Net client for the service in the SAME solution. I published the WCF service in IIS 6.0 and configured it to run in .Net Framework 2.0.
I did an IISAPP in command prompt and identified the PID of the w3wp.exe process of my service application in IIS. I attached the debugger in VS to that process and started a new instance of the asp.net client project.
But i'm not able to step in to the service and the breakpoint is not enabled at all showing 'No symbols have been loaded'.
Any insights on this? Can i debug a WCF service hosted in IIS 6.0 using VS 2005 where the service and client resides under SAME solution?
Thank you
NLV