<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Line Input crashes when importing Unicode</title>
	<atom:link href="http://blog.pahudson.net/archives/193/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.pahudson.net/archives/193</link>
	<description></description>
	<lastBuildDate>Tue, 24 Jan 2012 09:25:59 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Kerry Sittig</title>
		<link>http://blog.pahudson.net/archives/193/comment-page-1#comment-170</link>
		<dc:creator>Kerry Sittig</dc:creator>
		<pubDate>Mon, 14 Jun 2010 05:35:12 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pahudson.net/?p=193#comment-170</guid>
		<description>Another Excellent post, I will bookmark this post in my Newsvine account. Have a great day.</description>
		<content:encoded><![CDATA[<p>Another Excellent post, I will bookmark this post in my Newsvine account. Have a great day.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul</title>
		<link>http://blog.pahudson.net/archives/193/comment-page-1#comment-63</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Wed, 15 Apr 2009 20:25:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pahudson.net/?p=193#comment-63</guid>
		<description>Eric, thanks. I&#039;d forgot all about NotesStream. 

Jerry, thanks for the warning. Was the problem the 64kb print buffer? I&#039;ve ran into similar issues where you print very big strings but they get truncated and you have to loop through the string splitting it into smaller chunks?</description>
		<content:encoded><![CDATA[<p>Eric, thanks. I&#8217;d forgot all about NotesStream. </p>
<p>Jerry, thanks for the warning. Was the problem the 64kb print buffer? I&#8217;ve ran into similar issues where you print very big strings but they get truncated and you have to loop through the string splitting it into smaller chunks?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jerry Carter</title>
		<link>http://blog.pahudson.net/archives/193/comment-page-1#comment-62</link>
		<dc:creator>Jerry Carter</dc:creator>
		<pubDate>Wed, 15 Apr 2009 18:27:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pahudson.net/?p=193#comment-62</guid>
		<description>ooh - hadn&#039;t thought about &#039;sploitz.  Good call, Erik.

Here&#039;s a note about using NotesStream - I think we were using R 7 at the time... should have noted it but by the time frame I believe that&#039;s accurate.  http://datatribesoftwerks.com/A55C1C/DatatribeBlog.nsf/archive/20070626-0BA6E8</description>
		<content:encoded><![CDATA[<p>ooh &#8211; hadn&#8217;t thought about &#8216;sploitz.  Good call, Erik.</p>
<p>Here&#8217;s a note about using NotesStream &#8211; I think we were using R 7 at the time&#8230; should have noted it but by the time frame I believe that&#8217;s accurate.  <a href="http://datatribesoftwerks.com/A55C1C/DatatribeBlog.nsf/archive/20070626-0BA6E8" rel="nofollow">http://datatribesoftwerks.com/A55C1C/DatatribeBlog.nsf/archive/20070626-0BA6E8</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Erik Brooks</title>
		<link>http://blog.pahudson.net/archives/193/comment-page-1#comment-61</link>
		<dc:creator>Erik Brooks</dc:creator>
		<pubDate>Wed, 15 Apr 2009 01:41:49 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pahudson.net/?p=193#comment-61</guid>
		<description>Agh - don&#039;t open an Excel spreadsheet on your server.  You&#039;re potentially asking for any number of Microsoft&#039;s exploitable vulnerabilities to infect your box.

If you use the NotesStream class (fully supported in LotusScript as of ND 6.5+) then you should be good-to-go.</description>
		<content:encoded><![CDATA[<p>Agh &#8211; don&#8217;t open an Excel spreadsheet on your server.  You&#8217;re potentially asking for any number of Microsoft&#8217;s exploitable vulnerabilities to infect your box.</p>
<p>If you use the NotesStream class (fully supported in LotusScript as of ND 6.5+) then you should be good-to-go.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul</title>
		<link>http://blog.pahudson.net/archives/193/comment-page-1#comment-60</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Tue, 14 Apr 2009 21:16:31 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pahudson.net/?p=193#comment-60</guid>
		<description>Thanks anyway, much appreciated. I think I&#039;ll either have to rewrite the agent in Java or find a command line app that will do the conversion.</description>
		<content:encoded><![CDATA[<p>Thanks anyway, much appreciated. I think I&#8217;ll either have to rewrite the agent in Java or find a command line app that will do the conversion.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jerry Carter</title>
		<link>http://blog.pahudson.net/archives/193/comment-page-1#comment-59</link>
		<dc:creator>Jerry Carter</dc:creator>
		<pubDate>Tue, 14 Apr 2009 21:11:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pahudson.net/?p=193#comment-59</guid>
		<description>Ah - I should have caught that from &quot;Dos2Unix&quot; which my dyslexic brain read as &quot;Uni2Dos&quot;, thinking Unicode transformation.  If memory servers, line breaks / carriage returns differ from Dos to Unix, which might break the line input End Of Line detection.  There may be some hope in using a Stream instead of line input, but I&#039;ve found (some releases) have problems after you put so much text in the stream.  Good luck getting it sorted out!</description>
		<content:encoded><![CDATA[<p>Ah &#8211; I should have caught that from &#8220;Dos2Unix&#8221; which my dyslexic brain read as &#8220;Uni2Dos&#8221;, thinking Unicode transformation.  If memory servers, line breaks / carriage returns differ from Dos to Unix, which might break the line input End Of Line detection.  There may be some hope in using a Stream instead of line input, but I&#8217;ve found (some releases) have problems after you put so much text in the stream.  Good luck getting it sorted out!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul</title>
		<link>http://blog.pahudson.net/archives/193/comment-page-1#comment-58</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Tue, 14 Apr 2009 20:42:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pahudson.net/?p=193#comment-58</guid>
		<description>Thanks. I should have said we&#039;re running on Solaris, so we can&#039;t use OLE integration.</description>
		<content:encoded><![CDATA[<p>Thanks. I should have said we&#8217;re running on Solaris, so we can&#8217;t use OLE integration.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jerry Carter</title>
		<link>http://blog.pahudson.net/archives/193/comment-page-1#comment-57</link>
		<dc:creator>Jerry Carter</dc:creator>
		<pubDate>Tue, 14 Apr 2009 20:36:17 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pahudson.net/?p=193#comment-57</guid>
		<description>If you have excel installed on the server, you can use it to open the file and saveas in the preferred format.</description>
		<content:encoded><![CDATA[<p>If you have excel installed on the server, you can use it to open the file and saveas in the preferred format.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

