How to set state for an item using Aras Innovator batch loader
How to set state for an item using Aras Innovator batch loaderAns) First find what itemtype instance you are trying to set the state. Ex: if you are trying to set state for part. Go to Aras iinovator...
View ArticleAras Innovator Action Merge
Open Nash toolEnter Password.Use below AML to insert item.Action Merge: If item exist, it will update. If item is not exist, it will create new item in Aras Innovator. type would be Part, Document...
View ArticleCreating a custom event log under Event Viewer to log server events
Steps:The first step is to create the new log. You have to do this in the registry. Open up regedit and navigate to:HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\EventlogRight click on the Eventlog...
View ArticleError: Could not find schema information for the attribute/element in C# XML
Right-click on the project icon and choose "Properties".Go to the "Application" tab and choose another .NET target framework.Save changes.Go to the "Application" tab and choose the initial .NET target...
View ArticleDataSet WriteXML generates 'NewDataSet' root element
Solution: System.Data.DataSet myDs = new System.Data.DataSet("MyRoot");
View ArticleThere are multiple root elements. Line 1, position 33
Solution:Some where you are closing your element tag.Ex:Error: <Root/><Child>Hi</Child></Root>Correct: <Root><Child>Hi</Child></Root>
View ArticleChange from to
Change from <?xml version="1.0" standalone="yes"?> to <?xml version="1.0" encoding="utf-8" ?>If you use Dataset.WriteXml("C:\\a.xml"); you will get <?xml version="1.0"...
View ArticleC# XML Deserialize in to Object - xmlns='' was not expected
<root element xmlns=''> was not expected.{" was not expected.} XML Deserialize in C#
View ArticleDelete a Git branch both locally and remotely
To delete any branch from VSO, you have to enable Alternate Authentication Credentials Open VSO web browser.Click on your name in the top rightClick on My ProfileClick on CredentialsConfigure Alternate...
View Articlec# xml read There is an error in XML document (2, 2).
This is my xml<?xml version='1.0' encoding='utf-16'?><Message><FirstName>Hunt</FirstName><LastName>DAvid</LastName></Message>This is my code... string xml =...
View Article