Ниже приведен пример использования операции GetMs для открытия модели. В запросе передается экземпляр открытого контейнера моделирования и шаблон для открытия модели. В ответе приходит открытая модель.
{
"GetMs" :
{
"tMs" :
{
"id" : "GEGBFKLHGPMOFOAEIMFEBNKILLAKNJBEIKKFGPFLECLAJIMA!M!S!CEDFMNBMHGPMOFOAEEOKCHDKLPKPFFKNEILBKMMPKNGGGFEEE"
},
"tArg" :
{
"pattern" :
{
"obInst" : "true",
"scenarios" : "Get",
"period" : "true",
"item" :
{
"key" : "306669",
"model" :
{
"transform" :
{
"inputs" : "Get",
"outputs" : "Get",
"kind" : "true"
}
}
}
}
}
}
}
{
"GetMsResult" :
{
"id" :
{
"id" : "GEGBFKLHGPMOFOAEIMFEBNKILLAKNJBEIKKFGPFLECLAJIMA!M!S!CEDFMNBMHGPMOFOAEEOKCHDKLPKPFFKNEILBKMMPKNGGGFEEE"
},
"meta" :
{
"obInst" :
{
"obDesc" :
{
"@ds" : "ключ 306480",
"@isShortcut" : "0",
"@isLink" : "0",
"@ver" : "6",
"@hf" : "0",
"i" : "MODELSPACE",
"n" : "Контейнер моделирования",
"k" : "306480",
"c" : "5121",
"p" : "1580",
"h" : "0",
"hasPrv" : "0",
"ic" : "0",
"trackElementDependents" : "0",
"isPermanent" : "1",
"isTemp" : "0"
}
},
"dirty" : "0",
"period" :
{
"start" : "1968-12-08",
"end" : "2022-12-31"
},
"scenarios" :
{
"nodes" :
{
"it" :
{
"@isFolder" : "0",
"k" : "306497",
"id" : "OBJ306497",
"n" : "Базовый",
"vis" : "1",
"scenDesc" :
{
"@ds" : "",
"@isShortcut" : "0",
"@isLink" : "0",
"@ver" : "2",
"@hf" : "0",
"i" : "OBJ306497",
"n" : "Базовый",
"k" : "306497",
"c" : "5124",
"p" : "306485",
"h" : "0",
"hasPrv" : "0",
"ic" : "0",
"trackElementDependents" : "0"
},
"internalKey" : "306497"
}
}
},
"item" :
{
"k" : "306669",
"id" : "OBJ306669",
"n" : "Модель",
"vis" : "1",
"type" : "Problem"
}
}
}
}
public static MsItem GetMsOpenModel(MsId ms, uint modelKey)
{
// Задаём параметры выполнения операции
var getMsOp = new GetMs()
{
tArg = new GetMsArg()
{ // Задаём общий шаблон извлечения данных
pattern = new MsMdPattern()
{
scenarios = ListOperation.Get,
period = true,
item = new MsItemPattern()
{
// Ключ открываемой модели
key = modelKey,
model = new MsModelPattern()
{
transform = new MsFormulaTransformPattern()
{
kind = true,
inputs = ListOperation.Get,
outputs = ListOperation.Get
}
}
}
}
},
tMs = ms
};
// Создаем прокси-объект для выполнения операции
var somClient = new SomPortTypeClient();
// Открываем модель
var result = somClient.GetMs(getMsOp);
return result.meta.item;
}
См. также: