<?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 inter process communication with SYS$QIOW in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/inter-process-communication-with-sys-qiow/m-p/4402078#M16462</link>
    <description>We have two executabels say exe1 and exe2. When we run exe1, it internally calls SYS$QIOW system call to run one .COM file. This .COM file name is passes as parameter to the system call. &lt;BR /&gt;&lt;BR /&gt;Please find the scratch from the code for exe1&lt;BR /&gt;&lt;BR /&gt;vf_l_connect_sts = SYS$QIOW (   ,     &lt;BR /&gt; 1 %VAL(netchn),&lt;BR /&gt; 2 %VAL(IO$_ACCESS),&lt;BR /&gt; 3 netiosts,,,,&lt;BR /&gt; 4 vc_l_ncb(1:vh_l_ncblen),,,,)&lt;BR /&gt;&lt;BR /&gt;here vc_l_ncb contains the .COM file name to be run. for example it will be RUN_SERVER1.COM&lt;BR /&gt;&lt;BR /&gt;When we run exe1, during debug mode we found that it is giving the below error after system call execution.&lt;BR /&gt;%SYSTEM-F-NOSUCHOBJ, network object is unknown at remote node&lt;BR /&gt;&lt;BR /&gt;And one more observation we found in the exe1 log is, it is checking for wrong .COM file name and not the .COM file we given in the "vc_l_ncb" variable.&lt;BR /&gt;&lt;BR /&gt;Could you anyone please respond why it is behaving like this?&lt;BR /&gt;&lt;BR /&gt;Please let me know if you need any more information to analyse and provide answer.</description>
    <pubDate>Thu, 16 Apr 2009 11:25:04 GMT</pubDate>
    <dc:creator>RAVIKANTH_3</dc:creator>
    <dc:date>2009-04-16T11:25:04Z</dc:date>
    <item>
      <title>inter process communication with SYS$QIOW</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/inter-process-communication-with-sys-qiow/m-p/4402078#M16462</link>
      <description>We have two executabels say exe1 and exe2. When we run exe1, it internally calls SYS$QIOW system call to run one .COM file. This .COM file name is passes as parameter to the system call. &lt;BR /&gt;&lt;BR /&gt;Please find the scratch from the code for exe1&lt;BR /&gt;&lt;BR /&gt;vf_l_connect_sts = SYS$QIOW (   ,     &lt;BR /&gt; 1 %VAL(netchn),&lt;BR /&gt; 2 %VAL(IO$_ACCESS),&lt;BR /&gt; 3 netiosts,,,,&lt;BR /&gt; 4 vc_l_ncb(1:vh_l_ncblen),,,,)&lt;BR /&gt;&lt;BR /&gt;here vc_l_ncb contains the .COM file name to be run. for example it will be RUN_SERVER1.COM&lt;BR /&gt;&lt;BR /&gt;When we run exe1, during debug mode we found that it is giving the below error after system call execution.&lt;BR /&gt;%SYSTEM-F-NOSUCHOBJ, network object is unknown at remote node&lt;BR /&gt;&lt;BR /&gt;And one more observation we found in the exe1 log is, it is checking for wrong .COM file name and not the .COM file we given in the "vc_l_ncb" variable.&lt;BR /&gt;&lt;BR /&gt;Could you anyone please respond why it is behaving like this?&lt;BR /&gt;&lt;BR /&gt;Please let me know if you need any more information to analyse and provide answer.</description>
      <pubDate>Thu, 16 Apr 2009 11:25:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/inter-process-communication-with-sys-qiow/m-p/4402078#M16462</guid>
      <dc:creator>RAVIKANTH_3</dc:creator>
      <dc:date>2009-04-16T11:25:04Z</dc:date>
    </item>
    <item>
      <title>Re: inter process communication with SYS$QIOW</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/inter-process-communication-with-sys-qiow/m-p/4402079#M16463</link>
      <description>RAVIKANTH,&lt;BR /&gt;&lt;BR /&gt;welcome to the OpenVMS ITRC forum.&lt;BR /&gt;&lt;BR /&gt;What you're trying to do is called 'DECnet non-transparent task-to-task communication'.&lt;BR /&gt;&lt;BR /&gt;For an example see SYS$EXAMPLES:DB_REQUESTER.C and DB_SERVER.C&lt;BR /&gt;&lt;BR /&gt;As future reference, consider to read Chapter 8 Performing Network User Operations of the DECnet for OpenVMS Networking Manual:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://h71000.www7.hp.com/doc/73final/documentation/pdf/decnet_ovms_net_man.pdf" target="_blank"&gt;http://h71000.www7.hp.com/doc/73final/documentation/pdf/decnet_ovms_net_man.pdf&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Volker.</description>
      <pubDate>Thu, 16 Apr 2009 12:31:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/inter-process-communication-with-sys-qiow/m-p/4402079#M16463</guid>
      <dc:creator>Volker Halle</dc:creator>
      <dc:date>2009-04-16T12:31:59Z</dc:date>
    </item>
    <item>
      <title>Re: inter process communication with SYS$QIOW</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/inter-process-communication-with-sys-qiow/m-p/4402080#M16464</link>
      <description>&amp;gt;Please let me know if you need any more information to analyse and provide answer.&lt;BR /&gt;&lt;BR /&gt;You're going to have to debug this.  Use the OpenVMS debugger, for instance, and ensure the NCB is set the way you think it is.  And use the debugger on the target side, and see if that's configured the way you think it is.&lt;BR /&gt;&lt;BR /&gt;Here are some widely-regarded instructions on asking smarter questions, and knowing how to ask good questions is a skill that can most definitely help you in your career:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.catb.org/~esr/faqs/smart-questions.html" target="_blank"&gt;http://www.catb.org/~esr/faqs/smart-questions.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Here is an example of DCL task-to-task application which might help understand how this sequence works without wading through some Fortran code:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://h71000.www7.hp.com/wizard/wiz_0159.html" target="_blank"&gt;http://h71000.www7.hp.com/wizard/wiz_0159.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;And do read the associated manual, as was mentioned in an earlier reply.&lt;BR /&gt;&lt;BR /&gt;Whomever originally coded this application also decided to dynamically start the server using DCL, rather than starting the image directory, or having the system bootstrap declare a task on the fly.   There may well be requirements related to this; there are certainly some trade-offs involved here in having the incoming connection start the server.&lt;BR /&gt;&lt;BR /&gt;Here is one approach that can allow you to run the debugger in a detached process:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://labs.hoffmanlabs.com/node/803" target="_blank"&gt;http://labs.hoffmanlabs.com/node/803&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;And if you're not familiar with the OpenVMS Debugger, do skim through that manual, too.  The Debugger is a central and useful tool for getting to the cause of these sorts of errors.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.hp.com/go/openvms/doc" target="_blank"&gt;http://www.hp.com/go/openvms/doc&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;And welcome to ITRC.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 16 Apr 2009 13:04:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/inter-process-communication-with-sys-qiow/m-p/4402080#M16464</guid>
      <dc:creator>Hoff</dc:creator>
      <dc:date>2009-04-16T13:04:10Z</dc:date>
    </item>
  </channel>
</rss>

