|
|
![]() |
![]() |
![]() |
|
Contents Introduction Concepts User Help Modeler Help Browser Help
|
|||
![]() |
|||
![]() |
![]() |
The AGMCGI InterfaceThis section deals with the AGMCGI interface specifications. It gives a detailed description of each interface call, what information is required and what information is returned, as well as a detailed description of what Archi does when it receives the interface call. Since this Interface uses CGI protocols, the CGI string passed to Archi should be in accepted CGI notation (i.e. Name/Value pairs separated by an ampersand character). The following topics are covered:
Retrieve model type list from Archi (RMT)PurposeTo allow an external system to retrieve a list of "Model Type" and "Meta Model Type" instances from Archi. Required Input Parameters
Example CGI request:"http://localhost/Archi/ABTWSAC.EXE/ZZMSRequester?CMD=RMT&UID=Visio&PWD=Visio" Example Archi Responsehttp://localhost/Archi/ABTWSAC.EXE/ZZMSRequester<meta http-equiv=""Pragma"" CONTENT=""no-cache""> <meta http-equiv=""Expires"" CONTENT=""Fri, 28 May 200412:06:56 PM GMT""> <!-- Generated by VisualAge Web Connection on 2004/06/03 at 12:06:56 PM --> <HTML> <HEAD> <TITLE>Z Z M S Requester</TITLE> </HEAD> <BODY TITLE=""Archi response time (ZZMSRequester class): 0.09 secs"" > <font face=Arial, size=1, color=""#000000""> <ZZMSREQUESTOR> <MODELTYPELIST> <INSTANCEMODELTYPELIST> <MODELTYPE>ClassDiagram</MODELTYPE> <MODELTYPE>ClassDiagram2</MODELTYPE> <MODELTYPE>ModelWithAttributes</MODELTYPE> <MODELTYPE>Static Structure</MODELTYPE> </INSTANCEMODELTYPELIST> <METAMODELTYPELIST> <MODELTYPE>TestMetaModel</MODELTYPE> <MODELTYPE>TestMetaModel2</MODELTYPE> </METAMODELTYPELIST> </MODELTYPELIST> </ZZMSREQUESTOR> </font> </BODY> </HTML> As you will notice from the XML, the Meta and Instance lists are wrapped into separate XML tags. Example Archi Error Response"http://localhost/Archi/ABTWSAC.EXE/ZZMSRequester<meta http-equiv=""Pragma"" CONTENT=""no-cache""> <meta http-equiv=""Expires"" CONTENT=""Fri, 28 May 200412:14:07 PM GMT""> <!-- Generated by VisualAge Web Connection on 2004/06/03 at 12:14:07 PM --> <HTML> <HEAD> <TITLE>Z Z M S Requester</TITLE> </HEAD> <BODY TITLE=""Archi response time (ZZMSRequester class): 0.0 secs"" > <font face=Arial, size=1, color=""#000000""> <ZZMSREQUESTOR> <ZZERROR>Invalid+logon...</ZZERROR> </ZZMSREQUESTOR> </font> </BODY> </HTML> Retrieve model list for mode type from Archi (RMS)
PurposeTo allow an external system to retrieve a list of "Model" instances for a particular "Model Type" instances from Archi. Required Input Parameters
Example CGI request:"http://localhost/Archi/ABTWSAC.EXE/ZZMSRequester?CMD=RMS&UID=Visio&PWD=Visio&MT=ModelWithAttributes" Example Archi Responsehttp://localhost/Archi/ABTWSAC.EXE/ZZMSRequester<meta http-equiv=""Pragma"" CONTENT=""no-cache""> <meta http-equiv=""Expires"" CONTENT=""Fri, 28 May 200412:17:17 PM GMT""> <!-- Generated by VisualAge Web Connection on 2004/06/03 at 12:17:16 PM --> <HTML> <HEAD> <TITLE>Z Z M S Requester</TITLE> </HEAD> <BODY TITLE=""Archi response time (ZZMSRequester class): 1.69 secs"" > <font face=Arial, size=1, color=""#000000""> <ZZMSREQUESTOR> <MODELLIST> <MODEL>Attrtest1</MODEL> <MODEL>Attrtest2</MODEL> </MODELLIST> </ZZMSREQUESTOR> </font> </BODY> </HTML> Send Visual Object to Archi (UML2)PurposeTo allow an external system to send information of a visual object to Archi in order to allow Archi to store the information.. Required Input Parameters
Example CGI request:""http://localhost/Archi/ABTWSAC.EXE/ZZMSRequester?CMD=UML2&UID=Visio&PWD=Visio&MN=Attrtest2&MT=ModelWithAttributes&SV=Actor &XP=001.3417&YP=015.7687&WD=000.4000&HT=000.7500&NI=Actor One"" Example Archi Response"http://localhost/Archi/ABTWSAC.EXE/ZZMSRequester<meta http-equiv=""Pragma"" CONTENT=""no-cache""> <meta http-equiv=""Expires"" CONTENT=""Fri, 28 May 200412:22:48 PM GMT""> <!-- Generated by VisualAge Web Connection on 2004/06/03 at 12:22:48 PM --> <HTML> <HEAD> <TITLE>Z Z M S Requester</TITLE> </HEAD> <BODY TITLE=""Archi response time (ZZMSRequester class): 0.44 secs"" > <font face=Arial, size=1, color=""#000000""> <ZZMSREQUESTOR> <MODELACTION>Created relationship between: Actor One and: Employee</MODELACTION> <MODELACTION>Created relationship between: Actor One and: Attrtest2</MODELACTION> <MODELACTION>Updated infonode attributes for infonode: Actor One-Attrtest2</MODELACTION> </ZZMSREQUESTOR> </font> </BODY> </HTML> " What Archi Does in the BackgroundWhen Archi receives this type of request, it performs the following operations:
At this point, execution splits depeding on whether we are working with a Meta or an Instance Model For Meta Models:
For Instance Models:
Send Visual Relationship to Archi (UMR)PurposeTo allow an external system to send information of a visual relationship between two objects to Archi in order to allow Archi to store the information.. Required Input Parameters
Example CGI request:For an instance model: /ZZMSRequester?CMD=UMR&UID=Visio&PWD=Visio&MN=RudolfTest&MT=ModelWithAttributes&SV=Dynamic Link&RX=M1 to M2&FN= Manual Two&FT=Manual&FP=3&TN=Manual One&TT=Manual&TP=4&RN=&IRN=
For an meta model: /ZZMSRequester?CMD=UMR&UID=Visio&PWD=Visio&MN=TestMetaModel&MT=META: MMTest&SV=Binary Association&RX=*&FN=BusUnit &FT=Class&FP=10&TN=BusEvent&TT=Class&TP=9&RN=-Fires&IRN=-FiredBy
Example Archi ResponseFor an instance model: <ZZMSREQUESTOR> <MODELACTION>Created relationship from node: Manual Two using relType: AA_connects to to node: Manual One</MODELACTION> <MODELACTION>Updated info node details: Manual Two-Manual One</MODELACTION> </ZZMSREQUESTOR>
For an meta model: <ZZMSREQUESTOR> <MODELACTION>Created relationship between modeltype: MMTest and model: TestMetaModel</MODELACTION> <MODELACTION>Updated Meta Model XML: TestMetaModel</MODELACTION> </ZZMSREQUESTOR> What Archi Does in the BackgroundWhen Archi receives this type of request, it performs the following operations:
At this point, execution splits depeding on whether we are working with a Meta or an Instance Model For Meta Models:
For Instance Models:
Send Visual Attribute to Archi (AUD)PurposeTo allow an external system to send information of an attribute belonging to a node instance or nodetype from a visual modeling tool to Archi. In Visio, we use the "Custom Properties" section to find attributes and send them to Archi. The primary difference between Meta and Instance modeling for this command is that attributes MUST be explicitly defined in the instance "Model Type" XML mapping, while they need not be defined at all in the meta "Meta Model Type" mapping. Required Input Parameters
Example CGI request:For an instance model: /ZZMSRequester?CMD=AUD&UID=Visio&PWD=Visio&MN=RudolfTest&MT=ModelWithAttributes&SV=Manual&AN=DurationMin& AV=0.0000 &NI=Manual One
For an meta model: /ZZMSRequester?CMD=AUD&UID=Visio&PWD=Visio&MN=MMtest&MT=META: TestMetaModel&SV=Class &AN=Attribute1&AV=Single &NI=BusUnit" Example Archi ResponseFor an instance model: <ZZMSREQUESTOR> <MODELACTION>Updated attribute value for attribute: AA_DurationMin and node: Manual One</MODELACTION> </ZZMSREQUESTOR>
For an meta model: <ZZMSREQUESTOR> <MODELACTION>Created relationship between modeltype: TestMetaModel and model: MMTest</MODELACTION> <MODELACTION>Updated Meta Model XML: MMtest</MODELACTION> </ZZMSREQUESTOR> What Archi Does in the BackgroundWhen Archi receives this type of request, it performs the following operations:
At this point, execution splits depending on whether we are working with a Meta or an Instance Model For Meta Models:
For Instance Models:
Send Visual Attribute (On a relationship) to Archi (AUR)PurposeTo allow an external system to send information of an attribute belonging to a relationship between to nodes from a visual modeling tool to Archi. This function is only available for Instance models at the moment, it will be made available for Meta models in a future release. Required Input Parameters
Example CGI request:For an instance model: /ZZMSRequester?CMD=AUR&UID=Visio&PWD=Visio&MN=RudolfTest&MT=ModelWithAttributes&SV=Dynamic Link&FN=Manual Two&FT= Manual&TN=Manual One&TT=Manual&AN=MyCustomProp&AV=Hello For an meta model: This feature is not available for meta models yet. Example Archi ResponseFor an instance model: <ZZMSREQUESTOR> <MODELACTION>Created relationship from node: Manual Two using relType: AA_connects to to node: Manual One</MODELACTION> <MODELACTION>Updated attribute value for attribute: MyCustomProp and node: Manual Two-Manual One</MODELACTION> </ZZMSREQUESTOR> For an meta model: This feature is not available for meta models yet. What Archi Does in the BackgroundWhen Archi receives this type of request, it performs the following operations:
Retrieve Archi Model Request (RML)PurposeTo allow an external system to retrieve complete information for a model from Archi. The information is returned in XML and differs between an Instancxe and a Meta Model Required Input Parameters
Example CGI request:/ZZMSRequester?CMD=RML&UID=Visio&PWD=Visio&MT=ModelWithAttributes&MN=RudolfTest&ROR=FALSE Example Archi ResponseFor an instance model:
The illustration above shows sample XML returned when retrieving an Instance Model
For an meta model: <ZZMSREQUESTOR> <MODELTYPE>ArchiMetaModelType</MODELTYPE> <NODETYPE> <NODETYPENAME>Development+Tool+Type</NODETYPENAME> <SMALLIMAGE>DevelopmentTool90x60.gif</SMALLIMAGE> <BIGIMAGE>DevelopmentTool90x60.gif</BIGIMAGE> <HYPERLINK></HYPERLINK> <SELECTLISTINFO></SELECTLISTINFO> <VISUALNAME>Class</VISUALNAME> <XPOS>0</XPOS> <YPOS>0</YPOS> <HEIGHT>0</HEIGHT> <WIDTH>0</WIDTH> <LEGALATTRIBUTE> <ATTRIBUTENAME>Updated+on</ATTRIBUTENAME> <UNITOFMEASURE></UNITOFMEASURE> <TYPE>Archie2LastUpdated</TYPE> <SEQUENCE>100</SEQUENCE> </LEGALATTRIBUTE> <LEGALRELATIONSHIP> <RELATIONSHIPTYPE> <DESCRIPTION>is+used+by</DESCRIPTION> <INVERSEDESCRIPTION>uses</INVERSEDESCRIPTION> <SMALLIMAGE>uses_isusedby.gif</SMALLIMAGE> <BIGIMAGE>uses_isusedby.gif</BIGIMAGE> <INVSMALLIMAGE>uses_isusedby.gif</INVSMALLIMAGE> <INVBIGIMAGE>uses_isusedby.gif</INVBIGIMAGE> <VISUALNAME>Binary+Association</VISUALNAME> </RELATIONSHIPTYPE> <LEGALTARGET> <TARGET>Task+Type</TARGET> <INFONODE></INFONODE> <FROMCONNPOINT>0</FROMCONNPOINT> <TOCONNPOINT>0</TOCONNPOINT> </LEGALTARGET> </LEGALRELATIONSHIP> </NODETYPE> </ZZMSREQUESTOR> What Archi Does in the BackgroundWhen Archi receives this type of request, it performs the following operations:
|