The protocol 'net.msmq' is not supported
If you get this error you need to do the following steps :-
You can just do the following if everything is right in place for you :-
1. Open IIS -> Your Website -> Advanced Settings -> Enabled Protocols
This will have only http. You need to add net.MSMQ separating it by a comma like this : http,net.MSMQ
2. If it still doesnt work you need to do the following for activating MSMQ in your machine :-
- Open visual studio command prompt as administrator
- Paste the below line as a single command and press enter
%windir%\system32\inetsrv\appcmd.exe set site "Default Web Site" -+bindings.[protocol='net.msmq',bindingInformation='localhost']
(Remember: If you have deployed it in a different Site in IIS you need to change the site name in the above command)
If you are still having problems you can follow the steps given in the below URL :-
http://msdn.microsoft.com/en-us/library/ms752246.aspx