English 中文(简体)
建立动态关系 在线网络服务,视窗8美度
原标题:Establish connection to Dynamics CRM Online web service from Windows 8 metro style app

我在网上利用我的窗口8美德风格,建立与动态的客户关系方面有严重问题。

我的法典根据正常的(完整)货币框架进行罚款,但在WinRT下失败。

private IOrganizationService OrgService { get; set; }
private ClientCredentials ClientCreds { get; set; }
private ClientCredentials DeviceCreds { get; set; }
//(..)
ClientCreds = new ClientCredentials();
ClientCreds.UserName.UserName = "[email protected]";
ClientCreds.UserName.Password = "sample_password";

DeviceCreds = DeviceIdManager.LoadOrRegisterDevice();

Uri orgServiceUri = new Uri("https://sampleaddress.api.crm4.dynamics.com/XRMServices/2011/Organization.svc");

OrgService = new OrganizationServiceProxy(orgServiceUri, null, ClientCreds, DeviceCreds);

该法典最后一行有一个例外:

The system cannot find the file specified. (Exception from HRESULT: 0x80070002)

可以证明,这一类人试图拯救某些地方的档案,而这种文件在美术体中是不允许的。

谁能帮助? 如何绕过这种行为或组织服务行业?

问题回答

由于使用这些服务,你可能会陷入我曾经遇到的一个问题:必须控制电线背后的发电厂的产出。 该法典必须放在某个地方,常常是温带。

See my question for control the输出目录.





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签