public void OnBeforeEachTest()
		{
			//Generated proxy when using 'Add Service Reference' on the EndpointUri above.
			//Thank WCF for the config ugliness
			client = new Soap11ServiceReference.SyncReplyClient(
				new BasicHttpBinding
				{
					MaxReceivedMessageSize = int.MaxValue,
					HostNameComparisonMode = HostNameComparisonMode.StrongWildcard
				},
				new EndpointAddress(EndpointUri));
		}
 public void OnBeforeEachTest()
 {
     //Generated proxy when using 'Add Service Reference' on the EndpointUri above.
     //Thank WCF for the config ugliness
     client = new Soap11ServiceReference.SyncReplyClient(
         new BasicHttpBinding
     {
         MaxReceivedMessageSize = int.MaxValue,
         HostNameComparisonMode = HostNameComparisonMode.StrongWildcard
     },
         new EndpointAddress(EndpointUri));
 }