HOTSPOT
You are developing a messaging solution for a financial services company named Adatum. The solution must
integrate an application named Enrollment and an application named Activation.
The Enrollment application is used to enroll new customers. The Activation application is used to activate
accounts for new customers.
You need to ensure that each message that the Enrollment application sends is stored in a queue for ten
minutes before the Activation application uses the message.
How should you complete the relevant code? To answer, select the appropriate option or options in the
answer area.
Correct.
createServiceUri
https://msdn.microsoft.com/en-us/library/dd628639.aspx
https://msdn.microsoft.com/en-us/library/azure/microsoft.servicebus.namespacemanagersettings.aspx
OperationTimeout – public TimeSpan(
int hours,
int minutes,
int seconds
) https://msdn.microsoft.com/en-us/library/bk8a3558(v=vs.110).aspx
No it’s not correct. Should be:
sb
adatum.activation <— NAMESPACE
NameSpaceManager
new Timespan
J is correct
fx.
Service Bus endpoint URIs must always use the “sb://” protocol; for example sb://contoso.servicebus.windows.net/helloservicebus
Actually H is correct
http://tutewall.com/servicebusenvironment-createserviceuri-input-string-was-not-in-a-correct-format-exception/
I concur with H and guest.
J is correct .
You have to provide a proper URI .
The other way to do it (check below link). It is asking for generic URI. No mention of constructors in the question.
http://www.cloudcasts.net/devguide/Default.aspx?id=12018
But we need to go with what is provided in question. So my view is answer is correct (As J mention)
sb
*.servicebus.windows.net/activate
NamespaceManager
new TimeSpan(0,10,0)