<?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 Remote procedure on DecNet V in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/remote-procedure-on-decnet-v/m-p/3624810#M49908</link>
    <description>I migrated a decnet IV host to decnet V (VMS V7.3-2). In my network there is a old alpha with V6.2 and DecNet IV.&lt;BR /&gt;Before migration, on old alpha I could type&lt;BR /&gt;$ TYPE NEW::"0=mycmd"&lt;BR /&gt;where mycmd was an object recorded in NCP database of NEW alpha.&lt;BR /&gt;Hence new alpha has DecNet V reither this command can't work nor simple remote command like $ DIR NEW::*.*&lt;BR /&gt;I checked for proxy database. It's fine.&lt;BR /&gt;How can I run a remote procedure or remote command on new DecNet V ?&lt;BR /&gt;I'm newbie in DecNet OSI :-(&lt;BR /&gt; &lt;BR /&gt;Antonio Vigliotti&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Tue, 13 Sep 2005 09:29:08 GMT</pubDate>
    <dc:creator>Antoniov.</dc:creator>
    <dc:date>2005-09-13T09:29:08Z</dc:date>
    <item>
      <title>Remote procedure on DecNet V</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/remote-procedure-on-decnet-v/m-p/3624810#M49908</link>
      <description>I migrated a decnet IV host to decnet V (VMS V7.3-2). In my network there is a old alpha with V6.2 and DecNet IV.&lt;BR /&gt;Before migration, on old alpha I could type&lt;BR /&gt;$ TYPE NEW::"0=mycmd"&lt;BR /&gt;where mycmd was an object recorded in NCP database of NEW alpha.&lt;BR /&gt;Hence new alpha has DecNet V reither this command can't work nor simple remote command like $ DIR NEW::*.*&lt;BR /&gt;I checked for proxy database. It's fine.&lt;BR /&gt;How can I run a remote procedure or remote command on new DecNet V ?&lt;BR /&gt;I'm newbie in DecNet OSI :-(&lt;BR /&gt; &lt;BR /&gt;Antonio Vigliotti&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 13 Sep 2005 09:29:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/remote-procedure-on-decnet-v/m-p/3624810#M49908</guid>
      <dc:creator>Antoniov.</dc:creator>
      <dc:date>2005-09-13T09:29:08Z</dc:date>
    </item>
    <item>
      <title>Re: Remote procedure on DecNet V</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/remote-procedure-on-decnet-v/m-p/3624811#M49909</link>
      <description>Does it work if you put a username/password into the ACS? e.g.:&lt;BR /&gt;$ directory NEW"username password"::&lt;BR /&gt;&lt;BR /&gt;Any error message?</description>
      <pubDate>Tue, 13 Sep 2005 09:40:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/remote-procedure-on-decnet-v/m-p/3624811#M49909</guid>
      <dc:creator>Uwe Zessin</dc:creator>
      <dc:date>2005-09-13T09:40:46Z</dc:date>
    </item>
    <item>
      <title>Re: Remote procedure on DecNet V</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/remote-procedure-on-decnet-v/m-p/3624812#M49910</link>
      <description>You need to define a session control application&lt;BR /&gt;&lt;BR /&gt;@SYS$STARTUP:NET$CONFIGURE ADVANCED&lt;BR /&gt;&lt;BR /&gt;select option for 'Configure application database'&lt;BR /&gt;then select option for ADD&lt;BR /&gt;and follow the prompts.&lt;BR /&gt;&lt;BR /&gt;The result of this is a new NET$SESSION_STARTUP.NCL&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 13 Sep 2005 09:43:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/remote-procedure-on-decnet-v/m-p/3624812#M49910</guid>
      <dc:creator>Ian Miller.</dc:creator>
      <dc:date>2005-09-13T09:43:32Z</dc:date>
    </item>
    <item>
      <title>Re: Remote procedure on DecNet V</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/remote-procedure-on-decnet-v/m-p/3624813#M49911</link>
      <description>Antonio,&lt;BR /&gt;&lt;BR /&gt;I have no DECNet V installed (I prefer to work with the old good phase IV ;). I find a procedure which I wrote some years ago to create a DECNet V object:&lt;BR /&gt;&lt;BR /&gt;CREATE NODE 0 SESSION CONTROL APPLICATION &lt;NAME&gt;&lt;BR /&gt;SET NODE 0 SESSION CONTROL APPLICATION &lt;NAME&gt; -&lt;BR /&gt;ADDRESSES = {NUMBER = &lt;NUM&gt;} -&lt;BR /&gt;,CLIENT =  -&lt;BR /&gt;,INCOMING ALIAS = TRUE -&lt;BR /&gt;,INCOMING PROXY = FALSE -&lt;BR /&gt;,OUTGOING ALIAS = FALSE -&lt;BR /&gt;,OUTGOING PROXY = FALSE -&lt;BR /&gt;,NODE SYNONYM = TRUE -&lt;BR /&gt;,IMAGE NAME = &lt;FILE&gt; -&lt;BR /&gt;,USER NAME = "&lt;USER&gt;" -&lt;BR /&gt;,INCOMING OSI TSEL =&lt;BR /&gt;&lt;BR /&gt;Which is equivalent to old NCP:&lt;BR /&gt;&lt;BR /&gt;NCP&amp;gt; DEFINE OBJECT &lt;NAME&gt; NUMBER &lt;NUM&gt; -&lt;BR /&gt;        FILE &lt;FILE&gt; -&lt;BR /&gt;        OUTGOING CONNECT PRIVILEGES -&lt;BR /&gt;        &lt;PRIVLIST&gt;&lt;BR /&gt;        USER &lt;USER&gt; PASSWORD &lt;PASSWORD&gt;&lt;BR /&gt;&lt;BR /&gt;You put this in SYS$MANAGER:NET$APPLICATION_STARTUP.NCL&lt;BR /&gt;&lt;BR /&gt;Bojan&lt;/PASSWORD&gt;&lt;/USER&gt;&lt;/PRIVLIST&gt;&lt;/FILE&gt;&lt;/NUM&gt;&lt;/NAME&gt;&lt;/USER&gt;&lt;/FILE&gt;&lt;/NUM&gt;&lt;/NAME&gt;&lt;/NAME&gt;</description>
      <pubDate>Tue, 13 Sep 2005 09:46:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/remote-procedure-on-decnet-v/m-p/3624813#M49911</guid>
      <dc:creator>Bojan Nemec</dc:creator>
      <dc:date>2005-09-13T09:46:55Z</dc:date>
    </item>
    <item>
      <title>Re: Remote procedure on DecNet V</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/remote-procedure-on-decnet-v/m-p/3624814#M49912</link>
      <description>Apparently You have no TASK object defined. (don't know if that's omitted by net$configure with a cause).&lt;BR /&gt;&lt;BR /&gt;Define it in net$application_local.ncl like that:&lt;BR /&gt;&lt;BR /&gt;CREATE NODE 0 SESSION CONTROL APPLICATION TASK&lt;BR /&gt;SET NODE 0 SESSION CONTROL APPLICATION TASK ADDRESSES = {NAME=TASK} -&lt;BR /&gt;,CLIENT =  -&lt;BR /&gt;,INCOMING ALIAS = TRUE -&lt;BR /&gt;,INCOMING PROXY = TRUE -&lt;BR /&gt;,OUTGOING ALIAS = FALSE -&lt;BR /&gt;,OUTGOING PROXY = TRUE -&lt;BR /&gt;,NODE SYNONYM = TRUE -&lt;BR /&gt;,INCOMING OSI TSEL = -&lt;BR /&gt;,USER NAME = "ILLEGAL"&lt;BR /&gt;&lt;BR /&gt;The user name ILLEGAL makes sure only proxy accounts can use it (assuming You have no legal user named ILLEGAL :-).&lt;BR /&gt;&lt;BR /&gt;For others like FAL , lookin NET$APPLICATION_STARTUP.NCL, I wonder what happened when You NET$COMNFIGUREd.&lt;BR /&gt;Eventually copy a sample from my location:&lt;BR /&gt;&lt;BR /&gt; &lt;A href="http://wwwvms.mppmu.mpg.de/vms$common/sysmgr/net$application_startup.ncl" target="_blank"&gt;http://wwwvms.mppmu.mpg.de/vms$common/sysmgr/net$application_startup.ncl&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 13 Sep 2005 09:49:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/remote-procedure-on-decnet-v/m-p/3624814#M49912</guid>
      <dc:creator>Joseph Huber_1</dc:creator>
      <dc:date>2005-09-13T09:49:43Z</dc:date>
    </item>
    <item>
      <title>Re: Remote procedure on DecNet V</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/remote-procedure-on-decnet-v/m-p/3624815#M49913</link>
      <description>Before you create objects, check what you have.&lt;BR /&gt;&lt;BR /&gt;mc ncl show ses con app xxx [all]&lt;BR /&gt;&lt;BR /&gt;xxx = TASK for T2T&lt;BR /&gt;xxx = FAL for remote file access&lt;BR /&gt;xxx = * to see them all&lt;BR /&gt;&lt;BR /&gt;Wim</description>
      <pubDate>Tue, 13 Sep 2005 10:06:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/remote-procedure-on-decnet-v/m-p/3624815#M49913</guid>
      <dc:creator>Wim Van den Wyngaert</dc:creator>
      <dc:date>2005-09-13T10:06:04Z</dc:date>
    </item>
    <item>
      <title>Re: Remote procedure on DecNet V</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/remote-procedure-on-decnet-v/m-p/3624816#M49914</link>
      <description>Wow,&lt;BR /&gt;how many answer!&lt;BR /&gt; &lt;BR /&gt;Uwe,&lt;BR /&gt;yes, with direct password it works but I don't want supply username and password.&lt;BR /&gt; &lt;BR /&gt;Ian,&lt;BR /&gt;executed procedure but it yet doesn't work. I'm not sure about parameter supplied.&lt;BR /&gt; &lt;BR /&gt;Bojan,&lt;BR /&gt;I saw in SYS$STARTUP:NET$APPLICATION_STARTUP.NCL&lt;BR /&gt;my definition by above Ian's procedure&lt;BR /&gt;!*  Session Control Application MYDCL added&lt;BR /&gt;!* 13-SEP-2005 17:07:32.11 by SYSTEM&lt;BR /&gt;CREATE NODE 0 SESSION CONTROL APPLICATION MYDCL&lt;BR /&gt;SET NODE 0 SESSION CONTROL APPLICATION MYDCL ADDRESSES = {NAME=MYDCL} -&lt;BR /&gt;,CLIENT =  -&lt;BR /&gt;,INCOMING ALIAS = TRUE -&lt;BR /&gt;,INCOMING PROXY = TRUE -&lt;BR /&gt;,OUTGOING ALIAS = FALSE -&lt;BR /&gt;,OUTGOING PROXY = TRUE -&lt;BR /&gt;,NODE SYNONYM = TRUE -&lt;BR /&gt;,IMAGE NAME = USR$BIN:MYDCL.COM -&lt;BR /&gt;,INCOMING OSI TSEL =&lt;BR /&gt;I deletede USERNAME because I want to use proxy.&lt;BR /&gt; &lt;BR /&gt;Joseph,&lt;BR /&gt;I addes USERNAME="ILLEGAL"&lt;BR /&gt;It seems doesn't work&lt;BR /&gt; &lt;BR /&gt;Wim&lt;BR /&gt;MC NCL SHOW SESS CON APPL MYDCL&lt;BR /&gt;show me &lt;BR /&gt;&lt;BR /&gt;Node 0 Session Control Application MYDCL&lt;BR /&gt;at 2005-09-13-17:23:23.690+02:00Iinf&lt;BR /&gt;&lt;BR /&gt;Identifiers&lt;BR /&gt;&lt;BR /&gt;    Name                             = MYDCL&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;Thank to allbodies.&lt;BR /&gt; &lt;BR /&gt;Antonio Vigliotti&lt;BR /&gt;</description>
      <pubDate>Tue, 13 Sep 2005 10:24:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/remote-procedure-on-decnet-v/m-p/3624816#M49914</guid>
      <dc:creator>Antoniov.</dc:creator>
      <dc:date>2005-09-13T10:24:21Z</dc:date>
    </item>
    <item>
      <title>Re: Remote procedure on DecNet V</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/remote-procedure-on-decnet-v/m-p/3624817#M49915</link>
      <description>Because I can't execute remote command,&lt;BR /&gt;I wanto to simply my trouble.&lt;BR /&gt;At moment I want type&lt;BR /&gt;$ DIR NEW::*.*&lt;BR /&gt;on old alpha and see dir on new alpha&lt;BR /&gt; &lt;BR /&gt;Antonio Vigliotti&lt;BR /&gt;</description>
      <pubDate>Tue, 13 Sep 2005 10:35:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/remote-procedure-on-decnet-v/m-p/3624817#M49915</guid>
      <dc:creator>Antoniov.</dc:creator>
      <dc:date>2005-09-13T10:35:38Z</dc:date>
    </item>
    <item>
      <title>Re: Remote procedure on DecNet V</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/remote-procedure-on-decnet-v/m-p/3624818#M49916</link>
      <description>"$ DIR NEW::*.*&lt;BR /&gt;on old alpha and see dir on new alpha"&lt;BR /&gt;&lt;BR /&gt;If the proxies are right on the new alpha then this should work - does it?</description>
      <pubDate>Tue, 13 Sep 2005 10:38:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/remote-procedure-on-decnet-v/m-p/3624818#M49916</guid>
      <dc:creator>Ian Miller.</dc:creator>
      <dc:date>2005-09-13T10:38:20Z</dc:date>
    </item>
    <item>
      <title>Re: Remote procedure on DecNet V</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/remote-procedure-on-decnet-v/m-p/3624819#M49917</link>
      <description>If it works with explicit username and password, then you can expect the object to be working and there is something wrong with the proxy processing.&lt;BR /&gt;&lt;BR /&gt;Again, may I ask if you got any error message?&lt;BR /&gt;&lt;BR /&gt;- anything from OPCOM?&lt;BR /&gt;$ reply/enable=network&lt;BR /&gt;&lt;BR /&gt;- something in the ACCOUNTING or AUDIT logs?</description>
      <pubDate>Tue, 13 Sep 2005 10:40:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/remote-procedure-on-decnet-v/m-p/3624819#M49917</guid>
      <dc:creator>Uwe Zessin</dc:creator>
      <dc:date>2005-09-13T10:40:57Z</dc:date>
    </item>
    <item>
      <title>Re: Remote procedure on DecNet V</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/remote-procedure-on-decnet-v/m-p/3624820#M49918</link>
      <description>Nope Ian,&lt;BR /&gt;I have on old&lt;BR /&gt;NEW::USER USER /DEFAULT&lt;BR /&gt;and on new&lt;BR /&gt;OLD::USER USER /DEFAULT&lt;BR /&gt;I have same username on both systems.&lt;BR /&gt;I set /default on both systems.&lt;BR /&gt; &lt;BR /&gt;Antonio Vigliotti&lt;BR /&gt;</description>
      <pubDate>Tue, 13 Sep 2005 10:42:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/remote-procedure-on-decnet-v/m-p/3624820#M49918</guid>
      <dc:creator>Antoniov.</dc:creator>
      <dc:date>2005-09-13T10:42:56Z</dc:date>
    </item>
    <item>
      <title>Re: Remote procedure on DecNet V</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/remote-procedure-on-decnet-v/m-p/3624821#M49919</link>
      <description>mc authorize show /prox *&lt;BR /&gt;&lt;BR /&gt;The (D)default is not missing ?&lt;BR /&gt;Try with username only.&lt;BR /&gt;&lt;BR /&gt;Wim</description>
      <pubDate>Tue, 13 Sep 2005 10:43:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/remote-procedure-on-decnet-v/m-p/3624821#M49919</guid>
      <dc:creator>Wim Van den Wyngaert</dc:creator>
      <dc:date>2005-09-13T10:43:37Z</dc:date>
    </item>
    <item>
      <title>Re: Remote procedure on DecNet V</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/remote-procedure-on-decnet-v/m-p/3624822#M49920</link>
      <description>It's weird.&lt;BR /&gt;On old&lt;BR /&gt;$ DIR NEW::*.*&lt;BR /&gt;%DIRECT-E-OPENIN, error opening NEW::*.*;* as input&lt;BR /&gt;-RMS-E-FND, ACP file or directory lookup failed&lt;BR /&gt;-SYSTEM-F-INVLOGIN, login information invalid at remote node&lt;BR /&gt; &lt;BR /&gt;It appears as I have not proxy on new server.&lt;BR /&gt; &lt;BR /&gt;On new server&lt;BR /&gt;UAF&amp;gt; sh */proxy&lt;BR /&gt;&lt;BR /&gt; Default proxies are flagged with (D)&lt;BR /&gt;&lt;BR /&gt;NEW::BRUNOG&lt;BR /&gt;    BRUNOG (D)&lt;BR /&gt;&lt;BR /&gt;NEW::SYSTEM&lt;BR /&gt;    SYSTEM (D)&lt;BR /&gt;&lt;BR /&gt;NEW::ANTONIOV&lt;BR /&gt;    ANTONIOV (D)&lt;BR /&gt;&lt;BR /&gt;NEW::USER&lt;BR /&gt;    USER (D)&lt;BR /&gt;&lt;BR /&gt;On old system I type DIR as ANTONIOV user.&lt;BR /&gt; &lt;BR /&gt;Antonio Vigliotti&lt;BR /&gt;</description>
      <pubDate>Tue, 13 Sep 2005 10:48:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/remote-procedure-on-decnet-v/m-p/3624822#M49920</guid>
      <dc:creator>Antoniov.</dc:creator>
      <dc:date>2005-09-13T10:48:16Z</dc:date>
    </item>
    <item>
      <title>Re: Remote procedure on DecNet V</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/remote-procedure-on-decnet-v/m-p/3624823#M49921</link>
      <description>Antonio,&lt;BR /&gt;&lt;BR /&gt;You don't have to declare mydcl. Only task or fal. Make sure all settings shown are the same as in enclosure.&lt;BR /&gt;&lt;BR /&gt;Wim&lt;BR /&gt;</description>
      <pubDate>Tue, 13 Sep 2005 10:49:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/remote-procedure-on-decnet-v/m-p/3624823#M49921</guid>
      <dc:creator>Wim Van den Wyngaert</dc:creator>
      <dc:date>2005-09-13T10:49:54Z</dc:date>
    </item>
    <item>
      <title>Re: Remote procedure on DecNet V</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/remote-procedure-on-decnet-v/m-p/3624824#M49922</link>
      <description>Wim,&lt;BR /&gt;my system shows information like yours.&lt;BR /&gt;Obviously UID is different.&lt;BR /&gt;For task also username is different; in your log there is *DECNET_TASK* while in my system is &lt;DEFAULT value=""&gt;&lt;BR /&gt;For fal,&lt;BR /&gt;I have no got name FAL in addresses section, just then number 17.&lt;BR /&gt;Your username is FAL$SERVER, my username is &lt;DEFAULT value=""&gt;&lt;BR /&gt; &lt;BR /&gt;Antonio Vigliotti&lt;BR /&gt;&lt;/DEFAULT&gt;&lt;/DEFAULT&gt;</description>
      <pubDate>Tue, 13 Sep 2005 10:58:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/remote-procedure-on-decnet-v/m-p/3624824#M49922</guid>
      <dc:creator>Antoniov.</dc:creator>
      <dc:date>2005-09-13T10:58:31Z</dc:date>
    </item>
    <item>
      <title>Re: Remote procedure on DecNet V</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/remote-procedure-on-decnet-v/m-p/3624825#M49923</link>
      <description>Don't you need a Phase V style entry like ?&lt;BR /&gt;LOCAL:.OLD::USER USER (D)</description>
      <pubDate>Tue, 13 Sep 2005 11:00:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/remote-procedure-on-decnet-v/m-p/3624825#M49923</guid>
      <dc:creator>Uwe Zessin</dc:creator>
      <dc:date>2005-09-13T11:00:17Z</dc:date>
    </item>
    <item>
      <title>Re: Remote procedure on DecNet V</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/remote-procedure-on-decnet-v/m-p/3624826#M49924</link>
      <description>Uwe,&lt;BR /&gt;&lt;BR /&gt;I think you are right.&lt;BR /&gt;&lt;BR /&gt;Antonio:&lt;BR /&gt;See the documentation:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://h71000.www7.hp.com/doc/73final/6499/6499pro_009.html" target="_blank"&gt;http://h71000.www7.hp.com/doc/73final/6499/6499pro_009.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Bojan</description>
      <pubDate>Tue, 13 Sep 2005 11:02:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/remote-procedure-on-decnet-v/m-p/3624826#M49924</guid>
      <dc:creator>Bojan Nemec</dc:creator>
      <dc:date>2005-09-13T11:02:30Z</dc:date>
    </item>
    <item>
      <title>Re: Remote procedure on DecNet V</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/remote-procedure-on-decnet-v/m-p/3624827#M49925</link>
      <description>Antonio,&lt;BR /&gt;&lt;BR /&gt;If the output you supplied from SHOW PROXY on the new system, you do not have an entry that will match on connections from the OLD system.&lt;BR /&gt;&lt;BR /&gt;What happens if you try&lt;BR /&gt;&lt;BR /&gt;UAF&amp;gt; add/proxy old::username username/def&lt;BR /&gt;UAF&amp;gt; show/proxy *::*&lt;BR /&gt;&lt;BR /&gt;?&lt;BR /&gt;&lt;BR /&gt;Robert</description>
      <pubDate>Tue, 13 Sep 2005 11:05:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/remote-procedure-on-decnet-v/m-p/3624827#M49925</guid>
      <dc:creator>Robert_Boyd</dc:creator>
      <dc:date>2005-09-13T11:05:16Z</dc:date>
    </item>
    <item>
      <title>Re: Remote procedure on DecNet V</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/remote-procedure-on-decnet-v/m-p/3624828#M49926</link>
      <description>Uwe,&lt;BR /&gt;bingo!&lt;BR /&gt;I declared old decnet style proxy.&lt;BR /&gt;With local:.old::user user (decnet new style) now it works fine.&lt;BR /&gt;Just solved 1.st trouble, I try remote procedure.&lt;BR /&gt; &lt;BR /&gt;Antonio Vigliotti&lt;BR /&gt;</description>
      <pubDate>Tue, 13 Sep 2005 11:11:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/remote-procedure-on-decnet-v/m-p/3624828#M49926</guid>
      <dc:creator>Antoniov.</dc:creator>
      <dc:date>2005-09-13T11:11:13Z</dc:date>
    </item>
    <item>
      <title>Re: Remote procedure on DecNet V</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/remote-procedure-on-decnet-v/m-p/3624829#M49927</link>
      <description>At first glance also remote procedure seems to work.&lt;BR /&gt;Trouble was proxy database.&lt;BR /&gt;However I discovered some new feature about Decnet OSI.&lt;BR /&gt;Thank to allbodies.&lt;BR /&gt; &lt;BR /&gt;Antonio Vigliotti&lt;BR /&gt;</description>
      <pubDate>Tue, 13 Sep 2005 11:17:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/remote-procedure-on-decnet-v/m-p/3624829#M49927</guid>
      <dc:creator>Antoniov.</dc:creator>
      <dc:date>2005-09-13T11:17:52Z</dc:date>
    </item>
  </channel>
</rss>

