Repository.XFRACAS.ImportXFRACASXMLString

From ReliaWiki
Revision as of 23:53, 19 August 2015 by Kate Racaza (talk | contribs)
Jump to navigation Jump to search
APIWiki.png


Member of: SynthesisAPI10.Repository


Uploads an import file byte stream for processing. Returns an Integer that represents the system ID.

Syntax

.XFRACAS.ImportXFRACASXMLString(entityID, importType, xmlString, fileTitle, fileDescription)

Parameters

entityID

Integer. The ID number of the XFRACAS entity to import the data into. (Required)

importType

The type of XFRACAS element (e.g., incident, problem, etc.) to import. Can be any XFRACASImportType constant. (Required)

xmlString

String. The string consisting of the XML to import.

fileTitle

String. The file title of the XML file byte array to import.

fileDescription

String. A description of the XML data to import. (Required)


Example

This example assumes that the repository is connected to an XFRACAS with existing entities.

VB.NET

 'Add code to connect to a Synthesis repository. 
  Dim MyRepository As New Repository
  ... 

 'Define an XML string and populate it with the XML text. 
 Dim xmlString As String = Nothing
  ... 


 'Import the XML byte array into the first available XFRACAS entity. 
 'The following code assumes that the XML string type describes XFRACAS incidents. 
 DimImportXMLSystemIDAs Integer
 ImportXMLSystemID = MyRepository.XFRACAS.ImportXFRACASXMLString(1, XFRACASImportType.Incident, xmlString, "XMLFileTitle", "XMLFileDescription")