7 packages tagged with “OnPremise”
This package works with Service Bus 1.1 for Windows Server. it adds Microsoft.ServiceBus.dll along with related configuration files to your project. Please note that this package requires .Net Framework 4 Full Profile.
Provides a WS-Trust compatible client for connecting to on-premise IFD instances of Dynamics 365 from .NET Core. This package builds on top of Microsoft.PowerPlatform.Dataverse.Client and offers an alternative IOrganizationService implementation using WS-Trust. This allows you to connect using the URL of the organization service, username and password without any additional configuration. Because this OnPremiseClient implements the same IOrganizationService as the standard ServiceClient implementation your code can work with either as shown in the sample code below. using Data8.PowerPlatform.Dataverse.Client; using Microsoft.PowerPlatform.Dataverse.Client; using Microsoft.Xrm.Sdk; var onPrem = new OnPremiseClient("https://org.crm.contoso.com/XRMServices/2011/Organization.svc", "AD\\username", "password!"); var online = new ServiceClient("AuthType=ClientSecret;Url=https://contoso.crm.dynamics.com;ClientId=637C79F7-AE71-4E9A-BD5B-1EC5EC9F397A;ClientSecret=p1UiydoIWwUH5AdMbiVBOrEYn8t4RXud"); CreateRecord(onPrem); CreateRecord(online); void CreateRecord(IOrganizationService svc) { var entity = new Entity("account") { ["name"] = "Data8" }; entity.Id = svc.Create(entity); }
This package works with Service Bus 1.0 for Windows Server. it adds Microsoft.ServiceBus.dll along with related configuration files to your project. Please note that this package requires .Net Framework 4 Full Profile.
Microsoft.XRM.Sdk dll library for Microsoft CRM 2015 on premise version 7.0.2.8 (CRM On Premise Update 0.2)
Microsoft.Crm.Sdk.Proxy dll library for Microsoft CRM 2015 on premise version 7.0.2.53 (CRM On Premise Update 0.2)
Microsoft.XRM.Sdk.Workflow dll library for Microsoft CRM 2015 on premise version 7.0.2.53 (CRM On Premise Update 0.2)
This package is for use with Service Bus WCF programing model. The extensions enables you to mark parts of your data model [DataContract] as promoted properties. These marked properties are then automatically lifted and promoted in the outgoing BrokeredMessage. Sample usage: ========== public class Order { public double Amount { get; set; } [PromotedProperty] public string ShipCity { get; set; } } [ServiceContract] public interface IOrderService { [OperationContract(Name = "SubmitFlat", IsOneWay = true)] [PropertyPromotionBehavior] void Submit(double amount, [PromotedProperty] string shipCity); [OperationContract(IsOneWay = true)] [PropertyPromotionBehavior] void Submit(Order order); } See following blog post for implementation details. http://zamd.net/2011/05/25/pubsub-with-wcf-part-2/