Advertisement
Guest User

pr0f

a guest
Jul 20th, 2011
2,951
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 46.86 KB | None | 0 0
  1. type flash/simatic/webservices/runtimeaccess.wsdl
  2. <?xml version='1.0' encoding='UTF-8' ?>
  3. <!-- This file was taken from the Calculator example of the Microsoft SOAP Toolkit -->
  4. <!-- The WSSample implements this functionality. You can use the toolkit samples for programmatic access -->
  5. <definitions  name ='RTWebService'   targetNamespace = 'http://tempuri.org/wsdl/'
  6.      xmlns:wsdlns='http://tempuri.org/wsdl/'
  7.      xmlns:typens='http://tempuri.org/type'
  8.      xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/'
  9.      xmlns:xsd='http://www.w3.org/2001/XMLSchema'
  10.      xmlns:tns='http://localhost:5001/soap/FwRTWebService.wsdl'
  11.      xmlns:stk='http://schemas.microsoft.com/soap-toolkit/wsdl-extension'
  12.      xmlns='http://schemas.xmlsoap.org/wsdl/'
  13.     xmlns:SOAP-ENC='http://schemas.xmlsoap.org/soap/encoding/'
  14.      xmlns:w='http://schemas.xmlsoap.org/wsdl/'
  15.      xmlns:ns1='http://tempuri.org/4s4c/1/3/wsdl/types/'>
  16.   <types>
  17.     <schema targetNamespace='http://tempuri.org/type'
  18.      xmlns='http://www.w3.org/2001/XMLSchema'
  19.      xmlns:wsdl='http://schemas.xmlsoap.org/wsdl/'>
  20.     </schema>
  21.   </types>
  22.  
  23.  <message name='RTWebService.GetValue'>
  24.     <part name='A' type='xsd:string'/>
  25.   </message>
  26.   <message name='RTWebService.GetValueResponse'>
  27.     <part name='Result' type="xsd:string"/>
  28.   </message>
  29.     <message name='RTWebService.SetValue'>
  30.     <part name='A' type='xsd:string'/>
  31.     <part name='B' type='xsd:string'/>
  32.   </message>
  33.   <message name='RTWebService.SetValueResponse'>
  34.     <part name='Result' type='xsd:string'/>
  35.   </message>
  36.  
  37.   <portType name='RTWebServiceSoapPort'>
  38.     <operation name='GetValue' parameterOrder='A'>
  39.       <input message='wsdlns:RTWebService.GetValue' />
  40.       <output message='wsdlns:RTWebService.GetValueResponse' />
  41.     </operation>    
  42.     <operation name='SetValue' parameterOrder='A B'>
  43.       <input message='wsdlns:RTWebService.SetValue' />
  44.       <output message='wsdlns:RTWebService.SetValueResponse' />
  45.     </operation>
  46.   </portType>
  47.  
  48.   <binding name='RTWebServiceSoapBinding' type='wsdlns:RTWebServiceSoapPort' >
  49.     <!-- stk:binding preferredEncoding='UTF-8'/-->
  50.     <soap:binding style='rpc' transport='http://schemas.xmlsoap.org/soap/http' />
  51.     <operation name='GetValue' >
  52.       <soap:operation soapAction='http://tempuri.org/GetValue' />
  53.       <input>
  54.         <soap:body use='encoded' namespace='http://tempuri.org/'
  55.           encodingStyle='http://schemas.xmlsoap.org/soap/encoding/' />
  56.       </input>
  57.       <output>
  58.         <soap:body use='encoded' namespace='http://tempuri.org/'
  59.           encodingStyle='http://schemas.xmlsoap.org/soap/encoding/' />
  60.       </output>
  61.     </operation>    
  62.     <operation name='SetValue' >
  63.       <soap:operation soapAction='http://tempuri.org/SetValue' />
  64.       <input>
  65.         <soap:body use='encoded' namespace='http://tempuri.org/'
  66.           encodingStyle='http://schemas.xmlsoap.org/soap/encoding/' />
  67.       </input>
  68.       <output>
  69.         <soap:body use='encoded' namespace='http://tempuri.org/'
  70.           encodingStyle='http://schemas.xmlsoap.org/soap/encoding/' />
  71.       </output>
  72.     </operation>
  73.    </binding>
  74.   <service name='RTWebService' >
  75.     <port name='RTWebServiceSoapPort' binding='wsdlns:RTWebServiceSoapBinding' >
  76.       <soap:address location='http://<MWSL>write(GetVar("HostName") + ":" + GetVar("HttpPort"));</MWSL>/soap/RuntimeAccess' />
  77.     </port>
  78.   </service>
  79. </definitions>
  80.  
  81. ------------------------------------------------------------------------------------------------------------
  82.  
  83. <?xml version="1.0" encoding="utf-8"?>
  84. <!--  
  85.      COPYRIGHT (c) 2003 OPC Foundation. All rights reserved.
  86.      http://www.opcfoundation.org
  87.      Use subject to the OPC Foundation License Agreement found at the following URL:
  88.       http://www.opcfoundation.org/Downloads/LicenseAgreement.asp  
  89. -->
  90. <definitions xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:s0="http://opcfoundation.org/webservices/XMLDA/1.0/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" targetNamespace="http://opcfoundation.org/webservices/XMLDA/1.0/" xmlns="http://schemas.xmlsoap.org/wsdl/">
  91.   <types>
  92.     <s:schema elementFormDefault="qualified" targetNamespace="http://opcfoundation.org/webservices/XMLDA/1.0/">
  93.       <s:element name="GetStatus">
  94.         <s:complexType>
  95.           <s:attribute name="LocaleID" type="s:string" />
  96.           <s:attribute name="ClientRequestHandle" type="s:string" />
  97.         </s:complexType>
  98.       </s:element>
  99.       <s:element name="GetStatusResponse">
  100.         <s:complexType>
  101.           <s:sequence>
  102.             <s:element minOccurs="0" maxOccurs="1" name="GetStatusResult" type="s0:ReplyBase" />
  103.             <s:element minOccurs="0" maxOccurs="1" name="Status" type="s0:ServerStatus" />
  104.           </s:sequence>
  105.         </s:complexType>
  106.       </s:element>
  107.       <s:complexType name="ReplyBase">
  108.         <s:attribute name="RcvTime" type="s:dateTime" use="required" />
  109.         <s:attribute name="ReplyTime" type="s:dateTime" use="required" />
  110.         <s:attribute name="ClientRequestHandle" type="s:string" />
  111.         <s:attribute name="RevisedLocaleID" type="s:string" />
  112.         <s:attribute name="ServerState" type="s0:serverState" use="required" />
  113.       </s:complexType>
  114.       <s:simpleType name="serverState">
  115.         <s:restriction base="s:string">
  116.           <s:enumeration value="running" />
  117.           <s:enumeration value="failed" />
  118.           <s:enumeration value="noConfig" />
  119.           <s:enumeration value="suspended" />
  120.           <s:enumeration value="test" />
  121.           <s:enumeration value="commFault" />
  122.         </s:restriction>
  123.       </s:simpleType>
  124.       <s:complexType name="ServerStatus">
  125.         <s:sequence>
  126.           <s:element minOccurs="0" maxOccurs="1" name="StatusInfo" type="s:string" />
  127.           <s:element minOccurs="0" maxOccurs="1" name="VendorInfo" type="s:string" />
  128.           <s:element minOccurs="0" maxOccurs="unbounded" name="SupportedLocaleIDs" type="s:string" />
  129.           <s:element minOccurs="0" maxOccurs="unbounded" name="SupportedInterfaceVersions" type="s0:interfaceVersion" />
  130.         </s:sequence>
  131.         <s:attribute name="StartTime" type="s:dateTime" use="required" />
  132.         <s:attribute name="ProductVersion" type="s:string" />
  133.       </s:complexType>
  134.       <s:simpleType name="interfaceVersion">
  135.         <s:restriction base="s:string">
  136.           <s:enumeration value="XML_DA_Version_1_0" />
  137.         </s:restriction>
  138.       </s:simpleType>
  139.       <s:element name="Read">
  140.         <s:complexType>
  141.           <s:sequence>
  142.             <s:element minOccurs="0" maxOccurs="1" name="Options" type="s0:RequestOptions" />
  143.             <s:element minOccurs="0" maxOccurs="1" name="ItemList" type="s0:ReadRequestItemList" />
  144.           </s:sequence>
  145.         </s:complexType>
  146.       </s:element>
  147.       <s:complexType name="RequestOptions">
  148.         <s:attribute default="true" name="ReturnErrorText" type="s:boolean" />
  149.         <s:attribute default="false" name="ReturnDiagnosticInfo" type="s:boolean" />
  150.         <s:attribute default="false" name="ReturnItemTime" type="s:boolean" />
  151.         <s:attribute default="false" name="ReturnItemPath" type="s:boolean" />
  152.         <s:attribute default="false" name="ReturnItemName" type="s:boolean" />
  153.         <s:attribute name="RequestDeadline" type="s:dateTime" />
  154.         <s:attribute name="ClientRequestHandle" type="s:string" />
  155.         <s:attribute name="LocaleID" type="s:string" />
  156.       </s:complexType>
  157.       <s:complexType name="ReadRequestItemList">
  158.         <s:sequence>
  159.           <s:element minOccurs="0" maxOccurs="unbounded" name="Items" type="s0:ReadRequestItem" />
  160.         </s:sequence>
  161.         <s:attribute name="ItemPath" type="s:string" />
  162.         <s:attribute name="ReqType" type="s:QName" />
  163.         <s:attribute name="MaxAge" type="s:int" />
  164.       </s:complexType>
  165.       <s:complexType name="ReadRequestItem">
  166.         <s:attribute name="ItemPath" type="s:string" />
  167.         <s:attribute name="ReqType" type="s:QName" />
  168.         <s:attribute name="ItemName" type="s:string" />
  169.         <s:attribute name="ClientItemHandle" type="s:string" />
  170.         <s:attribute name="MaxAge" type="s:int" />
  171.       </s:complexType>
  172.       <s:element name="ReadResponse">
  173.         <s:complexType>
  174.           <s:sequence>
  175.             <s:element minOccurs="0" maxOccurs="1" name="ReadResult" type="s0:ReplyBase" />
  176.             <s:element minOccurs="0" maxOccurs="1" name="RItemList" type="s0:ReplyItemList" />
  177.             <s:element minOccurs="0" maxOccurs="unbounded" name="Errors" type="s0:OPCError" />
  178.           </s:sequence>
  179.         </s:complexType>
  180.       </s:element>
  181.       <s:complexType name="ReplyItemList">
  182.         <s:sequence>
  183.           <s:element minOccurs="0" maxOccurs="unbounded" name="Items" type="s0:ItemValue" />
  184.         </s:sequence>
  185.         <s:attribute name="Reserved" type="s:string" />
  186.       </s:complexType>
  187.       <s:complexType name="ItemValue">
  188.         <s:sequence>
  189.           <s:element minOccurs="0" maxOccurs="1" name="DiagnosticInfo" type="s:string" />
  190.           <s:element minOccurs="0" maxOccurs="1" name="Value" />
  191.           <s:element minOccurs="0" maxOccurs="1" name="Quality" type="s0:OPCQuality" />
  192.         </s:sequence>
  193.         <s:attribute name="ValueTypeQualifier" type="s:QName" />
  194.         <s:attribute name="ItemPath" type="s:string" />
  195.         <s:attribute name="ItemName" type="s:string" />
  196.         <s:attribute name="ClientItemHandle" type="s:string" />
  197.         <s:attribute name="Timestamp" type="s:dateTime" />
  198.         <s:attribute name="ResultID" type="s:QName" />
  199.       </s:complexType>
  200.       <s:complexType name="OPCQuality">
  201.         <s:attribute default="good" name="QualityField" type="s0:qualityBits" />
  202.         <s:attribute default="none" name="LimitField" type="s0:limitBits" />
  203.         <s:attribute default="0" name="VendorField" type="s:unsignedByte" />
  204.       </s:complexType>
  205.       <s:simpleType name="qualityBits">
  206.         <s:restriction base="s:string">
  207.           <s:enumeration value="bad" />
  208.           <s:enumeration value="badConfigurationError" />
  209.           <s:enumeration value="badNotConnected" />
  210.           <s:enumeration value="badDeviceFailure" />
  211.           <s:enumeration value="badSensorFailure" />
  212.           <s:enumeration value="badLastKnownValue" />
  213.           <s:enumeration value="badCommFailure" />
  214.           <s:enumeration value="badOutOfService" />
  215.           <s:enumeration value="badWaitingForInitialData" />
  216.           <s:enumeration value="uncertain" />
  217.           <s:enumeration value="uncertainLastUsableValue" />
  218.           <s:enumeration value="uncertainSensorNotAccurate" />
  219.           <s:enumeration value="uncertainEUExceeded" />
  220.           <s:enumeration value="uncertainSubNormal" />
  221.           <s:enumeration value="good" />
  222.           <s:enumeration value="goodLocalOverride" />
  223.         </s:restriction>
  224.       </s:simpleType>
  225.       <s:simpleType name="limitBits">
  226.         <s:restriction base="s:string">
  227.           <s:enumeration value="none" />
  228.           <s:enumeration value="low" />
  229.           <s:enumeration value="high" />
  230.           <s:enumeration value="constant" />
  231.         </s:restriction>
  232.       </s:simpleType>
  233.       <s:complexType name="OPCError">
  234.         <s:sequence>
  235.           <s:element minOccurs="0" maxOccurs="1" name="Text" type="s:string" />
  236.         </s:sequence>
  237.         <s:attribute name="ID" type="s:QName" use="required" />
  238.       </s:complexType>
  239.       <s:complexType name="ArrayOfFloat">
  240.         <s:sequence>
  241.           <s:element minOccurs="0" maxOccurs="unbounded" name="float" type="s:float" />
  242.         </s:sequence>
  243.       </s:complexType>
  244.       <s:complexType name="ArrayOfInt">
  245.         <s:sequence>
  246.           <s:element minOccurs="0" maxOccurs="unbounded" name="int" type="s:int" />
  247.         </s:sequence>
  248.       </s:complexType>
  249.       <s:complexType name="ArrayOfUnsignedInt">
  250.         <s:sequence>
  251.           <s:element minOccurs="0" maxOccurs="unbounded" name="unsignedInt" type="s:unsignedInt" />
  252.         </s:sequence>
  253.       </s:complexType>
  254.       <s:complexType name="ArrayOfLong">
  255.         <s:sequence>
  256.           <s:element minOccurs="0" maxOccurs="unbounded" name="long" type="s:long" />
  257.         </s:sequence>
  258.       </s:complexType>
  259.       <s:complexType name="ArrayOfUnsignedLong">
  260.         <s:sequence>
  261.           <s:element minOccurs="0" maxOccurs="unbounded" name="unsignedLong" type="s:unsignedLong" />
  262.         </s:sequence>
  263.       </s:complexType>
  264.       <s:complexType name="ArrayOfDouble">
  265.         <s:sequence>
  266.           <s:element minOccurs="0" maxOccurs="unbounded" name="double" type="s:double" />
  267.         </s:sequence>
  268.       </s:complexType>
  269.       <s:complexType name="ArrayOfUnsignedShort">
  270.         <s:sequence>
  271.           <s:element minOccurs="0" maxOccurs="unbounded" name="unsignedShort" type="s:unsignedShort" />
  272.         </s:sequence>
  273.       </s:complexType>
  274.       <s:complexType name="ArrayOfBoolean">
  275.         <s:sequence>
  276.           <s:element minOccurs="0" maxOccurs="unbounded" name="boolean" type="s:boolean" />
  277.         </s:sequence>
  278.       </s:complexType>
  279.       <s:complexType name="ArrayOfString">
  280.         <s:sequence>
  281.           <s:element minOccurs="0" maxOccurs="unbounded" name="string" nillable="true" type="s:string" />
  282.         </s:sequence>
  283.       </s:complexType>
  284.       <s:complexType name="ArrayOfDateTime">
  285.         <s:sequence>
  286.           <s:element minOccurs="0" maxOccurs="unbounded" name="dateTime" type="s:dateTime" />
  287.         </s:sequence>
  288.       </s:complexType>
  289.       <s:complexType name="ArrayOfAnyType">
  290.         <s:sequence>
  291.           <s:element minOccurs="0" maxOccurs="unbounded" name="anyType" nillable="true" />
  292.         </s:sequence>
  293.       </s:complexType>
  294.       <s:complexType name="ArrayOfDecimal">
  295.         <s:sequence>
  296.           <s:element minOccurs="0" maxOccurs="unbounded" name="decimal" type="s:decimal" />
  297.         </s:sequence>
  298.       </s:complexType>
  299.       <s:complexType name="ArrayOfByte">
  300.         <s:sequence>
  301.           <s:element minOccurs="0" maxOccurs="unbounded" name="byte" type="s:byte" />
  302.         </s:sequence>
  303.       </s:complexType>
  304.       <s:complexType name="ArrayOfShort">
  305.         <s:sequence>
  306.           <s:element minOccurs="0" maxOccurs="unbounded" name="short" type="s:short" />
  307.         </s:sequence>
  308.       </s:complexType>
  309.       <s:element name="Write">
  310.         <s:complexType>
  311.           <s:sequence>
  312.             <s:element minOccurs="0" maxOccurs="1" name="Options" type="s0:RequestOptions" />
  313.             <s:element minOccurs="0" maxOccurs="1" name="ItemList" type="s0:WriteRequestItemList" />
  314.           </s:sequence>
  315.           <s:attribute name="ReturnValuesOnReply" type="s:boolean" use="required" />
  316.         </s:complexType>
  317.       </s:element>
  318.       <s:complexType name="WriteRequestItemList">
  319.         <s:sequence>
  320.           <s:element minOccurs="0" maxOccurs="unbounded" name="Items" type="s0:ItemValue" />
  321.         </s:sequence>
  322.         <s:attribute name="ItemPath" type="s:string" />
  323.       </s:complexType>
  324.       <s:element name="WriteResponse">
  325.         <s:complexType>
  326.           <s:sequence>
  327.             <s:element minOccurs="0" maxOccurs="1" name="WriteResult" type="s0:ReplyBase" />
  328.             <s:element minOccurs="0" maxOccurs="1" name="RItemList" type="s0:ReplyItemList" />
  329.             <s:element minOccurs="0" maxOccurs="unbounded" name="Errors" type="s0:OPCError" />
  330.           </s:sequence>
  331.         </s:complexType>
  332.       </s:element>
  333.       <s:element name="Subscribe">
  334.         <s:complexType>
  335.           <s:sequence>
  336.             <s:element minOccurs="0" maxOccurs="1" name="Options" type="s0:RequestOptions" />
  337.             <s:element minOccurs="0" maxOccurs="1" name="ItemList" type="s0:SubscribeRequestItemList" />
  338.           </s:sequence>
  339.           <s:attribute name="ReturnValuesOnReply" type="s:boolean" use="required" />
  340.           <s:attribute default="0" name="SubscriptionPingRate" type="s:int" />
  341.         </s:complexType>
  342.       </s:element>
  343.       <s:complexType name="SubscribeRequestItemList">
  344.         <s:sequence>
  345.           <s:element minOccurs="0" maxOccurs="unbounded" name="Items" type="s0:SubscribeRequestItem" />
  346.         </s:sequence>
  347.         <s:attribute name="ItemPath" type="s:string" />
  348.         <s:attribute name="ReqType" type="s:QName" />
  349.         <s:attribute name="Deadband" type="s:float" />
  350.         <s:attribute name="RequestedSamplingRate" type="s:int" />
  351.         <s:attribute name="EnableBuffering" type="s:boolean" />
  352.       </s:complexType>
  353.       <s:complexType name="SubscribeRequestItem">
  354.         <s:attribute name="ItemPath" type="s:string" />
  355.         <s:attribute name="ReqType" type="s:QName" />
  356.         <s:attribute name="ItemName" type="s:string" />
  357.         <s:attribute name="ClientItemHandle" type="s:string" />
  358.         <s:attribute name="Deadband" type="s:float" />
  359.         <s:attribute name="RequestedSamplingRate" type="s:int" />
  360.         <s:attribute name="EnableBuffering" type="s:boolean" />
  361.       </s:complexType>
  362.       <s:complexType name="SubscribeReplyItemList">
  363.         <s:sequence>
  364.           <s:element minOccurs="0" maxOccurs="unbounded" name="Items" type="s0:SubscribeItemValue" />
  365.         </s:sequence>
  366.         <s:attribute name="RevisedSamplingRate" type="s:int" />
  367.       </s:complexType>
  368.       <s:complexType name="SubscribeItemValue">
  369.         <s:sequence>
  370.           <s:element minOccurs="0" maxOccurs="1" name="ItemValue" type="s0:ItemValue" />
  371.         </s:sequence>
  372.         <s:attribute name="RevisedSamplingRate" type="s:int" />
  373.       </s:complexType>
  374.       <s:element name="SubscribeResponse">
  375.         <s:complexType>
  376.           <s:sequence>
  377.             <s:element minOccurs="0" maxOccurs="1" name="SubscribeResult" type="s0:ReplyBase" />
  378.             <s:element minOccurs="0" maxOccurs="1" name="RItemList" type="s0:SubscribeReplyItemList" />
  379.             <s:element minOccurs="0" maxOccurs="unbounded" name="Errors" type="s0:OPCError" />
  380.           </s:sequence>
  381.           <s:attribute name="ServerSubHandle" type="s:string" />
  382.         </s:complexType>
  383.       </s:element>
  384.       <s:element name="SubscriptionPolledRefresh">
  385.         <s:complexType>
  386.           <s:sequence>
  387.             <s:element minOccurs="0" maxOccurs="1" name="Options" type="s0:RequestOptions" />
  388.             <s:element minOccurs="0" maxOccurs="unbounded" name="ServerSubHandles" type="s:string" />
  389.           </s:sequence>
  390.           <s:attribute name="HoldTime" type="s:dateTime" />
  391.           <s:attribute default="0" name="WaitTime" type="s:int" />
  392.           <s:attribute default="false" name="ReturnAllItems" type="s:boolean" />
  393.         </s:complexType>
  394.       </s:element>
  395.       <s:complexType name="SubscribePolledRefreshReplyItemList">
  396.         <s:sequence>
  397.           <s:element minOccurs="0" maxOccurs="unbounded" name="Items" type="s0:ItemValue" />
  398.         </s:sequence>
  399.         <s:attribute name="SubscriptionHandle" type="s:string" />
  400.       </s:complexType>
  401.       <s:element name="SubscriptionPolledRefreshResponse">
  402.         <s:complexType>
  403.           <s:sequence>
  404.             <s:element minOccurs="0" maxOccurs="1" name="SubscriptionPolledRefreshResult" type="s0:ReplyBase" />
  405.             <s:element minOccurs="0" maxOccurs="unbounded" name="InvalidServerSubHandles" type="s:string" />
  406.             <s:element minOccurs="0" maxOccurs="unbounded" name="RItemList" type="s0:SubscribePolledRefreshReplyItemList" />
  407.             <s:element minOccurs="0" maxOccurs="unbounded" name="Errors" type="s0:OPCError" />
  408.           </s:sequence>
  409.           <s:attribute default="false" name="DataBufferOverflow" type="s:boolean" />
  410.         </s:complexType>
  411.       </s:element>
  412.       <s:element name="SubscriptionCancel">
  413.         <s:complexType>
  414.           <s:attribute name="ServerSubHandle" type="s:string" />
  415.           <s:attribute name="ClientRequestHandle" type="s:string" />
  416.         </s:complexType>
  417.       </s:element>
  418.       <s:element name="SubscriptionCancelResponse">
  419.         <s:complexType>
  420.           <s:attribute name="ClientRequestHandle" type="s:string" />
  421.         </s:complexType>
  422.       </s:element>
  423.       <s:element name="Browse">
  424.         <s:complexType>
  425.           <s:sequence>
  426.             <s:element minOccurs="0" maxOccurs="unbounded" name="PropertyNames" type="s:QName" />
  427.           </s:sequence>
  428.           <s:attribute name="LocaleID" type="s:string" />
  429.           <s:attribute name="ClientRequestHandle" type="s:string" />
  430.           <s:attribute name="ItemPath" type="s:string" />
  431.           <s:attribute name="ItemName" type="s:string" />
  432.           <s:attribute name="ContinuationPoint" type="s:string" />
  433.           <s:attribute default="0" name="MaxElementsReturned" type="s:int" />
  434.           <s:attribute default="all" name="BrowseFilter" type="s0:browseFilter" />
  435.           <s:attribute name="ElementNameFilter" type="s:string" />
  436.           <s:attribute name="VendorFilter" type="s:string" />
  437.           <s:attribute default="false" name="ReturnAllProperties" type="s:boolean" />
  438.           <s:attribute default="false" name="ReturnPropertyValues" type="s:boolean" />
  439.           <s:attribute default="false" name="ReturnErrorText" type="s:boolean" />
  440.         </s:complexType>
  441.       </s:element>
  442.       <s:simpleType name="browseFilter">
  443.         <s:restriction base="s:string">
  444.           <s:enumeration value="all" />
  445.           <s:enumeration value="branch" />
  446.           <s:enumeration value="item" />
  447.         </s:restriction>
  448.       </s:simpleType>
  449.       <s:complexType name="BrowseElement">
  450.         <s:sequence>
  451.           <s:element minOccurs="0" maxOccurs="unbounded" name="Properties" type="s0:ItemProperty" />
  452.         </s:sequence>
  453.         <s:attribute name="Name" type="s:string" />
  454.         <s:attribute name="ItemPath" type="s:string" />
  455.         <s:attribute name="ItemName" type="s:string" />
  456.         <s:attribute name="IsItem" type="s:boolean" use="required" />
  457.         <s:attribute name="HasChildren" type="s:boolean" use="required" />
  458.       </s:complexType>
  459.       <s:complexType name="ItemProperty">
  460.         <s:sequence>
  461.           <s:element minOccurs="0" maxOccurs="1" name="Value" />
  462.         </s:sequence>
  463.         <s:attribute name="Name" type="s:QName" use="required" />
  464.         <s:attribute name="Description" type="s:string" />
  465.         <s:attribute name="ItemPath" type="s:string" />
  466.         <s:attribute name="ItemName" type="s:string" />
  467.         <s:attribute name="ResultID" type="s:QName" />
  468.       </s:complexType>
  469.       <s:element name="BrowseResponse">
  470.         <s:complexType>
  471.           <s:sequence>
  472.             <s:element minOccurs="0" maxOccurs="1" name="BrowseResult" type="s0:ReplyBase" />
  473.             <s:element minOccurs="0" maxOccurs="unbounded" name="Elements" type="s0:BrowseElement" />
  474.             <s:element minOccurs="0" maxOccurs="unbounded" name="Errors" type="s0:OPCError" />
  475.           </s:sequence>
  476.           <s:attribute name="ContinuationPoint" type="s:string" />
  477.           <s:attribute default="false" name="MoreElements" type="s:boolean" />
  478.         </s:complexType>
  479.       </s:element>
  480.       <s:element name="GetProperties">
  481.         <s:complexType>
  482.           <s:sequence>
  483.             <s:element minOccurs="0" maxOccurs="unbounded" name="ItemIDs" type="s0:ItemIdentifier" />
  484.             <s:element minOccurs="0" maxOccurs="unbounded" name="PropertyNames" type="s:QName" />
  485.           </s:sequence>
  486.           <s:attribute name="LocaleID" type="s:string" />
  487.           <s:attribute name="ClientRequestHandle" type="s:string" />
  488.           <s:attribute name="ItemPath" type="s:string" />
  489.           <s:attribute default="false" name="ReturnAllProperties" type="s:boolean" />
  490.           <s:attribute default="false" name="ReturnPropertyValues" type="s:boolean" />
  491.           <s:attribute default="false" name="ReturnErrorText" type="s:boolean" />
  492.         </s:complexType>
  493.       </s:element>
  494.       <s:complexType name="ItemIdentifier">
  495.         <s:attribute name="ItemPath" type="s:string" />
  496.         <s:attribute name="ItemName" type="s:string" />
  497.       </s:complexType>
  498.       <s:complexType name="PropertyReplyList">
  499.         <s:sequence>
  500.           <s:element minOccurs="0" maxOccurs="unbounded" name="Properties" type="s0:ItemProperty" />
  501.         </s:sequence>
  502.         <s:attribute name="ItemPath" type="s:string" />
  503.         <s:attribute name="ItemName" type="s:string" />
  504.         <s:attribute name="ResultID" type="s:QName" />
  505.       </s:complexType>
  506.       <s:element name="GetPropertiesResponse">
  507.         <s:complexType>
  508.           <s:sequence>
  509.             <s:element minOccurs="0" maxOccurs="1" name="GetPropertiesResult" type="s0:ReplyBase" />
  510.             <s:element minOccurs="0" maxOccurs="unbounded" name="PropertyLists" type="s0:PropertyReplyList" />
  511.             <s:element minOccurs="0" maxOccurs="unbounded" name="Errors" type="s0:OPCError" />
  512.           </s:sequence>
  513.         </s:complexType>
  514.       </s:element>
  515.     </s:schema>
  516.   </types>
  517.   <message name="GetStatusSoapIn">
  518.     <part name="parameters" element="s0:GetStatus" />
  519.   </message>
  520.   <message name="GetStatusSoapOut">
  521.     <part name="parameters" element="s0:GetStatusResponse" />
  522.   </message>
  523.   <message name="ReadSoapIn">
  524.     <part name="parameters" element="s0:Read" />
  525.   </message>
  526.   <message name="ReadSoapOut">
  527.     <part name="parameters" element="s0:ReadResponse" />
  528.   </message>
  529.   <message name="WriteSoapIn">
  530.     <part name="parameters" element="s0:Write" />
  531.   </message>
  532.   <message name="WriteSoapOut">
  533.     <part name="parameters" element="s0:WriteResponse" />
  534.   </message>
  535.   <message name="SubscribeSoapIn">
  536.     <part name="parameters" element="s0:Subscribe" />
  537.   </message>
  538.   <message name="SubscribeSoapOut">
  539.     <part name="parameters" element="s0:SubscribeResponse" />
  540.   </message>
  541.   <message name="SubscriptionPolledRefreshSoapIn">
  542.     <part name="parameters" element="s0:SubscriptionPolledRefresh" />
  543.   </message>
  544.   <message name="SubscriptionPolledRefreshSoapOut">
  545.     <part name="parameters" element="s0:SubscriptionPolledRefreshResponse" />
  546.   </message>
  547.   <message name="SubscriptionCancelSoapIn">
  548.     <part name="parameters" element="s0:SubscriptionCancel" />
  549.   </message>
  550.   <message name="SubscriptionCancelSoapOut">
  551.     <part name="parameters" element="s0:SubscriptionCancelResponse" />
  552.   </message>
  553.   <message name="BrowseSoapIn">
  554.     <part name="parameters" element="s0:Browse" />
  555.   </message>
  556.   <message name="BrowseSoapOut">
  557.     <part name="parameters" element="s0:BrowseResponse" />
  558.   </message>
  559.   <message name="GetPropertiesSoapIn">
  560.     <part name="parameters" element="s0:GetProperties" />
  561.   </message>
  562.   <message name="GetPropertiesSoapOut">
  563.     <part name="parameters" element="s0:GetPropertiesResponse" />
  564.   </message>
  565.   <portType name="Service">
  566.     <operation name="GetStatus">
  567.       <input message="s0:GetStatusSoapIn" />
  568.       <output message="s0:GetStatusSoapOut" />
  569.     </operation>
  570.     <operation name="Read">
  571.       <input message="s0:ReadSoapIn" />
  572.       <output message="s0:ReadSoapOut" />
  573.     </operation>
  574.     <operation name="Write">
  575.       <input message="s0:WriteSoapIn" />
  576.       <output message="s0:WriteSoapOut" />
  577.     </operation>
  578.     <operation name="Subscribe">
  579.       <input message="s0:SubscribeSoapIn" />
  580.       <output message="s0:SubscribeSoapOut" />
  581.     </operation>
  582.     <operation name="SubscriptionPolledRefresh">
  583.       <input message="s0:SubscriptionPolledRefreshSoapIn" />
  584.       <output message="s0:SubscriptionPolledRefreshSoapOut" />
  585.     </operation>
  586.     <operation name="SubscriptionCancel">
  587.       <input message="s0:SubscriptionCancelSoapIn" />
  588.       <output message="s0:SubscriptionCancelSoapOut" />
  589.     </operation>
  590.     <operation name="Browse">
  591.       <input message="s0:BrowseSoapIn" />
  592.       <output message="s0:BrowseSoapOut" />
  593.     </operation>
  594.     <operation name="GetProperties">
  595.       <input message="s0:GetPropertiesSoapIn" />
  596.       <output message="s0:GetPropertiesSoapOut" />
  597.     </operation>
  598.   </portType>
  599.   <binding name="Service" type="s0:Service">
  600.     <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document" />
  601.     <operation name="GetStatus">
  602.       <soap:operation soapAction="http://opcfoundation.org/webservices/XMLDA/1.0/GetStatus" style="document" />
  603.       <input>
  604.         <soap:body use="literal" />
  605.       </input>
  606.       <output>
  607.         <soap:body use="literal" />
  608.       </output>
  609.     </operation>
  610.     <operation name="Read">
  611.       <soap:operation soapAction="http://opcfoundation.org/webservices/XMLDA/1.0/Read" style="document" />
  612.       <input>
  613.         <soap:body use="literal" />
  614.       </input>
  615.       <output>
  616.         <soap:body use="literal" />
  617.       </output>
  618.     </operation>
  619.     <operation name="Write">
  620.       <soap:operation soapAction="http://opcfoundation.org/webservices/XMLDA/1.0/Write" style="document" />
  621.       <input>
  622.         <soap:body use="literal" />
  623.       </input>
  624.       <output>
  625.         <soap:body use="literal" />
  626.       </output>
  627.     </operation>
  628.     <operation name="Subscribe">
  629.       <soap:operation soapAction="http://opcfoundation.org/webservices/XMLDA/1.0/Subscribe" style="document" />
  630.       <input>
  631.         <soap:body use="literal" />
  632.       </input>
  633.       <output>
  634.         <soap:body use="literal" />
  635.       </output>
  636.     </operation>
  637.     <operation name="SubscriptionPolledRefresh">
  638.       <soap:operation soapAction="http://opcfoundation.org/webservices/XMLDA/1.0/SubscriptionPolledRefresh" style="document" />
  639.       <input>
  640.         <soap:body use="literal" />
  641.       </input>
  642.       <output>
  643.         <soap:body use="literal" />
  644.       </output>
  645.     </operation>
  646.     <operation name="SubscriptionCancel">
  647.       <soap:operation soapAction="http://opcfoundation.org/webservices/XMLDA/1.0/SubscriptionCancel" style="document" />
  648.       <input>
  649.         <soap:body use="literal" />
  650.       </input>
  651.       <output>
  652.         <soap:body use="literal" />
  653.       </output>
  654.     </operation>
  655.     <operation name="Browse">
  656.       <soap:operation soapAction="http://opcfoundation.org/webservices/XMLDA/1.0/Browse" style="document" />
  657.       <input>
  658.         <soap:body use="literal" />
  659.       </input>
  660.       <output>
  661.         <soap:body use="literal" />
  662.       </output>
  663.     </operation>
  664.     <operation name="GetProperties">
  665.       <soap:operation soapAction="http://opcfoundation.org/webservices/XMLDA/1.0/GetProperties" style="document" />
  666.       <input>
  667.         <soap:body use="literal" />
  668.       </input>
  669.       <output>
  670.         <soap:body use="literal" />
  671.       </output>
  672.     </operation>
  673.   </binding>
  674. </definitions>
  675.  
  676. \>
  677.  
  678. ------------------------------------------------------------------------------------------------------------
  679.  
  680. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  681. <html>
  682. <head>
  683. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  684. <link href="/CSS/Miniweb.css" rel="stylesheet" type="text/css">
  685. <title>Remote Control </title>
  686. </head>
  687.  
  688. <body scroll="auto">
  689.  
  690. <!-- Titelbereich -->
  691.  
  692. <table width="100%" border="0" cellspacing="0" cellpadding="0" bgcolor="#000053">
  693. <tr>
  694. <!-- Siemens Logo --> <!-- TBD Siemens Logo noch besser positionieren -->
  695. <td width="129" height="76" valign="top">
  696. <table width="100%" border="0" cellpadding="0" cellspacing="0">
  697. <tr>
  698. <td>
  699. <img src="/Images/Siemens_Firmenmarke.gif" alt="Siemens" border="0"></td>
  700. </tr>
  701. </table>
  702. </td>
  703. <td>
  704. <!-- Stationsname einfuegen -->
  705. <table width="100%" border="0" cellpadding="0" cellspacing="0">
  706. <tr>
  707. <td height="45"></td>
  708. </tr>
  709. <tr>
  710. <td height="31" class="ad_headline1">
  711. <font color="#ffffff"> <!-- font ist da, um bei einer Anzeige OHNE CSS nicht schwarz auf schwarz anzuzeigen -->
  712. <span class="ad_headline1">
  713. SIMATIC HMI Miniweb on <MWSL><!-- write(GetVar("HostName")); --></MWSL>
  714. </span>
  715. </font>
  716. </td>
  717. </tr>
  718. </table>
  719. </td>
  720. <!-- rechter rand -->
  721. <td width="33"></td>
  722. </tr>
  723. </table>
  724.  
  725.  
  726. <table width="100%" border="0" cellpadding="0" cellspacing="0">
  727.   <tr>
  728.     <!-- linke Spalte Navigationsbereich -->
  729.     <td width="116" valign="top" bgcolor="BBBBFF" class="ad_nav_area">
  730.     <table width="116" border="0" cellspacing="0" cellpadding="0">  
  731.         <tr bgcolor="#b8b8ff">
  732.     <td colspan="3" width="116" height="60" valign="top">
  733.     <MWSL>
  734.       <!--
  735.         if ( ShareRealm("NO_REALM") )
  736.         {
  737.          InsertFile("/Templates/LoginTempl.html");
  738.         }
  739.         else
  740.         {
  741.           InsertFile("/Templates/LogoutTempl.html");
  742.         }
  743.      -->
  744.       </MWSL>
  745.     </td>
  746.   </tr>
  747.       <tr><td colspan="3" height="19"></td></tr>
  748.         <tr>
  749.                 <td width="8"></td>
  750.                 <td width="7"><img src="/Images/NaviPfeilblau.gif" alt="" border="0"></td>
  751.                 <td width="101" class="ad_nav_link"><a href="/start.html" class="ad_nav_link">Start page</a></td>
  752.               </tr>
  753.               <tr><td colspan="3" height="20"></td></tr>
  754.               <tr>
  755.                 <td width="8"></td>
  756.           <td width="7"><img src="/Images/NaviPfeilweiss.gif" alt="" border="0"></td>
  757.           <td width="101" class="ad_nav_link_selected">
  758.           <font color="#FFFFFF">
  759.           Remote Control
  760.           </font>
  761.           </td>
  762.               </tr>
  763.               <tr><td colspan="3" height="20"></td></tr>
  764.               <tr>
  765.                 <td width="8"></td>
  766.                 <td width="7"><img src="/Images/NaviPfeilblau.gif" alt="" border="0"></td>
  767.                 <td width="101" class="ad_nav_link"><a href="/control.html" class="ad_nav_link">Control Functions</a></td>
  768.               </tr>
  769.               <tr><td colspan="3" height="20"></td></tr>
  770.               <tr>
  771.                 <td width="8"></td>
  772.                 <td width="7"><img src="/Images/NaviPfeilblau.gif" alt="" border="0"></td>
  773.                 <td width="101" class="ad_nav_link"><a href="/StatusDetails.html" class="ad_nav_link">System Diagnostics</a></td>
  774.               </tr>
  775.               <tr><td colspan="3" height="20"></td></tr>
  776.               <tr>
  777.                   <td width="8"></td>
  778.           <td width="7"><img src="/Images/NaviPfeilblau.gif" alt="" border="0"></td>
  779.           <td width="101" class="ad_nav_link"><a href="/Browse.html" class="ad_nav_link">File Browser</a></td>
  780.               </tr>
  781.             </table>
  782.           </td>
  783.      
  784.     <!-- vertikaler Strich -->
  785.     <td width="2" bgcolor="#000053">
  786.     <table width="2" border="0" cellpadding="0" cellspacing="0">
  787.     <tr><td width="2"></td></tr>
  788.     </table>
  789.     </td>
  790.  
  791.     <!-- rechte Spalte Inhaltsbereich (drei vertikale Teile: Titel, Sekundaernavigation, Infobereich-->
  792.     <td valign="top" bgcolor="#e9e9fc">
  793.       <!-- Titel -->
  794.       <table width="100%" bgcolor="#c0c0db" border="0" cellpadding="0" cellspacing="0">
  795.         <tr>
  796.           <td width="11" height="7"></td>
  797.           <td width="33" height="7"></td>
  798.         </tr>
  799.         <tr>
  800.           <td width="11" height="46"></td>
  801.           <td>
  802.           <table width="100%" border="0" cellpadding="0" cellspacing="0">
  803.             <tr>
  804.               <td height="46" valign="top" class="ad_headline2">Remote Control</td>
  805.               <td height="46" align="right">last update <MWSL><!-- write(GetVar("TimeStamp")); --></MWSL></td>
  806.             </tr>
  807.           </table>
  808.           </td>
  809.         </tr>
  810.       </table>
  811.        <!--<iframe src="include-remotecontrol.html" name="inc-rcontrol" width="100%" height="350" id="content" frameborder="no" scrolling="auto">
  812.       <noframes><p>Warning! This page uses inline frames which are not supported by your browser.</p></noframes></iframe>-->
  813. <p style="margin-left:10px; margin-top:15px;">
  814.       <b><font style="font-size: 16px; color: #00005e; font-family: Arial, Helvetica, sans-serif;">Remote Maintenance over the Internet Explorer </font></b>
  815.         <p style="margin-left:10px">Internet Explorer V6.0 SP1 or higher is required for remote maintenance.  For further information, refer to the service downloads.</p>
  816.     <SCRIPT language="JavaScript">
  817.     <!--
  818.         document.write("<p style=\"margin-left:10px\">Start ");
  819.             document.write("<a style=\"text-decoration: none\" title=\"Remote Control\" href=\"http://");
  820.             document.write(document.domain);
  821.         document.write(":5800\">Sm@rtClient</a></p>");
  822.     // -->
  823.         </SCRIPT>
  824.     <hr>
  825.     <b><font style="font-size: 16px; margin-left:10px; color: #00005e; font-family: Arial, Helvetica, sans-serif;">Service Downloads</font></b>
  826.     <table>
  827.         <tr>
  828.         <td valign=top width="156"><a href="http://www.java.com" target="_blank"><b style="margin-left:10px">Java Update</b></a><p align="center"></td>
  829.         <td width="11">&nbsp;</td><td>Remote maintenance of SIMATIC HMI systems is possible using the Internet Explorer. This requires a Java-based applet that is loaded automatically by the relevant HMI system and started in the Internet Explorer.</p> <p>For optimum access to the HMI systems, we recommend that you install the latest <span class="bodytext"><strong>Java Runtime Environment (JRE&#153;) </strong></span>from Sun Microsystems. The <strong>
  830.         <span class="bodytext">Java Runtime Environment (JRE&#153;)</span></strong> includes the Java plug-in components necessary to run Java applets in your Internet Explorer.</p>
  831.         <p>The current version can be downloaded at <a href="http://www.java.com" target="_blank">
  832.         www.java.com</a> .<br>
  833.         &nbsp;</p>
  834.         <p>&nbsp;</p><span class="bodytext"></span></td>
  835.         </tr>
  836.         <tr>    <td valign=top width="156"><b style="margin-left:10px">Sm@rtClient  Application</b></td>
  837.             <td width="11"></td><td>This program allows enhanced functionality for "remote maintenance over the Internet Explorer". The program is available on WinCC flexible (CD2 Support\SmartClient) and can be run as a separate application on your computer. <p>In addition to the screen contents, this application also displays the layout of the HMI system requiring maintenance. The advantage here is the additional access to the locally available softkeys and function keys of the SIMATIC Panel.</p>
  838.         <p><img border="0" src="/Images/Simulator_1.jpg" width="347" height="268"></p></td></tr>
  839.       </table>
  840.     <hr>
  841.     <table> <tr> <td width="11">&nbsp;</td><td style="margin-top:15px;">
  842.     This site contains hyperlinks to the web pages of third parties. Siemens shall have no liability for the contents of such web pages and does not make representations about or endorse such web pages or their contents as its own, as Siemens does not control the information on such web pages and is not responsible for the contents and information given thereon. The use of such web pages shall be at the sole risk of the User.
  843.     </td>  </tr>
  844.     </table>
  845. </p>
  846.       </td>
  847.     </tr>
  848. </table>
  849. </body>
  850. </html>
  851. \>
  852.  
  853. ------------------------------------------------------------------------------------------------------------
  854.  
  855. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  856. <html>
  857. <head>
  858. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  859. <link href="/CSS/Miniweb.css" rel="stylesheet" type="text/css">
  860. <title> Control functions </title>
  861. </head>
  862.  
  863. <body scroll="auto">
  864.  
  865. <SCRIPT language="JavaScript">
  866. <!--
  867. function export_importrecipes() {
  868.     document.write("<hr>\
  869.     <!--Export RECIPIES-->\
  870.     <b>Export recipes</b><br><br>\
  871.     <!--<Button type=\"button\" Name=\"MyButton\" src=\"Images/recipe_out.gif\" onClick=\"window.location.href(\'/www/ExportRecipes.html \')\">Export recipies</button>-->\
  872.     <a href=\"/www/ExportRecipes.html\" alt=\"Export recipes\"><img src=\"/Images/recipe_out.gif\" border=0></a>\
  873.     <hr>\
  874.     <!--Import RECIPIES-->\
  875.     <b>Import recipes</b><br>\
  876.     <table>\
  877.     <FORM METHOD=\"POST\" ACTION=\"/wwwSiemens/Rt/RecipeImpPath/\" ENCTYPE=\"multipart/form-data\">\
  878.     <input type=radio name=\"ImportFlags\" checked value=\"RELOAD\"> Delete all existing records before loading the new records \
  879.     <br>\
  880.     <input type=radio name=\"ImportFlags\" value=\"OVERWRITE\"> Import new records. Replace duplicates with imported records\
  881.     <br>\
  882.     <input type=radio name=\"ImportFlags\" value=\"EXTEND\"> Import new records. Replace duplicates with existing records\
  883.     <br><br>\
  884.         <TD WIDTH=\"200\">\
  885.             <INPUT TYPE=\"IMAGE\" alt=\"Import recipes\" src=\"/Images/recipe_in.gif\" border=0>\
  886.         </TD>\
  887.         <TD>\
  888.             <INPUT TYPE=\"file\" NAME=\"file\" SIZE=\"30\" MAXLENGTH=\"80\">\
  889.         </TD>\
  890.     </FORM>\
  891.     </table>\
  892.     <hr>\
  893.     <!--Import/Export PASSWORD LIST--> \
  894.     <b style=\"margin-left:10px\">Export password list</b><br>\
  895.     <!-- <a href=\"\"><img src=\"Images/password_out.gif\"></a>-->\
  896.     <table style=\"margin-left:10px\">\
  897.     <FORM METHOD=\"GET\" ACTION=\"/wwwSiemens/Rt/FwxPath/pdata.pwl\">\
  898.         <TD>\
  899.             <INPUT TYPE=\"image\" alt=\"Export password list\" src=\"/Images/password_out.gif\">\
  900.         </TD>\
  901.         <TD>\
  902.             <INPUT TYPE=hidden NAME=\"file\" SIZE=\"0\" MAXLENGTH=\"80\">\
  903.         </TD>\
  904.     </FORM>\
  905.     </table>\
  906.     <hr>\
  907.     <b style=\"margin-left:10px\">Import password list</b><br>\
  908.     <table style=\"margin-left:10px\">\
  909.     <FORM METHOD=\"POST\" ACTION=\"/wwwSiemens/Rt/FwxPath/\" ENCTYPE=\"multipart/form-data\">\
  910.         <TD WIDTH=\"200\">\
  911.             <INPUT TYPE=\"image\" alt=\"Import password list\" src=\"/Images/password_in.gif\" class=\"ad_button\">\
  912.         </TD>\
  913.         <TD>\
  914.             <INPUT TYPE=\"file\" NAME=\"file\" SIZE=\"30\" MAXLENGTH=\"80\">\
  915.         </TD>\
  916.     </FORM></table>");
  917. }
  918. -->
  919. </SCRIPT>
  920.  
  921. <!-- Titelbereich -->
  922.  
  923. <table width="100%" border="0" cellspacing="0" cellpadding="0" bgcolor="#000053">
  924. <tr>
  925. <td width="129" height="76" valign="top">
  926. <table width="100%" border="0" cellpadding="0" cellspacing="0">
  927. <tr>
  928. <td>
  929. <img src="/Images/Siemens_Firmenmarke.gif" alt="Siemens" border="0"></td>
  930. </tr>
  931. </table>
  932. </td>
  933. <td>
  934. <!-- Stationsname einfuegen -->
  935. <table width="100%" border="0" cellpadding="0" cellspacing="0">
  936. <tr>
  937. <td height="45"></td>
  938. </tr>
  939. <tr>
  940. <td height="31" class="ad_headline1">
  941. <font color="#ffffff"> <!-- font ist da, um bei einer Anzeige OHNE CSS nicht schwarz auf schwarz anzuzeigen -->
  942. <span class="ad_headline1">
  943. SIMATIC HMI Miniweb on <MWSL><!-- write(GetVar("HostName")); --></MWSL>
  944. </span>
  945. </font>
  946. </td>
  947. </tr>
  948. </table>
  949. </td>
  950. <!-- rechter rand -->
  951. <td width="33"></td>
  952. </tr>
  953. </table>
  954.  
  955.  
  956. <table width="100%" border="0" cellpadding="0" cellspacing="0">
  957.   <tr>
  958.     <!-- linke Spalte Navigationsbereich -->
  959.     <td width="116" valign="top" bgcolor="BBBBFF" class="ad_nav_area">
  960.     <table width="116" border="0" cellspacing="0" cellpadding="0">  
  961.         <tr bgcolor="#b8b8ff">
  962.     <td colspan="3" width="116" height="60" valign="top">
  963.    <MWSL>
  964.       <!--
  965.         if ( ShareRealm("NO_REALM") )
  966.         {
  967.          InsertFile("/Templates/LoginTempl.html");
  968.         }
  969.         else
  970.         {
  971.           InsertFile("/Templates/LogoutTempl.html");
  972.         }
  973.      -->
  974.       </MWSL>
  975.     </td>
  976.   </tr>
  977.               <tr><td colspan="3" height="20"></td></tr>
  978.               <tr>
  979.                 <td width="8"></td>
  980.                 <td width="7"><img src="/Images/NaviPfeilblau.gif" alt="" border="0"></td>
  981.                 <td width="101" class="ad_nav_link"><a href="/Start.html" class="ad_nav_link">Start page</a></td>
  982.               </tr>
  983.                       <!--  Remote Control only if JavaScript is used -->  
  984.                       <SCRIPT language="JavaScript">
  985.                         <!--
  986.                                     document.write("<tr><td colspan=\"3\" height=\"20\"></td></tr>");
  987.                             document.write("<tr> <td width=\"8\"></td>");
  988.                             document.write("<td width=\"7\"><img src=\"/Images/NaviPfeilblau.gif\" alt=\"\" border=\"0\"></td>");
  989.                                     document.write("<td width=\"101\" class=\"ad_nav_link\"><a href=\"/RemoteControl.html\" class=\"ad_nav_link\">Remote Control</a></td>");
  990.                             document.write("</tr>");
  991.                         // -->
  992.                         </SCRIPT>
  993.               <tr><td colspan="3" height="20"></td></tr>
  994.               <tr>
  995.                 <td width="8"></td>
  996.                 <td width="7"><img src="/Images/NaviPfeilweiss.gif" alt="" border="0"></td>
  997.                 <td width="101" class="ad_nav_link_selected">
  998.                 <font color="#FFFFFF">
  999.                 Control Functions
  1000.                 </font>
  1001.                 </td>
  1002.               </tr>
  1003.               <tr><td colspan="3" height="20"></td></tr>
  1004.               <tr>
  1005.                 <td width="8"></td>
  1006.                 <td width="7"><img src="/Images/NaviPfeilblau.gif" alt="" border="0"></td>
  1007.                 <td width="101" class="ad_nav_link"><a href="/StatusDetails.html" class="ad_nav_link">System Diagnostics</a></td>
  1008.               </tr>
  1009.               <!--  Browse only if JavaScript is used -->  
  1010.                       <SCRIPT language="JavaScript">
  1011.                         <!--
  1012.                                     document.write("<tr><td colspan=\"3\" height=\"20\"></td></tr>");
  1013.                             document.write("<tr> <td width=\"8\"></td>");
  1014.                             document.write("<td width=\"7\"><img src=\"/Images/NaviPfeilblau.gif\" alt=\"\" border=\"0\"></td>");
  1015.                                     document.write("<td width=\"101\" class=\"ad_nav_link\"><a href=\"/Browse.html\" class=\"ad_nav_link\">File Browser</a></td>");
  1016.                             document.write("</tr>");
  1017.                         // -->
  1018.                         </SCRIPT>
  1019.             </table>
  1020.           </td>
  1021.      
  1022.     <!-- vertikaler Strich -->
  1023.     <td width="2" bgcolor="#000053">
  1024.     <table width="2" border="0" cellpadding="0" cellspacing="0">
  1025.     <tr><td width="2"></td></tr>
  1026.     </table>
  1027.     </td>
  1028.  
  1029.     <!-- rechte Spalte Inhaltsbereich (drei vertikale Teile: Titel, Sekundaernavigation, Infobereich-->
  1030.     <td valign="top" bgcolor="#e9e9fc">
  1031.       <!-- Titel -->
  1032.       <table width="100%" bgcolor="#c0c0db" border="0" cellpadding="0" cellspacing="0">
  1033.         <tr>
  1034.           <td width="11" height="7"></td>
  1035.           <td width="33" height="7"></td>
  1036.         </tr>
  1037.         <tr>
  1038.           <td width="11" height="46"></td>
  1039.           <td>
  1040.           <table width="100%" border="0" cellpadding="0" cellspacing="0">
  1041.             <tr>
  1042.               <td height="46" valign="top" class="ad_headline2">Control Functions</td>
  1043.               <td height="46" align="right">last update <MWSL><!-- write(GetVar("TimeStamp")); --></MWSL></td>
  1044.             </tr>
  1045.           </table>
  1046.           </td>
  1047.         </tr>
  1048.       </table>
  1049.       <!--<iframe name="inc-control" src="include-control.html" width="100%" height="350" id="content" frameborder="no" scrolling="auto">
  1050.       <noframes><p>Warning! This page uses inline frames which are not supported by your browser.</p></noframes></iframe>-->
  1051.  
  1052. <p style="margin-left:10px; margin-top:15px;">
  1053. <table width="100%">
  1054. <tr><td>
  1055.     <font face="Tahoma" size="2">
  1056.     <b><font style="font-size: 16px; color: #00005e; font-family: Arial, Helvetica, sans-serif;">Control of <MWSL><!-- write(GetVar("HostName")); --></MWSL> </font></b><br>
  1057.  
  1058.     <font face="Tahoma" color="#000000" size="2">Runtime operations</font>
  1059.     <hr>
  1060.     <font color="#000000" ><b>Start/Stop</b></font><br>
  1061.     The runtime is <b><MWSL><!-- write(GetVar("RtState")); --></MWSL></b> (updated at <MWSL><!-- write(GetVar("TimeStamp")); --></MWSL>)<br><br>
  1062.     </font>
  1063. </td></tr>
  1064. <tr>
  1065. <FORM METHOD="POST" ACTION="/wwwSiemens">
  1066.     <TD>
  1067.         <INPUT TYPE="submit" VALUE="Start runtime" class="ad_button">
  1068.     </TD>
  1069.     <TD>
  1070.         <INPUT TYPE=hidden NAME="StartRt" SIZE="0" MAXLENGTH="80">
  1071.     </TD>
  1072. </FORM>
  1073. </tr>
  1074. <tr>
  1075. <FORM METHOD="POST" ACTION="/wwwSiemens">
  1076.     <TD>
  1077.         <INPUT TYPE="submit" VALUE="Stop runtime" class="ad_button">
  1078.     </TD>
  1079.     <TD>
  1080.         <INPUT TYPE=hidden NAME="StopRt" SIZE="0" MAXLENGTH="80">
  1081.     </TD>
  1082. </FORM>
  1083. </tr>
  1084. <tr>
  1085.  
  1086. <table width="100%">
  1087. <SCRIPT language="JavaScript">
  1088. export_importrecipes();
  1089. </SCRIPT>
  1090. </table>
  1091.  
  1092.  
  1093. </tr>
  1094. </table>
  1095. </font>
  1096. </p>
  1097.       </td>
  1098.     </tr>
  1099. </table>
  1100. </body>
  1101. </html>
  1102. \>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement