コンソール アプリから 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>