■ WCF 인증 없이 사용하는 방법을 보여준다.
[TestServer 프로젝트]
▶ ISimpleService.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
using System.ServiceModel; namespace TestServer { /// <summary> /// 단순 서비스 인터페이스 /// </summary> [ServiceContract] public interface ISimpleService { //////////////////////////////////////////////////////////////////////////////////////////////////// Method #region 메시지 구하기 - GetMessage() /// <summary> /// 메시지 구하기 /// </summary> /// <returns>메시지</returns> [OperationContract] string GetMessage(); #endregion } } |
▶ SimpleService.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
namespace TestServer { /// <summary> /// 단순 서비스 /// </summary> public class SimpleService : ISimpleService { //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Public #region 메시지 구하기 - GetMessage() /// <summary> /// 메시지 구하기 /// </summary> /// <returns>메시지</returns> public string GetMessage() { return "Hello!"; } #endregion } } |
▶ Program.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
using System.ServiceModel; using System; namespace TestServer { /// <summary> /// 프로그램 /// </summary> class Program { //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Static //////////////////////////////////////////////////////////////////////////////// Private #region 프로그램 시작하기 - Main() /// <summary> /// 프로그램 시작하기 /// </summary> private static void Main() { using(ServiceHost serviceHost = new ServiceHost(typeof(SimpleService))) { serviceHost.Open(); Console.WriteLine("서버가 시작되었습니다 : " + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")); Console.ReadKey(true); } } #endregion } } |
▶ App.config
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
<?xml version="1.0" encoding="utf-8" ?> <configuration> <system.serviceModel> <behaviors> <serviceBehaviors> <behavior name="mexBehavior"> <serviceMetadata httpGetEnabled="true" /> </behavior> </serviceBehaviors> </behaviors> <bindings> <wsHttpBinding> <binding name="wsHttp"> <security mode="None" /> </binding> </wsHttpBinding> <netTcpBinding> <binding name="netTcp"> <security mode="None" /> </binding> </netTcpBinding> </bindings> <services> <service name="TestServer.SimpleService" behaviorConfiguration="mexBehavior"> <endpoint address="SimpleService" binding="wsHttpBinding" bindingConfiguration="wsHttp" contract="TestServer.ISimpleService" /> <endpoint address="SimpleService" binding="netTcpBinding" bindingConfiguration="netTcp" contract="TestServer.ISimpleService" /> <host> <baseAddresses> <add baseAddress="http://localhost:8080" /> <add baseAddress="net.tcp://localhost:8090" /> </baseAddresses> </host> </service> </services> </system.serviceModel> </configuration> |
[TestClient 프로젝트]
▶ MainForm.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
using System; using System.Windows.Forms; using TestClient.SimpleService; namespace TestClient { /// <summary> /// 메인 폼 /// </summary> public partial class MainForm : Form { //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - MainForm() /// <summary> /// 생성자 /// </summary> public MainForm() { InitializeComponent(); this.callButton.Click += callButton_Click; } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Private #region 호출하기 버튼 클릭시 처리하기 - callButton_Click(sender, e) /// <summary> /// 호출하기 버튼 클릭시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void callButton_Click(object sender, EventArgs e) { using(SimpleServiceClient client = new SimpleServiceClient("WSHttpBinding_ISimpleService")) { string message = client.GetMessage(); MessageBox.Show(message); } } #endregion } } |
▶ App.config
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
<?xml version="1.0" encoding="utf-8" ?> <configuration> <startup> <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" /> </startup> <system.serviceModel> <bindings> <netTcpBinding> <binding name="NetTcpBinding_ISimpleService"> <security mode="None" /> </binding> </netTcpBinding> <wsHttpBinding> <binding name="WSHttpBinding_ISimpleService"> <security mode="None" /> </binding> </wsHttpBinding> </bindings> <client> <endpoint name="WSHttpBinding_ISimpleService" address="http://localhost:8080/SimpleService" binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_ISimpleService" contract="SimpleService.ISimpleService" /> <endpoint name="NetTcpBinding_ISimpleService" address="net.tcp://localhost:8090/SimpleService" binding="netTcpBinding" bindingConfiguration="NetTcpBinding_ISimpleService" contract="SimpleService.ISimpleService" /> </client> </system.serviceModel> </configuration> |