...
Code Block | ||||
---|---|---|---|---|
| ||||
EdmiError edmiRemoteGetXMLConfigurationId (SdaiServerContext serverContextId,
SdaiString schemaName,
SdaiString xmlConfigurationName,
SdaiInstance *xmlConfigurationId,
SdaiInvocationId *edmiInvocationId);
|
Returns the XML Configuration Id of an XML Configuration specified by its XML Configuration Name.
...
Arguments
...
Type | Name | Comment |
SdaiServerContext | serverContextId | Context identification, from edmiDefineServerContext |
SdaiString | schemaName | The name of the Express Schema assosiated associated with the XML Configuration. |
SdaiString | xmlConfigurationName | The XML Configuration Name for which to retrieve the XML Configuration Id. This is the string specified by the <configuration id=". . . tag in the XML Configuration. |
SdaiInstance | xmlConfigurationId | Variable that will receive the XML Configuration Id that uniquely identifies the XML Configuration in the EDMdatabase. |
SdaiInvocationId | edmiInvocationId | Currently unused |
...
Return Value
...
Insert excerpt | ||||||
---|---|---|---|---|---|---|
|
Options
...
Example
...
Code Block | ||
---|---|---|
| ||
EdmiError rstat; SdaiServerContext myContext; SdaiInstance configId; /* Create Server Context */ rstat = edmiDefineServerContext("MyContext", |
...
"Johnny", "Supervisor", "cf37ftr", |
...
"TCP", "9090", "MyServerHost", |
...
NULL, NULL, NULL, NULL, NULL, &myContext); |
...
/* Get id of xml configuration */ |
...
rstat = edmiRemoteGetXMLConfigurationId(myContext, "IFC2X2_FINAL", |
...
"ifcxml_tagged_aggregate", &configId, NULL); |
...
. . . |
See also
Filter by label (Content by label) | ||||||
---|---|---|---|---|---|---|
|