WCF Web サービスを介して、Windows Azure ワーカー ロールからオンプレミスの CRM 2011 に接続しようとしています。WCF Web サービスを作成しました。しかし、アプリケーションの実行中に、「Inconsistent accessibility: field type SampleData_WcfService.OrganizationServiceProxy' is less accessible than field 'SampleData_WcfService.Service1._SDKObject".
コードを次のように記述しました」というエラーが表示されます
namespace SampleData_WcfService
{
public class Service1 : IService1
{
public static OrganizationServiceProxy _SDKObject;
public bool CRMCall()
{
try
{
if (!CRM_Connection("http://orgname/dattgtdev/XRMServices/2011/Organization.svc", "false", "user2", "pwd", "domain"))
return false;
Entity _entity = new Entity();
_entity.LogicalName = "account";
_entity.Attributes.Add(new KeyValuePair<string, object>("name", "Testing123456787"));
_SDKObject.Create(_entity);
return true;
}
catch (Exception ex)
{
return false;
}
}
public bool CRM_Connection(string WebServiceURL, string Authentication, string UserName, string Password,string DomainName)
{
try
{
Uri organizationUri = new Uri(WebServiceURL);
Uri homeRealmUri = null;
System.ServiceModel.Description.ClientCredentials credentials = new System.ServiceModel.Description.ClientCredentials();
if (Authentication == "false")
{
credentials.Windows.ClientCredential = new System.Net.NetworkCredential(UserName, Password, DomainName);
}
_SDKObject = new OrganizationServiceProxy(organizationUri, homeRealmUri, credentials, null);
return true;
}
catch (Exception ex)
{
return false;
}
}
}
}
このコードの何が問題なのですか??