<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.0">
  <channel>
    <title>
Altova Mailing List: microsoft.public.xml
    </title>
    <link>http://www.altova.com/</link>
    <description>Altova accelerates application development and data management projects with software and solutions that enhance productivity and maximize results. As an innovative, customer-focused company and the creator of XMLSpy and other leading XML, data administration, UML, and Web services tools, Altova is the choice of over 3 million clients worldwide, including virtually every Fortune 500 company. With customers ranging from vast development teams in the worldâ€™s largest organizations to progressive one-person shops, Altovaâ€™s line of software applications fulfills a broad spectrum of business needs. Altova is an active member of the World Wide Web Consortium (W3C) and Object Management Group (OMG) and is committed to delivering standards-based platform-independent solutions that are powerful, affordable, and easy to use. Altova was founded in 1992 and has headquarters in Beverly, Massachusetts and Vienna, Austria.</description>
    <language>en-us</language>
    <copyright>Copyright Â© 2005, 2006, 2007 Altova GmbH. All rights reserved. Altova, XMLSpy, MapForce, StyleVision, SemanticWorks, SchemaAgent, UModel, DiffDog, and Authentic are trademarks and/or registered trademarks of Altova GmbH in the United States and/or other countries. The names of and reference to other companies and products mentioned herein may be the trademarks of their respective owners.</copyright>
    <pubDate>Tue, 03 Jun 2008 10:00:00 EDT</pubDate>
    <lastBuildDate>Tue, 03 Jun 2008 10:00:00 EDT</lastBuildDate>
    <generator>Authentic RSS Editor, visit www.altova.com for details</generator>
    <managingEditor>pr@altova.com</managingEditor>
    <webMaster>webmaster@altova.com</webMaster>
    <image>
      <url>http://www.altova.com/images/logos/altova_right_120.gif</url>
      <title>ALTOVA</title>
      <link>http://www.altova.com/</link>
      <width>120</width>
      <height>24</height>
      <description>Altova Logo</description>
    </image>

