<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: data over run in decnet task to task communication in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/data-over-run-in-decnet-task-to-task-communication/m-p/4417091#M94464</link>
    <description>Ravikanth,&lt;BR /&gt;&lt;BR /&gt;Please review the relevant material in the Guide to Networking.&lt;BR /&gt;&lt;BR /&gt;Unlike TCP, which is stream-based, DECnet task level communictions (using NSP) is message based. The entire message must fit within the buffer.&lt;BR /&gt;&lt;BR /&gt;Check the length of the message sent, and check the size of the receiving buffer. Check the documentation, the IOSB will contain details.&lt;BR /&gt;&lt;BR /&gt;- Bob Gezelter, &lt;A href="http://www.rlgsc.com" target="_blank"&gt;http://www.rlgsc.com&lt;/A&gt;</description>
    <pubDate>Mon, 11 May 2009 09:40:05 GMT</pubDate>
    <dc:creator>Robert Gezelter</dc:creator>
    <dc:date>2009-05-11T09:40:05Z</dc:date>
    <item>
      <title>data over run in decnet task to task communication</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/data-over-run-in-decnet-task-to-task-communication/m-p/4417088#M94461</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;I have decnet task to task communication, where say process x communicates with process y. Process x writes into mailbox some data and process y reads that data from mailbox. All this is implemented using sys$qiow system call. I getting error "%SYSTEM-W-DATAOVERUN, data overrun".&lt;BR /&gt;&lt;BR /&gt;I traced the reason for this error, every where they are suggesting to increase the RMS buffer using set rms_default /networkblockcount. I have tried that but no success.&lt;BR /&gt;&lt;BR /&gt;Same code worked for many years and now it is causing the problem. Seems strange, not able to figure out the problem.&lt;BR /&gt;&lt;BR /&gt;Could any one help me in solving this.&lt;BR /&gt;</description>
      <pubDate>Mon, 11 May 2009 07:03:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/data-over-run-in-decnet-task-to-task-communication/m-p/4417088#M94461</guid>
      <dc:creator>RAVIKANTH_3</dc:creator>
      <dc:date>2009-05-11T07:03:04Z</dc:date>
    </item>
    <item>
      <title>Re: data over run in decnet task to task communication</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/data-over-run-in-decnet-task-to-task-communication/m-p/4417089#M94462</link>
      <description>If you're using $QIOWs, then you're NOT using RMS. This is why setting an RMS parameter does not help.&lt;BR /&gt;&lt;BR /&gt;Can you identify the failing QIOW in your code ? Run the program with the debugger and check all parameters. Find out, how much data the other side has actually sent.&lt;BR /&gt;&lt;BR /&gt;Volker.</description>
      <pubDate>Mon, 11 May 2009 08:17:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/data-over-run-in-decnet-task-to-task-communication/m-p/4417089#M94462</guid>
      <dc:creator>Volker Halle</dc:creator>
      <dc:date>2009-05-11T08:17:22Z</dc:date>
    </item>
    <item>
      <title>Re: data over run in decnet task to task communication</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/data-over-run-in-decnet-task-to-task-communication/m-p/4417090#M94463</link>
      <description>hi&lt;BR /&gt;&lt;BR /&gt;process x sends request using sys$qiow.&lt;BR /&gt;Process y reads the request as shown below&lt;BR /&gt;&lt;BR /&gt;vf_l_status = SYS$QIOW(,%VAL(vh_t_lnkchn),    %VAL(IO$_READVBLK),&lt;BR /&gt;vg_t_central_io,,,&lt;BR /&gt;%REF(vg_t_oprequest),&lt;BR /&gt;%VAL(kh_t_cdmrequestlen),,,,)&lt;BR /&gt;&lt;BR /&gt;vg_t_central_io.vh_iosb_iosts) is giving data over flow error during run time.&lt;BR /&gt;&lt;BR /&gt;If its not RMS what could be the problem for data over run.</description>
      <pubDate>Mon, 11 May 2009 08:30:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/data-over-run-in-decnet-task-to-task-communication/m-p/4417090#M94463</guid>
      <dc:creator>RAVIKANTH_3</dc:creator>
      <dc:date>2009-05-11T08:30:49Z</dc:date>
    </item>
    <item>
      <title>Re: data over run in decnet task to task communication</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/data-over-run-in-decnet-task-to-task-communication/m-p/4417091#M94464</link>
      <description>Ravikanth,&lt;BR /&gt;&lt;BR /&gt;Please review the relevant material in the Guide to Networking.&lt;BR /&gt;&lt;BR /&gt;Unlike TCP, which is stream-based, DECnet task level communictions (using NSP) is message based. The entire message must fit within the buffer.&lt;BR /&gt;&lt;BR /&gt;Check the length of the message sent, and check the size of the receiving buffer. Check the documentation, the IOSB will contain details.&lt;BR /&gt;&lt;BR /&gt;- Bob Gezelter, &lt;A href="http://www.rlgsc.com" target="_blank"&gt;http://www.rlgsc.com&lt;/A&gt;</description>
      <pubDate>Mon, 11 May 2009 09:40:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/data-over-run-in-decnet-task-to-task-communication/m-p/4417091#M94464</guid>
      <dc:creator>Robert Gezelter</dc:creator>
      <dc:date>2009-05-11T09:40:05Z</dc:date>
    </item>
  </channel>
</rss>

