 




<?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: Data sent to device DSP01 not valid.  Negative response code is 10050122.</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/data-sent-to-device-dsp01-not-valid-negative-response-code-is-10050122/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers/data-sent-to-device-dsp01-not-valid-negative-response-code-is-10050122/</link>
	<description></description>
	<lastBuildDate>Sat, 25 May 2013 13:28:28 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: bigkat</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/data-sent-to-device-dsp01-not-valid-negative-response-code-is-10050122/#comment-81993</link>
		<dc:creator>bigkat</dc:creator>
		<pubDate>Thu, 30 Sep 2010 14:04:09 +0000</pubDate>
		<guid isPermaLink="false">#comment-81993</guid>
		<description><![CDATA[doh!

Tom&#039;s suggestion of
&lt;pre&gt;
d replCharacter   c                   const( x’3F’)
&lt;/pre&gt;]]></description>
		<content:encoded><![CDATA[<p>doh!</p>
<p>Tom&#8217;s suggestion of</p>
<pre>
d replCharacter   c                   const( x’3F’)
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: bigkat</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/data-sent-to-device-dsp01-not-valid-negative-response-code-is-10050122/#comment-81992</link>
		<dc:creator>bigkat</dc:creator>
		<pubDate>Thu, 30 Sep 2010 14:02:47 +0000</pubDate>
		<guid isPermaLink="false">#comment-81992</guid>
		<description><![CDATA[if you do Tom&#039;s suggestion 
&lt;pre&gt;
&lt;i&gt;d replCharacter   c                   const(’ ‘)&lt;/i&gt;
&lt;/pre&gt;

you need to change 
&lt;pre&gt;
c                   eval      loc = %check(validCharacters:fld79a)
&lt;/pre&gt;
to
&lt;pre&gt;
c                   eval      loc = %check(validCharacters + replCharacter
c                             :fld79a)                                    
&lt;/pre&gt;]]></description>
		<content:encoded><![CDATA[<p>if you do Tom&#8217;s suggestion </p>
<pre>
<i>d replCharacter   c                   const(’ ‘)</i>
</pre>
<p>you need to change </p>
<pre>
c                   eval      loc = %check(validCharacters:fld79a)
</pre>
<p>to</p>
<pre>
c                   eval      loc = %check(validCharacters + replCharacter
c                             :fld79a)                                    
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: tomliotta</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/data-sent-to-device-dsp01-not-valid-negative-response-code-is-10050122/#comment-81988</link>
		<dc:creator>tomliotta</dc:creator>
		<pubDate>Thu, 30 Sep 2010 07:16:27 +0000</pubDate>
		<guid isPermaLink="false">#comment-81988</guid>
		<description><![CDATA[You can loop through the characters in the string. Replace any byte that is less than x&#039;3F&#039; with x&#039;3F&#039;.

Tom]]></description>
		<content:encoded><![CDATA[<p>You can loop through the characters in the string. Replace any byte that is less than x&#8217;3F&#8217; with x&#8217;3F&#8217;.</p>
<p>Tom</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tomliotta</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/data-sent-to-device-dsp01-not-valid-negative-response-code-is-10050122/#comment-81969</link>
		<dc:creator>tomliotta</dc:creator>
		<pubDate>Wed, 29 Sep 2010 20:00:57 +0000</pubDate>
		<guid isPermaLink="false">#comment-81969</guid>
		<description><![CDATA[For this line:&lt;pre&gt;
 d replCharacter   c                   const(&#039; &#039;)&lt;/pre&gt;
...consider making this change:&lt;pre&gt;
 d replCharacter   c                   const( x&#039;3F&#039; )&lt;/pre&gt;
The Character Data Representation Architecture (CRDA) specifies the &#039;3F&#039;X character as a replacement character. It should show up as a reverse-image block on the display.

Tom]]></description>
		<content:encoded><![CDATA[<p>For this line:
<pre>
 d replCharacter   c                   const(' ')</pre>
<p>&#8230;consider making this change:
<pre>
 d replCharacter   c                   const( x'3F' )</pre>
<p>The Character Data Representation Architecture (CRDA) specifies the &#8217;3F&#8217;X character as a replacement character. It should show up as a reverse-image block on the display.</p>
<p>Tom</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bigkat</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/data-sent-to-device-dsp01-not-valid-negative-response-code-is-10050122/#comment-81955</link>
		<dc:creator>bigkat</dc:creator>
		<pubDate>Wed, 29 Sep 2010 17:31:16 +0000</pubDate>
		<guid isPermaLink="false">#comment-81955</guid>
		<description><![CDATA[query does a character substituition for unprintable characters at the system level.  It is not a function that you can call (as far as I know)]]></description>
		<content:encoded><![CDATA[<p>query does a character substituition for unprintable characters at the system level.  It is not a function that you can call (as far as I know)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cabero</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/data-sent-to-device-dsp01-not-valid-negative-response-code-is-10050122/#comment-81948</link>
		<dc:creator>cabero</dc:creator>
		<pubDate>Wed, 29 Sep 2010 15:32:46 +0000</pubDate>
		<guid isPermaLink="false">#comment-81948</guid>
		<description><![CDATA[Hello BigKat.

Thank you for the prompt response, I will give it a bash in the morning, it is sunset here in RSA. 
How does query display/report the values, even if it is garbage. Could the same technique not be used?

Regards
Steven]]></description>
		<content:encoded><![CDATA[<p>Hello BigKat.</p>
<p>Thank you for the prompt response, I will give it a bash in the morning, it is sunset here in RSA.<br />
How does query display/report the values, even if it is garbage. Could the same technique not be used?</p>
<p>Regards<br />
Steven</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bigkat</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/data-sent-to-device-dsp01-not-valid-negative-response-code-is-10050122/#comment-81944</link>
		<dc:creator>bigkat</dc:creator>
		<pubDate>Wed, 29 Sep 2010 13:21:19 +0000</pubDate>
		<guid isPermaLink="false">#comment-81944</guid>
		<description><![CDATA[%xlate could be used to translate all bad characters to good characters, but I figured it was easier to create a list of all valid characters rather than a list of all invalid ones.

&lt;pre&gt;%xlate(from:to:string)&lt;/pre&gt;]]></description>
		<content:encoded><![CDATA[<p>%xlate could be used to translate all bad characters to good characters, but I figured it was easier to create a list of all valid characters rather than a list of all invalid ones.</p>
<pre>%xlate(from:to:string)</pre>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 6/9 queries in 0.014 seconds using memcached
Object Caching 350/353 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-05-25 13:50:58 -->