edmiWriteXMLFile
EdmiError edmiWriteXMLFile (SdaiString repositoryName, SdaiString modelName, SdaiSelect pSel, SdaiString headerRepositoryName, SdaiString headerModelName, SdaiString xmlConfigurationName, SdaiString xmlFileName, SdaiString diagnosticFileName, SdaiUnsignedInt options, SdaiInteger *nbWarnings, SdaiInteger *nbErrors, SdaiErrorCode *sdaiError);
Export an edmModel or parts of an edmModel to an Xml-formatted file on the file system. This function has an insufficient parameter list. Use the improved edmiWriteXMLFileEx instead. edmiWriteXMLFile has been kept for compatibility reasons.
Arguments
1 | Type | Name | Comment |
2 | SdaiString | RepositoryName | The name of the data repository that contains the model to make a XML representation of. Repository names are case sensitive. |
3 | SdaiString | ModelName | The name of the data model from which data is to be exported to the specified XML File. Model names are case sensitive. |
4 | SdaiSelect | Psel | Edm select type specifying the starting point for exporting XML date from. If this parameter is set to NULL the entire model will be exported. The most common starting points are instances and aggregates. All references will be exported to the XML file |
5 | SdaiString | HeaderRepositoryName | The name of the data repository that contains the XML header model. Repository names are case sensitive. If this parameter is NULL or an empty string, <headerRepositoryName> will be set equal to <repositoryName> |
6 | SdaiString | HeaderModelName | Specifies the name of the XML Header Model that will be exported to the Header Section in the resulting XML file. XML Header Model names are case sensitive. The specified XML Header Model must be located in the repository specified by the parameter <headerRepositoryName>. |
7 | SdaiString | XmlConfigurationName | The name of the XML configuration. NULL means no configuration. |
8 | SdaiString | XmlFileName | The name of the XML file to be generated. |
9 | SdaiString | DiagnosticFileName | Specifies the file name for diagnostic information generated by this function. If no file name is supplied, i.e. the <diagnosticFileName> argument is set to NULL or an empty string, all diagnostic information will be written to the EDMinterface current output device. |
10 | SdaiUnsignedInt | Options | A bitwise OR between the options described below. All option names are defined in the header file sdai.h. |
11 | SdaiInteger | NbWarnings | Address of a variable that will receive the number of warnings generated by EDM when the model was exported. |
12 | SdaiInteger | NbErrors | Address of a variable that will receive the number of errors encountered when the model was exported. |
13 | SdaiErrorCode | SdaiError | Address of a variable that will receive any EDMinterface error code returned from the EDMserver. Use edmiGetErrorText to convert the error code into a readable message |
Return Value
Options
Option | Comment |
---|---|
INCLUDE_HEADER | Include header element when writing ISO_10303_28 document |
INCLUDE_CONFIGURATION | Include configuration element when writing ISO_10303_28 document |
INCLUDE_SCHEMA | Include schema elements when writing ISO_10303_28 document |
EXTRACT_SHALLOW | Use this option to prevent referenced instances to be exported. By default EDM will export all the instances given in <psel> and the entire mesh of referenced instances that spreads out from them. |
EDM_IDENTIFIERS | Use the full internal instanceIds of EDM as step Ids in the exported XML file. By default, the step Ids are the local references from within each model. |
Example
EdmiError rstat; SdaiInteger nWarnings; SdaiInteger nErrors; . . . if (rstat = edmiWriteXMLFile ("myXmlRepository", "myXmlModel", NULL, "myXmlHeaderModel", "myXmlConfiguration", "c:/Johnny/myXmlFile.xml", "c:/Johnny/tmp/myXmlFile.diag", INCLUDE_HEADER | INCLUDE_CONFIGURATION, &nWarnings, &nErrors, &rstat)) { printf("\nError %d in edmiWriteXMLFile: %s", rstat, edmiGetErrorText(rstat)); goto Error; }
See also
Filter by label
There are no items with the selected labels at this time.