<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
<meta name="Generator" content="Microsoft Exchange Server">
<!-- converted from rtf -->
<style><!-- .EmailQuote { margin-left: 1pt; padding-left: 4pt; border-left: #800000 2px solid; } --></style>
</head>
<body>
<font face="Calibri, sans-serif" size="2">
<div>Hello,</div>
<div><font face="Calibri, sans-serif" color="#1F497D">(obviously my previous emails on this subject were not on right format, I hope this 3<font size="1"><sup>rd</sup></font> trial will succeed&#8230;)</font></div>
<div><font color="#1F497D">&nbsp;</font></div>
<div>trying to compile a vendor&#8217;s subscribe.wsdl with XML::Compile&nbsp; gives following error for which I did not find a reason :</div>
<div>&nbsp;</div>
<div>RESULT :</div>
<div>... &lt; begin of trace deleted because of email size restrictions &gt;</div>
<div>trace: parsing XML from string SCALAR(0x5cb1e30)</div>
<div>IMPORTED PATCH</div>
<div>trace: cache parsed file ws_eventing.wsdl-1282131474-4676</div>
<div>trace: parsing XML from file ws_eventing.wsdl</div>
<div>IMPORTED : ws_eventing.wsdl</div>
<div>trace: cache parsed file ws-eventing.xsd-1282131843-6060</div>
<div>trace: parsing XML from file ws-eventing.xsd</div>
<div>IMPORTED : ws-eventing.xsd</div>
<div>trace: cache parsed file ws-addr.xsd-1282131975-5146</div>
<div>trace: parsing XML from file ws-addr.xsd</div>
<div>IMPORTED : ws-addr.xsd</div>
<div>error: rpc operation {http://notification.sdk.nms.ov.hp.com/nms-sdk-notify}IncidentNotificationMsg requires namespace attribute</div>
<div> at /usr/lib/perl5/site_perl/5.8.8/XML/Compile/SOAP11/Operation.pm line 107</div>
<div>XML::Compile::SOAP11::Operation::_msg_parts(&quot;XML::Compile::SOAP11::Operation&quot;, XML::Compile::WSDL11=HASH(0x66cbdd0), &quot;IncidentNotificationResponse&quot;, &quot;rpc&quot;, HASH(0x6873cf0), HASH(0x68918c0)) at /usr/lib/perl5/site_perl/5.8.8/XML/Compile/SOAP11/Operation.pm
line 84</div>
<div>XML::Compile::SOAP11::Operation::_fromWSDL11(&quot;XML::Compile::SOAP11::Operation&quot;, &quot;name&quot;, &quot;IncidentNotification&quot;, &quot;kind&quot;, &quot;notification-operation&quot;, &quot;service&quot;, HASH(0x6957220), &quot;serv_port&quot;, [13 more]) at /usr/lib/perl5/site_perl/5.8.8/XML/Compile/WSDL11.pm
line 300</div>
<div>XML::Compile::WSDL11::operation(XML::Compile::WSDL11=HASH(0x66cbdd0), &quot;operation&quot;, &quot;IncidentNotification&quot;, &quot;server&quot;, &quot;uc:pw@nnm_server&quot;) at /usr/lib/perl5/site_perl/5.8.8/XML/Compile/WSDL11.pm line 322</div>
<div>XML::Compile::WSDL11::compileClient(XML::Compile::WSDL11=HASH(0x66cbdd0), &quot;operation&quot;, &quot;IncidentNotification&quot;, &quot;server&quot;, &quot;uc:pw@nnm_server&quot;) at ./test_XML_compile.pl line 37</div>
<div>#</div>
<div>&nbsp;</div>
<div>USED SCRIPT :</div>
<div>#!/usr/bin/perl</div>
<div>use strict; </div>
<div>use warnings;</div>
<div>use XML::Compile::WSDL11;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </div>
<div>use XML::Compile::SOAP11;</div>
<div>use XML::Compile::Transport::SOAPHTTP;</div>
<div>use XML::Compile::Schema;</div>
<div>use Log::Report mode =&gt; 'DEBUG';</div>
<div>use Data::Dumper;</div>
<div>#&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Tested with XML::Compile 1.16, XML::Compile::SOAP 2.16, XML::Compile::Cache 0.96, Log::Report 0.28</div>
<div>my $server&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = 'uc:pw@nnm_server';&nbsp;&nbsp; </div>
<div>my $subscribewsdl&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = &quot;subscribe.wsdl&quot;;</div>
<div>my $notify_ns&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = '<a href="http://notification.sdk.nms.ov.hp.com/nms-sdk-notify/">http://notification.sdk.nms.ov.hp.com/nms-sdk-notify/</a>';</div>
<div>my %xsi_type&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = ( 'f:filter' =&gt; [ 'f:condition', 'f:constraint', 'f:expression' ] );&nbsp; </div>
<div>my $subscribeAPI&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = XML::Compile::WSDL11-&gt;new( $subscribewsdl, prefixes =&gt; [f =&gt; $notify_ns], opts_rw&nbsp; =&gt; {xsi_type =&gt; \%xsi_type} );</div>
<div># patch below suggested by Mark Overmeer </div>
<div>$subscribeAPI-&gt;importDefinitions(&lt;&lt;_PATCH);</div>
<div>&lt;schema elementFormDefault=&quot;qualified&quot;</div>
<div>&nbsp;&nbsp; targetNamespace=&quot;$notify_ns&quot;</div>
<div>&nbsp;&nbsp;&nbsp; xmlns:tns=&quot;$notify_ns&quot;</div>
<div>&nbsp;&nbsp;&nbsp; xmlns=&quot;http://www.w3.org/2001/XMLSchema&quot;&gt;</div>
<div> &lt;element name=&quot;incidentNotification&quot; type=&quot;tns:incidentNotification&quot;/&gt;</div>
<div>&lt;/schema&gt;</div>
<div>_PATCH</div>
<div>print &quot;IMPORTED PATCH\n&quot;;</div>
<div>$subscribeAPI-&gt;importDefinitions('ws_eventing.wsdl');</div>
<div>print &quot;IMPORTED : ws_eventing.wsdl\n&quot;;</div>
<div>$subscribeAPI-&gt;importDefinitions('ws-eventing.xsd');</div>
<div>print &quot;IMPORTED : ws-eventing.xsd\n&quot;;</div>
<div>$subscribeAPI-&gt;importDefinitions('ws-addr.xsd');</div>
<div>print &quot;IMPORTED : ws-addr.xsd\n&quot;;</div>
<div>my $receive_incidents&nbsp;&nbsp; = $subscribeAPI-&gt;compileClient( operation=&gt;'IncidentNotification', server=&gt;$server );</div>
<div>print &quot;CompileClient succeeded\n&quot;;</div>
<div>my ($info, $trace)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = $receive_incidents-&gt;();</div>
<div>&nbsp;</div>
<div>USED WSDL :</div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&lt;wsdl:definitions targetNamespace=&quot;http://notification.sdk.nms.ov.hp.com/nms-sdk-notify&quot; xmlns:soap=&quot;http://schemas.xmlsoap.org/wsdl/soap/&quot; xmlns:tns=&quot;http://notification.sdk.nms.ov.hp.com/nms-sdk-notify&quot;
xmlns:wsa10=&quot;http://www.w3.org/2005/08/addressing&quot; xmlns:wsdl=&quot;http://schemas.xmlsoap.org/wsdl/&quot; xmlns:wse=&quot;http://schemas.xmlsoap.org/ws/2004/08/eventing&quot; xmlns:xs=&quot;http://www.w3.org/2001/XMLSchema&quot;&gt;</font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&lt;!&#8212; actually imported from file by importDefinitions()</font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;wsdl:import location=&quot;http://192.49.164.44/nms-sdk-notify/subscribe?wsdl&amp;resource=ws-eventing.wsdl&quot; namespace=&quot;http://schemas.xmlsoap.org/ws/2004/08/eventing&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">--&gt;</font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&lt;wsdl:types&gt;</font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&lt;!-- actually imported from file by importDefinitions()</font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:schema targetNamespace=&quot;http://schemas.xmlsoap.org/ws/2004/08/eventing&quot;&gt;</font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;xs:include schemaLocation=&quot;http://192.49.164.44/nms-sdk-notify/subscribe?wsdl&amp;resource=ws-eventing.xsd&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;/xs:schema&gt;</font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">--&gt;</font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;xs:schema blockDefault=&quot;#all&quot; elementFormDefault=&quot;unqualified&quot;&nbsp; targetNamespace=&quot;http://notification.sdk.nms.ov.hp.com/nms-sdk-notify&quot;&gt;</font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&lt;xs:complexType name=&quot;incidentNotification&quot;&gt;</font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&lt;xs:sequence&gt;</font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;category&quot; type=&quot;xs:string&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:element name=&quot;duplicateCount&quot; type=&quot;xs:int&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;family&quot; type=&quot;xs:string&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;firstOccurrenceTime&quot; type=&quot;xs:dateTime&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;id&quot; type=&quot;xs:string&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;lastOccurrenceTime&quot; type=&quot;xs:dateTime&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;name&quot; type=&quot;xs:string&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;nature&quot; type=&quot;tns:nature&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;origin&quot; type=&quot;tns:origin&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;originOccurrenceTime&quot; type=&quot;xs:dateTime&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;priority&quot; type=&quot;xs:string&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:element name=&quot;rcaActive&quot; type=&quot;xs:boolean&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;formattedMessage&quot; type=&quot;xs:string&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;lifecycleState&quot; type=&quot;xs:string&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;severity&quot; type=&quot;tns:severity&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;sourceName&quot; type=&quot;xs:string&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;sourceNodeName&quot; type=&quot;xs:string&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;sourceNodeLongName&quot; type=&quot;xs:string&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;sourceNodeUuid&quot; type=&quot;xs:string&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;sourceUuid&quot; type=&quot;xs:string&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;uuid&quot; type=&quot;xs:string&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:element name=&quot;incidentResent&quot; type=&quot;xs:int&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;created&quot; type=&quot;xs:dateTime&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;updateTime&quot; type=&quot;xs:dateTime&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;previousLifecycleState&quot; type=&quot;xs:string&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;previousRcaActive&quot; type=&quot;xs:string&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:element maxOccurs=&quot;unbounded&quot; minOccurs=&quot;0&quot; name=&quot;cias&quot; nillable=&quot;true&quot; type=&quot;tns:cia&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;/xs:sequence&gt;</font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;/xs:complexType&gt;</font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&lt;xs:complexType name=&quot;incidentCorrelation&quot;&gt;</font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&lt;xs:sequence&gt;</font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;name&quot; type=&quot;xs:string&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;type&quot; type=&quot;tns:correlationType&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;parent&quot; type=&quot;xs:string&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;firstOccurrenceTime&quot; type=&quot;xs:dateTime&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:element name=&quot;correlationResent&quot; type=&quot;xs:int&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:element maxOccurs=&quot;unbounded&quot; minOccurs=&quot;0&quot; name=&quot;children&quot; nillable=&quot;true&quot; type=&quot;xs:string&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;/xs:sequence&gt;</font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;/xs:complexType&gt;</font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&lt;xs:complexType name=&quot;cia&quot;&gt;</font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&lt;xs:sequence&gt;</font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;name&quot; type=&quot;xs:string&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;type&quot; type=&quot;xs:string&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;value&quot; type=&quot;xs:string&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;/xs:sequence&gt;</font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;/xs:complexType&gt;</font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&lt;xs:simpleType name=&quot;severity&quot;&gt;</font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&lt;xs:restriction base=&quot;xs:string&quot;&gt;</font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:enumeration value=&quot;CRITICAL&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:enumeration value=&quot;MAJOR&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:enumeration value=&quot;MINOR&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:enumeration value=&quot;WARNING&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:enumeration value=&quot;NORMAL&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;/xs:restriction&gt;</font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;/xs:simpleType&gt;</font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&lt;xs:simpleType name=&quot;nature&quot;&gt;</font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&lt;xs:restriction base=&quot;xs:string&quot;&gt;</font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:enumeration value=&quot;ROOTCAUSE&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:enumeration value=&quot;SECONDARYROOTCAUSE&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:enumeration value=&quot;SYMPTOM&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:enumeration value=&quot;SERVICEIMPACT&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:enumeration value=&quot;STREAMCORRELATION&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:enumeration value=&quot;NONE&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:enumeration value=&quot;INFO&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;/xs:restriction&gt;</font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;/xs:simpleType&gt;</font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&lt;xs:simpleType name=&quot;origin&quot;&gt;</font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&lt;xs:restriction base=&quot;xs:string&quot;&gt;</font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:enumeration value=&quot;MANAGEMENTSOFTWARE&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:enumeration value=&quot;MANUALLYCREATED&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:enumeration value=&quot;REMOTELYGENERATED&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:enumeration value=&quot;SNMPTRAP&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:enumeration value=&quot;SYSLOG&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:enumeration value=&quot;OTHER&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;/xs:restriction&gt;</font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;/xs:simpleType&gt;</font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&lt;xs:simpleType name=&quot;correlationType&quot;&gt;</font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&lt;xs:restriction base=&quot;xs:string&quot;&gt;</font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:enumeration value=&quot;APA&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:enumeration value=&quot;IMPACT&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:enumeration value=&quot;DEDUP&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:enumeration value=&quot;RATE&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:enumeration value=&quot;PAIRWISE&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;xs:enumeration value=&quot;CUSTOM&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;/xs:restriction&gt;</font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;/xs:simpleType&gt;</font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&lt;/xs:schema&gt;</font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&lt;/wsdl:types&gt;</font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp;</font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&lt;wsdl:message name=&quot;IncidentNotificationMsg&quot;&gt;</font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;wsdl:part name=&quot;arg0&quot; type=&quot;tns:incidentNotification&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&lt;/wsdl:message&gt;</font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp;</font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&lt;wsdl:portType name=&quot;IncidentNotificationSource&quot; wse:EventSource=&quot;true&quot;&gt;</font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;wsdl:operation name=&quot;IncidentNotification&quot;&gt;</font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp;&nbsp;&nbsp; &lt;wsdl:output message=&quot;tns:IncidentNotificationMsg&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;/wsdl:operation&gt;</font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&lt;/wsdl:portType&gt;</font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp;</font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&lt;wsdl:binding name=&quot;IncidentNotificationSourceBinding&quot; type=&quot;tns:IncidentNotificationSource&quot;&gt;</font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;soap:binding style=&quot;rpc&quot; transport=&quot;http://schemas.xmlsoap.org/soap/http&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;wsdl:operation name=&quot;IncidentNotification&quot;&gt;</font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp;&nbsp;&nbsp; &lt;soap:operation soapAction=&quot;&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp;&nbsp;&nbsp; &lt;wsdl:output&gt;</font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;soap:body use=&quot;literal&quot; /&gt; </font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp;&nbsp;&nbsp; &lt;/wsdl:output&gt;</font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp; &lt;/wsdl:operation&gt;</font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&lt;/wsdl:binding&gt;</font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&nbsp;</font></div>
<div><font face="Arial, sans-serif" size="2" color="#1F497D">&lt;/wsdl:definitions&gt;</font></div>
<div><font color="#1F497D">&nbsp;</font></div>
<div><font color="#1F497D">An<font color="#000000">y ideas what could be wrong ?</font></font></div>
<div>&nbsp;</div>
<div>BR, </div>
<div>&nbsp; Tapio</div>
<div>&nbsp;</div>
<div>&nbsp;</div>
</font>
</body>
</html>