public static void TestWith(bool useHttp) { StackOverflow_6267090.useHttp = useHttp; Console.WriteLine("Using address: {0}", GetBaseAddress()); string baseAddress = GetBaseAddress(); ServiceHost innerHost = new ServiceHost(typeof(InnerService), new Uri(baseAddress + "Inner/")); ServiceHost outerHost = new ServiceHost(typeof(OuterService), new Uri(baseAddress + "Outer/")); innerHost.AddServiceEndpoint(typeof(IInner), GetBinding(), ""); outerHost.AddServiceEndpoint(typeof(IOuter), GetBinding(), ""); innerHost.Open(); outerHost.Open(); Console.WriteLine("Hosts opened"); Console.WriteLine("Calling inner directly"); try { Console.WriteLine(Caller.CallInner("client")); } catch (FaultException <Detail> e) { Console.WriteLine("In client, after CallInner, Message = {0}, Detail = {1}", e.Message, e.Detail); } Console.WriteLine("Calling outer"); try { Console.WriteLine(Caller.CallOuter("client")); } catch (FaultException <Detail> e) { Console.WriteLine("In client, after CallOuter, Message = {0}, Detail = {1}", e.Message, e.Detail); } catch (FaultException e) { Console.WriteLine("BUG BUG - this should not have arrived here. Exception = {0}", e); } }
public int DoStuff() { return(Caller.CallInner("In service")); }