config配置文件不多說
<?xml version="1.0" encoding="utf-8" ?> <configuration><system.serviceModel><behaviors><serviceBehaviors><behavior name="myBehavior"><serviceMetadata/></behavior></serviceBehaviors></behaviors><bindings><netTcpBinding><binding name="myBind" maxReceivedMessageSize="1073741824" transferMode="Buffered" /></netTcpBinding></bindings><services><service name="WcfServices.Services.Job" behaviorConfiguration="myBehavior"><endpoint name="WcfServices.Services"bindingConfiguration="myBind"address=""binding="netTcpBinding"contract="WcfServices.Contract.IJob"></endpoint><endpoint address="mex"binding="mexTcpBinding"contract="IMetadataExchange"></endpoint><!-- 不用地址 <host><baseAddresses><add baseAddress="net.tcp://localhost:8000/Job"/></baseAddresses></host>--></service></services></system.serviceModel> </configuration>
在項目屬性選擇Web選項卡,使用本地IIS,創建虛擬目錄http://localhost/WcfServices,提示安裝IIS6,進入控制面板安裝IIS6,
還有Framewok3.5.1(不知道不裝什么效果沒試),安裝后,運行打開地址+xx.svc,報錯未能從程序集“System.ServiceModel, Version=3.0.0.0,百度找到答案,在繼續弄,還是不行出錯Could not find a base address that matches scheme net.tcp for the endpoint with binding MetadataExchangeTcpBinding. Registered base address schemes are [http].,后來看了篇大神的文章,原來要支持net.tcp(地址http://www.cnblogs.com/chamy/archive/2012/11/02/2751367.html),OK搞定,使用svcutil 獲取元數據。
?