我有一些wcf webservices,我在IIS上托管在localhost上。 我希望能够从Unity3d访问它们,但是当我播放场景时出现以下错误:
InvalidOperationException: Client endpoint configuration 'BasicHTTPEndpoint' was not found in 0 endpoints.
System.ServiceModel.ChannelFactory.ApplyConfiguration (System.String endpointConfig)
System.ServiceModel.ChannelFactory.InitializeEndpoint (System.String endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress)
System.ServiceModel.ChannelFactory`1[IUnityStore]..ctor (System.String endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress)
System.ServiceModel.ClientBase`1[TChannel].Initialize (System.ServiceModel.InstanceContext instance, System.String endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress)
System.ServiceModel.ClientBase`1[TChannel]..ctor (System.ServiceModel.InstanceContext instance, System.String endpointConfigurationName)
System.ServiceModel.ClientBase`1[TChannel]..ctor (System.String endpointConfigurationName)
UnityStoreClient..ctor (System.String endpointConfigurationName)
firstCall.Start () (at Assets/Scripts/firstCall.cs:8)
Web服务实例化如下:
UnityStoreClient uc = new UnityStoreClient("BasicHTTPEndpoint");
uc.Open(); //i don't know if i need this ?????
UnityStoreLibrary.User[] users = uc.GetAllUsers("1",null);
for (int i=0;i<users.Length;i++)
Debug.Log("username = " + users[i].username);
我的脚本文件夹中有一个配置文件,但我不知道我是否应该使用它。我使用Visual Studio 2010中的svcutil
创建了Unity类。
答案 0 :(得分:6)
使用System.ServiceModel;
我的班级实施中缺少这个陈述。
我这样打电话给网络服务:
UnityStoreClient client = new UnityStoreClient(new BasicHttpBinding(), new EndpointAddress(some_url));
答案 1 :(得分:0)
实际上,异常消息会提示您缺少什么。
ConfigurationManager在web.config文件的部分中找不到与WCF服务相关的任何详细信息。
有关您正在调用的WCF服务的详细信息应存储在web.config文件中。在web.config文件中应该有这样的端点定义:
<system.serviceModel>
<client>
<endpoint name="BasicHTTPEndpoint"
address="http://myUnits3DService.svc"
binding="basicHttpBinding"
contract="IService"/>
...
也许您还应该检查有关使用here中的svcutil.exe的详细信息。