I'm using Silverlight 4.0 and I need to know the process to deploy a Silverlight Application in IIS and requirements to host silverlight application.
Thanks in advance
Here is a little guide: http://learn.iis.net/page.aspx/262/configuring-iis-for-silverlight-applications/
this should help you get started LINK1 LINK2
Related
I'm having an issue with my deployment on IIS, in the sense when I start the API from VS 2017 and try the API on Postman it's working fine, but when I deploys it on IIS nothing is happening, could anyone insight me on the proper way to deploy APS.NET CORE 2.1 on IIS.
Thank you
Might want to give this a read: https://weblog.west-wind.com/posts/2016/Jun/06/Publishing-and-Running-ASPNET-Core-Applications-with-IIS
I've created a custom WCF Rest web service in a sharepoint site which uses .net 3.5 only not 4
, I found that Question , marc_s talked about REST Starter Kit but I found that it's no longer supported .
Any ideas about how to implement caching in this situation ?
Thanks.
System.Web.Caching.Cache is your friend. For Framework 4.0 or higher use the MemoryCache or the ObjectCache.
Don't forget about Microsoft Enterprise Library Caching Application Block
I need to code from scratch a WCF service with net.tcp binding, self-hosted on IIS7, and call it from a console application. Can you give me a step-by-step guide for the service and for the sample client application?
Please see the following guides and tutorials:
http://msdn.microsoft.com/en-us/library/ms731758.aspx
http://www.youtube.com/watch?v=FPrQPA9QmUw
How about this little Guide from Microsoft?
I have a workflow created inside the WCF and now i want to host it in IIS. I am not sure how exactly to do it, can anybody provide me any pointers to some links or study material for doing this?
Here is a walkthrough: http://blog.newagesolution.net/2008/06/how-to-create-wf-as-wcf-service-hosted.html
I'm attempting to create my first WCF service.
I've created the service and now I'm trying to call it from a asp.net (vb) web site and I've tried adding a web reference to it and using the scvutil.exe to consume the service.
So far neither have worked. It's not letting me declare the service in my code. If someone could point me to a good tutorial on how to consume a WCF service in an ASP.Net web site that would be great.
I've found numerous on how to use them with AJAX or silverlight or windows apps but nothing on using it in just a plain old website.
Please see Beginner's Guide to Windows Communication Foundation. It's part of the WCF Developer Center on MSDN, which is full of good resources.
The link above is broken. Some other links I've found while searching for it:
Developing Service-Oriented Applications
Windows Communication Foundation
Conceptual Overview
Getting Started Tutorial
How to: Create a Windows Communication Foundation Client
Basic WCF Programming
Just add service reference, use the service reference as using "reference1.xxxx" and then use the client code.
That's all after the initialization. It works for me. Let me know if you require any help.