0
Here is a good example of publish subscribe design pattern in c#
http://www.codeproject.com/Articles/34316/Topic-based-Publish-Subscribe-design-pattern-imple
Here you can read about Publish Subscribe design pattern
http://en.wikipedia.org/wiki/Publish%E2%80%93subscribe_pattern
WCF has already some method to implement it
http://www.codeproject.com/Articles/34333/Topic-based-publish-subscribe-design-pattern-imp
Here is a good example of publish subscribe design pattern in c#
http://www.codeproject.com/Articles/34316/Topic-based-Publish-Subscribe-design-pattern-imple
Here you can read about Publish Subscribe design pattern
http://en.wikipedia.org/wiki/Publish%E2%80%93subscribe_pattern
WCF has already some method to implement it
http://www.codeproject.com/Articles/34333/Topic-based-publish-subscribe-design-pattern-imp
0
To install TFS 2013 you need to install SQL server 2012 or 2014
Look at the requirement here
http://msdn.microsoft.com/en-us/library/dn641202.aspx
After installation you have to create new TeamProject
and choose a process template for that, Here is the default process template
http://msdn.microsoft.com/en-us/library/ff731587.aspx
To be able to customize a template you should be able to download the template, edit it and upload it
http://msdn.microsoft.com/en-us/library/ms243782.aspx
Modify or add custom work Item
http://msdn.microsoft.com/en-us/library/hh409273.aspx
To install TFS 2013 you need to install SQL server 2012 or 2014
Look at the requirement here
http://msdn.microsoft.com/en-us/library/dn641202.aspx
After installation you have to create new TeamProject
and choose a process template for that, Here is the default process template
http://msdn.microsoft.com/en-us/library/ff731587.aspx
To be able to customize a template you should be able to download the template, edit it and upload it
http://msdn.microsoft.com/en-us/library/ms243782.aspx
Modify or add custom work Item
http://msdn.microsoft.com/en-us/library/hh409273.aspx
1
Comparing with selenium Ranorex is very much powerful but costly which start from 690€.
Selenium has a lot problem with browser compatibility and It doesnt work for example with Firefox versions.
Here is a tutorial about Testing web Service
Comparing with selenium Ranorex is very much powerful but costly which start from 690€.
Selenium has a lot problem with browser compatibility and It doesnt work for example with Firefox versions.
Here is a tutorial about Testing web Service
0
http://www.codecademy.com Free courses mostly about Web
http://www.pluralsight.com Minimum 29$/Month Microsoft products (Free trial) My recommendation
https://www.udacity.com Minimum 199$/Month Free trial Course materials are free
https://www.coursera.org Free courses From most universities in Many languages
http://www.codecademy.com Free courses mostly about Web
http://www.pluralsight.com Minimum 29$/Month Microsoft products (Free trial) My recommendation
https://www.udacity.com Minimum 199$/Month Free trial Course materials are free
https://www.coursera.org Free courses From most universities in Many languages
0
This is a tutorial to test webservice using Ranorex
http://www.ranorex.com/blog/how-to-test-web-services-with-ranorex
To test following asp.net webservice can be used.
http://www.w3schools.com/webservices/tempconvert.asmx
This is a tutorial to test webservice using Ranorex
http://www.ranorex.com/blog/how-to-test-web-services-with-ranorex
To test following asp.net webservice can be used.
http://www.w3schools.com/webservices/tempconvert.asmx
0
To Generate Service proxy c# classes from WCF endpoint Run:
cd C:\Program Files\Microsoft SDKs\Windows\v6.0A\bin>
svcutil net.tcp://endpoint.svc /out:c:\proxy
To create schema from service contract dll
Run visual studio command prompt as admin:
go to the output folder
Svcutil c:/ServiceContracts.dll /t:metadata
Schema (*.xsd) and (*.wsdl) are generated and then proxy classes can be generated using:
Svcutil *.wsdl *.xsd /language:C#
To Generate Service proxy c# classes from WCF endpoint Run:
cd C:\Program Files\Microsoft SDKs\Windows\v6.0A\bin>
svcutil net.tcp://endpoint.svc /out:c:\proxy
To create schema from service contract dll
Run visual studio command prompt as admin:
go to the output folder
Svcutil c:/ServiceContracts.dll /t:metadata
Schema (*.xsd) and (*.wsdl) are generated and then proxy classes can be generated using:
Svcutil *.wsdl *.xsd /language:C#