70-513 - TS: Windows Communication Foundation Development via MS. NET Framework 4
Number of Questions Included: 145
Updated: 2012-05-28
This dump is the collection composed by Lyudmyla of all unique questions from dumps of BOB, FSAN and WASP, with Darths corrections.
[ServiceContract(Namespace="Arithmetic")] public class Calculator { [Operation Contract(Action="Sum")] public int Add(int x, int y) {} }
[ServiceContract(ConfigurationName="Arithmetic")] public class Calculator { [Operation Contract(Action="Sum")] public int Add(int x, int y) {} }
[ServiceContract(Name="Arithmetic")] public class Calculator { [OperationContract(Name="Sum")] public int Add(int x, int y) {} }
[ServiceContract(Name="Arithmetic")] public class Calculator { [OperationContract(ReplyAction="Sum")] public int Add(int x, int y) {} }
Rate this question:
ICommunicationObject
IExtension
IExtensibleObject
IExtensibleDataObject
Rate this question:
Add the KnownType attribute to the data contract. Set a default value in each of the data member declarations.
Add the KnownType attribute to the data contract. Set the Order property of each data member to unique integer value.
Set the EmitDefaultValue property of each data member to false.
Set the lsRequired property of each data member to true.
Rate this question:
[DataMember] public string firstName; [DataMember] public string lastName; [DataMember(EmitDefaultValue = true)] public int age = 0; [DataMember(EmitDefaultvValue = true)] public int ID = 999999999;
[DataMember(EmitDefaultValue = false)] public string firstName = null; [DataMember(EmitDefaultValue = false)] public string lastName = null; [DataMember(EmitDefaultValue = true)] public int age = -1; [DataMember(EmitDefaultValue = false)] public int ID = 999999999;
[DataMember(EmitDefaultValue = true)] public string firstName; [DataMember(EmitDefaultValue = true)] public string lastName; [DataMember(EmitDefaultValue = false)] public int age = -1; [DataMember(EmitDefaultValue = false)] public int ID = 999999999;
[DataMember] public string firstName = null; [DataMember] public string lastName = null; [DataMember(EmitDefaultValue = false)] public int age = 0; [DataMember(EmitDefaultValue = false)] public int ID = 999999999;
Rate this question:
[MessageContract(WrapperName="http://www.contoso.com")] public class CheckStockRequest { [MessageHeader(Namespace="http://www.contoso.com")] public int StoreId { get; set; } [MessageBodyMember(Namespace="http://www.contoso.com")] public int ItemId { get; set; } }
[MessageContract(WrapperNamespace="http://www.contoso.com")] public class CheckStockRequest { [MessageHeader(Namespace="http://www.contoso.com")] public int StoreId { get; set; } [MessageBodyMember(Namespace="http://www contoso.com")] public int ItemId { get; set; } }
[MessageContract(WrapperNamespace="http://www.contoso.com")] public class CheckStockRequest { [MessageHeader(Namespace="http://www.contoso.com")] public int StoreId { get; set; } public int ItemId { get; set; } }
[MessageContract(WrapperNamespace="http://www.contoso.com")] public class CheckStockRequest { [MessageHeader(Namespace="http://www.contoso.com")] public int StoreId { get; set; } [MessageBodyMember] public int ItemId { get; set; } }
Rate this question:
[OperationContract(IsOneWay=true, Action="*", ReplyAction="*")] void PostData(Order data);
[OperationContract(IsOneWay=true, Action="*", ReplyAction = "*")] void PostData(BodyWriter data);
[OperationContract] void PostData(BodyWriter data);
[OperationContract] void PostData(Message data);
Rate this question:
Add this attribute to the GetServiceTime method. [WebInvoke(Method="POST")] In the web.config file, add this element to system.serviceModel/behaviors/endpointBehaviors. In the web.config file, configure TestService in the system.serviceModel/services collection as follows:
Add this attribute to the GetServiceTime method. [WebInvoke(Method="GET", UriTemplate="/ServiceTime", ResponseFormat=WebMessageFormat.Json)] In the web.config file, configure TestService in the system.serviceModel/services collection as follows:
Add this attribute to the GetServiceTime method [WebGet(ResponseFormat=WebMessageFormat.Json, UriTemplate="/ServiceTime")] Create a new svc file named Jsonversion.svc with the following content.
Add this attribute to the GetServiceTime method. [WebGet(UriTemplate="Json)/ServiceTime")] Create a new .svc file named Jsonversion.svc with the following content
Rate this question:
Add the WebInvoke(UriTemplate="/Items/{id}", Method="DELETE") attribute to the operation
Add the HttpDelete atribute to the operation
Replace the string parameter with a RemovedActivityAction parameter
Replace the return type with RemovedActivityAction.
Rate this question:
[OperationContract] [WebInvoke(Method="POST")] string Operation1(string s);
[OperationContract] [WebGet(UriTemplate="POST")] string Operation1(string s);
[OperationContract(ReplyAction="POST")] string Operation1(string s);
[OperationContract(Action="POST")] string Operation1(string s);
Rate this question:
Change line 03 as follows: typeof(IRequestReplyRouter),
Change line 03 as follows: typeof(IDuplexSessionRouter),
Change line 10 as follows: typeof(IRequestReplyRouter)
Change line 10 as follows: typeof(IDuplexSessionRouter)
Rate this question:
CallbackBehavior(ConcurrencyMode=ConcurencyMode.Reentrant)
CallbackBehavior(ConcurrencyMode=ConcurrencyMode.Multiple)
ServiceBehavior(ConcurrencyMode=ConcurrencyMode.Reentrant)
ServiceBehavior(ConcurrencyMode=ConcurrencyMode.Multiple)
Rate this question:
In the client configuration, change the value of the address attribute to net.tcp://www.contoso.com/MyService
In the client configuration, change the value of the address attribute to net.tcp://www.contoso.com/MyService listen=http://www.contoso.com/MyService.
After instantiating the client and before invoking any service operation, add this line of code. EndpointBehaviors.Add(new EndpointDiscoveryBehavior(){ Enabled = true });
After instantiating the client and before invoking any service operation, add this line of code. client.Endpoint.Behaviors.Add(new ClientViaBehavior(new Uri("net.tcp://www.contoso.com/IMyService")));
Rate this question:
Host = new ServiceHost("MyApplication.DataAccessService");
Host = new ServiceHost("MyApplication.DataAccess");
Host = new ServiceHost(typeof(IDataAccess));
Host = new ServiceHost(typeof(DataAccessService));
Rate this question:
WebServiceHost svcHost = new WebServiceHost(typeof(HelloService)); svcHost.AddServiceEndpoint(typeof(IHelloService), new WebHttpBinding(WebHttpSecurityMode.None), "http://localhost:8000/HelloService"); return svcHost;
Uri baseAddress = new Uri("http://localhost:8000"); WebServiceHost svcHost = new WebServiceHost(typeof(HelloService), baseAddress); svcHost.AddServiceEndpoint(typeof(IHelloService), new WebHttpBinding(WebHttpSecurityMode.None), "HelloService"); return svcHost;
WebServiceHost svcHost = new WebServiceHost(new HelloService()); svcHost.AddServiceEndpoint(typeof(IHelloService), new WebHttpBinding(WebHttpSecurityMode.None), "http://localhost:8000/HelloService"); retumn svcHost
Uri baseAddress = new Uri("http://localhost:8000/"); WebServiceHost svcHost = new WebServiceHost(new HelloService(), baseAddress); svcHost.AddServiceEndpoint(typeof(IHelloService), new WebHttpBinding(WebHttpSecurityMode.None), "HelloService"); retumn svcHost;
Rate this question:
ChannelFactory
ServiceHost
ClientRuntime
CommunicationObject
Rate this question:
Proxy.Close();
Proxy = new SampleServiceProxy();
Proxy.Abort();
Proxy.Open();
Rate this question:
On the OperationContractAttribute, set the AsyncPattern property value to true.
On the OperationContractAttribute, set the ReplyAction property value to the endpoint address of the client.
On the client, create a proxy derived from DuplexClientBase.
On the client, use GetCallbackChannel.
Rate this question:
TcpTransport, windowsStreamSecurity, transactionFlow, binaryMessageEncoding
TransactionFlow, binaryMessageEncoding, windowsStreamSecurity, tcpTransport
WindowsStreamSecurity, tcpTransport, binaryMessageEncoding, transactionFlow
BinaryMessageEncoding, transactionFlow, tcpTransport, windowsStreamSecurity
Rate this question:
ChannelFactory factory = new ChannelFactory("Contoso.IContoso");
ChannelFactory factory = new ChannelFactory("netNamedPipeBinding");
ChannelFactory factory = new ChannelFactory("netPipe");
ChannelFactory factory = new ChannelFactory("net.pipe//localhost/ContosoService");
Rate this question:
Change line 25 to the following code segment: DuplexChannelFactory factory = new DuplexChannelFactory(callbackContext, binding, address);
Change line 26 to the following code segment: IGreetingService greetingServicefactory = CreateChannel(callbackContext);
Add the following code segment after line 26: callbackContext.IncomingChannels.Add((IDuplexChannel)greetingService);
Add the following code segment after line 26: callbackContext.OutgoingChannels.Add((IDuplexChannel)greetingService);
Rate this question:
Replace the service interface with the following interface and implement the new methods. [ServiceContract] public interface IDoSomething { [OperationContract] string DoLongOperation(); [OperationContract(AsyncPattern = true)] IAsyncResult BeginDoLongOperation(); [OperationContract(AsyncPattern = true)] string EndDoLongOperation(IAsyncResult result); }
Replace the service interface with the following interface and implement the new methods. [ServiceContract] public interface IDoSomething { [OperationContract(AsyncPattern = true)] IAsyncResult BeginDoLongOperation(); [OperationContract(AsyncPattern = true)] string EndDoLongOperation(IAsyncResult result); }
Generate a proxy class with asynchronous methods and use it for the new clients.
Add a new endpoint to the service that uses a full-duplex binding and use it for the new clients.
Rate this question:
Catch and handle both TimeoutFaultException and FaultException.
Catch both TimeoutFaultException and FaultException. Create a new channel in both cases.
Catch and handle TimeoutFaultException. Catch FaultException and create a new channel.
Catch and handle FaultException. Catch TimeoutFaultException and create a new channel.
Rate this question:
$get(String.format("/Catalogsvc/Catalog/Items/id{0}", itemId) null, function (data) { ... }, javascript");
$get(String.format("/Catalogsvc/Catalog/Items/{0}", itemId), null, function (data) { ... }, "json");
$get(String.format("/Catalogsvc/Catalog/Items/{0}", itemld), null, function (data) { ... }, "xml");
$get(String.format("/Catalogsvc/Catalog/Items/id{0}", itemld), null, function (data) { ... }, "json");
Rate this question:
DataContractSerializer s = new DataContractSerializer(typeof(Item)); Item item = s.ReadObject(response.GetResponseStream()) as Item;
BinaryFormatter f = new BinaryFormatter(); Item item = f.Deserialize(response.GetResponseStream() as Item;
XmlDictionaryReader r = JsonReaderWriterFactory.CreateJsonReader(response.GetResponseStream(), XmlDictionaryReaderQuotas.Max); DataContractSerializer s = new DataContractSerializer(typeof(Item)); Item item = s.ReadObject(r) as Item;
DataContractJsonSerializer s = new DataContractJsonSerializer(typeof(Item)); Item item = s.ReadObject(response.GetResponseStream()) as Item;
Rate this question:
Set an etwTracking behavior on the service and configure a listener for the System.ServiceModel trace source.
Set an etwTracking behavior on the service and configure a listener for the System.ServiceModel.MessageLogging trace source.
Enable messageLogging in the System.ServiceModel diagnostics element configuration and configure a listener for the System.ServiceModel.MessageLogging trace source.
Enable messageLogging in the System.ServiceModel diagnostics element configuration and configure a listener for the System.ServiceModel trace source.
Rate this question:
Routing
ServiceDebug
ServiceSecurityAudit
WorkflowUnhandledException
Rate this question:
ConsoleWriteLine(item.Content.Type); ConsoleWriteLine(((TextSyndicationContent)item.Content).Text);
Console.WriteLine(item.Content.GetType()); Console.WriteLine(((TextSyndicationContent)item.Content).Text);
Console.WriteLine(item.Content.Type); Console.WriteLine(item.Content.ToString());
Console.WriteLine(item.Content.GetType()); Console.WriteLine(item.Content.ToString());
Rate this question:
Add a DataProtectionPermission attribute to the CreditCardNumber property and set the ProtectData property to true.
Convert the DataContract to a MessageContract and set the ProtectionLevel property to SignAndEncrypt.
Change the data type of CreditCardNumber from string to SecureString.
Implement the CreditCardNumber property getter and setter In the setter, run the value of the CreditCardNumber through the MD5CryptoServiceProvider class TransformBlock method.
Add a MessageBodyMember attribute to the CodeName property and set the ProtectionLevel to Sign. Add a MessageBodyMember attribute to the SecretHandshake property and set the ProtectionLevel to EncryptAndSign.
Add a DataProtectionPermission attribute to the each property and set the ProtectData property to true.
Add an xmlText attribute to the CodeName property and set the DataType property to Signed. Add a PasswordPropertyText attribute to the SecretHandshake property and set its value to true.
Add an ImmutableObject attribute to the CodeName property and set its value property to true. Add a Browsable attribute to the SecretHandshake property and set its value to false.
Rate this question:
Set the ProtectionLevel property in line 01 to EncryptAndSign.
Set the ProtectionLevel property in line 04 and line 06 to Sign.
Add a SecurityCriticalAttribute ror each operation.
Add a SecunitySafeCriticalAttribute for each operation.
Rate this question:
In the method body, check the Rights PosessesProperty property to see if it contains Manager
Add a PrincipalPermission attribute to the method and set the Roles property to Manager
Add a SecurityPermission attribute to the method and set the SecurityAction to Demand
In the method body, create a new instance of WindowsClaimSet. Use the FindClaims method to locate a claimType named Role with a right named Manager
Rate this question:
Set the value of ServiceSecurityContext.Current.WindowsIdentity.ImpersonationLevel to TokenlmpersonationLevel.Impersonation
Set the value of ServiceSecurityContext.Current.Windowsldentity.ImpersonationLevel to TokenlmpersonationLevel.Delegation
Set the PrincipalPermissionAttribute on the service contract and update the binding attribute in the endpoint element of the configuration file to wsHttpBinding
Set the PnncipalPermissionAttribute on the service contract and update the bindingConfiguration attribute in the endpoint element of the configuration file to wsHttpBinding
Rate this question:
Set the ImpersonateCallerForAllOperations property of the service's ServiceAuthorizationBehavior to true. Apply an OperationBehavior attribute to OpA and set the Impersonation property to ImpersonationOption.Required. Apply an OperationBehavior attribute to OpB and set the Impersonation property to ImpersonationOption.Allowed.
Set the ImpersonateCallerForAllOperations property of the service's ServiceAuthorizationBehavior to true. Apply an OperationBehavior attribute to OpA and set the Impersonation property to ImpersonationOption.Allowed. Apply an OperationBehavior attribute to OpB and set the Impersonation property to ImpersonationOption.NotAllowed.
Set the ImpersonateCallerForAllOperations property of the service's ServiceAuthorizationBehavior to false. Apply an OperationBehavior attribute to OpA and set the Impersonation property to ImpersonationOption.Allowed. Apply an OperationBehavior attribute to OpB and set the Impersonation property to ImpersonationOption.NotAllowed.
Set the ImpersonateCallerForAllOperations property of the service's ServiceAuthorizationBehavior to false. Apply an OperationBehavior attribute to OpA and set the Impersonation property to lmpersonationOption.Required. Apply an OperationBehavior attribute to OpB and set the Impersonation property to ImpersonationOption.Allowed.
Rate this question:
Within the service configuration, add a ServiceAuthorization behavior to the service, and set ImpersonateCallerForAllOperations to true.
Within the service configuration, add a ServiceAuthenticationManager behavior to the service, and set ServiceAuthenticationManagerType to Impersonate.
Within the service configuration, add a serviceSecurityAudit behavior to the service, and set serviceAuthorizationAuditLevel to SuccessOrFailure.
Within the service configuration, add a ServiceCredentials behavior to the service, and set type to Impersonate.
Rate this question:
Set the authorizationManagerType attribute of the serviceAuthorization behavior to Message.
Set the includeExceptionDetailslnFaults attribute of the serviceDebug behavior to true.
Set the Mode attribute of the security configuration element to Message.
Set the messageAuthenticationAuditLevel attribute of the serviceSecurityAudit behavior to Failure.
Rate this question:
Add the following attribute to the TeamMessageService class, before line 10. [ServiceBehavior(InstanceContextMode = InstanceContextMode.Single)]
Add the following attribute to the TeamMessageService class, before line 10. [ServiceBehavior(InstanceContextMode = InstanceContextMode.PerSession)] Then change the binding definition on the service at line 25, and on the client to the following WSHttpBinding binding = new WSHttpBinding(SecurityMode.None); binding.ReliableSession.Enabled = true;
Pass a service instance to the instancing code in line 24, as follows. ServiceHost host = new ServiceHost(new TeamMessageService());
Redefine the message string in line 13, as follows static string message = "Today's Message"; Then change the implementation of PutMessage in lines 19-22 to the following public void PutMessage(string message) { TeamMessageServiceMessage.PutMessage; }
Rate this question:
Change the service behavior as follows. [ServiceBehavior(ConcurrencyMode = ConcurrencyMode.Multiple, InstanceContextMode = InstanceContextMode.Single)]
Change the service behavior as follows. [ServiceBehavior(ConcurrencyMode = ConcurrencyMode.Single, InstanceContextMode = InstanceContextMode.PerSession)]
Add a throttling behavior to the service, and configure the maxConcurrentCalls.
Add a throttling behavior to the service, and configure the maxConcurrentSessions.
Rate this question:
Define binding2 as follows: WS2007HttpBinding binding2 = new WS2007HttpBinding(SecurityMode.None); Configure binding2 as follows: binding2.ReliableSession.Enabled = true;
Define binding2 as follows: WSHttpBinding binding2 = new WSHttpBinding(SecurityMode.None); Add the following behavior to the service implementation: [ServiceBehavior(InstanceContextMode = InstanceContextMode.PerSession)]
Define binding2 as follows: BasicHttpBinding binding2 = new BasicHttpBinding(BasicHttpSecurityMode.None); Enable cookies for binding2. binding2.AllowCookies = true:
Define binding2 as follows: BasicHttpBinding binding2 = new BasicHttpBinding(BasicHttpSecurityMode.None); Add the following behavior to the service implementation: [ServiceBehavior(InstanceContexMode = InstanceContextMode.Single)]
Change the ServiceContract attribute of the IMyService interface to the following. [ServiceContract(SessionMode=SessionMode.Required)]
Change the ServiceContract attrbute of the IMyService interface to the following [ServiceContract(SessionMode=SessionMode.Allowed)]
Change the OperationContract attribute of the Initialize operation to the following. [OperationContract(IsInitiating = true, IsTerminating = false)]
Change the OperationContract attribute of the Terminate operation to the following [OperationContract(IsInitiating = false, IsTerminating = true)]
Rate this question:
Add the following attributes to the SavePerson operation on IContosoService. [OperationBehavior(TransactionScope.Required = true)] [TransactionFlow(TransactionFlowOption.Mandatory)]
Add the following attributes to the SavePerson operation on lContosoService [TransactionFlow(TransactionFlowOption.Mandatory)] [OperationBehavior(TransactionScope.Required = true)]
Add the following attribute to the SavePerson operation on lContosoService [OperationBehavior(TransactionScope.Required = true)] Add the following attribute to the implementation of SavePerson. [TransactionFlow(TransactionFlowOption.Allowed)]
Add the following attribute to the SavePerson operation on lContosoService [TransactionFlow(TransactionFlowOption.Allowed)] Add the following attribute to the implementation of SavePerson. [OperationBehavior(TransactionScope.Required = true)]
Rate this question:
Insert the following attribute to OperationOne on lContosoService [TransactionFlow(TransactionFlowOption.Mandatory)] Insert the following attribute to OperationTwo on IContosoService [TransactionFlow(TransactionFlowOption.Mandatory)]
Insert the following attribute to OperationOne on ContosoService [OperationBehavior(TransactonScopeRequired=true, TransactionAutoComplete=false)] Insert the following attribute to OperationTwo on ContosoService. [OperationBehavior(TransactionScopeRequired=true, TransactionAutoComplete=true)]
Add the following XML segment to the application config file in the system serviceModel/bindings configuration section Then use the NetMsmqBinding named contosoTx to listen for messages from the clients.
Add the following XML segment to the application config file in the systemserviceModel/bindings configuration section. Then use the CustommiBinding named contosoTx to listen fcw messages from the clients.
Rate this question:
Change the service behavior to the following: [ServiceBehavior(InstanceContextMode=InstanceContextMode.Single, ConcurrencyMode=ConcurrencyMode.Multiple)]
Change the service behavior to the following. [ServiceBehavior(InstanceContextMode=InstanceContextMode.PerCall)]
Require the clients use threads, the Parallel Task Library, or other mechanism to issue service calls in parallel.
Require the clients to use async operations when calling the senvice.
Rate this question:
Change the service contract definition in line 01 as follows. [ServiceContract(CallbackContract = typeof(INameService), SessionMode = SessionMode.Required)]
Add the following attribute to the NameService class, before line 40. [ServiceBehavior(ConcurrencyMode = ConcurrencyMode.Reentrant)]
Add the following attribute to the GreetingService class, before line 20. [ServiceBehavior(ConcurrencyMode = ConcurrencyMode.Reentrant)]
Add the following attribute to the GreetingService class, before line 20. [ServiceBehavior(ConcurrencyMode = ConcurrencyMode.Multiple)]
Rate this question:
Update the service contract to read as follows. [ServiceContract(SessionMode=SessionMode.Required)] Add the following behavior to the service implementation [ServiceBehavior(InstanceContextMode=InstanceContextMode.PerSession)]
Update the service contract to read as follows. [ServiceContract(SessionMode=SessionMode.Allowed)] Add the following behavior to the service implementation. [ServiceBehavior(InstanceContextMode=InstanceContextMode.Single, ReleaseServiceInstanceOnTransactionComplete=false)]
Update the service contract to read as follows [ServiceContract(SessionMode=SessionMode.Allowed)] Add the followng behavior to the service implementation. [ServiceBehavior(InstanceContextMode=InstanceContextMode.Single)]
Update the service contract to read as follows. [ServiceContract(SessionMode=SessionMode.Required)] Add the following behavior to the service implementation. [ServiceBehavior(InstanceContextMode=InstanceContextMode.PerCall)]
Rate this question:
[ServiceBehavior(lnstanceContextMode = lnstanceContextMode.PerSession, ConcurrencyMode = ConcurrencyMode.Single)]
[ServiceBehavior(lnstanceContextMode = lnstanceContextMode.PerCall, ConcurrencyMode = ConcurrencyMode.Reentrant)]
[ServiceBehavior(InstanceContextMode = lnstanceContextMode.PerSession, ConcurrencyMode = ConcurrencyMode.Multiple)]
[ServiceBehavior(lnstanceContextMode = lnstanceContextMode.PerCall, ConcurrencyMode = ConcurrencyMode.Multiple)]
Rate this question:
Inside the ConfirmCreditCard method, surround the code that must participate in the transaction with a using(new TransactionScope()) block.
Inside the ConfirmCreditCard method, surround the code that must participate in the transaction with a using(new CommittableTransaction()) block.
Add an [OperationBehavior(TransactionScopeRequired=true)] attribute to the ConfirmCreditCard method.
Add an [OperationBehavior(TransactionAutoComplete=true)] attribute to the ConfirmCreditCard method.
Rate this question:
In the application configuration file, add the IogKnownPii attribute to the message logging diagnostics source and set the value of the attribute to true. Generate the ContosoService class using the Add Service Reference wizard. Add a reference to System.ServiceModel.Routing.dll. Add the following code segment: ContosoService client = new ContosoService(); SoapProcessingBehavior behavior = new SoapProcessingBehavior(); behavior.ProcessMessages = true; client.Endpoint.Behaviors.Add(behavior);
In the application configuration file, add the following XML segment to the system.serviceModel configuration section group.
In the machine configuration file, add the following XML segment to the system.serviceModel configuration section. Generate the ContosoService class using the Add Service Reference wizard. Add the following code segment. ContosoService client = new ContosoService(); client.Endpoint.Behaviors.Add(new CallbackDebugBehavior(true));
In the machine configuration file, add the following XML segment to the system.serviceModel configuration section. In the application configuration file, add the IogKnownPii attribute to the message logging diagnostics source and set the value of the attribute to true. In the application configuration file, add the following XML segment to the system.serviceModel configuration section group.
Rate this question:
/addr:Action[text()='http://contoso.com/lShipping/DoWorkResponse']
/soap:Action[text()='http://contoso.com/lShipping/DoWorkResponse']
/addr:Action[text()=`http://contoso.com/lShipping/DoWork']
/soap:Action[text()=`http://contoso.com/lShipping/DoWork']
Rate this question:
Quiz Review Timeline (Updated): Oct 29, 2024 +
Our quizzes are rigorously reviewed, monitored and continuously updated by our expert board to maintain accuracy, relevance, and timeliness.
Wait!
Here's an interesting quiz for you.