<item>
<title>IXMLDOMDocument::load fails on Windows Mobile - 11/19/2009 3:55:00 PM</title>
<description><![CDATA[<pre>I am trying to load a XML document from an IStream.
The code belows works fine on WIN32 but fails on Windows Mobile.
File is OK, returned stream is OK (I can read from it) but the load() on the 
last line always fail.
Reported error is &quot;invalid character&quot; but IXMLDOMParseError doesn't give me 
any valid line/pos/filepos
Furthermore, I tried to create a document manually (creating and adding 
nodes) then save it to an IStream, then rewind the stream and pass it to 
load() it also fails (same error).

Here is the code:

  CoInitializeEx(0,COINIT_MULTITHREADED);
  HRESULT rv;

  HANDLE hFile = 
CreateFile(XML_FILE,GENERIC_READ,FILE_SHARE_READ,NULL,OPEN_EXISTING,0,0);
  DWORD dwSize = GetFileSize(hFile,NULL);
  HGLOBAL hGlobal = GlobalAlloc(GMEM_FIXED,dwSize);
  ReadFile(hFile,hGlobal,dwSize,&amp;dwSize,NULL);

  IStream* pStream;
  CreateStreamOnHGlobal(hGlobal,TRUE,&amp;pStream);

  IXMLDOMDocument* pDocument;
  rv = 
CoCreateInstance(CLSID_DOMDocument,NULL,CLSCTX_INPROC,IID_IXMLDOMDocument,(void**) 
&amp;pDocument);
  pDocument-&gt;put_async(VARIANT_FALSE);

  VARIANT var = { 0 };
  var.vt = VT_UNKNOWN;
  var.punkVal = pStream;

  VARIANT_BOOL err;
  rv = pDocument-&gt;load(var,&amp;err);</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200911/msg1000307133.html</link>
</item><item>
<title>Re: IXMLDOMDocument::load fails on Windows Mobile - 11/19/2009 3:14:00 PM</title>
<description><![CDATA[<pre>Waleri Todorov wrote:
&gt; I am trying to load a XML document from an IStream.
&gt; The code belows works fine on WIN32 but fails on Windows Mobile.

I don't know the answer, you might want to post in
http://social.msdn.microsoft.com/Forums/en-US/msxml/threads/
as some Microsoft employees are answering questions there so your 
chances to get a qualified answer are higher there than in this newsgroup.

-- 

	Martin Honnen --- MVP XML
	http://msmvps.com/blogs/martin_honnen/</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200911/msg1000307135.html</link>
</item><item>
<title>Re: Xml Hex Data to JPG File - 11/18/2009 2:31:00 AM</title>
<description><![CDATA[<pre>I see. It's amazing how people abuse XML and stuff really anything
into it!</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200911/msg1000307069.html</link>
</item><item>
<title>Re: Xml Hex Data to JPG File - 11/17/2009 1:35:00 PM</title>
<description><![CDATA[<pre>I'm with you dude.

I didn't write it, I'm just trying to use it.

The original database designer put the files in the db as blob(s), and the 
only export option I've been given is xml.
Its not a huge amount of data (&lt;10 rows actually), but I'm stuck with the 
contract imposed upon me.  :&lt;

...............

&quot;Peter Laman&quot; &lt;peter.laman@gmail.com&gt; wrote in message 
news:930a598b-d59d-483c-9158-f5205cf01059@j24g2000yqa.googlegroups.com...
&gt; I'm afraid you're only making things complicated for yourself. What
&gt; benefit do you get from embedding a JPEG in XML? Assuming your goal is
&gt; to communicate data over a TCP/IP connection, I think it would be
&gt; easier to include a reference to the JPEG resource in your XML, and
&gt; let the client simply download the JPEG with a separate request.
&gt;
&gt; Peter Laman</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200911/msg1000307043.html</link>
</item><item>
<title>Re: XSL Pattern vs. XPath - 11/17/2009 12:15:00 PM</title>
<description><![CDATA[<pre>Richard M. Hartman wrote:
&gt; Trying to figure out selectSingleNode().  The query syntax can be either 
&gt; &quot;XPath&quot; or &quot;XSL Pattern&quot;.  Not finding any good comparisons of the two 
&gt; syntaxes.  What I really want to know is if you can do a case-insensitive 
&gt; search with selectSingleNode() ... so far it seems to be case sensitive.

XPath 1.0 is a W3C standard since 1999, consider to use that. It is the 
only option available with MSXML 4, 5, 6 anyway.
Only MSXML 3 supports both XPath and XSL pattern but I don't think 
Microsoft has any documentation of that XSL pattern language which was 
implemented before XPath became a standard in 1999.

As for case-insensitive search, element and attribute names in XML are 
case sensitive, so XPath is too when it comes to element and attribute 
names. If you want to compare string values in a case insensitive manner 
then the extension function ms:string-compare
http://msdn.microsoft.com/en-us/library/ms256114.aspx
has an option to do that. It should be supported in MSXML 6:

var doc = new ActiveXObject('Msxml2.DOMDocument.6.0');
doc.loadXML('&lt;root&gt;&lt;foo&gt;bar&lt;/foo&gt;&lt;foo&gt;BAR&lt;/foo&gt;&lt;foo&gt;baz&lt;/foo&gt;&lt;/root&gt;');
doc.setProperty('SelectionLanguage', 'XPath');
doc.setProperty('SelectionNamespaces', 
'xmlns:ms=&quot;urn:schemas-microsoft-com:xslt&quot;');
doc.selectNodes('root/foo[ms:string-compare(., &quot;bar&quot;, &quot;&quot;, &quot;i&quot;) = 0]').length


-- 

	Martin Honnen --- MVP XML
	http://msmvps.com/blogs/martin_honnen/</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200911/msg1000307021.html</link>
</item><item>
<title>Re: Xml Hex Data to JPG File - 11/17/2009 1:46:00 AM</title>
<description><![CDATA[<pre>I'm afraid you're only making things complicated for yourself. What
benefit do you get from embedding a JPEG in XML? Assuming your goal is
to communicate data over a TCP/IP connection, I think it would be
easier to include a reference to the JPEG resource in your XML, and
let the client simply download the JPEG with a separate request.

Peter Laman</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200911/msg1000307015.html</link>
</item><item>
<title>XSL Pattern vs. XPath - 11/16/2009 2:11:00 PM</title>
<description><![CDATA[<pre>Trying to figure out selectSingleNode().  The query syntax can be either 
&quot;XPath&quot; or &quot;XSL Pattern&quot;.  Not finding any good comparisons of the two 
syntaxes.  What I really want to know is if you can do a case-insensitive 
search with selectSingleNode() ... so far it seems to be case sensitive.


-- 
-Richard M. Hartman

186,000 mi/sec: not just a good idea, it's the LAW!</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200911/msg1000306987.html</link>
</item><item>
<title>Re: Xml Hex Data to JPG File - 11/14/2009 10:05:00 PM</title>
<description><![CDATA[<pre>sloan wrote:
&gt; I've been googling (errr bing'ing) for most of the day.
&gt; 
&gt; If I have some xml which has some hex data, which was originally a
&gt; jpg.......is there anyway (with an xsl stylesheet) to write back the jpg?

You could in theory reimplement the decoding in XSLT but I suspect it 
would be much faster to extract the data to a file or pipe and use one 
of the standard utilities such as UUdeview 
(http://www.fpx.de/fp/Software/UUDeview/).

///Peter</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200911/msg1000306819.html</link>
</item><item>
<title>[ANN] XMLmind DITA Converter v1.1.0 - 11/13/2009 11:02:00 AM</title>
<description><![CDATA[<pre>XMLmind is happy to announce a new release of
XMLmind DITA Converter.


XMLmind DITA Converter 1.1.0 (November 9, 2009)
-----------------------------------------------

Allows to convert DITA documents to Eclipse Help. Several other
enhancements.
More info in http://www.xmlmind.com/ditac/changes.html

Download XMLmind DITA Converter 1.1.0 from
http://www.xmlmind.com/ditac/download.shtml

-----------------------------------------------
XMLmind DITA Converter v1.1.0 (ditac for short) allows to convert the
most complex DITA 1.1 documents to production-quality XHTML 1.0, XHTML
1.1, HTML 4.1, Java[tm] Help, HTML Help, Eclipse Help, PDF,
PostScript[reg], RTF (can be opened in Word 2000+), WordprocessingML
(can be opened in Word 2003+), Office Open XML (.docx, can be opened in
Word 2007+), OpenOffice (.odt, can be opened in OpenOffice.org 2+).

XMLmind DITA Converter has been developed in order to be integrated in
XMLmind commercial products. As such, XMLmind DITA Converter is
professionally developed software, well documented and well supported.

XMLmind DITA Converter is free, open source, software licensed under the
very liberal terms of the Mozilla Public License version 1.1.

All this makes XMLmind DITA Converter a very serious alternative to
using the DITA Open Toolkit.

_______________________________________________</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200911/msg1000306688.html</link>
</item><item>
<title>Xml Hex Data to JPG File - 11/11/2009 10:57:00 AM</title>
<description><![CDATA[<pre>I've been googling (errr bing'ing) for most of the day.

If I have some xml which has some hex data, which was originally a
jpg.......is there anyway (with an xsl stylesheet) to write back the jpg?


I figured out how to write out some files (basic stuff, no hex) using
xsl:result-document
but I'm at a loss for getting the hex back into a jpg.

Thanks.

Sample xml below:

The ultimate goal would be to write out a file called MyFirstImage.jpg











&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; ?&gt;
&lt;root&gt;
    &lt;graphics&gt;
        &lt;graphic_name&gt;MyFirstImage&lt;/graphic_name&gt;
        &lt;graphic_object&gt;&#255;&#216;&#255;&#224; JFIF  ` `  &#255;&#219; C  
!&amp;quot;$&amp;quot;$&#255;&#219;
C&#255;&#192;
/&amp;quot; &#255;&#196;           
&#255;&#196; &#181;   } !1AQa&amp;quot;q2'&#161;#B&#177;&#193;R&#209;&#240;$3br,
%&amp;amp;'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyzf&quot;.??^?S'&quot;&quot;.--~Ts&#162;&#163;&#164;&#165;&#166;&#167;&#168;&#169;&#170;&#178;&#179;&#180;&#181;&#182;&#183;&#184;&#185;&#186;&#194;&#195;&#196;&#197;&#198;&#199;&#200;&#201;&#202;&#210;&#211;&#212;&#213;&#214;&#215;&#216;&#217;&#218;&#225;&#226;&#227;&#228;&#229;&#230;&#231;&#232;&#233;&#234;&#241;&#242;&#243;&#244;&#245;&#246;&#247;&#248;&#249;&#250;&#255;&#196;
       
&#255;&#196; &#181;  w !1AQaq&amp;quot;2B'&#161;&#177;&#193; #3R&#240;br&#209;
$4&#225;%&#241;&amp;amp;'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz,f&quot;.??^?S'&quot;&quot;.--~Ts&#162;&#163;&#164;&#165;&#166;&#167;&#168;&#169;&#170;&#178;&#179;&#180;&#181;&#182;&#183;&#184;&#185;&#186;&#194;&#195;&#196;&#197;&#198;&#199;&#200;&#201;&#202;&#210;&#211;&#212;&#213;&#214;&#215;&#216;&#217;&#218;&#226;&#227;&#228;&#229;&#230;&#231;&#232;&#233;&#234;&#242;&#243;&#244;&#245;&#246;&#247;&#248;&#249;&#250;&#255;&#218;
  ? &#207;&#176;&#181;&#248;&#169;&#227;?&amp;gt;.&#240;_&quot;~!&#235;v&#233;Ww&#175;
&#222;&#235;&#215;&#174;DJ&#161;v$n^&#189;prs&#215;&#176;&#255; .-&#251;F&#209;Y&#255; &#203;S&#255; &#255; &#209;&#251;9&#255; &#201;&#221;|G&#255; &#184;&#167;&#254;-&#197;_U&#208;&#202;Y&#240;&#165;&#191;h&#207;&#250;+?&#249;q_&#255;
&#241;&#186;?&#225;K~&#209;Y&#244;V&#242;&#226;&#191;&#255; &#227;u&#245;]&#242;&#167;&#252;)o&#218;3&#254;S&#207;&#254;\W&#255; &#252;n&#248;R&#223;&#180;g&#253;Y&#252;&#184;&#175;&#255; &#248;&#221;}WE |&#169;&#255;
[&#246;O&#255; &#162;&#179;&#255; -&#255; &#255; &#163;&#254;&#183;&#237;&#255; Eg&#255; .+&#255; &#254;7_U&#209;@*&#194;-&#253;&#163;?&#232;&#172;&#255; &#229;&#197;&#255; &#198;&#232;&#255; .-&#251;F&#209;Y&#255; &#203;S&#255; &#255;
&#215;&#213;tP&#202;Y&#240;&#165;&#191;h&#207;&#250;+?&#249;q_&#255; &#241;&#186;?&#225;K~&#209;Y&#244;V&#242;&#226;&#191;&#255; &#227;u&#245;]&#242;&#167;&#252;)o&#218;3&#254;S&#207;&#254;\W&#255; &#252;n&#248;R&#223;&#180;g&#253;Y&#252;&#184;&#175;&#255;
&#248;&#221;}WE |&#169;&#255;
[&#246;O&#255; &#162;&#179;&#255; -&#255; &#255; &#163;&#254;&#183;&#237;&#255; Eg&#255; .+&#255; &#254;7_U&#209;@*&#194;-&#253;&#163;?&#232;&#172;&#255; &#229;&#197;&#255; &#198;&#232;&#255; .-&#251;F&#209;Y&#255; &#203;S&#255; &#255;
&#215;&#213;tP&#202;Y&#240;&#165;&#191;h&#207;&#250;+?&#249;q_&#255; &#241;&#186;?&#225;K~&#209;Y&#244;V&#242;&#226;&#191;&#255; &#227;u&#245;]&#242;&#167;&#252;)o&#218;3&#254;S&#207;&#254;\W&#255; &#252;n&#248;R&#223;&#180;g&#253;Y&#252;&#184;&#175;&#255;
&#248;&#221;}WE |&#169;&#255;
[&#246;O&#255; &#162;&#179;&#255; -&#255; &#255; &#163;&#254;&#183;&#237;&#255; Eg&#255; .+&#255; &#254;7_U&#209;@*&#194;-&#253;&#163;?&#232;&#172;&#255; &#229;&#197;&#255; &#198;&#232;&#255; .-&#251;F&#209;Y&#255; &#203;S&#255; &#255;
&#215;&#213;tP&#202;Y&#240;&#165;&#191;h&#207;&#250;+?&#249;q_&#255; &#241;&#186;?&#225;K~&#209;Y&#244;V&#242;&#226;&#191;&#255; &#227;u&#245;]&#242;&#167;&#252;)o&#218;3&#254;S&#207;&#254;\W&#255; &#252;n&#248;R&#223;&#180;g&#253;Y&#252;&#184;&#175;&#255;
&#248;&#221;}WE |&#169;&#255;
[&#246;O&#255; &#162;&#179;&#255; -&#255; &#255; &#163;&#254;&#183;&#237;&#255; Eg&#255; .+&#255; &#254;7_U&#209;@*&#194;-&#253;&#163;?&#232;&#172;&#255; &#229;&#197;&#255; &#198;&#232;&#255; .-&#251;F&#209;Y&#255; &#203;S&#255; &#255;
&#215;&#213;tP&#202;Y&#240;&#165;&#191;h&#207;&#250;+?&#249;q_&#255; &#241;&#186;?&#225;K~&#209;Y&#244;V&#242;&#226;&#191;&#255; &#227;u&#245;]&#242;&#167;&#252;)o&#218;3&#254;S&#207;&#254;\W&#255; &#252;n&#248;R&#223;&#180;g&#253;Y&#252;&#184;&#175;&#255;
&#248;&#221;}WE |&#169;&#255;
[&#246;O&#255; &#162;&#179;&#255; -&#255; &#255; &#163;&#254;&#183;&#237;&#255; Eg&#255; .+&#255; &#254;7_U&#209;@*&#194;-&#253;&#163;?&#232;&#172;&#255; &#229;&#197;&#255; &#198;&#232;&#255; .-&#251;F&#209;Y&#255; &#203;S&#255; &#255;
&#215;&#213;tP&#202;Y&#240;&#165;&#191;h&#207;&#250;+?&#249;q_&#255; &#241;&#186;?&#225;K~&#209;Y&#244;V&#242;&#226;&#191;&#255; &#227;u&#245;]&#242;&#167;&#252;)o&#218;3&#254;S&#207;&#254;\W&#255; &#252;n&#248;R&#223;&#180;g&#253;Y&#252;&#184;&#175;&#255;
&#248;&#221;}WE |&#169;&#255;
[&#246;O&#255; &#162;&#179;&#255; -&#255; &#255; &#163;&#254;&#183;&#237;&#255; Eg&#255; .+&#255; &#254;7_U&#209;@*&#194;-&#253;&#163;?&#232;&#172;&#255; &#229;&#197;&#255; &#198;&#232;&#255; .-&#251;F&#209;Y&#255; &#203;S&#255; &#255;
&#215;&#213;tP&#202;Y&#240;&#165;&#191;h&#207;&#250;+?&#249;q_&#255; &#241;&#186;?&#225;K~&#209;Y&#244;V&#242;&#226;&#191;&#255; &#227;u&#245;]&#242;&#167;&#252;)o&#218;3&#254;S&#207;&#254;\W&#255; &#252;n&#248;R&#223;&#180;g&#253;Y&#252;&#184;&#175;&#255;
&#248;&#221;}WE |&#169;&#255;
[&#246;O&#255; &#162;&#179;&#255; -&#255; &#255; &#163;&#254;&#183;&#237;&#255; Eg&#255; .+&#255; &#254;7_U&#209;@*&#194;-&#253;&#163;?&#232;&#172;&#255; &#229;&#197;&#255; &#198;&#232;&#255; .-&#251;F&#209;Y&#255; &#203;S&#255; &#255;
&#215;&#213;tP&#202;Y&#240;&#165;&#191;h&#207;&#250;+?&#249;q_&#255; &#241;&#186;?&#225;K~&#209;Y&#244;V&#242;&#226;&#191;&#255; &#227;u&#245;]&#242;&#167;&#252;)o&#218;3&#254;S&#207;&#254;\W&#255; &#252;n&#248;R&#223;&#180;g&#253;Y&#252;&#184;&#175;&#255;
&#248;&#221;}WE |&#169;&#255;
[&#246;O&#255; &#162;&#179;&#255; -&#255; &#255; &#163;&#254;&#183;&#237;&#255; Eg&#255; .+&#255; &#254;7_U&#209;@*&#194;-&#253;&#163;?&#232;&#172;&#255; &#229;&#197;&#255; &#198;&#232;&#255; .-&#251;F&#209;Y&#255; &#203;S&#255; &#255;
&#215;&#213;tP&#202;Y&#240;&#165;&#191;h&#207;&#250;+?&#249;q_&#255; &#241;&#186;?&#225;K~&#209;Y&#244;V&#242;&#226;&#191;&#255; &#227;u&#245;]&#242;&#167;&#252;)o&#218;3&#254;S&#207;&#254;\W&#255; &#252;n&#248;R&#223;&#180;g&#253;Y&#252;&#184;&#175;&#255;
&#248;&#221;}WE |&#169;&#255;
[&#246;O&#255; &#162;&#179;&#255; -&#255; &#255; &#163;&#254;&#183;&#237;&#255; Eg&#255; .+&#255; &#254;7_U&#209;@*&#194;-&#253;&#163;?&#232;&#172;&#255; &#229;&#197;&#255; &#198;&#232;&#255; .-&#251;F&#209;Y&#255; &#203;S&#255; &#255;
&#215;&#213;tP&#202;Y&#240;&#165;&#191;h&#207;&#250;+?&#249;q_&#255; &#241;&#186;?&#225;K~&#209;Y&#244;V&#242;&#226;&#191;&#255; &#227;u&#245;]&#242;&#167;&#252;)o&#218;3&#254;S&#207;&#254;\W&#255; &#252;n&#248;R&#223;&#180;g&#253;Y&#252;&#184;&#175;&#255;
&#248;&#221;}WE |&#169;&#255;
[&#246;O&#255; &#162;&#179;&#255; -&#255; &#255; &#163;&#254;&#183;&#237;&#255; Eg&#255; .+&#255; &#254;7_U&#209;@*&#194;-&#253;&#163;?&#232;&#172;&#255; &#229;&#197;&#255; &#198;&#232;&#255; .-&#251;F&#209;Y&#255; &#203;S&#255; &#255;
&#215;&#213;tP&#202;Y&#240;&#165;&#191;h&#207;&#250;+?&#249;q_&#255; &#241;&#186;?&#225;K~&#209;Y&#244;V&#242;&#226;&#191;&#255; &#227;u&#245;]&#242;&#167;&#252;)o&#218;3&#254;S&#207;&#254;\W&#255; &#252;n&#248;R&#223;&#180;g&#253;Y&#252;&#184;&#175;&#255;
&#248;&#221;}WE |&#169;&#255;
[&#246;O&#255; &#162;&#179;&#255; -&#255; &#255; &#163;&#254;&#183;&#237;&#255; Eg&#255; .+&#255; &#254;7_U&#209;@*&#194;-&#253;&#163;?&#232;&#172;&#255; &#229;&#197;&#255; &#198;&#232;&#255; .-&#251;F&#209;Y&#255; &#203;S&#255; &#255;
&#215;&#213;tP&#202;Y&#240;&#165;&#191;h&#207;&#250;+?&#249;q_&#255; &#241;&#186;?&#225;K~&#209;Y&#244;V&#242;&#226;&#191;&#255; &#227;u&#245;]&#242;&#167;&#252;)o&#218;3&#254;S&#207;&#254;\W&#255; &#252;n&#248;R&#223;&#180;g&#253;Y&#252;&#184;&#175;&#255;
&#248;&#221;}WE |&#169;&#255;
[&#246;O&#255; &#162;&#179;&#255; -&#255; &#255; &#163;&#254;&#183;&#237;&#255; Eg&#255; .+&#255; &#254;7_U&#209;@*&#194;-&#253;&#163;?&#232;&#172;&#255; &#229;&#197;&#255; &#198;&#232;&#255; .-&#251;F&#209;Y&#255; &#203;S&#255; &#255;
&#215;&#213;tP&#202;Y&#240;&#165;&#191;h&#207;&#250;+?&#249;q_&#255; &#241;&#186;?&#225;K~&#209;Y&#244;V&#242;&#226;&#191;&#255; &#227;u&#245;]&#242;&#167;&#252;)o&#218;3&#254;S&#207;&#254;\W&#255; &#252;n&#248;R&#223;&#180;g&#253;Y&#252;&#184;&#175;&#255;
&#248;&#221;}WE |&#169;&#255;
[&#246;O&#255; &#162;&#179;&#255; -&#255; &#255; &#163;&#254;&#183;&#237;&#255; Eg&#255; .+&#255; &#254;7_U&#209;@*&#194;-&#253;&#163;?&#232;&#172;&#255; &#229;&#197;&#255; &#198;&#232;&#255; .-&#251;F&#209;Y&#255; &#203;S&#255; &#255;
&#215;&#213;tP&#202;Y&#240;&#165;&#191;h&#207;&#250;+?&#249;q_&#255; &#241;&#186;?&#225;K~&#209;Y&#244;V&#242;&#226;&#191;&#255; &#227;u&#245;]&#242;&#167;&#252;)o&#218;3&#254;S&#207;&#254;\W&#255; &#252;n&#248;R&#223;&#180;g&#253;Y&#252;&#184;&#175;&#255;
&#248;&#221;}WE |&#169;&#255;
[&#246;O&#255; &#162;&#179;&#255; -&#255; &#255; &#163;&#254;&#183;&#237;&#255; Eg&#255; .+&#255; &#254;7_U&#209;@*&#194;-&#253;&#163;?&#232;&#172;&#255; &#229;&#197;&#255; &#198;&#232;&#255; .-&#251;F&#209;Y&#255; &#203;S&#255; &#255;
&#215;&#213;tP&#202;Y&#240;&#165;&#191;h&#207;&#250;+?&#249;q_&#255; &#241;&#186;?&#225;K~&#209;Y&#244;V&#242;&#226;&#191;&#255; &#227;u&#245;]&#242;&#167;&#252;)o&#218;3&#254;S&#207;&#254;\W&#255; &#252;n&#248;R&#223;&#180;g&#253;Y&#252;&#184;&#175;&#255;
&#248;&#221;}WE |&#169;&#255;
[&#246;O&#255; &#162;&#179;&#255; -&#255; &#255; &#163;&#254;&#183;&#237;&#255; Eg&#255; .+&#255; &#254;7_U&#209;@*&#194;-&#253;&#163;?&#232;&#172;&#255; &#229;&#197;&#255; &#198;&#232;&#255; .-&#251;F&#209;Y&#255; &#203;S&#255; &#255;
&#215;&#213;tP&#202;Y&#240;&#165;&#191;h&#207;&#250;+?&#249;q_&#255; &#241;&#186;?&#225;K~&#209;Y&#244;V&#242;&#226;&#191;&#255; &#227;u&#245;]&#242;&#167;&#252;)o&#218;3&#254;S&#207;&#254;\W&#255; &#252;n&#248;R&#223;&#180;g&#253;Y&#252;&#184;&#175;&#255;
&#248;&#221;}WE |&#169;&#255;
[&#246;O&#255; &#162;&#179;&#255; -&#255; &#255; &#163;&#254;&#183;&#237;&#255; Eg&#255; .+&#255; &#254;7_U&#209;@*&#194;-&#253;&#163;?&#232;&#172;&#255; &#229;&#197;&#255; &#198;&#232;&#255; .-&#251;F&#209;Y&#255; &#203;S&#255; &#255;
&#215;&#213;tP&#202;Y&#240;&#165;&#191;h&#207;&#250;+?&#249;q_&#255; &#241;&#186;?&#225;K~&#209;Y&#244;V&#242;&#226;&#191;&#255; &#227;u&#245;]&#242;&#167;&#252;)o&#218;3&#254;S&#207;&#254;\W&#255; &#252;n&#248;R&#223;&#180;g&#253;Y&#252;&#184;&#175;&#255;
&#248;&#221;}WE |&#169;&#255;
[&#246;O&#255; &#162;&#179;&#255; -&#255; &#255; &#163;&#254;&#183;&#237;&#255; Eg&#255; .+&#255; &#254;7_U&#209;@*&#194;-&#253;&#163;?&#232;&#172;&#255; &#229;&#197;&#255; &#198;&#232;&#255; .-&#251;F&#209;Y&#255; &#203;S&#255; &#255;
&#215;&#213;tP&#202;Y&#240;&#165;&#191;h&#207;&#250;+?&#249;q_&#255; &#241;&#186;?&#225;K~&#209;Y&#244;V&#242;&#226;&#191;&#255; &#227;u&#245;]&#242;&#167;&#252;)o&#218;3&#254;S&#207;&#254;\W&#255; &#252;n&#248;R&#223;&#180;g&#253;Y&#252;&#184;&#175;&#255;
&#248;&#221;}WE |&#169;&#255;
[&#246;O&#255; &#162;&#179;&#255; -&#255; &#255; &#163;&#254;&#183;&#237;&#255; Eg&#255; .+&#255; &#254;7_U&#209;@*&#194;-&#253;&#163;?&#232;&#172;&#255; &#229;&#197;&#255; &#198;&#232;&#255; .-&#251;F&#209;Y&#255; &#203;S&#255; &#255;
&#215;&#213;tP&#202;Y&#240;&#165;&#191;h&#207;&#250;+?&#249;q_&#255; &#241;&#186;?&#225;K~&#209;Y&#244;V&#242;&#226;&#191;&#255; &#227;u&#245;]&#242;&#167;&#252;)o&#218;3&#254;S&#207;&#254;\W&#255; &#252;n&#248;R&#223;&#180;g&#253;Y&#252;&#184;&#175;&#255;
&#248;&#221;}WE |&#169;&#255;
[&#246;O&#255; &#162;&#179;&#255; -&#255; &#255; &#163;&#254;&#183;&#237;&#255; Eg&#255; .+&#255; &#254;7_U&#209;@*&#194;-&#253;&#163;?&#232;&#172;&#255; &#229;&#197;&#255; &#198;&#232;&#255; .-&#251;F&#209;Y&#255; &#203;S&#255; &#255;
&#215;&#213;tP&#202;Y&#240;&#165;&#191;h&#207;&#250;+?&#249;q_&#255; &#241;&#186;?&#225;K~&#209;Y&#244;V&#242;&#226;&#191;&#255; &#227;u&#245;]&#242;&#167;&#252;)o&#218;3&#254;S&#207;&#254;\W&#255; &#252;n&#248;R&#223;&#180;g&#253;Y&#252;&#184;&#175;&#255;
&#248;&#221;}WE |&#169;&#255;
[&#246;O&#255; &#162;&#179;&#255; -&#255; &#255; &#163;&#254;&#183;&#237;&#255; Eg&#255; .+&#255; &#254;7_U&#209;@*&#194;-&#253;&#163;?&#232;&#172;&#255; &#229;&#197;&#255; &#198;&#232;&#255; .-&#251;F&#209;Y&#255; &#203;S&#255; &#255;
&#215;&#213;tP&#202;Y&#240;&#165;&#191;h&#207;&#250;+?&#249;q_&#255; &#241;&#186;?&#225;K~&#209;Y&#244;V&#242;&#226;&#191;&#255; &#227;u&#245;]&#242;&#167;&#252;)o&#218;3&#254;S&#207;&#254;\W&#255; &#252;n&#248;R&#223;&#180;g&#253;Y&#252;&#184;&#175;&#255;
&#248;&#221;}WE |&#169;&#255;
[&#246;O&#255; &#162;&#179;&#255; -&#255; &#255; &#163;&#254;&#183;&#237;&#255; Eg&#255; .+&#255; &#254;7_U&#209;@*&#194;-&#253;&#163;?&#232;&#172;&#255; &#229;&#197;&#255; &#198;&#232;&#255; .-&#251;F&#209;Y&#255; &#203;S&#255; &#255;
&#215;&#213;tP&#202;Y&#240;&#165;&#191;h&#207;&#250;+?&#249;q_&#255; &#241;&#186;?&#225;K~&#209;Y&#244;V&#242;&#226;&#191;&#255; &#227;u&#245;]&#242;&#167;&#252;)o&#218;3&#254;S&#207;&#254;\W&#255; &#252;n&#248;R&#223;&#180;g&#253;Y&#252;&#184;&#175;&#255;
&#248;&#221;}WE |&#169;&#255;
[&#246;O&#255; &#162;&#179;&#255; -&#255; &#255; &#163;&#254;&#183;&#237;&#255; Eg&#255; .+&#255; &#254;7_U&#209;@*&#194;-&#253;&#163;?&#232;&#172;&#255; &#229;&#197;&#255; &#198;&#232;&#255; .-&#251;F&#209;Y&#255; &#203;S&#255; &#255;
&#215;&#213;tP&#202;Y&#240;&#165;&#191;h&#207;&#250;+?&#249;q_&#255; &#241;&#186;?&#225;K~&#209;Y&#244;V&#242;&#226;&#191;&#255; &#227;u&#245;]&#242;&#167;&#252;)o&#218;3&#254;S&#207;&#254;\W&#255; &#252;n&#248;R&#223;&#180;g&#253;Y&#252;&#184;&#175;&#255;
&#248;&#221;}WE |&#169;&#255;
[&#246;O&#255; &#162;&#179;&#255; -&#255; &#255; &#163;&#254;&#183;&#237;&#255; Eg&#255; .+&#255; &#254;7_U&#209;@*&#194;-&#253;&#163;?&#232;&#172;&#255; &#229;&#197;&#255; &#198;&#232;&#255; .-&#251;F&#209;Y&#255; &#203;S&#255; &#255;
&#215;&#213;tP&#202;Y&#240;&#165;&#191;h&#207;&#250;+?&#249;q_&#255; &#241;&#186;?&#225;K~&#209;Y&#244;V&#242;&#226;&#191;&#255; &#227;u&#245;]&#242;&#167;&#252;)o&#218;3&#254;S&#207;&#254;\W&#255; &#252;n&#248;R&#223;&#180;g&#253;Y&#252;&#184;&#175;&#255;
&#248;&#221;}WE |&#169;&#255;
[&#246;O&#255; &#162;&#179;&#255; -&#255; &#255; &#163;&#254;&#183;&#237;&#255; Eg&#255; .+&#255; &#254;7_U&#209;@*&#194;-&#253;&#163;?&#232;&#172;&#255; &#229;&#197;&#255; &#198;&#232;&#255; .-&#251;F&#209;Y&#255; &#203;S&#255; &#255;
&#215;&#213;tP&#194;Yl&amp;gt;4&#252;.&#254;&#203;&#255; &quot;f&#226;f&#171;s&#253;&#167;&#231;y?a&#215;oo-&#179;v&#237;&#225;q&#254;&#176;c&#239;&#210;S&#244;&#248;(&#252;&#201;?&#246;&#255; &#255; &#182;&#212;P&#251;9&#255; &#201;&#221;|G&#255;
&#184;&#167;&#254;-&#197;_U&#215;&#202;Y&#179;Y&#252;&#215;&#196;&#251;S&#233;|U&#245;] QE QE QE QE QE QE QE QE QE QE QE QE
QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE
QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE
QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE
QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE
QE QE QE QE QE QE QE QE |&#169;&#255; &#255; T'&#254;&#223;&#255; &#246;&#218;S?&#224; &#243;$&#255; &#219;&#255; &#254;&#219;Q@&#236;&#231;&#255;
'u&#241;&#254;&#226;Y&#250;_}W_*~&#206;&#242;w_&#255; &#238;)&#255; &#165;&#241;W&#213;t QE QE QE QE QE QE QE QE QE QE QE
QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE
QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE
QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE
QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE
QE QE QE QE QE QE QE QE QE&#242;&#167;&#252;&#254;dY&#251;&#255; &#219;j(&#255; ,&#255; &#204;&quot;&#255; o&#255; &#251;mE
&#179;Y&#252;&#215;&#196;&#251;S&#233;|U&#245;]|&#169;&#251;9&#255; &#201;&#221;|G&#255;
&#184;&#167;&#254;-&#197;_U&#208;EPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEP&#202;Y&#240;P?&#249;'&#237;&#255;
&#255; m&#168;&#163;&#254;
&#255; 2O&#253;&#191;&#255; &#237;&#181; ~&#206;&#242;w_&#255; &#238;)&#255; &#165;&#241;W&#213;u&#242;&#167;&#236;&#231;&#255;
'u&#241;&#254;&#226;Y&#250;_}W@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@*&#193;@&#255;
&#230;I&#255; &#183;&#255; &#253;&#182;&#162;&#248;(&#252;&#201;?&#246;&#255; &#255; &#182;&#212;P&#251;9&#255; &#201;&#221;|G&#255; &#184;&#167;&#254;-&#197;_U&#215;&#202;Y&#179;Y&#252;&#215;&#196;&#251;S&#233;|U&#245;] QE QE QE
QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE
QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE
QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE
QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE
QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE |&#169;&#255; &#255;
T'&#254;&#223;&#255; &#246;&#218;S?&#224; &#243;$&#255; &#219;&#255; &#254;&#219;Q@&#236;&#231;&#255; 'u&#241;&#254;&#226;Y&#250;_}W_*~&#206;&#242;w_&#255; &#238;)&#255; &#165;&#241;W&#213;t QE QE QE
QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE
QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE
QE QE QE QE QE|&#255; &#241;/&#246;,
]&amp;lt;3&#240;&#175;H&#255; &quot;&#191;Z&quot;x3G&#178;BO&#243;*&amp;quot; &#211;&#252;S&#231;r m`&#206;2 &#187;j&#250;z&#163;&#233;&#242;&#234;:&#182;&#161;i&#167;&#217;C6&#226;&#234;eS4&#201;
2&#204;@${'\&amp;amp;&#189;&#241;&#203;&#225;&amp;gt;&lt;x-&#183;z6&#211;&#229;'&#227;d&#178;]&#166;
#-.]A&#224;&#252;&#164;&#231;&#161;&#198;&#175;&#209;&#191;gO&#248;&#243;R#&#248;&#175;&#226;&#217;m&#174;^A&gt;eaup&amp;quot;&#243;&#188;a&#242;
&#229;oQ&#191;&#238;Om&amp;gt;&#203;&#224; &#188;+&#167;&#181;&#172;~&#180;&#214;%&quot;m&#214;&#177;]&#202;&#248;,F.&#196;&#192;l|S&#185;
g$f?8K&#207;&#218;&#215;&#192;Ig3Y&#232;%s&#228;F&#198;&#229;S&#209;&#223;(f&#177;PN2B&#182;:&#224;&#244;&#171;v&#181;w&#195;Y&#239;!,];&#196;&#182;&#177;&#201;&amp;quot;&#163;O-&#164;E&amp;quot;&#224;&#179;.&gt;&#169;&#218;
&#227;?O&#236;&quot;|' ^=&#230;.&#225;J&#185;x&#204;M5.&quot;P&#187;! .,S  &#227;&#216;zTZ&#191;&#252;&#172;j2&#234;:&#183;&quot;&amp;lt;?&#168;^&#205;6&#226;&#235;M?Y_ (&#203;2'p
&#246;?9&#255; &#252;j&#248;W&#174;&#249;&#255; b&#241;&#198;.'&#183;&#219;&#172;&#243;&#187;8&#219;&#231;&quot;&#221;&#208;&#231;nq&#198;q'z&#238;&#206;&#230;&#218;&#246;&#206;&#203;;^&#174;m&#167;e?ho:HO2&#172;&#172;8
,#&#173;y?g&#239;?^,&#242;Y&#251;&#251;&#226;&amp;lt;;E m&#185;F&#239;.&quot;iO&#228;&#182;Km&#221;&#242;&#168;&#221;S&#241;&#233;~ |Z&#248;?&#168;&#167;?&amp;gt;&#235;&#255;
&#240;[&#197;&#182;[&#219;(&#209;&#161;k?,BU&#237;&#247;.To
&#173;&#230;n&quot;&#228;PF&#234;
&#250;&#218;S&#241;Of&#223;&#180;&#226;&#189;E|1&#226;&#219;?&#248;F&amp;lt;T&#183; h-f#&#184;~ 0R&#195;&#247;O&#189;Y|&#183;9&#201;E 
&#236;H&#215;@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@*&#193;@&#255;
&#230;I&#255; &#183;&#255; &#253;&#182;&#162;&#248;(&#252;&#201;?&#246;&#255; &#255; &#182;&#212;P&#251;9&#255; &#201;&#221;|G&#255; &#184;&#167;&#254;-&#197;_U&#215;&#202;Y&#179;Y&#252;&#215;&#196;&#251;S&#233;|U&#245;] QE QE QE
QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE
QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE
QE QE QE Q_?&#254;&#215;z8&#212;`&#181;&#211;~&#248;f?7Z&#241;F&#200;&#230;&amp;quot;V?&#210;&quot;&amp;quot;F&#173;&#194;&#254;&#245;&#195;!&#203;`*&#176;a?
s&amp;gt;7&#241;OO&#254;;|D&#186;&#240;?/%&#210;&#188;#&#166;&#200;&#241;j&#186;&#172;2&#229;.&#238;Fvd8x&#216;n&#196;&#239;9f&#224;~&#239;&#217;&#190;|%&#240;&#175;&#195;==&#178;&#173;&#254;&#211;&#172;Kn&#176;&#222;&#234;&quot;g&#205;Y&#196;*&#228;^&#211;8&#249;W&#168;T&#220;X&#174;&#234;&amp;gt;&#252;6&#179;&#248;g&#224;x4&#173;&#182;&quot;k&#189;&#213;/aB&amp;lt;&#249;2v&#168;-&#201;Dj&#244;-&#218;&#165;s&#189;?
(&#162;?
(&#162;?
(&#162;?&amp;lt;&#171;&#227;O&#192;&#223;
&#252;H&#243;5&#249;&#248;.&#188;&#177;&#253;&#167; e&#247;&#170;q&#182;H&#183;&quot;&#227;w 6&#167;&#205;&#181;vz&#224;/&#196;_&#248;c&#226;%&#255; &#193;&#255;
S:&#172;W&#208;&#201;?P&#184;&#186;i^Y_k,&amp;gt;a&#251;&#226;E}&#232;\&#171;&#185;&#201;*&lt;&#244;.x&#215;&#237;U&#240;&#182;?x1&#245;}*&#214;/&#248;H&#244;^&#218;X]af-&#234;Vf&#182;y$&quot;&#185;2&#230;w&#177;
e&#162;&#188;&#191;&#246;i&#248;'&#196;o?q&#221;jS&#196;&#250;&#246;Y'&#217;&#181; S&#168;\&#245;ZP?o^&#248;P]d
 &#234; QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE
QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE
QE QE QE QE QE QE QE QE&#242;&#167;&#252;&#254;dY&#251;&#255; &#219;j(&#255; ,&#255; &#204;&quot;&#255; o&#255; &#251;mE
&#179;Y&#252;&#215;&#196;&#251;S&#233;|U&#245;]|&#169;&#251;9&#255; &#201;&#221;|G&#255;
&#184;&#167;&#254;-&#197;_U&#208;EPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEP]gQ&#179;&#209;&#244;&lt;&#221;[Q&gt;&#200;&#178;&#178;&#183;'&#230;&#226;]&#165;&#182;FSY&gt;
p8 s&#249;g&#246;F&#211;/&#188;y&#241;S&#196;Y&#252;F%'&#230;&#222;B&#182;&#199;lzPz`&#193;&quot;nX&#241;_ O&#238;&#194;&#202;0&#185;&#246;&#191;&#218;_V&#185;&#209;~x&#174;&#242;&#213;&amp;quot;y$&#180;&quot;J 
''
s&#193;.'^&#247; Z*&#217;&quot;&#194;&#214;~&#248;1 &#199;j&#254;d&#186;&#165;&#186;j&#183;R&#224;&#242;NS&#192;`&quot;&#169;&#177;8&#192;;3?I K&#162;S( &#162;S( &#162;S( &#162;S(
&#162;S(&#228;Y?3K&#240;[&#246;&#166;&#180;&#241;Mf&#253;&gt;B&#241;.&#217;u's&#213;&#228;c'a&#246;&#181;V&#201;fp&#202;&#179;|~*]i^&#235;j&#249;&#255;
&#246;&#225;&#240;-&#246;&#199;&#195;kO&#199;&amp;gt;&#201;|?q&#243;&#163;6&#225;&#184;h&#227;l
&#167;.EZ@&#219;&#191;&#169;&#197;{/?uk&#192;&#186;&#187;x'Gs&#169;i-&#215;s,@&quot;W'%v
 $ &quot;O&quot;&#245;
&#186;(&#162;?
(&#162;?
(&#162;?
(&#162;?
(&#162;?
(&#162;?
(&#162;?
(&#162;?
(&#162;?
(&#162;?
(&#162;?
(&#162;?
(&#162;?
(&#162;?
(&#162;?
(&#162;?
(&#162;?
(&#162;?
(&#162;?
(&#162;?
(&#162;?
(&#162;?
(&#162;?
(&#162;?
(&#162;?
(&#162;?
(&#162;?
(&#162;?
(&#162;?
(&#162;?
(&#162;?
(&#162;?
(&#162;?
(&#162;?
(&#162;?
(&#162;?
(&#162;?
(&#162;?
(&#162;?
(&#162;?
(&#162;?
(&#162;?
(&#162;?
(&#162;?
(&#162;?&amp;gt;T&#255; ,&#255; &#204;&quot;&#255; o&#255; &#251;mE&#240;P?&#249;'&#237;&#255; &#255; m&#168;
&#225;O&#252;5&#224;o&#218;&#226;&#173;&#226;K&#251;&amp;gt;&#202;kJ&#217;%&#242;$-2&#228;`&#184;X&#244;F9&#198;8&#175;v&#255; ??&#248;9&#255; C?&#254;Sn&#255; &#248;&#213;xO&#194;&#255;
xk&#199;?&#181;&#196;-'&#197;:o&#246;.&quot;7.&#202;E&#231;&#201;$&#200;&#161;&#179;)&#232;&#236;1os^&#237;&#255; &#237;&#240;s&#254;&quot;&#255; &#252;&#169;]&#255; &#241;&#218; ?&#225;&#162;~&#208;&#225;&#255; 
&quot;&#219;&#191;&#254;5G&#252;4O&#193;&#207;&#250;?&#242;&gt;w&#255;
&#198;&#168;&#255; ?v&#248;9&#255; B&#254;T&#174;&#255; &#248;&#237;&#240;&#206;&#223;?&#232;O&#255; &#202;.&#223;&#255;  &#254;'&#224;&#231;&#253;&#249;M&#187;&#255; &#227;T&#195;D&#252;&#255;
&#161;&#195;&#255; )&#183;&#252;j&#248;gofY&#244;'&#255; &#229;J&#239;&#255; Z&#209;&#255; &#237;&#240;s&#254;&quot;&#255; &#252;&#169;]&#255; &#241;&#218; ?&#225;&#162;~&#208;&#225;&#255; &quot;&#219;&#191;&#254;5G&#252;4O&#193;&#207;&#250;?&#242;&gt;w&#255; &#198;&#168;&#255;
?v&#248;9&#255; B&#254;T&#174;&#255; &#248;&#237;&#240;&#206;&#223;?&#232;O&#255; &#202;.&#223;&#255;  &#254;'&#224;&#231;&#253;&#249;M&#187;&#255; &#227;T&#195;D&#252;&#255; &#161;&#195;&#255; )&#183;&#252;j&#248;gofY&#244;'&#255;
&#229;J&#239;&#255; Z&#209;&#255; &#237;&#240;s&#254;&quot;&#255; &#252;&#169;]&#255; &#241;&#218; ?&#225;&#162;~&#208;&#225;&#255; &quot;&#219;&#191;&#254;5G&#252;4O&#193;&#207;&#250;?&#242;&gt;w&#255; &#198;&#168;&#255; ?v&#248;9&#255; B&#254;T&#174;&#255;
&#248;&#237;&#240;&#206;&#223;?&#232;O&#255; &#202;.&#223;&#255;  &#254;'&#224;&#231;&#253;&#249;M&#187;&#255; &#227;T&#195;D&#252;&#255; &#161;&#195;&#255; )&#183;&#252;j&#248;gofY&#244;'&#255; &#229;J&#239;&#255; Z&#209;&#255;
&#237;&#240;s&#254;&quot;&#255; &#252;&#169;]&#255; &#241;&#218; ?&#225;&#162;~&#208;&#225;&#255; &quot;&#219;&#191;&#254;5G&#252;4O&#193;&#207;&#250;?&#242;&gt;w&#255; &#198;&#168;&#255; ?v&#248;9&#255; B&#254;T&#174;&#255; &#248;&#237;&#240;&#206;&#223;?&#232;O&#255;
&#202;.&#223;&#255;  &#254;'&#224;&#231;&#253;&#249;M&#187;&#255; &#227;T&#195;D&#252;&#255; &#161;&#195;&#255; )&#183;&#252;j&#248;gofY&#244;'&#255; &#229;J&#239;&#255; Z&#209;&#255; &#237;&#240;s&#254;&quot;&#255; &#252;&#169;]&#255; &#241;&#218;
?&#225;&#162;~&#208;&#225;&#255; &quot;&#219;&#191;&#254;5G&#252;4O&#193;&#207;&#250;?&#242;&gt;w&#255; &#198;&#168;&#255; ?v&#248;9&#255; B&#254;T&#174;&#255; &#248;&#237;&#240;&#206;&#223;?&#232;O&#255; &#202;.&#223;&#255; 
&#254;'&#224;&#231;&#253;&#249;M&#187;&#255; &#227;T&#195;D&#252;&#255; &#161;&#195;&#255; )&#183;&#252;j&#248;gofY&#244;'&#255; &#229;J&#239;&#255; Z&#209;&#255; &#237;&#240;s&#254;&quot;&#255; &#252;&#169;]&#255; &#241;&#218;
?&#225;&#162;~&#208;&#225;&#255; &quot;&#219;&#191;&#254;5G&#252;4O&#193;&#207;&#250;?&#242;&gt;w&#255; &#198;&#168;&#255; ?v&#248;9&#255; B&#254;T&#174;&#255; &#248;&#237;&#240;&#206;&#223;?&#232;O&#255; &#202;.&#223;&#255; 
&#254;'&#224;&#231;&#253;&#249;M&#187;&#255; &#227;T&#195;D&#252;&#255; &#161;&#195;&#255; )&#183;&#252;j&#248;gofY&#244;'&#255; &#229;J&#239;&#255; Z&#209;&#255; &#237;&#240;s&#254;&quot;&#255; &#252;&#169;]&#255; &#241;&#218;
?&#225;&#162;~&#208;&#225;&#255; &quot;&#219;&#191;&#254;5G&#252;4O&#193;&#207;&#250;?&#242;&gt;w&#255; &#198;&#168;&#255; ?v&#248;9&#255; B&#254;T&#174;&#255; &#248;&#237;&#240;&#206;&#223;?&#232;O&#255; &#202;.&#223;&#255; 
&#254;'&#224;&#231;&#253;&#249;M&#187;&#255; &#227;T&#195;D&#252;&#255; &#161;&#195;&#255; )&#183;&#252;j&#248;gofY&#244;'&#255; &#229;J&#239;&#255; Z&#209;&#255; &#237;&#240;s&#254;&quot;&#255; &#252;&#169;]&#255; &#241;&#218;
?&#225;&#162;~&#208;&#225;&#255; &quot;&#219;&#191;&#254;5G&#252;4O&#193;&#207;&#250;?&#242;&gt;w&#255; &#198;&#168;&#255; ?v&#248;9&#255; B&#254;T&#174;&#255; &#248;&#237;&#240;&#206;&#223;?&#232;O&#255; &#202;.&#223;&#255; 
&#254;'&#224;&#231;&#253;&#249;M&#187;&#255; &#227;T&#195;D&#252;&#255; &#161;&#195;&#255; )&#183;&#252;j&#248;gofY&#244;'&#255; &#229;J&#239;&#255; Z&#209;&#255; &#237;&#240;s&#254;&quot;&#255; &#252;&#169;]&#255; &#241;&#218;
?&#225;&#162;~&#208;&#225;&#255; &quot;&#219;&#191;&#254;5G&#252;4O&#193;&#207;&#250;?&#242;&gt;w&#255; &#198;&#168;&#255; ?v&#248;9&#255; B&#254;T&#174;&#255; &#248;&#237;&#240;&#206;&#223;?&#232;O&#255; &#202;.&#223;&#255; 
&#254;'&#224;&#231;&#253;&#249;M&#187;&#255; &#227;T&#195;D&#252;&#255; &#161;&#195;&#255; )&#183;&#252;j&#248;gofY&#244;'&#255; &#229;J&#239;&#255; Z&#209;&#255; &#237;&#240;s&#254;&quot;&#255; &#252;&#169;]&#255; &#241;&#218;
?&#225;&#162;~&#208;&#225;&#255; &quot;&#219;&#191;&#254;5G&#252;4O&#193;&#207;&#250;?&#242;&gt;w&#255; &#198;&#168;&#255; ?v&#248;9&#255; B&#254;T&#174;&#255; &#248;&#237;&#240;&#206;&#223;?&#232;O&#255; &#202;.&#223;&#255; 
&#254;'&#224;&#231;&#253;&#249;M&#187;&#255; &#227;T&#195;D&#252;&#255; &#161;&#195;&#255; )&#183;&#252;j&#248;gofY&#244;'&#255; &#229;J&#239;&#255; Z&#209;&#255; &#237;&#240;s&#254;&quot;&#255; &#252;&#169;]&#255; &#241;&#218;
?&#225;&#162;~&#208;&#225;&#255; &quot;&#219;&#191;&#254;5G&#252;4O&#193;&#207;&#250;?&#242;&gt;w&#255; &#198;&#168;&#255; ?v&#248;9&#255; B&#254;T&#174;&#255; &#248;&#237;&#240;&#206;&#223;?&#232;O&#255; &#202;.&#223;&#255; 
&#254;'&#224;&#231;&#253;&#249;M&#187;&#255; &#227;T&#195;D&#252;&#255; &#161;&#195;&#255; )&#183;&#252;j&#248;gofY&#244;'&#255; &#229;J&#239;&#255; Z&#209;&#255; &#237;&#240;s&#254;&quot;&#255; &#252;&#169;]&#255; &#241;&#218;
?&#225;&#162;~&#208;&#225;&#255; &quot;&#219;&#191;&#254;5G&#252;4O&#193;&#207;&#250;?&#242;&gt;w&#255; &#198;&#168;&#255; ?v&#248;9&#255; B&#254;T&#174;&#255; &#248;&#237;&#240;&#206;&#223;?&#232;O&#255; &#202;.&#223;&#255; 
&#254;'&#224;&#231;&#253;&#249;M&#187;&#255; &#227;T&#195;D&#252;&#255; &#161;&#195;&#255; )&#183;&#252;j&#248;gofY&#244;'&#255; &#229;J&#239;&#255; Z&#209;&#255; &#237;&#240;s&#254;&quot;&#255; &#252;&#169;]&#255; &#241;&#218;
?&#225;&#162;~&#208;&#225;&#255; &quot;&#219;&#191;&#254;5G&#252;4O&#193;&#207;&#250;?&#242;&gt;w&#255; &#198;&#168;&#255; ?v&#248;9&#255; B&#254;T&#174;&#255; &#248;&#237;&#240;&#206;&#223;?&#232;O&#255; &#202;.&#223;&#255; 
&#254;'&#224;&#231;&#253;&#249;M&#187;&#255; &#227;T&#195;D&#252;&#255; &#161;&#195;&#255; )&#183;&#252;j&#248;gofY&#244;'&#255; &#229;J&#239;&#255; Z&#209;&#255; &#237;&#240;s&#254;&quot;&#255; &#252;&#169;]&#255; &#241;&#218;
?&#225;&#162;~&#208;&#225;&#255; &quot;&#219;&#191;&#254;5G&#252;4O&#193;&#207;&#250;?&#242;&gt;w&#255; &#198;&#168;&#255; ?v&#248;9&#255; B&#254;T&#174;&#255; &#248;&#237;&#240;&#206;&#223;?&#232;O&#255; &#202;.&#223;&#255; 
&#254;'&#224;&#231;&#253;&#249;M&#187;&#255; &#227;T&#195;D&#252;&#255; &#161;&#195;&#255; )&#183;&#252;j&#248;gofY&#244;'&#255; &#229;J&#239;&#255; Z&#209;&#255; &#237;&#240;s&#254;&quot;&#255; &#252;&#169;]&#255; &#241;&#218;
?&#225;&#162;~&#208;&#225;&#255; &quot;&#219;&#191;&#254;5G&#252;4O&#193;&#207;&#250;?&#242;&gt;w&#255; &#198;&#168;&#255; ?v&#248;9&#255; B&#254;T&#174;&#255; &#248;&#237;&#240;&#206;&#223;?&#232;O&#255; &#202;.&#223;&#255; 
&#254;'&#224;&#231;&#253;&#249;M&#187;&#255; &#227;T&#195;D&#252;&#255; &#161;&#195;&#255; )&#183;&#252;j&#248;gofY&#244;'&#255; &#229;J&#239;&#255; Z&#209;&#255; &#237;&#240;s&#254;&quot;&#255; &#252;&#169;]&#255; &#241;&#218;
?&#225;&#162;~&#208;&#225;&#255; &quot;&#219;&#191;&#254;5G&#252;4O&#193;&#207;&#250;?&#242;&gt;w&#255; &#198;&#168;&#255; ?v&#248;9&#255; B&#254;T&#174;&#255; &#248;&#237;&#240;&#206;&#223;?&#232;O&#255; &#202;.&#223;&#255; 
&#254;'&#224;&#231;&#253;&#249;M&#187;&#255; &#227;T&#195;D&#252;&#255; &#161;&#195;&#255; )&#183;&#252;j&#248;gofY&#244;'&#255; &#229;J&#239;&#255; Z&#209;&#255; &#237;&#240;s&#254;&quot;&#255; &#252;&#169;]&#255; &#241;&#218;
?&#225;&#162;~&#208;&#225;&#255; &quot;&#219;&#191;&#254;5G&#252;4O&#193;&#207;&#250;?&#242;&gt;w&#255; &#198;&#168;&#255; ?v&#248;9&#255; B&#254;T&#174;&#255; &#248;&#237;&#240;&#206;&#223;?&#232;O&#255; &#202;.&#223;&#255; 
&#254;'&#224;&#231;&#253;&#249;M&#187;&#255; &#227;T&#195;D&#252;&#255; &#161;&#195;&#255; )&#183;&#252;j&#248;gofY&#244;'&#255; &#229;J&#239;&#255; Z&#209;&#255; &#237;&#240;s&#254;&quot;&#255; &#252;&#169;]&#255; &#241;&#218;
?&#225;&#162;~&#208;&#225;&#255; &quot;&#219;&#191;&#254;5G&#252;4O&#193;&#207;&#250;?&#242;&gt;w&#255; &#198;&#168;&#255; ?v&#248;9&#255; B&#254;T&#174;&#255; &#248;&#237;&#240;&#206;&#223;?&#232;O&#255; &#202;.&#223;&#255; 
&#254;'&#224;&#231;&#253;&#249;M&#187;&#255; &#227;T&#195;D&#252;&#255; &#161;&#195;&#255; )&#183;&#252;j&#248;gofY&#244;'&#255; &#229;J&#239;&#255; Z&#209;&#255; &#237;&#240;s&#254;&quot;&#255; &#252;&#169;]&#255; &#241;&#218;
?&#225;&#162;~&#208;&#225;&#255; &quot;&#219;&#191;&#254;5G&#252;4O&#193;&#207;&#250;?&#242;&gt;w&#255; &#198;&#168;&#255; ?v&#248;9&#255; B&#254;T&#174;&#255; &#248;&#237;&#240;&#206;&#223;?&#232;O&#255; &#202;.&#223;&#255; 
&#254;'&#224;&#231;&#253;&#249;M&#187;&#255; &#227;T&#195;D&#252;&#255; &#161;&#195;&#255; )&#183;&#252;j&#248;gofY&#244;'&#255; &#229;J&#239;&#255; Z&#209;&#255; &#237;&#240;s&#254;&quot;&#255; &#252;&#169;]&#255; &#241;&#218;
?&#225;&#162;~&#208;&#225;&#255; &quot;&#219;&#191;&#254;5G&#252;4O&#193;&#207;&#250;?&#242;&gt;w&#255; &#198;&#168;&#255; ?v&#248;9&#255; B&#254;T&#174;&#255; &#248;&#237;&#240;&#206;&#223;?&#232;O&#255; &#202;.&#223;&#255; 
&#254;'&#224;&#231;&#253;&#249;M&#187;&#255; &#227;T&#195;D&#252;&#255; &#161;&#195;&#255; )&#183;&#252;j&#248;gofY&#244;'&#255; &#229;J&#239;&#255; Z&#209;&#255; &#237;&#240;s&#254;&quot;&#255; &#252;&#169;]&#255; &#241;&#218;
?&#225;&#162;~&#208;&#225;&#255; &quot;&#219;&#191;&#254;5G&#252;4O&#193;&#207;&#250;?&#242;&gt;w&#255; &#198;&#168;&#255; ?v&#248;9&#255; B&#254;T&#174;&#255; &#248;&#237;&#240;&#206;&#223;?&#232;O&#255; &#202;.&#223;&#255; 
&#254;'&#224;&#231;&#253;&#249;M&#187;&#255; &#227;T&#195;D&#252;&#255; &#161;&#195;&#255; )&#183;&#252;j&#248;gofY&#244;'&#255; &#229;J&#239;&#255; Z&#209;&#255; &#237;&#240;s&#254;&quot;&#255; &#252;&#169;]&#255; &#241;&#218;
?&#225;&#162;~&#208;&#225;&#255; &quot;&#219;&#191;&#254;5G&#252;4O&#193;&#207;&#250;?&#242;&gt;w&#255; &#198;&#168;&#255; ?v&#248;9&#255; B&#254;T&#174;&#255; &#248;&#237;&#240;&#206;&#223;?&#232;O&#255; &#202;.&#223;&#255; 
&#254;'&#224;&#231;&#253;&#249;M&#187;&#255; &#227;T&#195;D&#252;&#255; &#161;&#195;&#255; )&#183;&#252;j&#248;gofY&#244;'&#255; &#229;J&#239;&#255; Z&#209;&#255; &#237;&#240;s&#254;&quot;&#255; &#252;&#169;]&#255; &#241;&#218;
&#241;&#239;&#218;&#207;&#226;&#183;?|s&#240;&#231;O&#210;|-&#175;h^&#195;&#171;&#199;r&#241;}'x&#177;?e-TGWQO&#231;s&#244;o &#252;s&#248;K x@&#208;&#175;&amp;lt;g-:nTmi3E&#167;^gZ%F*L
'q&amp;gt;.&#231;&#255; &#181;g&#194;x7&#225;&#165;&#190;&#183;&#224;&#255; 
&#203;irsoQ&#221;N-&#224;d|&#193;&#221;.A,n&#227;'y&#193;&#238;&#254;&#252;&#248;Q&#172;|9&#240;&#206;&#173;&#168;&#248;W&#207;&#189;&#189;&#210;-.n%&#254;&#208;&#186;]&#242;&amp;lt;*&#204;&#216;
2I8
 &#232;?&#225;&#162;~&#208;&#225;&#255; &quot;&#219;&#191;&#254;5G&#252;4O&#193;&#207;&#250;?&#242;&gt;w&#255; &#198;&#168;&#255; ?v&#248;9&#255; B&#254;T&#174;&#255; &#248;&#237;&#240;&#206;&#223;?&#232;O&#255; &#202;.&#223;&#255; 
&#254;'&#224;&#231;&#253;&#249;M&#187;&#255; &#227;T&#195;D&#252;&#255; &#161;&#195;&#255; )&#183;&#252;j&#248;gofY&#244;'&#255; &#229;J&#239;&#255; Z&#209;&#255; &#237;&#240;s&#254;&quot;&#255; &#252;&#169;]&#255; &#241;&#218;
?&#225;&#162;~&#208;&#225;&#255; &quot;&#219;&#191;&#254;5G&#252;4O&#193;&#207;&#250;?&#242;&gt;w&#255; &#198;&#168;&#255; ?v&#248;9&#255; B&#254;T&#174;&#255; &#248;&#237;&#240;&#206;&#223;?&#232;O&#255; &#202;.&#223;&#255; 
&#254;'&#224;&#231;&#253;&#249;M&#187;&#255; &#227;T&#195;D&#252;&#255; &#161;&#195;&#255; )&#183;&#252;j&#248;gofY&#244;'&#255; &#229;J&#239;&#255; Z&#209;&#255; &#237;&#240;s&#254;&quot;&#255; &#252;&#169;]&#255; &#241;&#218;
?&#225;&#162;~&#208;&#225;&#255; &quot;&#219;&#191;&#254;5G&#252;4O&#193;&#207;&#250;?&#242;&gt;w&#255; &#198;&#168;&#255; ?v&#248;9&#255; B&#254;T&#174;&#255; &#248;&#237;&#240;&#206;&#223;?&#232;O&#255; &#202;.&#223;&#255;  &#227;&#255;
&#198;/?&amp;gt;2&#248;C&#175;xsD&#241;lRj71&#196;&#240;$&#182;h$1&#204;'&#220;b&#192;$!8#$ 
'&#236;&#237;&#241;Y&#225;&#175;&quot;&#254;h^&#241;?&amp;gt;&#199;&#169;Z&#253;&#163;&#206;?&#236;7m&#221;q+&#175;&#204;'.9Vf&#222;&#218;'&#224;&#199;&#195;_
&#252;&#215;|A&#225;&#255;
&#253;R&#181;&#251;?&quot;7&#219;&#174;$&#219;&#186;&#226;$o.&#228;*r&#172;G#&#189;M&#240;&#224;&#195;&#239;&#252;!&#208;u&#191;xNYuk&#200;&#229;-Y%&#187;&#185;&quot;&#186;Y&#202;m&#170;&#234;0c&#216;AA&#231;9
&#239;&#254;'&#224;&#231;&#253;&#249;M&#187;&#255; &#227;T&#195;D&#252;&#255; &#161;&#195;&#255; )&#183;&#252;j&#248;gofY&#244;'&#255; &#229;J&#239;&#255; Z&#209;&#255; &#237;&#240;s&#254;&quot;&#255; &#252;&#169;]&#255; &#241;&#218;
?&#225;&#162;~&#208;&#225;&#255; &quot;&#219;&#191;&#254;5G&#252;4O&#193;&#207;&#250;?&#242;&gt;w&#255; &#198;&#168;&#255; ?v&#248;9&#255; B&#254;T&#174;&#255; &#248;&#237;&#240;&#206;&#223;?&#232;O&#255; &#202;.&#223;&#255; 
&#254;'&#224;&#231;&#253;&#249;M&#187;&#255; &#227;T&#195;D&#252;&#255; &#161;&#195;&#255; )&#183;&#252;j&#248;gofY&#244;'&#255; &#229;J&#239;&#255; Z&#209;&#255; &#237;&#240;s&#254;&quot;&#255; &#252;&#169;]&#255; &#241;&#218;
?&#225;&#162;~&#208;&#225;&#255; &quot;&#219;&#191;&#254;5G&#252;4O&#193;&#207;&#250;?&#242;&gt;w&#255; &#198;&#168;&#255; ?v&#248;9&#255; B&#254;T&#174;&#255; &#248;&#237;&#240;&#206;&#223;?&#232;O&#255; &#202;.&#223;&#255; 
&#254;'&#224;&#231;&#253;&#249;M&#187;&#255; &#227;T&#195;D&#252;&#255; &#161;&#195;&#255; )&#183;&#252;j&#248;gofY&#244;'&#255; &#229;J&#239;&#255; Z&#209;&#255; &#237;&#240;s&#254;&quot;&#255; &#252;&#169;]&#255; &#241;&#218;
?&#225;&#162;~&#208;&#225;&#255; &quot;&#219;&#191;&#254;5G&#252;4O&#193;&#207;&#250;?&#242;&gt;w&#255; &#198;&#168;&#255; ?v&#248;9&#255; B&#254;T&#174;&#255; &#248;&#237;&#240;&#206;&#223;?&#232;O&#255; &#202;.&#223;&#255; 
&#254;'&#224;&#231;&#253;&#249;M&#187;&#255; &#227;T&#195;D&#252;&#255; &#161;&#195;&#255; )&#183;&#252;j&#248;gofY&#244;'&#255; &#229;J&#239;&#255; Z&#209;&#255; &#237;&#240;s&#254;&quot;&#255; &#252;&#169;]&#255; &#241;&#218;
?&#225;&#162;~&#208;&#225;&#255; &quot;&#219;&#191;&#254;5G&#252;4O&#193;&#207;&#250;?&#242;&gt;w&#255; &#198;&#168;&#255; ?v&#248;9&#255; B&#254;T&#174;&#255; &#248;&#237;&#240;&#206;&#223;?&#232;O&#255; &#202;.&#223;&#255; 
&#254;'&#224;&#231;&#253;&#249;M&#187;&#255; &#227;T&#195;D&#252;&#255; &#161;&#195;&#255; )&#183;&#252;j&#248;gofY&#244;'&#255; &#229;J&#239;&#255; Z&#209;&#255; &#237;&#240;s&#254;&quot;&#255; &#252;&#169;]&#255; &#241;&#218;
?&#225;&#162;~&#208;&#225;&#255; &quot;&#219;&#191;&#254;5G&#252;4O&#193;&#207;&#250;?&#242;&gt;w&#255; &#198;&#168;&#255; ?v&#248;9&#255; B&#254;T&#174;&#255; &#248;&#237;&#240;&#206;&#223;?&#232;O&#255; &#202;.&#223;&#255; 
&#254;'&#224;&#231;&#253;&#249;M&#187;&#255; &#227;T&#195;D&#252;&#255; &#161;&#195;&#255; )&#183;&#252;j&#248;gofY&#244;'&#255; &#229;J&#239;&#255; Z&#209;&#255; &#237;&#240;s&#254;&quot;&#255; &#252;&#169;]&#255; &#241;&#218;
?&#225;&#162;~&#208;&#225;&#255; &quot;&#219;&#191;&#254;5G&#252;4O&#193;&#207;&#250;?&#242;&gt;w&#255; &#198;&#168;&#255; ?v&#248;9&#255; B&#254;T&#174;&#255; &#248;&#237;&#240;&#206;&#223;?&#232;O&#255; &#202;.&#223;&#255; 
&#254;'&#224;&#231;&#253;&#249;M&#187;&#255; &#227;T&#195;D&#252;&#255; &#161;&#195;&#255; )&#183;&#252;j&#248;gofY&#244;'&#255; &#229;J&#239;&#255; Z&#209;&#255; &#237;&#240;s&#254;&quot;&#255; &#252;&#169;]&#255; &#241;&#218;
?&#225;&#162;~&#208;&#225;&#255; &quot;&#219;&#191;&#254;5G&#252;4O&#193;&#207;&#250;?&#242;&gt;w&#255; &#198;&#168;&#255; ?v&#248;9&#255; B&#254;T&#174;&#255; &#248;&#237;&#240;&#206;&#223;?&#232;O&#255; &#202;.&#223;&#255; 
&#254;'&#224;&#231;&#253;&#249;M&#187;&#255; &#227;T&#195;D&#252;&#255; &#161;&#195;&#255; )&#183;&#252;j&#248;gofY&#244;'&#255; &#229;J&#239;&#255; Z&#209;&#255; &#237;&#240;s&#254;&quot;&#255; &#252;&#169;]&#255; &#241;&#218;
?&#225;&#162;~&#208;&#225;&#255; &quot;&#219;&#191;&#254;5G&#252;4O&#193;&#207;&#250;?&#242;&gt;w&#255; &#198;&#168;&#255; ?v&#248;9&#255; B&#254;T&#174;&#255; &#248;&#237;&#240;&#206;&#223;?&#232;O&#255; &#202;.&#223;&#255; 
&#254;'&#224;&#231;&#253;&#249;M&#187;&#255; &#227;T&#195;D&#252;&#255; &#161;&#195;&#255; )&#183;&#252;j&#248;gofY&#244;'&#255; &#229;J&#239;&#255; Z&#209;&#255; &#237;&#240;s&#254;&quot;&#255; &#252;&#169;]&#255; &#241;&#218;
?&#225;&#162;~&#208;&#225;&#255; &quot;&#219;&#191;&#254;5G&#252;4O&#193;&#207;&#250;?&#242;&gt;w&#255; &#198;&#168;&#255; ?v&#248;9&#255; B&#254;T&#174;&#255; &#248;&#237;&#240;&#206;&#223;?&#232;O&#255; &#202;.&#223;&#255; 
&#254;'&#224;&#231;&#253;&#249;M&#187;&#255; &#227;T&#195;D&#252;&#255; &#161;&#195;&#255; )&#183;&#252;j&#248;gofY&#244;'&#255; &#229;J&#239;&#255; Z&#209;&#255; &#237;&#240;s&#254;&quot;&#255; &#252;&#169;]&#255; &#241;&#218;
?&#225;&#162;~&#208;&#225;&#255; &quot;&#219;&#191;&#254;5G&#252;4O&#193;&#207;&#250;?&#242;&gt;w&#255; &#198;&#168;&#255; ?v&#248;9&#255; B&#254;T&#174;&#255; &#248;&#237;&#240;&#206;&#223;?&#232;O&#255; &#202;.&#223;&#255; 
&#254;'&#224;&#231;&#253;&#249;M&#187;&#255; &#227;T&#195;D&#252;&#255; &#161;&#195;&#255; )&#183;&#252;j&#248;gofY&#244;'&#255; &#229;J&#239;&#255; Z&#209;&#255; &#237;&#240;s&#254;&quot;&#255; &#252;&#169;]&#255; &#241;&#218;
?&#225;&#162;~&#208;&#225;&#255; &quot;&#219;&#191;&#254;5G&#252;4O&#193;&#207;&#250;?&#242;&gt;w&#255; &#198;&#168;&#255; ?v&#248;9&#255; B&#254;T&#174;&#255; &#248;&#237;&#240;&#206;&#223;?&#232;O&#255; &#202;.&#223;&#255; 
&#254;'&#224;&#231;&#253;&#249;M&#187;&#255; &#227;T&#195;D&#252;&#255; &#161;&#195;&#255; )&#183;&#252;j&#248;gofY&#244;'&#255; &#229;J&#239;&#255; Z&#209;&#255; &#237;&#240;s&#254;&quot;&#255; &#252;&#169;]&#255; &#241;&#218;
?&#225;&#162;~&#208;&#225;&#255; &quot;&#219;&#191;&#254;5G&#252;4O&#193;&#207;&#250;?&#242;&gt;w&#255; &#198;&#168;&#255; ?v&#248;9&#255; B&#254;T&#174;&#255; &#248;&#237;&#240;&#206;&#223;?&#232;O&#255; &#202;.&#223;&#255; 
&#254;'&#224;&#231;&#253;&#249;M&#187;&#255; &#227;T&#195;D&#252;&#255; &#161;&#195;&#255; )&#183;&#252;j&#248;gofY&#244;'&#255; &#229;J&#239;&#255; Z&#209;&#255; &#237;&#240;s&#254;&quot;&#255; &#252;&#169;]&#255; &#241;&#218;
?&#225;&#162;~&#208;&#225;&#255; &quot;&#219;&#191;&#254;5G&#252;4O&#193;&#207;&#250;?&#242;&gt;w&#255; &#198;&#168;&#255; ?v&#248;9&#255; B&#254;T&#174;&#255; &#248;&#237;&#240;&#206;&#223;?&#232;O&#255; &#202;.&#223;&#255; 
&#254;'&#224;&#231;&#253;&#249;M&#187;&#255; &#227;T&#195;D&#252;&#255; &#161;&#195;&#255; )&#183;&#252;j&#248;gofY&#244;'&#255; &#229;J&#239;&#255; Z&#209;&#255; &#237;&#240;s&#254;&quot;&#255; &#252;&#169;]&#255; &#241;&#218;
?&#225;&#162;~&#208;&#225;&#255; &quot;&#219;&#191;&#254;5G&#252;4O&#193;&#207;&#250;?&#242;&gt;w&#255; &#198;&#168;&#255; ?v&#248;9&#255; B&#254;T&#174;&#255; &#248;&#237;&#240;&#206;&#223;?&#232;O&#255; &#202;.&#223;&#255; 
&#254;'&#224;&#231;&#253;&#249;M&#187;&#255; &#227;T&#195;D&#252;&#255; &#161;&#195;&#255; )&#183;&#252;j&#248;gofY&#244;'&#255; &#229;J&#239;&#255; Z&#209;&#255; &#237;&#240;s&#254;&quot;&#255; &#252;&#169;]&#255; &#241;&#218;
?&#225;&#162;~&#208;&#225;&#255; &quot;&#219;&#191;&#254;5G&#252;4O&#193;&#207;&#250;?&#242;&gt;w&#255; &#198;&#168;&#255; ?v&#248;9&#255; B&#254;T&#174;&#255; &#248;&#237;&#240;&#206;&#223;?&#232;O&#255; &#202;.&#223;&#255; 
&#254;'&#224;&#231;&#253;&#249;M&#187;&#255; &#227;T&#195;D&#252;&#255; &#161;&#195;&#255; )&#183;&#252;j&#248;gofY&#244;'&#255; &#229;J&#239;&#255; Z&#209;&#255; &#237;&#240;s&#254;&quot;&#255; &#252;&#169;]&#255; &#241;&#218;
?&#225;&#162;~&#208;&#225;&#255; &quot;&#219;&#191;&#254;5G&#252;4O&#193;&#207;&#250;?&#242;&gt;w&#255; &#198;&#168;&#255; ?v&#248;9&#255; B&#254;T&#174;&#255; &#248;&#237;&#240;&#206;&#223;?&#232;O&#255; &#202;.&#223;&#255; 
&#254;'&#224;&#231;&#253;&#249;M&#187;&#255; &#227;T&#195;D&#252;&#255; &#161;&#195;&#255; )&#183;&#252;j&#248;gofY&#244;'&#255; &#229;J&#239;&#255; Z&#209;&#255; &#237;&#240;s&#254;&quot;&#255; &#252;&#169;]&#255; &#241;&#218;
?&#225;&#162;~&#208;&#225;&#255; &quot;&#219;&#191;&#254;5G&#252;4O&#193;&#207;&#250;?&#242;&gt;w&#255; &#198;&#168;&#255; ?v&#248;9&#255; B&#254;T&#174;&#255; &#248;&#237;&#240;&#206;&#223;?&#232;O&#255; &#202;.&#223;&#255; 
&#254;'&#224;&#231;&#253;&#249;M&#187;&#255; &#227;T&#195;D&#252;&#255; &#161;&#195;&#255; )&#183;&#252;j&#248;gofY&#244;'&#255; &#229;J&#239;&#255; Z&#209;&#255; &#237;&#240;s&#254;&quot;&#255; &#252;&#169;]&#255; &#241;&#218;
?&#225;&#162;~&#208;&#225;&#255; &quot;&#219;&#191;&#254;5G&#252;4O&#193;&#207;&#250;?&#242;&gt;w&#255; &#198;&#168;&#255; ?v&#248;9&#255; B&#254;T&#174;&#255; &#248;&#237;&#240;&#206;&#223;?&#232;O&#255; &#202;.&#223;&#255; 
&#254;'&#224;&#231;&#253;&#249;M&#187;&#255; &#227;T&#195;D&#252;&#255; &#161;&#195;&#255; )&#183;&#252;j&#248;gofY&#244;'&#255; &#229;J&#239;&#255; Z&#209;&#255; &#237;&#240;s&#254;&quot;&#255; &#252;&#169;]&#255; &#241;&#218;
?&#225;&#162;~&#208;&#225;&#255; &quot;&#219;&#191;&#254;5G&#252;4O&#193;&#207;&#250;?&#242;&gt;w&#255; &#198;&#168;&#255; ?v&#248;9&#255; B&#254;T&#174;&#255; &#248;&#237;&#240;&#206;&#223;?&#232;O&#255; &#202;.&#223;&#255; 
&#254;'&#224;&#231;&#253;&#249;M&#187;&#255; &#227;T&#195;D&#252;&#255; &#161;&#195;&#255; )&#183;&#252;j&#248;gofY&#244;'&#255; &#229;J&#239;&#255; Z&#209;&#255; &#237;&#240;s&#254;&quot;&#255; &#252;&#169;]&#255; &#241;&#218;
?&#225;&#162;~&#208;&#225;&#255; &quot;&#219;&#191;&#254;5G&#252;4O&#193;&#207;&#250;?&#242;&gt;w&#255; &#198;&#168;&#255; ?v&#248;9&#255; B&#254;T&#174;&#255; &#248;&#237;&#240;&#206;&#223;?&#232;O&#255; &#202;.&#223;&#255; 
&#254;'&#224;&#231;&#253;&#249;M&#187;&#255; &#227;T&#195;D&#252;&#255; &#161;&#195;&#255; )&#183;&#252;j&#248;gofY&#244;'&#255; &#229;J&#239;&#255; Z&#209;&#255; &#237;&#240;s&#254;&quot;&#255; &#252;&#169;]&#255; &#241;&#218;
?&#225;&#162;~&#208;&#225;&#255; &quot;&#219;&#191;&#254;5G&#252;4O&#193;&#207;&#250;?&#242;&gt;w&#255; &#198;&#168;&#255; ?v&#248;9&#255; B&#254;T&#174;&#255; &#248;&#237;&#240;&#206;&#223;?&#232;O&#255; &#202;.&#223;&#255; 
&#254;'&#224;&#231;&#253;&#249;M&#187;&#255; &#227;T&#195;D&#252;&#255; &#161;&#195;&#255; )&#183;&#252;j&#248;gofY&#244;'&#255; &#229;J&#239;&#255; Z&#209;&#255; &#237;&#240;s&#254;&quot;&#255; &#252;&#169;]&#255; &#241;&#218;
?&#225;&#162;~&#208;&#225;&#255; &quot;&#219;&#191;&#254;5G&#252;4O&#193;&#207;&#250;?&#242;&gt;w&#255; &#198;&#168;&#255; ?v&#248;9&#255; B&#254;T&#174;&#255; &#248;&#237;&#240;&#206;&#223;?&#232;O&#255; &#202;.&#223;&#255; 
&#254;'&#224;&#231;&#253;&#249;M&#187;&#255; &#227;T&#195;D&#252;&#255; &#161;&#195;&#255; )&#183;&#252;j&#248;gofY&#244;'&#255; &#229;J&#239;&#255; Z&#209;&#255; &#237;&#240;s&#254;&quot;&#255; &#252;&#169;]&#255; &#241;&#218;
&#249;&#251;&#246;&#194;&#248;&lt;&#224;&#239;&#194;-&#255; -&#177;&#253;&#163;&#246;&#181;&#253;&#167;&#253;X&#182;o&#242;v&#255; &#172;U&#206;v7L&#244;&#162;&#219; &#225;&#215;f&#188;&#255;
&#183;&#252;&amp;quot;Z?&#246;w&#219;&#254;&#215;&#246;Y&#244;Te&#223;&#179;&#201;&#219;&#254;&#177;&gt;&#222;&#221;1&#214;S &#234;&#255; g?&#249;;&#175;^&#255; &#247;&#255; &#210;&#248;&#171;&#234;&#186;&#249;S&#246;s&#255; &quot;&#186;&#248;&#255; qO&#253;/S&#190;&#171;
S( S( S( S( S( S( S( S( S( S( S( S( S( S( S( S( S( S(
S( S( S( S( S( S( S( S( S( S( S( S( S( S( S( S( S( S(
S( S( S( S( S( S( S( S(
?&#253;&#163;t&#237;&#223;&#222;,&#178;&#251;O&#217;&#252;&#187;&#188;&#223;&#179;v~&#206;&#194;}&#184;&#200;&#251;&#222;^&#220;&#246;&#206;pqf.&#251;)&#248;&#183;&#254;&#207;fV&#248;&amp;lt;&#171;&#254;%3av&#163;y(&gt;~bNch&#242;N&amp;gt;m&#216;
b&#189;B&#242;&#218;&#218;&#246;&#206;k;&#203;x&#174;m&#167;&#162;sP:HO0&#202;&#202;x ,A&#173;|&#251;;=&#231;&#193;&#255; Z&#250;&#207;&#195;G&#228;&#219;&#235;{c&#178;&#189;Tb&#225;&#163;g&#251;&amp;lt;SK&#237;
&amp;quot;&#180;&lt;&#180;no0&#162;pCP&#214;&#212;QE QE QE QE QE |&#233;&#251;u&#248;&#166;&#243;K&#240;&amp;gt;'&#225;kT&#219;&#187;p&#242;]Is&#185;&quot;x
&#245;wF&#220;#&#203;&#199;!{&#183;f&#180;&#248;G|!&#163;x&#237;?i&#254;&#204;&#176;,&#207;&#206;&#217;&#179;&#204;&#242;&#227;T&#221;&#183;'&#219;od&#227;&#212;&#215;&#203;&#215;Y&#240;&#189;&#191;jg&#187;&#178;KI&amp;lt;1&#225;&amp;amp;9n&#223;&#206;?&#238;f-&#229;' 
#&#249;&#210;4&gt;r@1&#216;%H?[PEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEP&#202;Y&#240;P?&#249;'&#237;&#255;
&#255; m&#168;&#163;&#254;
&#255; 2O&#253;&#191;&#255; &#237;&#181; ~&#206;&#242;w_&#255; &#238;)&#255; &#165;&#241;W&#213;u&#242;&#167;&#236;&#231;&#255;
'u&#241;&#254;&#226;Y&#250;_}W@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@x&#167;&#237;U&#240;&#218;&#243;&#197;~&#182;&#241;o?&#237;|U&#225;&#255;
&#222;&#218;&lt;$k^&#247;&#171; 0&#251;&#227; &#200;&gt;I9&#222;-pG&#181;&#209;@U&#251;3|O&#255; .'&#224;&#248;~&#205;&#191;&#196;:^&#216;&#181;&amp;lt;A&#229;&#163;&#238;-&#229;J&#184;&#249;~eS1?V&#249;UJ&#231;&#213;k&#230;&#255;
&lt;Y 
&amp;lt;g&#225;&#234;?~&#234;R&#193;&amp;lt;sO&#168;i&#227;&#247;'&#202;&#238;&#192;&#201;&#229;++,&#161;&#178;\&#198;&#221;F&#204;'S&#189;_&#193;&#254;&#241;&#228;V&#250;V&#174;&#241;h~#&#242;&#209;^R&#222;&#234;Vm~&#183;b&#217;$'&#167;&#203;o&gt;&#230;&#192;&#223;&#180;&#181;
{-Q@Q@Q@|&#255; &#251;Z|O&#254;&#204;&#210;&#195; M&#246;&#207;&#235;8&#182;&#188;&#183;?9&#226;&#183;.J&#249;`v-M&#202;p&#199;i'&#229;%
&amp;gt;4&#254;&#208;&#250;vT&#230;x[&#225;&#187;ox-&#235;&#203;?&#222;&#242;&#209;V&#226;&#218;&amp;amp;&quot;?#&#218;O(&#202;&#225;@+-$&#169;C&#161;&#240;&#225;'^t_&#223;&#252;G&#248;&#169;E&#169;&#248;&#175;P&#198;6&#202;-C&#170;&#238;%&#182;&#224;H
&#242;&#192;&#228;T `&#192;(k&#240;'&#225;&#252;
&#190;&#218;xy&#166;S&#226;&#253;&#228;k&#173;Bx&#183;l'w&#192;;CS&#170;^;7`EwtQ@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@*&#193;@&#255;
&#230;I&#255; &#183;&#255; &#253;&#182;&#162;&#248;(&#252;&#201;?&#246;&#255; &#255; &#182;&#212;P&#251;9&#255; &#201;&#221;|G&#255; &#184;&#167;&#254;-&#197;_U&#215;&#202;Y&#179;Y&#252;&#215;&#196;&#251;S&#233;|U&#245;] QE QE QE
QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE
QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE
QE QE QE QE &#229;&#255; &#254;x3&#226;4&#179;jWQK&#165;&#235;&#207;Q&#169;Z\&#170;&#176;A,g&#229; &#174;OB*?
W&#168;Q@$&#220;x&#223;&#227;&#231;&#193;i&#222;&#195;&#197;6?&#240;-hV&#254;L&#175;&#169;L&quot;O&#198;&#206;w*&#221;&#224;2&#185;f&#217;&#251;&#224;&#197;HM&#171;&#180;&#221;&#183;?&#255;
jYkl~)&#177;&#187;&#240;&#196;&#171;-G&#249;&#175;!up7F&#195;'[&gt;p&#191;{'&#244;bk&#222;&#240;z&#191;x-s&#239;?4MV&#229;#,&#215;&#182;L&#234;?'3&#169; 
d&quot;s&#235;@&#174;f&#241;&#203;&#225;&amp;gt;&#181;x&#246;&#182;~6&#211;&#226;'#2z&#178;Z&amp;amp;?TQI&#228;|
&#231;&#169;&#198;&#168;u?&#244;&#189;F[ YZI,X&#220;&#214;&#182;&#243;\&#198;r'$dnbpr 
S&#207;&#188;&#253;o~Og4xb[Y$'g&lt;Q&#185;/#&quot;&amp;lt;O&#185;F&#224;G,8&#171;v&#179;&#247;&#194; K&#200;n&#162;&#240;lM$2,S%&#189;&#185;.
#r&amp;lt;.Xq&#202;&#176; &#244; S
&#225;&amp;lt;o&#251;XxWK&#212;V&#215;&#194;&#218;&#223;^&#162;\&#249;-RLl&#227;&amp;lt;)#;rX&#202;~+&#198;&#224;s\&#165;&quot;&#223;&amp;gt;;m&#178;&#187;&#248;C&#252;0&#246;&#241;&#189;&#196;&#177;&#218;&#205;k
&#220;Rn&#166;&#226;^&#227;tn&#199;f&#241;
&#185;&#218;H'&#234;&#248;k&#195;z&#243;&#255;
&#225;&#208;4&#173;#&#237;|&#239;&#176;&#217;&#199;T&#183;;wl8&#220;qzT&amp;gt;&#181;&#171;@'&#194;&#175;&quot;&#254; &#248;m&#173;&#225;&#235;)^&#250;x&#252;&#169;&#245; &#185;&amp;lt;&#203;?q`&#185;
*ZG&#171;&#170;[$]&#221;PEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEP&#202;Y&#240;P?&#249;'&#237;&#255;
&#255; m&#168;&#163;&#254;
&#255; 2O&#253;&#191;&#255; &#237;&#181; ~&#206;&#242;w_&#255; &#238;)&#255; &#165;&#241;W&#213;u&#242;&#167;&#236;&#231;&#255;
'u&#241;&#254;&#226;Y&#250;_}W@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@*&#193;@&#255;
&#230;I&#255; &#183;&#255; &#253;&#182;&#162;&#248;(&#252;&#201;?&#246;&#255; &#255; &#182;&#212;P&#251;9&#255; &#201;&#221;|G&#255; &#184;&#167;&#254;-&#197;_U&#215;&#202;Y&#179;Y&#252;&#215;&#196;&#251;S&#233;|U&#245;] QE QE QE
QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE
QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE
QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE
QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE
QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE |&#169;&#255; &#255;
T'&#254;&#223;&#255; &#246;&#218;S?&#224; &#243;$&#255; &#219;&#255; &#254;&#219;Q@&#236;&#231;&#255; 'u&#241;&#254;&#226;Y&#250;_}W_*~&#206;&#242;w_&#255; &#238;)&#255; &#165;&#241;W&#213;t QE QE QE
QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE
QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE
QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE
QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE
QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE QE
QE&#242;&#167;&#252;&#254;dY&#251;&#255; &#219;j(&#255; ,&#255; &#204;&quot;&#255; o&#255; &#251;mE &#179;Y&#252;&#215;&#196;&#251;S&#233;|U&#245;]|&#169;&#251;9&#255; &#201;&#221;|G&#255;
&#184;&#167;&#254;-&#197;_U&#208;EPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEP&#202;Y&#240;P?&#249;'&#237;&#255;
&#255; m&#168;&#163;&#254;
&#255; 2O&#253;&#191;&#255; &#237;&#181; ~&#206;&#242;w_&#255; &#238;)&#255; &#165;&#241;W&#213;u&#242;&#167;&#236;&#231;&#255;
'u&#241;&#254;&#226;Y&#250;_}W@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@*&#193;@&#255;
&#230;I&#255; &#183;&#255; &#253;&#182;&#162;&#248;(&#252;&#201;?&#246;&#255; &#255; &#182;&#212;P&#251;9&#255; &#201;&#221;|G&#255; &#184;&#167;&#254;-&#197;_U&#215;&#193;&amp;gt;&#248;&#181;g&#224;oZ&#190;0&#241;&#182;&#165;&#255;
n&#217;j&#183;&#177;&#219;&#175;zm&#179;&#183;K*&#201;'Oz &#249;H&#230;&#237;OW&#165;&#255; &#195;a&#213;;&#255; &#202;&#215;&#255; h &#170;&#232;&#175;.?&#225;&#176;&#191;&#234;&#255; &#229;k&#255; &#180;Q&#255;
.&#255; T&#239;&#255; +_&#253;&#162;?&amp;gt;&#171;&#162;&#190;T&#255; ?&#194;&#255; &#170;w&#255; .&#175;&#254;&#209;G&#252;6&#253;S&#191;&#252;&#173;&#246;S &#250;&#174;S&#249;S&#254; &#254;&#169;&#223;&#254;V&#191;&#251;E&#240;&#216;_&#245;N&#255; &#242;&#181;&#255;
&#218;(&#234;&#186;+&#229;O&#248;l/&#250;&#167;&#249;Z&#255; &#237;&#195;a&#213;;&#255; &#202;&#215;&#255; h &#170;&#232;&#175;.?&#225;&#176;&#191;&#234;&#255; &#229;k&#255; &#180;Q&#255;
.&#255; T&#239;&#255; +_&#253;&#162;?&amp;gt;&#171;&#162;&#190;T&#255; ?&#194;&#255; &#170;w&#255; .&#175;&#254;&#209;G&#252;6&#253;S&#191;&#252;&#173;&#246;S &#250;&#174;S&#249;S&#254; &#254;&#169;&#223;&#254;V&#191;&#251;E&#240;&#216;_&#245;N&#255; &#242;&#181;&#255;
&#218;(&#234;&#186;+&#229;O&#248;l/&#250;&#167;&#249;Z&#255; &#237;&#195;a&#213;;&#255; &#202;&#215;&#255; h &#170;&#232;&#175;.?&#225;&#176;&#191;&#234;&#255; &#229;k&#255; &#180;Q&#255;
.&#255; T&#239;&#255; +_&#253;&#162;?&amp;gt;&#171;&#162;&#190;T&#255; ?&#194;&#255; &#170;w&#255; .&#175;&#254;&#209;G&#252;6&#253;S&#191;&#252;&#173;&#246;S &#250;&#174;S&#249;S&#254; &#254;&#169;&#223;&#254;V&#191;&#251;E&#240;&#216;_&#245;N&#255; &#242;&#181;&#255;
&#218;(&#234;&#186;+&#229;O&#248;l/&#250;&#167;&#249;Z&#255; &#237;&#195;a&#213;;&#255; &#202;&#215;&#255; h &#170;&#232;&#175;.?&#225;&#176;&#191;&#234;&#255; &#229;k&#255; &#180;Q&#255;
.&#255; T&#239;&#255; +_&#253;&#162;?&amp;gt;&#171;&#162;&#190;T&#255; ?&#194;&#255; &#170;w&#255; .&#175;&#254;&#209;G&#252;6&#253;S&#191;&#252;&#173;&#246;S &#250;&#174;S&#249;S&#254; &#254;&#169;&#223;&#254;V&#191;&#251;E&#240;&#216;_&#245;N&#255; &#242;&#181;&#255;
&#218;(&#234;&#186;+&#229;O&#248;l/&#250;&#167;&#249;Z&#255; &#237;&#195;a&#213;;&#255; &#202;&#215;&#255; h &#170;&#232;&#175;.?&#225;&#176;&#191;&#234;&#255; &#229;k&#255; &#180;Q&#255;
.&#255; T&#239;&#255; +_&#253;&#162;?&amp;gt;&#171;&#162;&#190;T&#255; ?&#194;&#255; &#170;w&#255; .&#175;&#254;&#209;G&#252;6&#253;S&#191;&#252;&#173;&#246;S &#250;&#174;S&#249;S&#254; &#254;&#169;&#223;&#254;V&#191;&#251;E&#240;&#216;_&#245;N&#255; &#242;&#181;&#255;
&#218;(&#234;&#186;+&#229;O&#248;l/&#250;&#167;&#249;Z&#255; &#237;&#195;a&#213;;&#255; &#202;&#215;&#255; h &#170;&#232;&#175;.?&#225;&#176;&#191;&#234;&#255; &#229;k&#255; &#180;Q&#255;
.&#255; T&#239;&#255; +_&#253;&#162;?&amp;gt;&#171;&#162;&#190;T&#255; ?&#194;&#255; &#170;w&#255; .&#175;&#254;&#209;G&#252;6&#253;S&#191;&#252;&#173;&#246;S &#250;&#174;S&#249;S&#254; &#254;&#169;&#223;&#254;V&#191;&#251;E&#240;&#216;_&#245;N&#255; &#242;&#181;&#255;
&#218;(&#234;&#186;+&#229;O&#248;l/&#250;&#167;&#249;Z&#255; &#237;&#195;a&#213;;&#255; &#202;&#215;&#255; h &#170;&#232;&#175;.?&#225;&#176;&#191;&#234;&#255; &#229;k&#255; &#180;Q&#255;
.&#255; T&#239;&#255; +_&#253;&#162;?&amp;gt;&#171;&#162;&#190;T&#255; ?&#194;&#255; &#170;w&#255; .&#175;&#254;&#209;G&#252;6&#253;S&#191;&#252;&#173;&#246;S &#250;&#174;S&#249;S&#254; &#254;&#169;&#223;&#254;V&#191;&#251;E&#240;&#216;_&#245;N&#255; &#242;&#181;&#255;
&#218;(&#234;&#186;+&#229;O&#248;l/&#250;&#167;&#249;Z&#255; &#237;&#195;a&#213;;&#255; &#202;&#215;&#255; h &#170;&#232;&#175;.?&#225;&#176;&#191;&#234;&#255; &#229;k&#255; &#180;Q&#255;
.&#255; T&#239;&#255; +_&#253;&#162;?&amp;gt;&#171;&#162;&#190;T&#255; ?&#194;&#255; &#170;w&#255; .&#175;&#254;&#209;G&#252;6&#253;S&#191;&#252;&#173;&#246;S &#250;&#174;S&#249;S&#254; &#254;&#169;&#223;&#254;V&#191;&#251;E&#240;&#216;_&#245;N&#255; &#242;&#181;&#255;
&#218;(&#234;&#186;+&#229;O&#248;l/&#250;&#167;&#249;Z&#255; &#237;&#195;a&#213;;&#255; &#202;&#215;&#255; h &#170;&#232;&#175;.?&#225;&#176;&#191;&#234;&#255; &#229;k&#255; &#180;Q&#255;
.&#255; T&#239;&#255; +_&#253;&#162;?&amp;gt;&#171;&#162;&#190;T&#255; ?&#194;&#255; &#170;w&#255; .&#175;&#254;&#209;G&#252;6&#253;S&#191;&#252;&#173;&#246;S &#250;&#174;S&#249;S&#254; &#254;&#169;&#223;&#254;V&#191;&#251;E&#240;&#216;_&#245;N&#255; &#242;&#181;&#255;
&#218;(&#234;&#186;+&#229;O&#248;l/&#250;&#167;&#249;Z&#255; &#237;&#195;a&#213;;&#255; &#202;&#215;&#255; h &#170;&#232;&#175;.?&#225;&#176;&#191;&#234;&#255; &#229;k&#255; &#180;Q&#255;
.&#255; T&#239;&#255; +_&#253;&#162;?&amp;gt;&#171;&#162;&#190;T&#255; ?&#194;&#255; &#170;w&#255; .&#175;&#254;&#209;G&#252;6&#253;S&#191;&#252;&#173;&#246;S &#250;&#174;S&#249;S&#254; &#254;&#169;&#223;&#254;V&#191;&#251;E&#240;&#216;_&#245;N&#255; &#242;&#181;&#255;
&#218;(&#234;&#186;+&#229;O&#248;l/&#250;&#167;&#249;Z&#255; &#237;&#195;a&#213;;&#255; &#202;&#215;&#255; h &#170;&#232;&#175;.?&#225;&#176;&#191;&#234;&#255; &#229;k&#255; &#180;Q&#255;
.&#255; T&#239;&#255; +_&#253;&#162;?&amp;gt;&#171;&#162;&#190;T&#255; ?&#194;&#255; &#170;w&#255; .&#175;&#254;&#209;G&#252;6&#253;S&#191;&#252;&#173;&#246;S &#250;&#174;S&#249;S&#254; &#254;&#169;&#223;&#254;V&#191;&#251;E&#240;&#216;_&#245;N&#255; &#242;&#181;&#255;
&#218;(&#234;&#186;+&#229;O&#248;l/&#250;&#167;&#249;Z&#255; &#237;&#195;a&#213;;&#255; &#202;&#215;&#255; h &#170;&#232;&#175;.?&#225;&#176;&#191;&#234;&#255; &#229;k&#255; &#180;Q&#255;
.&#255; T&#239;&#255; +_&#253;&#162;?&amp;gt;&#171;&#162;&#190;T&#255; ?&#194;&#255; &#170;w&#255; .&#175;&#254;&#209;G&#252;6&#253;S&#191;&#252;&#173;&#246;S &#250;&#174;S&#249;S&#254; &#254;&#169;&#223;&#254;V&#191;&#251;E&#240;&#216;_&#245;N&#255; &#242;&#181;&#255;
&#218;(&#234;&#186;+&#229;O&#248;l/&#250;&#167;&#249;Z&#255; &#237;&#195;a&#213;;&#255; &#202;&#215;&#255; h &#170;&#232;&#175;.?&#225;&#176;&#191;&#234;&#255; &#229;k&#255; &#180;Q&#255;
.&#255; T&#239;&#255; +_&#253;&#162;?&amp;gt;&#171;&#162;&#190;T&#255; ?&#194;&#255; &#170;w&#255; .&#175;&#254;&#209;G&#252;6&#253;S&#191;&#252;&#173;&#246;S &#250;&#174;S&#249;S&#254; &#254;&#169;&#223;&#254;V&#191;&#251;E&#240;&#216;_&#245;N&#255; &#242;&#181;&#255;
&#218;(&#234;&#186;+&#229;O&#248;l/&#250;&#167;&#249;Z&#255; &#237;&#195;a&#213;;&#255; &#202;&#215;&#255; h &#170;&#232;&#175;.?&#225;&#176;&#191;&#234;&#255; &#229;k&#255; &#180;Q&#255;
.&#255; T&#239;&#255; +_&#253;&#162;?&amp;gt;&#171;&#162;&#190;T&#255; ?&#194;&#255; &#170;w&#255; .&#175;&#254;&#209;G&#252;6&#253;S&#191;&#252;&#173;&#246;S &#250;&#174;S&#249;S&#254; &#254;&#169;&#223;&#254;V&#191;&#251;E&#240;&#216;_&#245;N&#255; &#242;&#181;&#255;
&#218;(&#234;&#186;+&#229;O&#248;l/&#250;&#167;&#249;Z&#255; &#237;&#195;a&#213;;&#255; &#202;&#215;&#255; h &#170;&#232;&#175;.?&#225;&#176;&#191;&#234;&#255; &#229;k&#255; &#180;Q&#255;
.&#255; T&#239;&#255; +_&#253;&#162;?&amp;gt;&#171;&#162;&#190;T&#255; ?&#194;&#255; &#170;w&#255; .&#175;&#254;&#209;G&#252;6&#253;S&#191;&#252;&#173;&#246;S &#250;&#174;S&#249;S&#254; &#254;&#169;&#223;&#254;V&#191;&#251;E&#240;&#216;_&#245;N&#255; &#242;&#181;&#255;
&#218;(&#234;&#186;+&#229;O&#248;l/&#250;&#167;&#249;Z&#255; &#237;&#195;a&#213;;&#255; &#202;&#215;&#255; h &#170;&#232;&#175;.?&#225;&#176;&#191;&#234;&#255; &#229;k&#255; &#180;Q&#255;
.&#255; T&#239;&#255; +_&#253;&#162;?&amp;gt;&#171;&#162;&#190;T&#255; ?&#194;&#255; &#170;w&#255; .&#175;&#254;&#209;G&#252;6&#253;S&#191;&#252;&#173;&#246;S &#250;&#174;S&#249;S&#254; &#254;&#169;&#223;&#254;V&#191;&#251;E&#240;&#216;_&#245;N&#255; &#242;&#181;&#255;
&#218;(&#234;&#186;+&#229;O&#248;l/&#250;&#167;&#249;Z&#255; &#237;&#195;a&#213;;&#255; &#202;&#215;&#255; h &#170;&#232;&#175;.?&#225;&#176;&#191;&#234;&#255; &#229;k&#255; &#180;Q&#255;
.&#255; T&#239;&#255; +_&#253;&#162;?&amp;gt;&#171;&#162;&#190;T&#255; ?&#194;&#255; &#170;w&#255; .&#175;&#254;&#209;G&#252;6&#253;S&#191;&#252;&#173;&#246;S &#250;&#174;S&#249;S&#254; &#254;&#169;&#223;&#254;V&#191;&#251;E&#240;&#216;_&#245;N&#255; &#242;&#181;&#255;
&#218;(&#234;&#186;+&#229;O&#248;l/&#250;&#167;&#249;Z&#255; &#237;&#195;a&#213;;&#255; &#202;&#215;&#255; h &#170;&#232;&#175;.?&#225;&#176;&#191;&#234;&#255; &#229;k&#255; &#180;Q&#255;
.&#255; T&#239;&#255; +_&#253;&#162;?&amp;gt;&#171;&#162;&#190;T&#255; ?&#194;&#255; &#170;w&#255; .&#175;&#254;&#209;G&#252;6&#253;S&#191;&#252;&#173;&#246;S &#250;&#174;S&#249;S&#254; &#254;&#169;&#223;&#254;V&#191;&#251;E&#240;&#216;_&#245;N&#255; &#242;&#181;&#255;
&#218;(&#234;&#186;+&#229;O&#248;l/&#250;&#167;&#249;Z&#255; &#237;&#195;a&#213;;&#255; &#202;&#215;&#255; h &#170;&#232;&#175;.?&#225;&#176;&#191;&#234;&#255; &#229;k&#255; &#180;Q&#255;
.&#255; T&#239;&#255; +_&#253;&#162;?&amp;gt;&#171;&#162;&#190;T&#255; ?&#194;&#255; &#170;w&#255; .&#175;&#254;&#209;G&#252;6&#253;S&#191;&#252;&#173;&#246;S &#250;&#174;S&#249;S&#254; &#254;&#169;&#223;&#254;V&#191;&#251;E&#240;&#216;_&#245;N&#255; &#242;&#181;&#255;
&#218;(&#234;&#186;+&#229;O&#248;l/&#250;&#167;&#249;Z&#255; &#237;&#195;a&#213;;&#255; &#202;&#215;&#255; h &#170;&#232;&#175;.?&#225;&#176;&#191;&#234;&#255; &#229;k&#255; &#180;Q&#255;
.&#255; T&#239;&#255; +_&#253;&#162;?&amp;gt;&#171;&#162;&#190;T&#255; ?&#194;&#255; &#170;w&#255; .&#175;&#254;&#209;G&#252;6&#253;S&#191;&#252;&#173;&#246;S &#250;&#174;S&#249;S&#254; &#254;&#169;&#223;&#254;V&#191;&#251;E&#240;&#216;_&#245;N&#255; &#242;&#181;&#255;
&#218;(&#234;&#186;+&#229;O&#248;l/&#250;&#167;&#249;Z&#255; &#237;&#195;a&#213;;&#255; &#202;&#215;&#255; h &#170;&#232;&#175;.?&#225;&#176;&#191;&#234;&#255; &#229;k&#255; &#180;Q&#255;
.&#255; T&#239;&#255; +_&#253;&#162;?&amp;gt;&#171;&#162;&#190;T&#255; ?&#194;&#255; &#170;w&#255; .&#175;&#254;&#209;G&#252;6&#253;S&#191;&#252;&#173;&#246;S &#250;&#174;S&#249;S&#254; &#254;&#169;&#223;&#254;V&#191;&#251;E&#240;&#216;_&#245;N&#255; &#242;&#181;&#255;
&#218;(&#234;&#186;+&#229;O&#248;l/&#250;&#167;&#249;Z&#255; &#237;&#195;a&#213;;&#255; &#202;&#215;&#255; h &#170;&#232;&#175;.?&#225;&#176;&#191;&#234;&#255; &#229;k&#255; &#180;Q&#255;
.&#255; T&#239;&#255; +_&#253;&#162;?&amp;gt;&#171;&#162;&#190;T&#255; ?&#194;&#255; &#170;w&#255; .&#175;&#254;&#209;G&#252;6&#253;S&#191;&#252;&#173;&#246;S &#250;&#174;S&#249;S&#254; &#254;&#169;&#223;&#254;V&#191;&#251;E&#240;&#216;_&#245;N&#255; &#242;&#181;&#255;
&#218;(&#234;&#186;+&#229;O&#248;l/&#250;&#167;&#249;Z&#255; &#237;&#195;a&#213;;&#255; &#202;&#215;&#255; h &#170;&#232;&#175;.?&#225;&#176;&#191;&#234;&#255; &#229;k&#255; &#180;Q&#255;
.&#255; T&#239;&#255; +_&#253;&#162;?&amp;gt;&#171;&#162;&#190;T&#255; ?&#194;&#255; &#170;w&#255; .&#175;&#254;&#209;G&#252;6&#253;S&#191;&#252;&#173;&#246;S &#250;&#174;S&#249;S&#254; &#254;&#169;&#223;&#254;V&#191;&#251;E&#240;&#216;_&#245;N&#255; &#242;&#181;&#255;
&#218;(&#234;&#186;+&#229;O&#248;l/&#250;&#167;&#249;Z&#255; &#237;&#195;a&#213;;&#255; &#202;&#215;&#255; h &#170;&#232;&#175;.?&#225;&#176;&#191;&#234;&#255; &#229;k&#255; &#180;Q&#255;
.&#255; T&#239;&#255; +_&#253;&#162;?&amp;gt;&#171;&#162;&#190;T&#255; ?&#194;&#255; &#170;w&#255; .&#175;&#254;&#209;G&#252;6&#253;S&#191;&#252;&#173;&#246;S &#250;&#174;S&#249;S&#254; &#254;&#169;&#223;&#254;V&#191;&#251;E&#240;&#216;_&#245;N&#255; &#242;&#181;&#255;
&#218;(&#234;&#186;+&#229;O&#248;l/&#250;&#167;&#249;Z&#255; &#237;&#195;a&#213;;&#255; &#202;&#215;&#255; h &#254;
&#255; 2O&#253;&#191;&#255; &#237;&#181;&#229;?&#180;&#198;&#248;[&#216;Y&#241;N&#255; ce}&#163;&#254;_~&#209;&#230;&#249;&#190;_&#253;3]&#184;&#242;&#253;&#243;z&#216;&#162;??&#255;&#217;&lt;/graphic_object&gt;
    &lt;/graphics&gt;
&lt;/root&gt;</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200911/msg1000306536.html</link>
</item><item>
<title>Re: XML to TXT - 11/11/2009 9:48:00 AM</title>
<description><![CDATA[<pre>Agreed.

This seems to be calling for a tranform.

Here is my &quot;to text file&quot; hint.


&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
&lt;xsl:stylesheet version=&quot;1.0&quot; 
xmlns:xsl=&quot;http://www.w3.org/1999/XSL/Transform&quot;&gt;
  &lt;xsl:output method=&quot;text&quot; /&gt;


The last line is the one of importance.

See my other post for a transform example.





&quot;Pete Delgado&quot; &lt;Peter.Delgado@NoSpam.com&gt; wrote in message 
news:OMTIMWAWKHA.4688@TK2MSFTNGP06.phx.gbl...
&gt;
&gt; &quot;Martin Honnen&quot; &lt;mahotrash@yahoo.de&gt; wrote in message 
&gt; news:emzQ7MkTKHA.4408@TK2MSFTNGP06.phx.gbl...
&gt;&gt; Tom Woods wrote:
&gt;&gt;&gt; Sorry for being so vague.  What I would like to do is to read the 
&gt;&gt;&gt; XmlDocument line by line and add each line into a memo field.
&gt;&gt;&gt;
&gt;&gt;&gt; When I use the InnerXml, it's just one long string with no CR/LF.
&gt;&gt;&gt;
&gt;&gt;&gt; Can this be done?
&gt;&gt;
&gt;&gt; The XML APIs don't expose XML line by line, rather they expose nodes.
&gt;&gt; But you can of course use the normal file IO APIs to read line by line.
&gt;&gt;
&gt;&gt; And if InnerXml does not give you what you want then you might simply 
&gt;&gt; want to set PreserveWhitespace to true before you load your XML document:
&gt;&gt;
&gt;&gt;   XmlDocument doc = new XmlDocument();
&gt;&gt;   doc.PreserveWhitespace = true;
&gt;&gt;   doc.Load(&quot;file.xml&quot;);
&gt;&gt;   // now doc.OuterXml/InnerXml has any white space the original document 
&gt;&gt; contains
&gt;&gt;
&gt;
&gt; Wouldn't it be far better and simpler to use XSLT to transform the XML 
&gt; into the appropriate format?
&gt;
&gt; -Pete
&gt;
&gt;</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200911/msg1000306531.html</link>
</item><item>
<title>Re: XML to TXT - 11/11/2009 9:11:00 AM</title>
<description><![CDATA[<pre>I'm not sure if this is helpful.

But if you want to get the xml (mostly) the way it was........but have the 
ability to update a few things......this is a (not yet proven) idea:
Well, it works as I have it below, but I don't know if it meets your need.


The below example will &quot;copy&quot; the xml to new xml, with one slight override.
The original WhoAmI (value) of DefaultWhoAmI will be replaced with a new 
value of NOTDefaultWhoAmI.

Check the URL in the xsl comments for where I discovered this trick.

Save the xml as &quot;myxml.xml&quot; and the xsl as &quot;myxsl.xsl&quot;.
The create a vbs file called &quot;transform.vbs&quot;, and put the code I have below 
in it.
Run transform.vbs and you should get a file called newStuff.xml.




------START XML
&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; ?&gt;
&lt;configuration&gt;


  &lt;appSettings&gt;
    &lt;add key =&quot;WhoAmI&quot; value=&quot;DefaultWhoAmI&quot;/&gt;
    &lt;add key =&quot;ThisStays&quot; value=&quot;TheSame&quot;/&gt;
  &lt;/appSettings&gt;


 &lt;someOtherElement&gt;
  &lt;abc&gt;123&lt;/abc&gt;
  &lt;def&gt;234&lt;/def&gt;
  &lt;ghi&gt;345&lt;/ghi&gt;
 &lt;/someOtherElement&gt;

&lt;/configuration&gt;
----------------------END XML


--------START XSL

&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
&lt;xsl:stylesheet xmlns:xsl=&quot;http://www.w3.org/1999/XSL/Transform&quot; 
version=&quot;1.0&quot;&gt;

  &lt;!--http://adeneys.wordpress.com/2009/04/17/multi-environment-config/--&gt;

  &lt;xsl:output method=&quot;xml&quot; indent=&quot;yes&quot;/&gt;

  &lt;xsl:template 
match=&quot;/configuration/appSettings/add[@key='WhoAmI']/@value&quot;&gt;
    &lt;xsl:attribute name=&quot;value&quot;&gt;NOTDefaultWhoAmI&lt;/xsl:attribute&gt;
  &lt;/xsl:template&gt;



    &lt;!-- Default templates to match anything else --&gt;
    &lt;xsl:template match=&quot;@*&quot;&gt;
      &lt;xsl:copy/&gt;
    &lt;/xsl:template&gt;

    &lt;xsl:template match=&quot;node()&quot;&gt;
      &lt;xsl:copy&gt;
        &lt;xsl:apply-templates select=&quot;@*&quot;/&gt;
        &lt;xsl:apply-templates/&gt;
      &lt;/xsl:copy&gt;
    &lt;/xsl:template&gt;
  &lt;/xsl:stylesheet&gt;


--------END XSL



Start a vbs app to make the transformation
(call it transform.vbs or something)
-------------- START .VBS code

Option Explicit


Dim xmldoc 'As New MSXML2.DOMDocument40
set xmldoc = CREATEOBJECT(&quot;MSXML2.DOMDocument.4.0&quot;)
xmldoc.async = False
xmldoc.Load &quot;.\myxml.xml&quot;



Dim xsldoc  'As New MSXML2.DOMDocument40
set xsldoc = CREATEOBJECT(&quot;MSXML2.DOMDocument.4.0&quot;)
xsldoc.async = False
xsldoc.Load &quot;.\myxsl.xsl&quot;




dim result
result = xmldoc.transformNode(xsldoc)



'Dim XMLDoc
'Dim XSLDoc
'Set XMLDoc = WScript.CreateObject(&quot;MSXML.DOMDocument&quot;)
'XMLDoc.load WScript.Arguments(0)
'Set XSLDoc = WScript.CreateObject(&quot;MSXML.DOMDocument&quot;)
'XSLDoc.load WScript.Arguments(1)
Dim OutFile
Dim FSO
Set FSO = WScript.CreateObject(&quot;Scripting.FileSystemObject&quot;)
Set OutFile = FSO.CreateTextFile(&quot;.\newStuff.xml&quot;)
'OutFile.Write XMLDoc.transformNode(XSLDoc)
outfile.write result
OutFile.Close




&quot;Tom Woods&quot; &lt;twoods@gobaker.com&gt; wrote in message 
news:enyA5xQTKHA.764@TK2MSFTNGP02.phx.gbl...
&gt; Is there a simple way to take a Xml.XmlDocument and save it as a TXT file 
&gt; with formatting?
&gt;
&gt; Thanks,
&gt; Tom
&gt;
&gt;</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200911/msg1000306530.html</link>
</item><item>
<title>Re: XSL displaying unwanted channel information - 11/10/2009 8:10:00 PM</title>
<description><![CDATA[<pre>Lacy wrote:
&gt; I'm using XSL to scrape and display data from a google spreadsheet.
&gt; 
&gt; Working great except for one thing - it displays the channel info even
&gt; though I'm not calling that info anywhere?   (It displays:  atom:id,
&gt; lastBuildDate, category domain, title, link, managing Editor, and the
&gt; openSearch variables.  Basically - everything within the main channel
&gt; that has a value. )
&gt; 
&gt; It displays it unformatted - just a straight block of text with no
&gt; spaces.
&gt; 
&gt; Using this to process:
&gt; [code]
&gt;     // Load the XML source
&gt;     $xml = new DOMDocument;
&gt;     $xml-&gt;load('http://spreadsheets.google.com/feeds/list/
&gt; tqBgup5Bmbdgh-rgyxqh2Pw/od6/public/basic?alt=rss');
&gt;     $xsl = new DOMDocument;
&gt;     $xsl-&gt;load('calendarparse.xsl');
&gt;     // Configure the transformer
&gt;     $proc = new XSLTProcessor;
&gt;     $proc-&gt;importStyleSheet($xsl); // attach the xsl rules
&gt;     echo $proc-&gt;transformToXML($xml);
&gt; [/code]
&gt; 
&gt; Result File - http://studentorgs.vanderbilt.edu/vsg/atvandy/
&gt; Source XML - http://spreadsheets.google.com/feeds/list/tqBgup5Bmbdgh-rgyxqh2Pw/od6/public/basic?alt=rss
&gt; XSL - http://studentorgs.vanderbilt.edu/vsg/atvandy/calendarparse.xsl
&gt; 
&gt; Thoughts?  What am I missing?  I can't figure out why it's displaying
&gt; information I'm not calling.

Well you have nothing but two templates, one with match=&quot;/&quot;, one with 
match=&quot;item&quot;. How do expect the processing ends up with your 
match=&quot;item&quot; template? That is because of built-in templates that does
   &lt;xsl:apply-templates/&gt;
So that way your match=&quot;item&quot; template is applied but that way also 
other nodes are processed and the built-in templates for text nodes does 
&lt;xsl:value-of select=&quot;.&quot;/&gt; so that is why you see all those text values 
in your output.
As you don't want that you will either need to ensure that you process 
only 'item' elements by doing
  &lt;xsl:template match=&quot;/&quot;&gt;
    &lt;xsl:apply-templates select=&quot;rss/channel/item&quot;/&gt;
  &lt;xsl:template&gt;
or you will need to override the built-in template for text nodes by doing
   &lt;xsl:template match=&quot;text()&quot;/&gt;


-- 

	Martin Honnen --- MVP XML
	http://msmvps.com/blogs/martin_honnen/</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200911/msg1000306466.html</link>
</item><item>
<title>Re: XSL displaying unwanted channel information - 11/10/2009 11:18:00 AM</title>
<description><![CDATA[<pre>On Nov 10, 1:10=A0pm, Martin Honnen &lt;mahotr...@yahoo.de&gt; wrote:
&gt; Lacy wrote:
&gt; &gt; I'm using XSL to scrape and display data from a google spreadsheet.
&gt;
&gt; &gt; Working great except for one thing - it displays the channel info even
&gt; &gt; though I'm not calling that info anywhere? =A0 (It displays: =A0atom:id=
,
&gt; &gt; lastBuildDate, category domain, title, link, managing Editor, and the
&gt; &gt; openSearch variables. =A0Basically - everything within the main channel
&gt; &gt; that has a value. )
&gt;
&gt; &gt; It displays it unformatted - just a straight block of text with no
&gt; &gt; spaces.
&gt;
&gt; &gt; Using this to process:
&gt; &gt; [code]
&gt; &gt; =A0 =A0 // Load the XML source
&gt; &gt; =A0 =A0 $xml =3D new DOMDocument;
&gt; &gt; =A0 =A0 $xml-&gt;load('http://spreadsheets.google.com/feeds/list/
&gt; &gt; tqBgup5Bmbdgh-rgyxqh2Pw/od6/public/basic?alt=3Drss');
&gt; &gt; =A0 =A0 $xsl =3D new DOMDocument;
&gt; &gt; =A0 =A0 $xsl-&gt;load('calendarparse.xsl');
&gt; &gt; =A0 =A0 // Configure the transformer
&gt; &gt; =A0 =A0 $proc =3D new XSLTProcessor;
&gt; &gt; =A0 =A0 $proc-&gt;importStyleSheet($xsl); // attach the xsl rules
&gt; &gt; =A0 =A0 echo $proc-&gt;transformToXML($xml);
&gt; &gt; [/code]
&gt;
&gt; &gt; Result File -http://studentorgs.vanderbilt.edu/vsg/atvandy/
&gt; &gt; Source XML -http://spreadsheets.google.com/feeds/list/tqBgup5Bmbdgh-rgy=
xqh2Pw/od6...
&gt; &gt; XSL -http://studentorgs.vanderbilt.edu/vsg/atvandy/calendarparse.xsl
&gt;
&gt; &gt; Thoughts? =A0What am I missing? =A0I can't figure out why it's displayi=
ng
&gt; &gt; information I'm not calling.
&gt;
&gt; Well you have nothing but two templates, one with match=3D&quot;/&quot;, one with
&gt; match=3D&quot;item&quot;. How do expect the processing ends up with your
&gt; match=3D&quot;item&quot; template? That is because of built-in templates that does
&gt; =A0 =A0&lt;xsl:apply-templates/&gt;
&gt; So that way your match=3D&quot;item&quot; template is applied but that way also
&gt; other nodes are processed and the built-in templates for text nodes does
&gt; &lt;xsl:value-of select=3D&quot;.&quot;/&gt; so that is why you see all those text values
&gt; in your output.
&gt; As you don't want that you will either need to ensure that you process
&gt; only 'item' elements by doing
&gt; =A0 &lt;xsl:template match=3D&quot;/&quot;&gt;
&gt; =A0 =A0 &lt;xsl:apply-templates select=3D&quot;rss/channel/item&quot;/&gt;
&gt; =A0 &lt;xsl:template&gt;
&gt; or you will need to override the built-in template for text nodes by doin=
g
&gt; =A0 =A0&lt;xsl:template match=3D&quot;text()&quot;/&gt;
&gt;
&gt; --
&gt;
&gt; =A0 =A0 =A0 =A0 Martin Honnen --- MVP XML
&gt; =A0 =A0 =A0 =A0http://msmvps.com/blogs/martin_honnen/


Ahhh!!!  I had tried select=3D&quot;item&quot; -- but then nothing displayed.  I
guess I needed to go up to the top node!

Perfect :)   Thanks Martin!

~L</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200911/msg1000306467.html</link>
</item><item>
<title>XSL displaying unwanted channel information - 11/10/2009 10:58:00 AM</title>
<description><![CDATA[<pre>I'm using XSL to scrape and display data from a google spreadsheet.

Working great except for one thing - it displays the channel info even
though I'm not calling that info anywhere?   (It displays:  atom:id,
lastBuildDate, category domain, title, link, managing Editor, and the
openSearch variables.  Basically - everything within the main channel
that has a value. )

It displays it unformatted - just a straight block of text with no
spaces.

Using this to process:
[code]
    // Load the XML source
    $xml = new DOMDocument;
    $xml-&gt;load('http://spreadsheets.google.com/feeds/list/
tqBgup5Bmbdgh-rgyxqh2Pw/od6/public/basic?alt=rss');
    $xsl = new DOMDocument;
    $xsl-&gt;load('calendarparse.xsl');
    // Configure the transformer
    $proc = new XSLTProcessor;
    $proc-&gt;importStyleSheet($xsl); // attach the xsl rules
    echo $proc-&gt;transformToXML($xml);
[/code]

Result File - http://studentorgs.vanderbilt.edu/vsg/atvandy/
Source XML - http://spreadsheets.google.com/feeds/list/tqBgup5Bmbdgh-rgyxqh2Pw/od6/public/basic?alt=rss
XSL - http://studentorgs.vanderbilt.edu/vsg/atvandy/calendarparse.xsl

Thoughts?  What am I missing?  I can't figure out why it's displaying
information I'm not calling.</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200911/msg1000306473.html</link>
</item><item>
<title>Re: difference between two schema - 11/9/2009 12:50:00 PM</title>
<description><![CDATA[<pre>thierry wrote:
&gt; Hello,
&gt; 
&gt; I would like to understand the difference between FIRST
&gt; 
&gt; &lt;?xml version=&quot;1.0&quot; encoding=&quot;iso-8859-1&quot;?&gt;
&gt; &lt;xsd:schema xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot;
&gt;                        targetNamespace=&quot;http://domaine.tld&quot;
&gt;                        xmlns=&quot;http://domaine.tld&quot;&gt;
&gt; 
&gt;        &lt;xsd:element name=&quot;serveur&quot; type=&quot;xsd:string&quot; /&gt;
&gt;        &lt;xsd:element name=&quot;definition&quot;&gt;
&gt;                &lt;xsd:complexType&gt;
&gt;                        &lt;xsd:all&gt;
&gt;                                &lt;xsd:element ref=&quot;serveur&quot; minOccurs
&gt; =&quot;1&quot; maxOccurs =&quot;1&quot; /&gt;
&gt;                        &lt;/xsd:all&gt;
&gt;                &lt;/xsd:complexType&gt;
&gt;        &lt;/xsd:element&gt;
&gt; &lt;/xsd:schema&gt;
&gt; 
&gt; which validate
&gt; 
&gt; &lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
&gt; &lt;definition xmlns=&quot;http://domaine.tld&quot;&gt;
&gt;  &lt;serveur&gt;serveur1&lt;/serveur&gt;
&gt; &lt;/definition&gt;
&gt; 
&gt; AND SECOND
&gt; 
&gt; &lt;?xml version=&quot;1.0&quot; encoding=&quot;iso-8859-1&quot;?&gt;
&gt; &lt;xsd:schema xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot;
&gt;                        targetNamespace=&quot;http://domaine.tld&quot;
&gt;                        xmlns=&quot;http://domaine.tld&quot;&gt;
&gt; 
&gt;        &lt;xsd:element name=&quot;definition&quot;&gt;
&gt;                &lt;xsd:complexType&gt;
&gt;                        &lt;xsd:all&gt;
&gt;                                &lt;xsd:element name=&quot;serveur&quot; minOccurs
&gt; =&quot;1&quot; maxOccurs =&quot;1&quot; /&gt;
&gt;                        &lt;/xsd:all&gt;
&gt;                &lt;/xsd:complexType&gt;
&gt;        &lt;/xsd:element&gt;
&gt; &lt;/xsd:schema&gt;
&gt; 
&gt; which validate
&gt; 
&gt; &lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
&gt; &lt;definition xmlns=&quot;http://domaine.tld&quot;&gt;
&gt;  &lt;serveur xmlns=&quot;&quot;&gt;anyType&lt;/serveur&gt;
&gt; &lt;/definition&gt;
&gt; 
&gt; The difference is the xmlns attribute in the serveur tag of the second
&gt; xml file.

The xsd:schema element takes an attribute
   elementFormDefault
which can take the value 'unqualified' or 'qualified'. See 
http://www.w3.org/TR/xmlschema-0/#QualLocals.

If you don't specify the attribute, as it is the case in your schemas, 
it takes on the value 'unqualified' meaning any local/inline definitions 
define elements in no namespace. That is why you need to put the 
xmlns=&quot;&quot; on your &quot;serveur&quot; element. If you don't want to do that but 
rather define that elements in the targetNamespace of the schema you can use

&lt;xsd:schema xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot;
                        targetNamespace=&quot;http://domaine.tld&quot;
                        xmlns=&quot;http://domaine.tld&quot;
                        elementFormDefault=&quot;qualified&quot;&gt;

        &lt;xsd:element name=&quot;definition&quot;&gt;
                &lt;xsd:complexType&gt;
                        &lt;xsd:all&gt;
                                &lt;xsd:element name=&quot;serveur&quot; minOccurs
=&quot;1&quot; maxOccurs =&quot;1&quot; /&gt;
                        &lt;/xsd:all&gt;
                &lt;/xsd:complexType&gt;
        &lt;/xsd:element&gt;
&lt;/xsd:schema&gt;


-- 

	Martin Honnen --- MVP XML
	http://msmvps.com/blogs/martin_honnen/</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200911/msg1000306364.html</link>
</item><item>
<title>Re: Office Content Control Schema Violations - 11/9/2009 8:16:00 AM</title>
<description><![CDATA[<pre>The links to the images appear broken.  Please see:

http://gregmaxey.mvps.org/images/Schema_violations.png

http://gregmaxey.mvps.org/images/No_schema_violations.png

http://gregmaxey.mvps.org/images/Problem_validation.png

Sorry.


Greg Maxey wrote:
&gt; Hi,
&gt;
&gt; Taking a shot in the dark here in hopes someone may have a solution.
&gt;
&gt; I attempting to validate the data entered in Microsoft Word Content
&gt; Controls (CC)  using an attached schema.  I can map a CC to a
&gt; CustomXMLPart, attach a schema and detect violations.  CC schema
&gt; violations are flagged in the document with a red dashed box outline.
&gt;
&gt; Does anyone know how to count those boxes programmatically or
&gt; otherwise determine if one or more CC schema violations exist in a
&gt; document?
&gt; My real objective is to create functional, robust CC validation
&gt; process. The schema validation method works great, but it has no
&gt; teeth so to speak. All it does
&gt; is flag the violations.  If I could somehow count those violations
&gt; then I could prevent a user from doing things like save, print, etc
&gt; until valid entries are present.
&gt;
&gt; There is a property:
&gt;
&gt; ActiveDocument.XMLSchemaViolations that I could use for this purpose.
&gt; For example, I could prevent saving the document using:
&gt;
&gt; Sub FileSave()
&gt; If ActiveDocument.XMLSchemaViolations.Count &gt; 0 Then
&gt;  MsgBox &quot;Please correct errors before attempting to save or print this
&gt; document.&quot;
&gt;  Exit Sub
&gt; Else
&gt;  ActiveDocument.Save
&gt; End If
&gt; End Sub
&gt;
&gt; This counts document schema violation (i.e., XML tags applied
&gt; directly to plain text in the document), but this doesn't detect
&gt; violations in Content Controls.
&gt;
&gt; I have also tried applying the XML tags directly to the CC range.  But
&gt; again, the violations are not detected. I don't know that much about
&gt; XML so I could be applying the tags incorrectly.
&gt;
&gt; I have posted some pictures on my website to illustrate the problem.
&gt;
&gt;
&gt; http://gregmaxey.mvps.org/images/Schema violations.png
&gt;
&gt;
&gt;
&gt; Sub CountViolaion()
&gt; MsgBox ActiveDocument.XMLSchemaViolations.Count
&gt; End Sub
&gt;
&gt;
&gt; Returns 1. There are clearly 2 violations present.
&gt;
&gt;
&gt;
&gt; http://gregmaxey.mvps.org/images/No schema violations.png
&gt;
&gt;
&gt;
&gt; Sub CountViolaion()
&gt; MsgBox ActiveDocument.XMLSchemaViolations.Count
&gt; End Sub
&gt;
&gt;
&gt;
&gt;
&gt; Returns 0. Actual conditions.
&gt;
&gt;
&gt;
&gt; http://gregmaxey.mvps.org/images/Problem validation.png
&gt;
&gt;
&gt; Sub CountViolaion()
&gt; MsgBox ActiveDocument.XMLSchemaViolations.Count
&gt; End Sub
&gt;
&gt;
&gt;
&gt;
&gt; Returns 0. Now it doesn't even detect the direct XML tags.
&gt;
&gt;
&gt;
&gt; If I could somehow detect programmatically the schema violation shown
&gt; in the last illustration then I could add some teeth to my validation
&gt; process.
&gt;
&gt;
&gt; Thanks for your interest and replies.

-- 
Greg Maxey

See my web site http://gregmaxey.mvps.org
for an eclectic collection of Word Tips.

Arrogance is a weed that grows mostly on a dunghill (Arabic proverb)</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200911/msg1000306371.html</link>
</item><item>
<title>Office Content Control Schema Violations - 11/9/2009 7:59:00 AM</title>
<description><![CDATA[<pre>Hi,

Taking a shot in the dark here in hopes someone may have a solution.

I attempting to validate the data entered in Microsoft Word Content Controls 
(CC)  using an attached schema.  I can map a CC to a CustomXMLPart, attach a 
schema and detect violations.  CC schema violations are flagged in the 
document with a red dashed box outline.

Does anyone know how to count those boxes programmatically or otherwise 
determine if one or more CC schema violations exist in a document?

My real objective is to create functional, robust CC validation process. 
The schema validation method works great, but it has no teeth so to speak. 
All it does
is flag the violations.  If I could somehow count those violations then I 
could prevent a user from doing things like save, print, etc until valid 
entries are present.

There is a property:

ActiveDocument.XMLSchemaViolations that I could use for this purpose. For 
example, I could prevent saving the document using:

Sub FileSave()
If ActiveDocument.XMLSchemaViolations.Count &gt; 0 Then
  MsgBox &quot;Please correct errors before attempting to save or print this 
document.&quot;
  Exit Sub
Else
  ActiveDocument.Save
End If
End Sub

This counts document schema violation (i.e., XML tags applied directly to 
plain text in the document), but this doesn't detect violations in Content 
Controls.

I have also tried applying the XML tags directly to the CC range.  But 
again, the violations are not detected. I don't know that much about XML so 
I could be applying the tags incorrectly.

I have posted some pictures on my website to illustrate the problem.


http://gregmaxey.mvps.org/images/Schema violations.png



Sub CountViolaion()
MsgBox ActiveDocument.XMLSchemaViolations.Count
End Sub


Returns 1. There are clearly 2 violations present.



http://gregmaxey.mvps.org/images/No schema violations.png



Sub CountViolaion()
MsgBox ActiveDocument.XMLSchemaViolations.Count
End Sub




Returns 0. Actual conditions.



http://gregmaxey.mvps.org/images/Problem validation.png


Sub CountViolaion()
MsgBox ActiveDocument.XMLSchemaViolations.Count
End Sub




Returns 0. Now it doesn't even detect the direct XML tags.



If I could somehow detect programmatically the schema violation shown in the 
last illustration then I could add some teeth to my validation process.



Thanks for your interest and replies.








-- 
Greg Maxey

See my web site http://gregmaxey.mvps.org
for an eclectic collection of Word Tips.

Arrogance is a weed that grows mostly on a dunghill (Arabic proverb)</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200911/msg1000306370.html</link>
</item><item>
<title>difference between two schema - 11/8/2009 12:55:00 PM</title>
<description><![CDATA[<pre>Hello,

I would like to understand the difference between FIRST

&lt;?xml version=&quot;1.0&quot; encoding=&quot;iso-8859-1&quot;?&gt;
&lt;xsd:schema xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot;
                       targetNamespace=&quot;http://domaine.tld&quot;
                       xmlns=&quot;http://domaine.tld&quot;&gt;

       &lt;xsd:element name=&quot;serveur&quot; type=&quot;xsd:string&quot; /&gt;
       &lt;xsd:element name=&quot;definition&quot;&gt;
               &lt;xsd:complexType&gt;
                       &lt;xsd:all&gt;
                               &lt;xsd:element ref=&quot;serveur&quot; minOccurs
=&quot;1&quot; maxOccurs =&quot;1&quot; /&gt;
                       &lt;/xsd:all&gt;
               &lt;/xsd:complexType&gt;
       &lt;/xsd:element&gt;
&lt;/xsd:schema&gt;

which validate

&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
&lt;definition xmlns=&quot;http://domaine.tld&quot;&gt;
 &lt;serveur&gt;serveur1&lt;/serveur&gt;
&lt;/definition&gt;

AND SECOND

&lt;?xml version=&quot;1.0&quot; encoding=&quot;iso-8859-1&quot;?&gt;
&lt;xsd:schema xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot;
                       targetNamespace=&quot;http://domaine.tld&quot;
                       xmlns=&quot;http://domaine.tld&quot;&gt;

       &lt;xsd:element name=&quot;definition&quot;&gt;
               &lt;xsd:complexType&gt;
                       &lt;xsd:all&gt;
                               &lt;xsd:element name=&quot;serveur&quot; minOccurs
=&quot;1&quot; maxOccurs =&quot;1&quot; /&gt;
                       &lt;/xsd:all&gt;
               &lt;/xsd:complexType&gt;
       &lt;/xsd:element&gt;
&lt;/xsd:schema&gt;

which validate

&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
&lt;definition xmlns=&quot;http://domaine.tld&quot;&gt;
 &lt;serveur xmlns=&quot;&quot;&gt;anyType&lt;/serveur&gt;
&lt;/definition&gt;

The difference is the xmlns attribute in the serveur tag of the second
xml file.

thank you in advance

thierry</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200911/msg1000306315.html</link>
</item><item>
<title>Re: Staging Website - 11/7/2009 4:55:00 PM</title>
<description><![CDATA[<pre>On Wed, 4 Nov 2009 15:26:06 -0800, Jan &lt;Jan@discussions.microsoft.com&gt;
wrote:

&gt;I work for a small company who are currently developing a new website.  I 
&gt;have been uploading properties (text, jpeg images) to the testing site 
&gt;thinking it was the site that would go live.  I have uploaded 120 properties 
&gt;to date.  I have now been told that the developers want to delete all the 
&gt;files I have uploaded on the testing site and will have to upload the same 
&gt;data to the the live site.  I am sure they should be able to copy the files 
&gt;over from the staging (test) site to the new (live) site.  Can anybody give 
&gt;me some advice please?  Thank you.


This is am XML newsgroup. Probably the wrong place to be asking about
internal development lifecycle/release processes I'd guess ;-)

Cheers - Neil
------------------------------------------------
Digital Media MVP : 2004-2009
http://mvp.support.microsoft.com/mvpfaqs</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200911/msg1000306232.html</link>
</item><item>
<title>Re: How to load xml into an XDocument without indentation - 11/7/2009 12:11:00 PM</title>
<description><![CDATA[<pre>Rahul Aggarwal wrote:

&gt; I am trying to load xml into XDocument using XDocument.Load(filename). 
&gt; The cml in the file is not indented but when the xml gets loaded into 
&gt; the XDocument, it gets indented. The content I am loading is mixed 
&gt; content which causes issues for me. I have looked a lot but have not 
&gt; been able to figure out the answer.
&gt;  
&gt; *XDocument.Load(filename)  is indenting the XML that is being loaded*

Both the Load method and the Save method have options to control 
indendation.

You probably want to use
   XDocument doc = XDocument.Load(filename, LoadOptions.PreserveWhitespace);
and then
   doc.Save(filename, SaveOptions.DisableFormatting);

See http://msdn.microsoft.com/en-us/library/bb387014.aspx and 
http://msdn.microsoft.com/en-us/library/bb387103.aspx

-- 

	Martin Honnen --- MVP XML
	http://msmvps.com/blogs/martin_honnen/</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200911/msg1000306216.html</link>
</item><item>
<title>How to load xml into an XDocument without indentation - 11/6/2009 4:55:00 PM</title>
<description><![CDATA[<pre>This is a multi-part message in MIME format.

------=_NextPart_000_0016_01CA5F01.E0933430
Content-Type: text/plain;
	charset=&quot;iso-8859-1&quot;
Content-Transfer-Encoding: quoted-printable

Hi,

I am trying to load xml into XDocument using XDocument.Load(filename). =
The cml in the file is not indented but when the xml gets loaded into =
the XDocument, it gets indented. The content I am loading is mixed =
content which causes issues for me. I have looked a lot but have not =
been able to figure out the answer.=20

XDocument.Load(filename)  is indenting the XML that is being loaded

Thanks
Rahul
------=_NextPart_000_0016_01CA5F01.E0933430
Content-Type: text/html;
	charset=&quot;iso-8859-1&quot;
Content-Transfer-Encoding: quoted-printable

&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0 Transitional//EN&quot;&gt;
&lt;HTML&gt;&lt;HEAD&gt;
&lt;META http-equiv=3DContent-Type content=3D&quot;text/html; =
charset=3Diso-8859-1&quot;&gt;
&lt;META content=3D&quot;MSHTML 6.00.6000.16915&quot; name=3DGENERATOR&gt;
&lt;STYLE&gt;&lt;/STYLE&gt;
&lt;/HEAD&gt;
&lt;BODY&gt;
&lt;DIV&gt;&lt;FONT face=3DArial size=3D2&gt;Hi,&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=3DArial size=3D2&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=3DArial size=3D2&gt;I am trying to load xml into XDocument =
using=20
XDocument.Load(filename). The cml in the file is not indented but when =
the xml=20
gets loaded into the XDocument, it gets indented. The content I am =
loading is=20
mixed content which causes issues for me. I have looked a lot but have =
not been=20
able to figure out the answer. &lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=3DArial size=3D2&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=3DArial size=3D2&gt;&lt;STRONG&gt;XDocument.Load(filename)&amp;nbsp; =
is indenting=20
the XML that is being loaded&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=3DArial size=3D2&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=3DArial size=3D2&gt;Thanks&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=3DArial size=3D2&gt;Rahul&lt;/FONT&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;

------=_NextPart_000_0016_01CA5F01.E0933430--</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200911/msg1000306174.html</link>
</item><item>
<title>Re: Fatal XML Parse Error: Invalid character (Unicode: 0x1D) - 11/6/2009 4:49:00 PM</title>
<description><![CDATA[<pre>Ismo Salonen wrote:
&gt; JR wrote:
&gt;&gt; I apologize up front for not being much of an XML guy.  We are trying 
&gt;&gt; to use a canned solution to send barcode strings via XML.  The canned 
&gt;&gt; solution works fine.  The one issue we are having is that the barcodes 
&gt;&gt; are GS1 compliant meaning we have ASCII character 29 (0x1D) embedded 
&gt;&gt; in our barcodes.  We want these strings to contain the character, but 
&gt;&gt; the parser just doesn't like them.
&gt;&gt;
&gt;&gt; Our heading is as follows:
&gt;&gt; &lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; ?&gt;
&gt;&gt; Anyone know of a means of passing such characters in an XML string?
&gt;&gt;
&gt; 
&gt; Could you use [CDATA] for those parts which use special reserved chars ?

A control characterlike 0x1D is not a special reserved character, it is 
not an allowed character. CDATA sections help to make your data more 
readable as you can use
   &lt;foo&gt;&lt;![CDATA[a &lt; b &amp;&amp; b &lt; c]]&gt;&lt;/foo&gt;
instead of
   &lt;foo&gt;a &amp;lt; b &amp;amp;&amp;amp; b &amp;lt; c&lt;/foo&gt;
but they don't help to put in characters that are not allowed in XML.


-- 

	Martin Honnen --- MVP XML
	http://msmvps.com/blogs/martin_honnen/</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200911/msg1000306156.html</link>
</item><item>
<title>Re: Fatal XML Parse Error: Invalid character (Unicode: 0x1D) - 11/6/2009 2:34:00 PM</title>
<description><![CDATA[<pre>JR wrote:
&gt; I apologize up front for not being much of an XML guy.  We are trying to use 
&gt; a canned solution to send barcode strings via XML.  The canned solution works 
&gt; fine.  The one issue we are having is that the barcodes are GS1 compliant 
&gt; meaning we have ASCII character 29 (0x1D) embedded in our barcodes.  We want 
&gt; these strings to contain the character, but the parser just doesn't like them.
&gt; 
&gt; Our heading is as follows:
&gt; &lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; ?&gt; 
&gt; 
&gt; Anyone know of a means of passing such characters in an XML string?
&gt; 

Could you use [CDATA] for those parts which use special reserved chars ?

ismo</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200911/msg1000306144.html</link>
</item><item>
<title>Re: Fatal XML Parse Error: Invalid character (Unicode: 0x1D) - 11/6/2009 12:00:00 PM</title>
<description><![CDATA[<pre>JR wrote:
&gt; I apologize up front for not being much of an XML guy.  We are trying to use 
&gt; a canned solution to send barcode strings via XML.  The canned solution works 
&gt; fine.  The one issue we are having is that the barcodes are GS1 compliant 
&gt; meaning we have ASCII character 29 (0x1D) embedded in our barcodes.  We want 
&gt; these strings to contain the character, but the parser just doesn't like them.
&gt; 
&gt; Our heading is as follows:
&gt; &lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; ?&gt; 
&gt; 
&gt; Anyone know of a means of passing such characters in an XML string?

XML 1.0 does not allow that character.
I think XML 1.1 allows it if escaped with a character reference
  (e.g. &amp; # x 1 D;, without the spaces). However Microsoft does not have 
parsers that support XML 1.1.

With the Microsoft .NET framework 2.0 or later you should also be able 
to use version=&quot;1.0&quot;, escape the character as shown above and then parse 
it with an XmlReader with XmlReaderSettings where CheckCharacters is set 
to false:

             XmlReaderSettings xrs = new XmlReaderSettings();
             xrs.CheckCharacters = false;

             using (XmlReader xr = XmlReader.Create(&quot;input.xml&quot;, xrs))
             {
                ...
             }


The proper way with XML 1.0 however would be to base64 encode such 
characters, that way you would be able to pass the file around as XML 
1.0 and any XML parser can deal with it.

-- 

	Martin Honnen --- MVP XML
	http://msmvps.com/blogs/martin_honnen/</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200911/msg1000306138.html</link>
</item><item>
<title>PERTMASTER - 11/5/2009 9:06:00 PM</title>
<description><![CDATA[<pre>http://rapidshare.com/files/176295854/Primavera.Pertmaster.Project.Risk.v8.5.0030-BEAN.rar



Bishan parshotam wrote:

hi - I need Pertmaster...how do I download and where?
09-Jul-07

hi - I need Pertmaster...how do I download and where

*** Sent via Developersdex http://www.developersdex.com ***

Previous Posts In This Thread:

On Monday, July 09, 2007 7:35 AM
Bishan parshotam wrote:

hi - I need Pertmaster...how do I download and where?
hi - I need Pertmaster...how do I download and where

*** Sent via Developersdex http://www.developersdex.com ***

On Friday, November 06, 2009 12:03 AM
jim duville wrote:

PERTMASTER
http://rapidshare.com/files/176295854/Primavera.Pertmaster.Project.Risk.v8.5.0030-BEAN.rar

EggHeadCafe - Software Developer Portal of Choice 
Book Review: C# 3.0 Cookbook [O'Reilly]
http://www.eggheadcafe.com/tutorials/aspnet/59386eb3-3049-46a7-8f07-63fe760096a7/book-review-c-30-cookb.aspx</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200911/msg1000306124.html</link>
</item><item>
<title>PERTMASTER - 11/5/2009 9:04:00 PM</title>
<description><![CDATA[<pre>http://rapidshare.com/files/176295854/Primavera.Pertmaster.Project.Risk.v8.5.0030-BEAN.rar



Bishan parshotam wrote:

hi - I need Pertmaster...how do I download and where?
09-Jul-07

hi - I need Pertmaster...how do I download and where

*** Sent via Developersdex http://www.developersdex.com ***

Previous Posts In This Thread:

On Monday, July 09, 2007 7:35 AM
Bishan parshotam wrote:

hi - I need Pertmaster...how do I download and where?
hi - I need Pertmaster...how do I download and where

*** Sent via Developersdex http://www.developersdex.com ***

EggHeadCafe - Software Developer Portal of Choice 
Database Normalization For Developers
http://www.eggheadcafe.com/tutorials/aspnet/0107750d-ed18-46b7-a695-1283294e3e1c/database-normalization-fo.aspx</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200911/msg1000306123.html</link>
</item><item>
<title>Fatal XML Parse Error: Invalid character (Unicode: 0x1D) - 11/5/2009 2:43:00 PM</title>
<description><![CDATA[<pre>I apologize up front for not being much of an XML guy.  We are trying to use 
a canned solution to send barcode strings via XML.  The canned solution works 
fine.  The one issue we are having is that the barcodes are GS1 compliant 
meaning we have ASCII character 29 (0x1D) embedded in our barcodes.  We want 
these strings to contain the character, but the parser just doesn't like them.

Our heading is as follows:
&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; ?&gt; 

Anyone know of a means of passing such characters in an XML string?</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200911/msg1000306107.html</link>
</item><item>
<title>Staging Website - 11/4/2009 3:26:00 PM</title>
<description><![CDATA[<pre>I work for a small company who are currently developing a new website.  I 
have been uploading properties (text, jpeg images) to the testing site 
thinking it was the site that would go live.  I have uploaded 120 properties 
to date.  I have now been told that the developers want to delete all the 
files I have uploaded on the testing site and will have to upload the same 
data to the the live site.  I am sure they should be able to copy the files 
over from the staging (test) site to the new (live) site.  Can anybody give 
me some advice please?  Thank you.</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200911/msg1000306046.html</link>
</item><item>
<title>Re: MSXML Document Load does not return - 11/3/2009 8:13:00 PM</title>
<description><![CDATA[<pre>Adam Becker wrote:
&gt; My application runs as a service using MSXML3.  Typically, it runs
&gt; without any problems, however I occasionally see the call below to
&gt; load hang and never return:

There is an MSDN forum for MSXML
http://social.msdn.microsoft.com/Forums/en-US/msxml/threads/
where you are more likely to get a qualified answer than here as some 
Microsoft employees participate in the forum but not in this group.


-- 

	Martin Honnen --- MVP XML
	http://msmvps.com/blogs/martin_honnen/</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200911/msg1000305957.html</link>
</item><item>
<title>Re: MSXML Document Load does not return - 11/3/2009 12:35:00 PM</title>
<description><![CDATA[<pre>http://social.msdn.microsoft.com/Forums/en-US/msxml/thread/85b0947c-b2da-4d90-944f-51acc0e9538a</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200911/msg1000305961.html</link>
</item><item>
<title>MSXML Document Load does not return - 11/3/2009 10:27:00 AM</title>
<description><![CDATA[<pre>My application runs as a service using MSXML3.  Typically, it runs
without any problems, however I occasionally see the call below to
load hang and never return:

CComPtr&lt; IXMLDOMDocument&gt; pTempDoc;
hr =3D pTempDoc.CoCreateInstance(__uuidof(FreeThreadedDOMDocument));
=85
hr =3D pTempDoc-&gt;load(varFilePath, &amp;bLoadResult);

The file path is to a URL that is hosted on the local machine.  If I
log on to the machine with the same user that the service is running
as I can access the URL just fine via IE.  SSL is not in the picture.
Nothing appears to have any locks on the file.  Here is a stack trace
of the thread that is hung by this call (from a mini dump:)

00 061edca4 7739bbd1 ntdll!KiFastSystemCallRet
01 061edd00 7739ce36 user32!MsgWaitForMultipleObjectsEx+0xd7
02 061edd1c 6f376d93 user32!MsgWaitForMultipleObjects+0x1f
03 061edd6c 6f376df5 urlmon!FindMimeFromData+0x561
04 061edda8 6f35aeeb urlmon!FindMimeFromData+0x5c3
05 061ede2c 6f35ab49 urlmon!CreateURLMonikerEx2+0xc53
06 061ede70 6f35af82 urlmon!CreateURLMonikerEx2+0x8b1
07 061ede94 72e73718 urlmon!CreateURLMonikerEx2+0xcea
08 061edee0 72e72bdd msxml3!DllCanUnloadNow+0x9c7d
09 061edefc 72e72b26 msxml3!DllCanUnloadNow+0x9142
0a 061edf30 72e729d9 msxml3!DllCanUnloadNow+0x908b
0b 061edf5c 72e6295c msxml3!DllCanUnloadNow+0x8f3e
0c 061edfe0 72e73259 msxml3!DllGetClassObject+0xa2f3
0d 061edffc 72e73141 msxml3!DllCanUnloadNow+0x97be
0e 061ee07c 01a30740 msxml3!DllCanUnloadNow+0x96a6

I have found that if I delete the local user the service runs as and
re-create it, then the problem will go away, however, I=92m not too fond
of this as a solution.  Does anyone know what could cause this or what
I could do to better debug this issue?  I should probably add that
this is not something that I can reproduce at will but I do have a
memory dump of a process that is in this state.

Thanks for any help.</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200911/msg1000305949.html</link>
</item><item>
<title>Re: q) XML Schema and valid XML documents - 11/2/2009 9:04:00 PM</title>
<description><![CDATA[<pre>Andy Dingley wrote:
&gt; On 30 Oct, 17:49, Generic Usenet Account &lt;use...@sta.samsung.com&gt;
&gt; wrote:
&gt;&gt; Wikipedia provides the following definition for valid XML document
&gt;&gt; (http://en.wikipedia.org/wiki/XML):
&gt; 
&gt; I'm normally fairly pro-Wikipedia, but many of the software articles
&gt; are poor, and certainly the XML stuff.
&gt; 
&gt; There's very little need for WP content on technical issues like this,
&gt; as it's well described elsewhere. This also discourages (or fails to
&gt; encourage) the competent WP editors to do anything about the XML
&gt; content. So read those sources, not WP.

Oh dear. It has deteriorated, hasn't it? It used to be much better than 
that. When I have more time...

///Peter</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200911/msg1000305868.html</link>
</item><item>
<title>Re: q) XML Schema and valid XML documents - 11/2/2009 4:09:00 AM</title>
<description><![CDATA[<pre>On 30 Oct, 17:49, Generic Usenet Account &lt;use...@sta.samsung.com&gt;
wrote:
&gt; Wikipedia provides the following definition for valid XML document
&gt; (http://en.wikipedia.org/wiki/XML):

I'm normally fairly pro-Wikipedia, but many of the software articles
are poor, and certainly the XML stuff.

There's very little need for WP content on technical issues like this,
as it's well described elsewhere. This also discourages (or fails to
encourage) the competent WP editors to do anything about the XML
content. So read those sources, not WP.</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200911/msg1000305832.html</link>
</item><item>
<title>Re: q) XML Schema and valid XML documents - 10/30/2009 6:14:00 PM</title>
<description><![CDATA[<pre>In article &lt;cfa21e4e-a46b-4f13-91af-3ab1af2d767b@15g2000yqy.googlegroups.com&gt;,
Generic Usenet Account  &lt;usenet@sta.samsung.com&gt; wrote:

&gt;   it contains a reference to a Document Type Definition (DTD),
&gt;   and that its elements and attributes are declared in that DTD
&gt;   and follow the grammatical rules for them that the DTD
&gt;   specifies.

&gt;There is no reference to XML Schema in the above defintion.

Without additional context, &quot;valid&quot; means &quot;valid according to its
DTD&quot;, and that's how it's defined in the XML spec.  In the context of
XML Schemas, it can of course mean &quot;valid according to a schema&quot;.  If
you want to be less ambiguous, use the term &quot;schema valid&quot; or (since
there are other schema languages) &quot;XML Schema valid&quot;.

-- Richard
-- 
Please remember to mention me / in tapes you leave behind.</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200910/msg1000305657.html</link>
</item><item>
<title>Error from VBA call to WEb service via webservicereferences ver 2.0 - 10/30/2009 5:59:00 PM</title>
<description><![CDATA[<pre>I am getting this error in my running:

'DSHS.SNF.Model.Message.UserMessageFactory' threw an exception. ---&gt;
Application.Messages.File doesn't exist in the Application Settings.

Suggestions?

Bpb</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200910/msg1000305674.html</link>
</item><item>
<title>q) XML Schema and valid XML documents - 10/30/2009 10:50:00 AM</title>
<description><![CDATA[<pre>Wikipedia provides the following definition for valid XML document
(http://en.wikipedia.org/wiki/XML):

   it contains a reference to a Document Type Definition (DTD),
   and that its elements and attributes are declared in that DTD
   and follow the grammatical rules for them that the DTD
   specifies.


There is no reference to XML Schema in the above defintion.  I am
presuming that this is a dated definition for valid XML document and
that an XML document that has an XML Schema associated with it is also
a valid XML document.

Kindly confirm.

Thanks,
Ramesh</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200910/msg1000305652.html</link>
</item><item>
<title>Re: XML to TXT - 10/28/2009 3:34:00 PM</title>
<description><![CDATA[<pre>&quot;Martin Honnen&quot; &lt;mahotrash@yahoo.de&gt; wrote in message 
news:emzQ7MkTKHA.4408@TK2MSFTNGP06.phx.gbl...
&gt; Tom Woods wrote:
&gt;&gt; Sorry for being so vague.  What I would like to do is to read the 
&gt;&gt; XmlDocument line by line and add each line into a memo field.
&gt;&gt;
&gt;&gt; When I use the InnerXml, it's just one long string with no CR/LF.
&gt;&gt;
&gt;&gt; Can this be done?
&gt;
&gt; The XML APIs don't expose XML line by line, rather they expose nodes.
&gt; But you can of course use the normal file IO APIs to read line by line.
&gt;
&gt; And if InnerXml does not give you what you want then you might simply want 
&gt; to set PreserveWhitespace to true before you load your XML document:
&gt;
&gt;   XmlDocument doc = new XmlDocument();
&gt;   doc.PreserveWhitespace = true;
&gt;   doc.Load(&quot;file.xml&quot;);
&gt;   // now doc.OuterXml/InnerXml has any white space the original document 
&gt; contains
&gt;

Wouldn't it be far better and simpler to use XSLT to transform the XML into 
the appropriate format?

-Pete</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200910/msg1000305498.html</link>
</item><item>
<title>Problem viewing XML files in IE - 10/27/2009 7:14:00 PM</title>
<description><![CDATA[<pre>IE8 attempts to download rather than open any XML file I try to display 
(discovered trying to open log file having .xml extension).  Tried and MS 
support and google searches without success.  I need help in restoring IE8 
settings.

Thx
-- 
AlWhit55</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200910/msg1000305451.html</link>
</item><item>
<title>IXMLDOMDocument::Save() with line breaks and indenting? - 10/21/2009 7:09:00 AM</title>
<description><![CDATA[<pre>Hello!

I had same problem with IXMLDOMDocument. It saves xml in huge line.
I found sample that it creates and saves xml document correctly with line breaks and indents.
http://msdn.microsoft.com/en-us/library/ms766497(VS.85).aspx
I used this code and that solved my problem.

Hope, it will helpful for you.



Cartoper wrote:

IXMLDOMDocument::Save() with line breaks and indenting?
30-???-08

How do you use MSXML2::IXMLDOMDocument::save() to include line break
and indents?

Previous Posts In This Thread:

On 29 ???? 2008 ?. 7:20
Martin Honnen wrote:

Re: IXMLDOMDocument::Save() with line breaks and indenting?
Cartoper wrote

I do not think you can get the save method to indent. What you can d
however is run an XSLT transformation to create an indentend document
then save that
The XSLT stylesheet to do

On 30 ???? 2008 ?. 20:31
Cartoper wrote:

IXMLDOMDocument::Save() with line breaks and indenting?
How do you use MSXML2::IXMLDOMDocument::save() to include line break
and indents?

On 2 ???? 2008 ?. 6:50
Sam Hobbs wrote:

A few months ago I asked a similar question and got a similar answer.
A few months ago I asked a similar question and got a similar answer. 
do not remember if there was more information in that thread but I kno
someone suggested use of a separate utility to reformat

EggHeadCafe - Software Developer Portal of Choice 
How To Create a Custom IE8 Accelerator
http://www.eggheadcafe.com/tutorials/aspnet/8ae07577-f1c5-498b-a7da-11c3e7cc2a61/how-to-create-a-custom-ie.aspx</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200910/msg1000305038.html</link>
</item><item>
<title>Re: XML to TXT - 10/16/2009 11:30:00 AM</title>
<description><![CDATA[<pre>Tom Woods wrote:
&gt; Sorry for being so vague.  What I would like to do is to read the 
&gt; XmlDocument line by line and add each line into a memo field.
&gt; 
&gt; When I use the InnerXml, it's just one long string with no CR/LF.
&gt; 
&gt; Can this be done?

The XML APIs don't expose XML line by line, rather they expose nodes.
But you can of course use the normal file IO APIs to read line by line.

And if InnerXml does not give you what you want then you might simply 
want to set PreserveWhitespace to true before you load your XML document:

   XmlDocument doc = new XmlDocument();
   doc.PreserveWhitespace = true;
   doc.Load(&quot;file.xml&quot;);
   // now doc.OuterXml/InnerXml has any white space the original 
document contains


-- 

	Martin Honnen --- MVP XML
	http://msmvps.com/blogs/martin_honnen/</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200910/msg1000304949.html</link>
</item><item>
<title>Re: XML to TXT - 10/15/2009 12:36:00 PM</title>
<description><![CDATA[<pre>Sorry for being so vague.  What I would like to do is to read the 
XmlDocument line by line and add each line into a memo field.

When I use the InnerXml, it's just one long string with no CR/LF.

Can this be done?

Thanks,
Tom


&quot;Martin Honnen&quot; &lt;mahotrash@yahoo.de&gt; wrote in message 
news:eHKbKxXTKHA.4324@TK2MSFTNGP05.phx.gbl...
&gt; Tom Woods wrote:
&gt;&gt; Is there a simple way to take a Xml.XmlDocument and save it as a TXT file 
&gt;&gt; with formatting?
&gt;
&gt; There is a Save method which has an overload that takes a file name:
&gt; http://msdn.microsoft.com/en-us/library/dw229a22.aspx
&gt; That serializes the DOM tree and saves it to a file.
&gt;
&gt; If that is not what you want then please explain in more detail what kind 
&gt; of &quot;formatting&quot; you have in mind.
&gt;
&gt;
&gt; -- 
&gt;
&gt; Martin Honnen --- MVP XML
&gt; http://msmvps.com/blogs/martin_honnen/</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200910/msg1000304940.html</link>
</item><item>
<title>Re: XML to TXT - 10/15/2009 11:46:00 AM</title>
<description><![CDATA[<pre>Tom Woods wrote:
&gt; Is there a simple way to take a Xml.XmlDocument and save it as a TXT file 
&gt; with formatting?

There is a Save method which has an overload that takes a file name:
http://msdn.microsoft.com/en-us/library/dw229a22.aspx
That serializes the DOM tree and saves it to a file.

If that is not what you want then please explain in more detail what 
kind of &quot;formatting&quot; you have in mind.


-- 

	Martin Honnen --- MVP XML
	http://msmvps.com/blogs/martin_honnen/</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200910/msg1000304930.html</link>
</item><item>
<title>XML to TXT - 10/14/2009 3:25:00 PM</title>
<description><![CDATA[<pre>Is there a simple way to take a Xml.XmlDocument and save it as a TXT file 
with formatting?

Thanks,
Tom</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200910/msg1000304911.html</link>
</item><item>
<title>Re: How to use VBA and Web Service References add-in to create soap  call with SOAP header authentication Options - 10/12/2009 4:41:00 PM</title>
<description><![CDATA[<pre>On Oct 12, 10:43=A0am, &quot;Gregory A. Beamer&quot;
&lt;NoSpamMgbwo...@comcast.netNoSpamM&gt; wrote:
&gt; Bob Alston &lt;bobals...@gmail.com&gt; wrote in news:b4065d66-39cc-4db5-8659-
&gt; ad8abe276...@k26g2000vbp.googlegroups.com:
&gt;
&gt; &gt; Yes, I am well aware of that. =A0That is exactly my question: =A0HOW to
&gt; &gt; establish that header????
&gt;
&gt; You have two options with SOAP. One is to use setRequestHeader. This
&gt; works for many of the standard header types, like auth headers, content
&gt; type, etc. If this does not help, you often have to move deeper into the
&gt; stack, which is more easily done via a COM component than VBA itself.
&gt;
&gt; If you need to actually edit the envelope rather than headers, then you
&gt; can use the SOAP Toolkit. If this is not working for you, creating the
&gt; XML for the SOAP envelope and message is a latch ditch effort.
&gt;
&gt; Peace and Grace,
&gt;
&gt; --
&gt; Gregory A. Beamer
&gt; MVP; MCP: +I, SE, SD, DBA
&gt;
&gt; Twitter: @gbworld
&gt; Blog:http://gregorybeamer.spaces.live.com
&gt;
&gt; *******************************************
&gt; | =A0 =A0 =A0Think outside the box! =A0 =A0 =A0 =A0 =A0 =A0 |
&gt; *******************************************

Any chance you or someone can post an example of how to set the soap
authentication header via vba?

Bob</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200910/msg1000304866.html</link>
</item><item>
<title>Re: How to use VBA and Web Service References add-in to create soap  call with SOAP header authentication Options - 10/12/2009 8:43:00 AM</title>
<description><![CDATA[<pre>Bob Alston &lt;bobalston@gmail.com&gt; wrote in news:b4065d66-39cc-4db5-8659-
ad8abe276f0b@k26g2000vbp.googlegroups.com:

&gt; Yes, I am well aware of that.  That is exactly my question:  HOW to
&gt; establish that header????

You have two options with SOAP. One is to use setRequestHeader. This 
works for many of the standard header types, like auth headers, content 
type, etc. If this does not help, you often have to move deeper into the 
stack, which is more easily done via a COM component than VBA itself.

If you need to actually edit the envelope rather than headers, then you 
can use the SOAP Toolkit. If this is not working for you, creating the 
XML for the SOAP envelope and message is a latch ditch effort.

Peace and Grace,

-- 
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

Twitter: @gbworld
Blog: http://gregorybeamer.spaces.live.com

*******************************************
|      Think outside the box!             |
*******************************************</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200910/msg1000304846.html</link>
</item><item>
<title>Re: How to get value of attribute (XPath)? - 10/7/2009 4:10:00 PM</title>
<description><![CDATA[<pre>LJB wrote:
&gt; I've been trying to return the value of an attribute named &quot;server&quot; but keep 
&gt; getting an XPathSelectionIterator. What do I need to change? The following 
&gt; returns &quot;1&quot; which is what I expected.
&gt; Console.WriteLine(nav.Evaluate(&quot;count(//location[@office='JAC'])&quot;));
&gt; I'm thinking it should be something like
&gt; Console.WriteLine(nav.Evaluate(&quot;//location[@office='JAC']/@server&quot;));
&gt; but that doesn't give me the value.

If you want to access a single node you might want to use 
SelectSingleNode instead of Evaluate, that way you get an XPathNavigator 
and can access the Value property e.g.

   XPathNavigator server = 
nav.SelectSingleNode(&quot;//location[@office='JAC']/@server&quot;);
   if (server != null) // XPath found node
   {
     Console.WriteLine(server.Value);
   }
   else // handle case that no node was found
   {
     //
   }


-- 

	Martin Honnen --- MVP XML
	http://msmvps.com/blogs/martin_honnen/</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200910/msg1000304497.html</link>
</item><item>
<title>Re: How to get value of attribute (XPath)? - 10/7/2009 10:40:00 AM</title>
<description><![CDATA[<pre>&quot;Martin Honnen&quot; &lt;mahotrash@yahoo.de&gt; wrote in message 
news:%23VY7Pf1RKHA.4028@TK2MSFTNGP05.phx.gbl...
&gt; LJB wrote:
&gt;&gt; I've been trying to return the value of an attribute named &quot;server&quot; but 
&gt;&gt; keep getting an XPathSelectionIterator. What do I need to change? The 
&gt;&gt; following returns &quot;1&quot; which is what I expected.
&gt;&gt; Console.WriteLine(nav.Evaluate(&quot;count(//location[@office='JAC'])&quot;));
&gt;&gt; I'm thinking it should be something like
&gt;&gt; Console.WriteLine(nav.Evaluate(&quot;//location[@office='JAC']/@server&quot;));
&gt;&gt; but that doesn't give me the value.
&gt;
&gt; If you want to access a single node you might want to use SelectSingleNode 
&gt; instead of Evaluate, that way you get an XPathNavigator and can access the 
&gt; Value property e.g.
&gt;
&gt;   XPathNavigator server = 
&gt; nav.SelectSingleNode(&quot;//location[@office='JAC']/@server&quot;);
&gt;   if (server != null) // XPath found node
&gt;   {
&gt;     Console.WriteLine(server.Value);
&gt;   }
&gt;   else // handle case that no node was found
&gt;   {
&gt;     //
&gt;   }
&gt;
&gt;
&gt; -- 
&gt;
&gt; Martin Honnen --- MVP XML
&gt; http://msmvps.com/blogs/martin_honnen/

THANK YOU. It works perfectly.</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200910/msg1000304504.html</link>
</item><item>
<title>How to get value of attribute (XPath)? - 10/7/2009 7:14:00 AM</title>
<description><![CDATA[<pre>I've been trying to return the value of an attribute named &quot;server&quot; but keep 
getting an XPathSelectionIterator. What do I need to change? The following 
returns &quot;1&quot; which is what I expected.
Console.WriteLine(nav.Evaluate(&quot;count(//location[@office='JAC'])&quot;));
I'm thinking it should be something like
Console.WriteLine(nav.Evaluate(&quot;//location[@office='JAC']/@server&quot;));
but that doesn't give me the value.

thanks
LJB</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200910/msg1000304480.html</link>
</item><item>
<title>How to save a treeview structure as XML - 10/6/2009 1:18:00 PM</title>
<description><![CDATA[<pre>Hi!
I would like to create an xml stucture using a treeview (inside a VBA Excel 
userform). In the treeview, I can play with node (move, drag and drop, 
increase or decrease the level). I would like to save the treeview structure 
as a xml structure. Is there a way to do that?

In fact, I have an Excel file  that contains a lot of information and I want 
to create a Text Editor using an XML structure. A Word document will be 
generated according to the XML structure when the report is generated. The 
data of the .xml will be stored inside Excel cell's to avoid using multiple 
files.

Any help will be very appreciated.
Thank you!
Alex
-- 
Alex St-Pierre</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200910/msg1000304422.html</link>
</item><item>
<title>Re: How to use VBA and Web Service References add-in to create soap  call with SOAP header authentication Options - 10/5/2009 5:34:00 PM</title>
<description><![CDATA[<pre>On Sep 30, 11:30=A0am, &quot;Gregory A. Beamer&quot;
&lt;NoSpamMgbwo...@comcast.netNoSpamM&gt; wrote:
&gt; Bob Alston &lt;bobals...@gmail.com&gt; wrote innews:3ffe669c-22df-4689-9fa0-6a9=
ce28f3662@k4g2000yqb.googlegroups.com:
&gt;
&gt; &gt; Please take a look at my post on microsoft.public.xml.soap
&gt;
&gt; &gt;http://groups.google.com/group/microsoft.public.xml.soap/browse_thread/
&gt; &gt; thread/560a8c872cf5de96#
&gt;
&gt; With VBA, using XmlHttp, you have to set up your own authentication heade=
r.
&gt; Here is a stack overflow question that hits on the issue:
&gt;
&gt; http://stackoverflow.com/questions/1358550/xmlhttp-request-basic-
&gt; authentication-issue
&gt;
&gt; --
&gt; Gregory A. Beamer
&gt; MVP; MCP: +I, SE, SD, DBA
&gt;
&gt; Twitter: @gbworld
&gt; Blog:http://gregorybeamer.spaces.live.com
&gt;
&gt; *******************************************
&gt; | =A0 =A0 =A0Think outside the box! =A0 =A0 =A0 =A0 =A0 =A0 |
&gt; *******************************************

Yes, I am well aware of that.  That is exactly my question:  HOW to
establish that header????

Bob</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200910/msg1000304350.html</link>
</item><item>
<title>Re: getUserData - 10/4/2009 12:14:00 PM</title>
<description><![CDATA[<pre>Thanks a lot!
:-((( I need to get this done in MSXML for now :-(((
Argh.


Martin Honnen schrieb:
&gt; J&#252;rgen Ullmann wrote:
&gt; 
&gt;&gt; In Xerces XML library I have the getUserData function.
&gt;&gt; Does anybody perhaps know what MS'es function (MSXML2) for this is 
&gt;&gt; called?
&gt;&gt;
&gt;&gt; http://www.w3.org/TR/DOM-Level-3-Core/core.html#Node3-getUserData
&gt; 
&gt; MSXML is very much W3C DOM Level 1 Core/XML with proprietary extensions 
&gt; like createNode or selectNodes/selectSingleNode to deal with namespaces.
&gt; 
&gt; I am not aware of way to attach user data to MSXML nodes.
&gt; 
&gt; If you move to the .NET world then LINQ to XML provides a way to 
&gt; annotate LINQ to XML nodes/objects:
&gt; http://msdn.microsoft.com/en-us/library/system.xml.linq.xobject.addannotation.aspx 
&gt; 
&gt; http://msdn.microsoft.com/en-us/library/system.xml.linq.xnode.annotation.aspx 
&gt; 
&gt; I think that is similar to the W3C DOM Level 3 user data.
&gt;</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200910/msg1000304246.html</link>
</item><item>
<title>Re: getUserData - 10/4/2009 11:58:00 AM</title>
<description><![CDATA[<pre>J&#252;rgen Ullmann wrote:

&gt; In Xerces XML library I have the getUserData function.
&gt; Does anybody perhaps know what MS'es function (MSXML2) for this is called?
&gt; 
&gt; http://www.w3.org/TR/DOM-Level-3-Core/core.html#Node3-getUserData

MSXML is very much W3C DOM Level 1 Core/XML with proprietary extensions 
like createNode or selectNodes/selectSingleNode to deal with namespaces.

I am not aware of way to attach user data to MSXML nodes.

If you move to the .NET world then LINQ to XML provides a way to 
annotate LINQ to XML nodes/objects:
http://msdn.microsoft.com/en-us/library/system.xml.linq.xobject.addannotation.aspx
http://msdn.microsoft.com/en-us/library/system.xml.linq.xnode.annotation.aspx
I think that is similar to the W3C DOM Level 3 user data.

-- 

	Martin Honnen --- MVP XML
	http://msmvps.com/blogs/martin_honnen/</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200910/msg1000304245.html</link>
</item><item>
<title>getUserData - 10/3/2009 10:12:00 PM</title>
<description><![CDATA[<pre>Hello all!

In Xerces XML library I have the getUserData function.
Does anybody perhaps know what MS'es function (MSXML2) for this is called?

http://www.w3.org/TR/DOM-Level-3-Core/core.html#Node3-getUserData

Thanks a lot!
J&#252;rgen Ullmann</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200910/msg1000304206.html</link>
</item><item>
<title>Re: SVG DOM - 10/1/2009 4:39:00 PM</title>
<description><![CDATA[<pre>&gt;&gt; It seems the intended way to reuse LINQ to XML classes is the annotation 
&gt;&gt; feature:
&gt;&gt; http://blogs.msdn.com/mikechampion/archive/2006/08/17/705278.aspx
&gt;
&gt;    This seems fine enough. And possibility to &quot;inject methods&quot; through 
&gt; extensions seems very helpful as well (an example shown in 
&gt; http://blogs.msdn.com/mikechampion/archive/2006/09/10/748408.aspx).
&gt;    However after few small code experiments I came to a conclusion that it 
&gt; might not be enough. I considered adding classes with SVG DOM-like 
&gt; properties as annotations to the XElements. An example is the base IDL 
&gt; SVGElement which contains attributes &quot;id&quot; and &quot;xmlbase&quot; (referring to &quot;id&quot; 
&gt; element attribute and &quot;xml:base&quot; element attribute). I changed it to an 
&gt; SvgElement class with Id and XmlBase properties. But then natural question 
&gt; occurs: should those be get only or get/set? In the IDL's SVGElement they 
&gt; are get/set (with some restrictions).  If I was to support the setting how 
&gt; would I do that? I considered constructing my SvgElement with XElement (to 
&gt; which it referrers) given during construction and not only reading 
&gt; appropriate data but also storing the XElement to be able latter to set 
&gt; the data in setters.

    There is yet another solution. Instead of adding annotation data I could 
use extension methods. To continue the example I could make GetId and SetId 
extension methods for XElement. This could be generalized to other functions 
and attributes defined in SVG DOM. (Functions and attributes for more 
specific SVG elements could just check at the beginning whether the &quot;this&quot; 
XElement is the required one.)
    However again there are some drawbacks. First attributes no longer can 
be mapped to properties as there are no &quot;extension properties&quot; (pity, as I 
like properties very much). I have to have Set* and Get* methods. But this 
is a minor issue. A more important one is that the values returned by 
functions will have to be computed each time anew since the extension 
methods do not have any &quot;memory&quot;. I might want to make some kind of cache in 
the class defining the extension method this however seems quite complex (to 
update the cache upon value change) and will be hard to control (so that the 
cache does not grow to large storing xml trees already unused).
    So after all I think that DOM-like extending System.Xml.Linq classes is 
kind of hard if at all possible.

    Adam Badura</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200910/msg1000304047.html</link>
</item><item>
<title>Re: SVG DOM - 9/30/2009 8:51:00 PM</title>
<description><![CDATA[<pre>&gt; It seems the intended way to reuse LINQ to XML classes is the annotation 
&gt; feature:
&gt; http://blogs.msdn.com/mikechampion/archive/2006/08/17/705278.aspx

    This seems fine enough. And possibility to &quot;inject methods&quot; through 
extensions seems very helpful as well (an example shown in 
http://blogs.msdn.com/mikechampion/archive/2006/09/10/748408.aspx).
    However after few small code experiments I came to a conclusion that it 
might not be enough. I considered adding classes with SVG DOM-like 
properties as annotations to the XElements. An example is the base IDL 
SVGElement which contains attributes &quot;id&quot; and &quot;xmlbase&quot; (referring to &quot;id&quot; 
element attribute and &quot;xml:base&quot; element attribute). I changed it to an 
SvgElement class with Id and XmlBase properties. But then natural question 
occurs: should those be get only or get/set? In the IDL's SVGElement they 
are get/set (with some restrictions).  If I was to support the setting how 
would I do that? I considered constructing my SvgElement with XElement (to 
which it referrers) given during construction and not only reading 
appropriate data but also storing the XElement to be able latter to set the 
data in setters.
    All fine but what if the user copies XElement? The annotation is not 
copied. (And even if I would find a way to copy it it would still be 
incorrect as internal XElement reference would be to the original XElement.) 
Also if user adds a new XElement to the tree I have very poor means to 
detect it to be able to add appropriate annotation.
    Do you have any suggestions to work around this?

    Adam Badura</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200909/msg1000303974.html</link>
</item><item>
<title>Re: How to use VBA and Web Service References add-in to create soap call  with SOAP header authentication Options - 9/30/2009 9:30:00 AM</title>
<description><![CDATA[<pre>Bob Alston &lt;bobalston@gmail.com&gt; wrote in
news:3ffe669c-22df-4689-9fa0-6a9ce28f3662@k4g2000yqb.googlegroups.com: 

&gt; Please take a look at my post on microsoft.public.xml.soap
&gt; 
&gt; http://groups.google.com/group/microsoft.public.xml.soap/browse_thread/
&gt; thread/560a8c872cf5de96# 


With VBA, using XmlHttp, you have to set up your own authentication header. 
Here is a stack overflow question that hits on the issue:

http://stackoverflow.com/questions/1358550/xmlhttp-request-basic-
authentication-issue

-- 
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

Twitter: @gbworld
Blog: http://gregorybeamer.spaces.live.com

*******************************************
|      Think outside the box!             |
*******************************************</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200909/msg1000303964.html</link>
</item><item>
<title>How to use VBA and Web Service References add-in to create soap call  with SOAP header authentication Options - 9/28/2009 1:34:00 PM</title>
<description><![CDATA[<pre>Please take a look at my post on microsoft.public.xml.soap

http://groups.google.com/group/microsoft.public.xml.soap/browse_thread/thread/560a8c872cf5de96#</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200909/msg1000303828.html</link>
</item><item>
<title>Re: SVG DOM - 9/28/2009 1:05:00 PM</title>
<description><![CDATA[<pre>Adam Badura wrote:
&gt;    Maybe I misread some part of the documentation or don't know C# well 
&gt; enough but some functions and properties don't seem to be overridable. 
&gt; For example XElement.Add 
&gt; (http://msdn.microsoft.com/en-us/library/bb354061.aspx). Also for 
&gt; example XDocument.Load is static rather then virtual so to construct my 
&gt; own classes during loading XML I would have to provide in XMyDocument a 
&gt; function MyLoad for example.
&gt;    Or are there any examples of inheriting from X* classes?

It seems the intended way to reuse LINQ to XML classes is the annotation 
feature:
http://blogs.msdn.com/mikechampion/archive/2006/08/17/705278.aspx

-- 

	Martin Honnen --- MVP XML
	http://msmvps.com/blogs/martin_honnen/</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200909/msg1000303791.html</link>
</item><item>
<title>Re: SVG DOM - 9/28/2009 12:46:00 PM</title>
<description><![CDATA[<pre>Maybe I misread some part of the documentation or don't know C# well 
enough but some functions and properties don't seem to be overridable. For 
example XElement.Add 
(http://msdn.microsoft.com/en-us/library/bb354061.aspx). Also for example 
XDocument.Load is static rather then virtual so to construct my own classes 
during loading XML I would have to provide in XMyDocument a function MyLoad 
for example.
    Or are there any examples of inheriting from X* classes?

    Adam Badura

&quot;Martin Honnen&quot; &lt;mahotrash@yahoo.de&gt; wrote in message 
news:ezUYzGCQKHA.4244@TK2MSFTNGP06.phx.gbl...
&gt; Adam Badura wrote:
&gt;&gt;    I want to implement classes for SVG DOM as described in SVG 
&gt;&gt; Specification. However I don't want to reimplement entire XML DOM because 
&gt;&gt; firstly it is a lot of work and secondly this would make using them with 
&gt;&gt; existing code harder (when compared to using System.Xml classes). I 
&gt;&gt; preferred System.Xml.Linq classes since I do not require strict 
&gt;&gt; conformance to DOM specification and I think X* classes are much easier 
&gt;&gt; to use. However it seems that those classes were not meant to be 
&gt;&gt; inherited from. So what are the options? What do you think I should do?
&gt;
&gt; Can you explain why you think that those &quot;classes were not meant to be 
&gt; inherited from&quot;?
&gt; XElement
&gt; http://msdn.microsoft.com/en-us/library/system.xml.linq.xelement.aspx
&gt; for instance is certainly not sealed/final.
&gt;
&gt;
&gt; -- 
&gt;
&gt; Martin Honnen --- MVP XML
&gt; http://msmvps.com/blogs/martin_honnen/</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200909/msg1000303787.html</link>
</item><item>
<title>Re: SVG DOM - 9/28/2009 11:55:00 AM</title>
<description><![CDATA[<pre>Adam Badura wrote:
&gt;    I want to implement classes for SVG DOM as described in SVG 
&gt; Specification. However I don't want to reimplement entire XML DOM 
&gt; because firstly it is a lot of work and secondly this would make using 
&gt; them with existing code harder (when compared to using System.Xml 
&gt; classes). I preferred System.Xml.Linq classes since I do not require 
&gt; strict conformance to DOM specification and I think X* classes are much 
&gt; easier to use. However it seems that those classes were not meant to be 
&gt; inherited from. So what are the options? What do you think I should do?

Can you explain why you think that those &quot;classes were not meant to be 
inherited from&quot;?
XElement
http://msdn.microsoft.com/en-us/library/system.xml.linq.xelement.aspx
for instance is certainly not sealed/final.


-- 

	Martin Honnen --- MVP XML
	http://msmvps.com/blogs/martin_honnen/</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200909/msg1000303784.html</link>
</item><item>
<title>SVG DOM - 9/28/2009 11:14:00 AM</title>
<description><![CDATA[<pre>I want to implement classes for SVG DOM as described in SVG 
Specification. However I don't want to reimplement entire XML DOM because 
firstly it is a lot of work and secondly this would make using them with 
existing code harder (when compared to using System.Xml classes). I 
preferred System.Xml.Linq classes since I do not require strict conformance 
to DOM specification and I think X* classes are much easier to use. However 
it seems that those classes were not meant to be inherited from. So what are 
the options? What do you think I should do?

    Adam Badura</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200909/msg1000303783.html</link>
</item><item>
<title>Re: Trying to send XML document via XMLHTTP Open and Send methods - 9/26/2009 7:50:00 AM</title>
<description><![CDATA[<pre>On Sep 25, 3:27=A0pm, &quot;Bob Barrows&quot; &lt;reb01...@NOyahoo.SPAMcom&gt; wrote:
&gt; Bob Alston wrote:
&gt; &gt; I keep getting the error: =A0-2147024809 =A0(80070057) =A0The parameter=
 is
&gt; &gt; incorrect
&gt;
&gt; &gt; Here is the XML text:
&gt;
&gt; &gt; &lt;?xml version=3D&quot;1.0&quot; encoding=3D&quot;utf-8&quot;?&gt;
&gt; &gt; &lt;soap12:Envelope xmlns:xsi=3D&quot;http://www.w3.org/2001/XMLSchema-instance=
&quot;
&gt; &lt;snip&gt;
&gt; &gt; &lt;/soap12:Envelope&gt;
&gt;
&gt; &gt; Here is my VBA code:
&gt;
&gt; &gt; Private Sub Command2_Click()
&gt; &gt; =A0 =A0 Dim XMLConnectString As String
&gt;
&gt; &gt; =A0 =A0 Dim XMLResponseText As String
&gt; &gt; =A0 =A0 Me.Responsetext =3D &quot;&quot;
&gt; &gt; =A0 =A0 XMLConnectString =3D Me.fld
&gt; &gt; =A0 =A0 'Create the xmlhttp object
&gt; &lt;snip&gt;
&gt; &gt; =A0 =A0 Call xmlhttp.send(XMLConnectString)
&gt;
&gt; &lt;snip&gt;
&gt; &gt; The error line is: =A0 =A0Call xmlhttp.send(XMLConnectString)
&gt;
&gt; &gt; Hopefully this is something simple.
&gt;
&gt; Oh wait ... you can't pass a string. You have to pass an xmldocument:
&gt; dim xmlSend as msxml2.domdocument
&gt; set xmlsend =3D new msxml2.domdocument
&gt; xmlsend.loadxml XMLConnectString
&gt; Call xmlhttp.send(xmlsend)
&gt;
&gt; I suggest you use &quot;msxml2.&quot; rather than &quot;Microsoft.&quot; to avoid xml parser
&gt; version issues.
&gt; And it doesn't really make a lot of difference but I only use
&gt; CreateObject in vbscript ... this definietly comes under the heading of
&gt; &quot;personal preference&quot;.
&gt;
&gt; --
&gt; HTH,
&gt; Bob Barrows- Hide quoted text -
&gt;
&gt; - Show quoted text -

Thank you.  that was it.  I cannot send a string.
I used

    Dim xmldoc
    Set xmldoc =3D CreateObject(&quot;Microsoft.xmldom&quot;)
    xmldoc.loadxml (XMLConnectString)

Bob</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200909/msg1000303687.html</link>
</item><item>
<title>Re: Trying to send XML document via XMLHTTP Open and Send methods - 9/25/2009 4:27:00 PM</title>
<description><![CDATA[<pre>Bob Alston wrote:
&gt; I keep getting the error:  -2147024809  (80070057)  The parameter is
&gt; incorrect
&gt;
&gt; Here is the XML text:
&gt;
&gt; &lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
&gt; &lt;soap12:Envelope xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot;
&lt;snip&gt;
&gt; &lt;/soap12:Envelope&gt;
&gt;
&gt; Here is my VBA code:
&gt;
&gt; Private Sub Command2_Click()
&gt;     Dim XMLConnectString As String
&gt;
&gt;     Dim XMLResponseText As String
&gt;     Me.Responsetext = &quot;&quot;
&gt;     XMLConnectString = Me.fld
&gt;     'Create the xmlhttp object
&lt;snip&gt;
&gt;     Call xmlhttp.send(XMLConnectString)
&gt;
&lt;snip&gt;
&gt; The error line is:    Call xmlhttp.send(XMLConnectString)
&gt;
&gt; Hopefully this is something simple.

Oh wait ... you can't pass a string. You have to pass an xmldocument:
dim xmlSend as msxml2.domdocument
set xmlsend = new msxml2.domdocument
xmlsend.loadxml XMLConnectString
Call xmlhttp.send(xmlsend)


I suggest you use &quot;msxml2.&quot; rather than &quot;Microsoft.&quot; to avoid xml parser
version issues.
And it doesn't really make a lot of difference but I only use
CreateObject in vbscript ... this definietly comes under the heading of
&quot;personal preference&quot;.

-- 
HTH,
Bob Barrows</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200909/msg1000303635.html</link>
</item><item>
<title>Re: Trying to send XML document via XMLHTTP Open and Send methods - 9/25/2009 4:21:00 PM</title>
<description><![CDATA[<pre>Bob Alston wrote:
&gt; I keep getting the error:  -2147024809  (80070057)  The parameter is
&gt; incorrect
&gt;
&gt; Here is the XML text:
&gt;
&gt; &lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
&gt; &lt;soap12:Envelope xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot;
&lt;snip&gt;
&gt; &lt;/soap12:Envelope&gt;
&gt;
&gt; Here is my VBA code:
&gt;
&gt; Private Sub Command2_Click()
&gt;     Dim XMLConnectString As String
&gt;
&gt;     Dim XMLResponseText As String
&gt;     Me.Responsetext = &quot;&quot;
&gt;     XMLConnectString = Me.fld
&gt;     'Create the xmlhttp object
&lt;snip&gt;
&gt;     Call xmlhttp.send(XMLConnectString)
&gt;
&lt;snip&gt;
&gt; The error line is:    Call xmlhttp.send(XMLConnectString)
&gt;
&gt; Hopefully this is something simple.

Does XMLConnectString contain the xml you initially posted?

-- 
HTH,
Bob Barrows</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200909/msg1000303634.html</link>
</item><item>
<title>Trying to send XML document via XMLHTTP Open and Send methods - 9/25/2009 12:28:00 PM</title>
<description><![CDATA[<pre>I keep getting the error:  -2147024809  (80070057)  The parameter is
incorrect

Here is the XML text:

&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
&lt;soap12:Envelope xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot;
xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot; xmlns:soap12=&quot;http://
www.w3.org/2003/05/soap-envelope&quot;&gt;
  &lt;soap12:Header&gt;
    &lt;CMBHSAuthenticationHeader xmlns=&quot;http://www.dshs.state.tx.us/
cmbhs/&quot;&gt;
      &lt;CMBHSUserName&gt;SClinician1&lt;/CMBHSUserName&gt;
      &lt;CMBHSPassword&gt;D$h$..125&lt;/CMBHSPassword&gt;
    &lt;/CMBHSAuthenticationHeader&gt;
  &lt;/soap12:Header&gt;
  &lt;soap12:Body&gt;
    &lt;DownloadDocument xmlns=&quot;http://www.dshs.state.tx.us/cmbhs/&quot;&gt;
      &lt;Parameter&gt;
        &lt;ParentOrganizationNbr&gt;2&lt;/ParentOrganizationNbr&gt;
        &lt;OrganizationNbr&gt;3&lt;/OrganizationNbr&gt;
        &lt;FromDate&gt;09/10/2009 4:03:11&lt;/FromDate&gt;
        &lt;ToDate&gt;09/23/2009 10:05:05&lt;/ToDate&gt;
        &lt;DownloadType&gt;1&lt;/DownloadType&gt;
      &lt;/Parameter&gt;
    &lt;/DownloadDocument&gt;
  &lt;/soap12:Body&gt;
&lt;/soap12:Envelope&gt;

Here is my VBA code:

Private Sub Command2_Click()
    Dim XMLConnectString As String

    Dim XMLResponseText As String
    Me.Responsetext = &quot;&quot;
    XMLConnectString = Me.fld
    'Create the xmlhttp object
    Dim xmlhttp
    Set xmlhttp = CreateObject(&quot;Microsoft.XMLHTTP&quot;)
    'Open a connection and send a request to the server in the form of
an XML fragment
    Call xmlhttp.Open(&quot;POST&quot;, &quot;http://cmbhstrn.dshs.state.tx.us/
cmbhswebservice/service/downloadservice.asmx&quot;, False)

    Call xmlhttp.send(XMLConnectString)


    'Create an xml document object, and load the server's response
    Dim xmldoc
    Set xmldoc = CreateObject(&quot;Microsoft.XMLDOM&quot;)
    xmldoc.async = False
    'Note: the ResponseXml property parses the server's response,
responsetext doesn't
    'xmldoc.loadxml (xmlhttp.responsexml)
    Me.Responsetext = xmlhttp.Responsetext
    Exit Sub
End Sub

The error line is:    Call xmlhttp.send(XMLConnectString)

Hopefully this is something simple.</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200909/msg1000303629.html</link>
</item><item>
<title>[ANN] XMLmind XML Editor 4.5 - 9/25/2009 10:03:00 AM</title>
<description><![CDATA[<pre>XMLmind is happy to announce the version 4.5 of XMLmind XML Editor.
    _____________________________________________

XMLmind XML Editor Personal Edition 4.5 can be downloaded from
http://www.xmlmind.com/xmleditor/download.shtml

Professional Edition users, please upgrade using this form:
http://www.xmlmind.com/store/download.php

(The above form is usually accessed through
http://www.xmlmind.com/xmleditor/upgrade.html.)
    _____________________________________________

v4.5 (September 24, 2009): DITA support is now
bundled in XMLmind XML Editor. This support has
been greatly enhanced. It is now as comprehensive
as DocBook support in XMLmind XML Editor. Most of
the enhancements come from XMLmind DITA Converter.

   XMLmind DITA Converter (ditac for short)
   allows to convert the most complex DITA 1.1
   documents to production-quality XHTML 1.0, XHTML
   1.1, HTML 4.1, Java[tm] Help, HTML Help, PDF,
   PostScript[r], RTF (can be opened in Word 2000+),
   WordprocessingML (can be opened in Word 2003+),
   Office Open XML (.docx, can be opened in Word
   2007+), OpenOffice (.odt, can be opened in
   OpenOffice.org 2+).

   XMLmind DITA Converter is free, open source,
   software licensed under the very liberal terms
   of the Mozilla Public License version 1.1.

   More information in http://www.xmlmind.com/ditac/
    _____________________________________________

More information in
http://www.xmlmind.com/xmleditor/changes.html

--
XMLmind XML Editor Information List
xmleditor-announce@xmlmind.com
http://www.xmlmind.com/mailman/listinfo/xmleditor-announce</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200909/msg1000303587.html</link>
</item><item>
<title>[ANN] First release of XMLmind DITA Converter - 9/24/2009 9:25:00 AM</title>
<description><![CDATA[<pre>XMLmind is happy to announce the first release of
XMLmind DITA Converter.

XMLmind DITA Converter, which is open source software,
can be freely downloaded from:

http://www.xmlmind.com/ditac/download.shtml
________________________________________________

XMLmind DITA Converter v1.0 (September 23, 2009)

XMLmind DITA Converter (ditac for short) allows to
convert the most complex DITA 1.1 documents to
production-quality XHTML 1.0, XHTML 1.1, HTML 4.1,
Java[tm] Help, HTML Help, PDF, PostScript[r], RTF (can
be opened in Word 2000+), WordprocessingML (can be
opened in Word 2003+), Office Open XML (.docx, can
be opened in Word 2007+), OpenOffice (.odt, can be
opened in OpenOffice.org 2+).

XMLmind DITA Converter has been developed in order
to be integrated in the following XMLmind
commercial products:
   * XMLmind XML Editor,
   * XMLmind XSL-FO Converter.

As such, XMLmind DITA Converter is professionally
developed software, well tested, well documented
and well supported.

XMLmind DITA Converter is free, open source,
software licensed under the very liberal terms of
the Mozilla Public License version 1.1.

All this makes XMLmind DITA Converter a very
serious alternative to using the DITA Open
Toolkit.

More information in http://www.xmlmind.com/ditac/.


_______________________________________________
ditac-support mailing list
ditac-support@xmlmind.com
http://www.xmlmind.com/mailman/listinfo/ditac-support</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200909/msg1000303512.html</link>
</item><item>
<title>Creating simple XSL's for particular columns out of XSD Schema - 9/22/2009 3:38:00 PM</title>
<description><![CDATA[<pre>I want to create xpath query files (xsl) that will transform xml data into 
columnar format (flat files) so that I can load them into the database.
However, having trouble.... mostly do to the fact I simple forgot how to 
deal with xsl's.

Can somebody point me a GUI (free or trial based) tool that will take XSD 
Schema as input and will allow me to pick fields and its output will be a 
short xsl file, just like the one below.  I have a good idea how the table 
sctructure is or should be.  Database, SQL Server 2008, created the table, 
but it wants &quot;annotated&quot; xsd for loading the data into multiple tables. 
Whatever that is - I already hate this direct load into the database.

So, for practical purposes, extracting data into multiple flat files with 
delimeters is good enough.
Can I get some advice about which tool to use.  Altova has so many of 
them..... when you want something quick in the XML world, it turns into a 
scientific R&amp;D project.

I installed their MapForce..... and then what..... cannot figure it out for 
the life of me.
Imported the XSD file..... and there is nothing intuitive there.....lots of 
menu's and button.
Need to find a simple way of doing this.

&gt;&gt;&gt;&gt;&gt;Sample....xsl file that I want to create
&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;
&lt;xsl:stylesheet version=&quot;1.0&quot; 
xmlns:xsl=&quot;http://www.w3.org/1999/XSL/Transform&quot; 
xmlns:fo=&quot;http://www.w3.org/1999/XSL/Format&quot;&gt;
&lt;xsl:output method=&quot;text&quot; /&gt;

&lt;xsl:param name=&quot;delimiter&quot; select=&quot; '|' &quot;/&gt;

&lt;xsl:template match=&quot;/VTM&quot;&gt;
&lt;xsl:apply-templates/&gt;
&lt;/xsl:template&gt;

&lt;xsl:template match=&quot;/*/*&quot;&gt;
&lt;xsl:value-of select=&quot;FIELD1&quot;/&gt;
&lt;xsl:value-of select=&quot;$delimiter&quot;/&gt;
&lt;xsl:value-of select=&quot;FIELD3&quot;/&gt;
&lt;xsl:value-of select=&quot;$delimiter&quot;/&gt;
&lt;xsl:value-of select=&quot;FIELD6&quot;/&gt;
&lt;xsl:text&gt;&amp;#xa;&lt;/xsl:text&gt;
&lt;/xsl:template&gt;
&lt;xsl:template match=&quot;text()&quot; /&gt;

&lt;/xsl:stylesheet&gt;</pre>]]></description>
<link>http://www.altova.com/list/microsoft.public.xml/200909/msg1000303422.html</link>
</item>

</channel>
</rss>
