从控制台应用程序引用 WCF 服务时出现元数据错误。“从地址下载元数据时出错”。这是我的服务代码。我很感激任何帮助。
namespace WcfService1
{
public class Service1 : IService1
{
public void test(string parm1, long parm2, Stream parm3)
{
string folder1 = @"C:\TEST";
string fileName = Path.Combine(folder1, parm1);
using (FileStream target = new FileStream(fileName, FileMode.Create, FileAccess.Write, FileShare.None))
{
const int bufferLen = 65536;
byte[] buffer = new byte[bufferLen];
int count = 0;
while ((count = parm3.Read(buffer, 0, bufferLen)) > 0)
{
target.Write(buffer, 0, count);
}
}
}
}
}
namespace WcfService1
{
[ServiceContract]
public interface IService1
{
[OperationContract]
void test(string parm1, long parm2, Stream parm3);
}
}
这是配置:
<?xml version="1.0"?>
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.0" />
</system.web>
<system.serviceModel>
<behaviors>
<serviceBehaviors>
<behavior>
<!-- To avoid disclosing metadata information, set the value below to false and remove the metadata endpoint above before deployment -->
<serviceMetadata httpGetEnabled="true"/>
<!-- To receive exception details in faults for debugging purposes, set the value below to true. Set to false before deployment to avoid disclosing exception information -->
<serviceDebug includeExceptionDetailInFaults="false"/>
</behavior>
</serviceBehaviors>
</behaviors>
<serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
</system.serviceModel>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
</system.webServer>
</configuration>