Change in .NET service
- Hi
I see a change in .NET service on Azure site.
Can any body guide on how implementation of service bus has changed in terms of configurations ?
Also what all changes we need to do in code to host a service bus and access methods exposed on it ?
Answers
- Hello, please download the latest documentation from http://www.microsoft.com/downloads/details.aspx?FamilyID=c80ebadf-7eb8-4a62-abcd-0b57fa3855f8&displaylang=en. It contains several tutorials that will help you to get started with the new features.
All break changes as well as recommended actions are documented at http://blogs.msdn.com/netservicesannounce/archive/2009/10/30/the-net-services-november-2009-ctp-breaking-changes-announcement-and-scheduled-maintenance.aspx.
Essentially, the endpoint address has been changed such that the namespace replaces the solution name. However, your previous solution name will automatically become your new namespace, so you don't need to do any changes regarding the endpoint address.
ACS has been dramastically modified, so you will have to replace your old credential code with the new ACS model. You're required to provide an issuer (the default name is owner) and a secret key. You can find your secret key on the portal (the Default Issuer Key under the Service Bus tab).
There're also several other changes, such as the removal of router. If you encounter any specific problems during your migration, feel free to post on this forum.
Lante, shanaolanxing This posting is provided "AS IS" with no warranties, and confers no rights.- Marked As Answer byGeeta G Monday, November 09, 2009 6:06 AM
All Replies
- Hello, please download the latest documentation from http://www.microsoft.com/downloads/details.aspx?FamilyID=c80ebadf-7eb8-4a62-abcd-0b57fa3855f8&displaylang=en. It contains several tutorials that will help you to get started with the new features.
All break changes as well as recommended actions are documented at http://blogs.msdn.com/netservicesannounce/archive/2009/10/30/the-net-services-november-2009-ctp-breaking-changes-announcement-and-scheduled-maintenance.aspx.
Essentially, the endpoint address has been changed such that the namespace replaces the solution name. However, your previous solution name will automatically become your new namespace, so you don't need to do any changes regarding the endpoint address.
ACS has been dramastically modified, so you will have to replace your old credential code with the new ACS model. You're required to provide an issuer (the default name is owner) and a secret key. You can find your secret key on the portal (the Default Issuer Key under the Service Bus tab).
There're also several other changes, such as the removal of router. If you encounter any specific problems during your migration, feel free to post on this forum.
Lante, shanaolanxing This posting is provided "AS IS" with no warranties, and confers no rights.- Marked As Answer byGeeta G Monday, November 09, 2009 6:06 AM
- thanks for the info.


