Skip to main content

Posts

Showing posts with the label Security

Related competency retiring exams and validity of Microsoft Certification Azure cloud

Related competency Retiring exams Application Development Retirement date: December 31, 2018 Valid until: December 31, 2019 • Exam 70-532: Developing Microsoft Azure Solutions • Exam 70-533: Implementing Microsoft Azure Infrastructure Solutions • Exam 70-535: Architecture Microsoft Azure Solutions Retirement date: December 31, 2018 Valid until: December 31, 2019 • Exam AZ-100: Microsoft Azure Infrastructure and Deployment • Exam AZ-101: Microsoft Azure Integration and Security Application Integration Retirement date: December 31, 2018 Valid until: December 31, 2019 • Exam 70-532: Developing Microsoft Azure Solutions Cloud Platform Retirement date: December 31, 2018 Valid until: December 31, 2019 • Exam 70-532: Developing Microsoft Azure Solutions • Exam 70-533: Implementing Microsoft Azure Infrastructure Solutions • Exam 70-535: Architecting Microsoft Azure Solutions • MCSA: Linux on Azure Retirement date: May 1, 2019 Valid until: May

Resolved :The Web Part page was not created correctly on the site

Problem : While deploying EP form getting business connector error. Error  “The Web Part page  was not created correctly on the site. No .NET Business Connector session could be found.” . No .NET Business Connector session could be found Solution : You can  try this and check. 1. Uncheck the Anonymous user of "IIS \ Directory Security \ Authentication and access control " 2. Add the BCProxy user to the local Administration group on the IIS server. 3. Then restart IIS and AX.

Set Folder,File read,write Permission from AX

To Set Folder,File read,write Permission from AX you can try below code . Just you need to pass Domain,Folder  parameter in function as root and stFolder as mention in function below. void setAccess(str root, str stFolder) { System.Security.AccessControl.DirectorySecurity DirectorySec; System.IO.DirectoryInfo dirInformaiton; System.Security.AccessControl.FileSystemAccessRule FilesysaccessRule; System.Security.AccessControl.FileSystemRights fileSysRights; System.Security.AccessControl.AccessControlType accessControlType; UserInfo UserInfo; SHRDocuFolder LtabSHRDocuFolder; System.Security.AccessControl.InheritanceFlags inheritFlags; System.Security.AccessControl.PropagationFlags propFlags; ; dirInformaiton = new System.IO.DirectoryInfo(_root); DirectorySec = dirInformaiton.GetAccessControl(); fileSysRights = System.Security.AccessControl.FileSystemRights::Write; inheritFlags = System.Security.AccessControl.InheritanceFlags::ObjectInheri

AOT Components preview in dynamics Axapta 2012

Following are AOT Components preview in Microsoft dynamics Axapta 2012, In Ax 2012 Parts,Visual Studio projects etc are new component added in AOT. You can see lot of changes in form design but base method and code are same as ax 2009.