You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+2
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,8 @@
1
1
# WCF based Azure cloud service without using Visual Studio
2
2
This is a sample WCF based azure cloud service created without using visual studio. I created this to learn the underlying mechanics of how cloud services are built without feeling lost due to magic that happens with visual studio and autogenerated code. This is a very basic example but shows how you can build a WCF service from scratch that can run in Azure worker role. It also shows how to do right abstractions for a service (such as separate of contract from implementation) so that you can avoid duplication and/or need for generation of proxy classes by visual studio.
3
3
4
+
You can read more about this sample at: http://logicpundit.com/blog/building-azure-cloud-service-without-visual-studio/
5
+
4
6
# key component
5
7
1. Service contract - This describes the interface of the service. It is implemented in WcfSmplSvcCntrct.cs
6
8
2. Service implementation - This implements the actual service. It is implemented in WcfSmplSvc.cs
0 commit comments