SoapServerServiceUriTemplate Property  | 
 
            Gets or sets the URI template. As a virtualized service, the Uri template must start with slash /
            
 
    Namespace: 
   Hummingbird.TestFramework.Services
    Assembly:
   Hummingbird.TestFramework (in Hummingbird.TestFramework.dll) Version: 1.2.0.0
Syntaxpublic string UriTemplate { get; set; }Public Property UriTemplate As String
	Get
	Set
public:
property String^ UriTemplate {
	String^ get ();
	void set (String^ value);
}member UriTemplate : string with get, set
Property Value
Type: 
String
            The URI template.
            
Remarks
            The virtualized services are hosted on where Hummingbird Test Framework is running. For example, you are running a service where:
            UriTemplate is /myservices/myservice 
            on the Machine 192.168.1.110, you should configure your application to call this service to http://192.168.1.110:8080/myservices/myservice
            The port 8080 is the default port for virtualized SOAP Services, but you can change the port number in settings.
            For more information about Soap Vitualized service, please refer to 
SoapServer
See Also