<?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: Connection in Robot Structural Analysis Forum</title>
    <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/connection/m-p/13036497#M1988</link>
    <description>&lt;P&gt;hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/11888083"&gt;@durducgeorge&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The API itself is not the issue; the problem lies in the availability of the connection server. A good practice is to first ensure the structure has been analyzed and to manually create a connection in standalone mode. This will activate the server. You can then run your script to generate the connections, making sure to handle the numbering carefully.&lt;/P&gt;
&lt;P&gt;Best Regards&lt;/P&gt;</description>
    <pubDate>Wed, 23 Jul 2025 08:30:59 GMT</pubDate>
    <dc:creator>Stephane.kapetanovic</dc:creator>
    <dc:date>2025-07-23T08:30:59Z</dc:date>
    <item>
      <title>Connection</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/connection/m-p/13017583#M1983</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Somebody know if it is possible to create in VBA or C# a connection&amp;nbsp; with its characteristics?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 12 Sep 2024 20:09:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/connection/m-p/13017583#M1983</guid>
      <dc:creator>durducgeorge</dc:creator>
      <dc:date>2024-09-12T20:09:53Z</dc:date>
    </item>
    <item>
      <title>Re: Connection</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/connection/m-p/13017691#M1984</link>
      <description>&lt;P&gt;hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/11888083"&gt;@durducgeorge&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;you should read this topic&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-create-a-frame-knee/m-p/8302913" target="_blank" rel="noopener"&gt;https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-create-a-frame-knee/m-p/8302913&lt;/A&gt;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;RobotApplication RobApp = new RobotApplication();
IRJointConnectionServer JointServer = RobApp.Project.Connections;
RJointConnectionInfo JointInfo = JointServer.CreateInfo();
JointInfo.DefType = IRJointConnectionDefType.I_JCDT_STANDALONE;
IRJointConnection Connection = JointServer.Create(IRJointConnectionType.I_JCT_KNEE_WELDED);
IRJointKnee KneeWelded = (IRJointKnee)Connection;
KneeWelded.Beam.Section = "IPE 300";
KneeWelded.Column.Section = "IPE 300";
Connection.SetToRobot(JointInfo);&lt;/LI-CODE&gt;&lt;P&gt;Best Regards&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Sep 2024 02:49:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/connection/m-p/13017691#M1984</guid>
      <dc:creator>Stephane.kapetanovic</dc:creator>
      <dc:date>2024-09-13T02:49:32Z</dc:date>
    </item>
    <item>
      <title>Re: Connection</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/connection/m-p/13017865#M1985</link>
      <description>Snippet&lt;BR /&gt;&lt;BR /&gt;Thanks! it works!&lt;BR /&gt;&lt;BR /&gt;But I want to assign to a node this connection (for example node 5, baars 4&lt;BR /&gt;et 2).&lt;BR /&gt;&lt;BR /&gt;I get an error with my code.&lt;BR /&gt;&lt;BR /&gt;Do you know where is the problem?&lt;BR /&gt;&lt;BR /&gt;[image: image.png]&lt;BR /&gt;&lt;BR /&gt;RobotApplication RobApp = new RobotApplication();&lt;BR /&gt;IRJointConnectionServer JointServer = RobApp.Project.Connections;&lt;BR /&gt;RJointConnectionInfo JointInfo = JointServer.CreateInfo();&lt;BR /&gt;JointInfo.DefType = IRJointConnectionDefType.I_JCDT_IN_STRUCTURE;&lt;BR /&gt;JointInfo.Type = IRJointConnectionType.I_JCT_BEAM_COLUMN;&lt;BR /&gt;RobotSelection robSelbar;&lt;BR /&gt;RobotSelection robSelNode;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;IRJointConnection Connection =&lt;BR /&gt;JointServer.Create(IRJointConnectionType.I_JCT_KNEE_BOLTED);&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;IRJointKnee KneeBolted = (IRJointKnee)Connection;&lt;BR /&gt;KneeBolted.Beam.BarNumber = 2;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;KneeBolted.Column.BarNumber = 4;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Connection.SetToRobot(JointInfo);&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 12 Sep 2024 23:29:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/connection/m-p/13017865#M1985</guid>
      <dc:creator>durducgeorge</dc:creator>
      <dc:date>2024-09-12T23:29:06Z</dc:date>
    </item>
    <item>
      <title>Re: Connection</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/connection/m-p/13020507#M1986</link>
      <description>&lt;P&gt;hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/11888083"&gt;@durducgeorge&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;you're wright, it seems that the barNumber parameters for the beam and column have get and set accessors.&lt;/P&gt;&lt;P&gt;Best Regards&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2" color="#0000FF"&gt;updated&lt;/FONT&gt;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;RobotApplication RobApp = new RobotApplication();
IRJointConnectionServer JointServer = RobApp.Project.Connections;
IRJointConnection Connection = JointServer.Create(IRJointConnectionType.I_JCT_KNEE_WELDED);
int num = 1;
RJointConnectionInfo Info = JointServer.CreateInfo();
                     Info.DefType = IRJointConnectionDefType.I_JCDT_IN_STRUCTURE;
                     Info.Name = $"Knee Welded {num}";
                     Info.Number = num; Info.Node = 2; Info.Elements.FromText("1 2");
IRJointKnee Knee = (IRJointKnee)Connection;
            Knee.KneeType = IRJointKneeType.I_JKT_BEAM2COLUMN;
            Knee.BracketLow.Exist = 1;
            Knee.BracketLow.Length = 1000;
Connection.SetToRobot(Info);&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 22 Sep 2024 09:34:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/connection/m-p/13020507#M1986</guid>
      <dc:creator>Stephane.kapetanovic</dc:creator>
      <dc:date>2024-09-22T09:34:25Z</dc:date>
    </item>
    <item>
      <title>Re: Connection</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/connection/m-p/13036420#M1987</link>
      <description>&lt;P&gt;Thank you&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6876621"&gt;@Stephane.kapetanovic&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But I've tried many times and I don't understand why I have this error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do you have some solutions that I can fix it?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="durducgeorge_0-1727007470472.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1412159i4B707B2F208797A9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="durducgeorge_0-1727007470472.png" alt="durducgeorge_0-1727007470472.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="durducgeorge_1-1727007755569.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1412161i9773BD2890BE5FBD/image-size/medium?v=v2&amp;amp;px=400" role="button" title="durducgeorge_1-1727007755569.png" alt="durducgeorge_1-1727007755569.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 22 Sep 2024 12:24:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/connection/m-p/13036420#M1987</guid>
      <dc:creator>durducgeorge</dc:creator>
      <dc:date>2024-09-22T12:24:27Z</dc:date>
    </item>
    <item>
      <title>Re: Connection</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/connection/m-p/13036497#M1988</link>
      <description>&lt;P&gt;hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/11888083"&gt;@durducgeorge&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The API itself is not the issue; the problem lies in the availability of the connection server. A good practice is to first ensure the structure has been analyzed and to manually create a connection in standalone mode. This will activate the server. You can then run your script to generate the connections, making sure to handle the numbering carefully.&lt;/P&gt;
&lt;P&gt;Best Regards&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jul 2025 08:30:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/connection/m-p/13036497#M1988</guid>
      <dc:creator>Stephane.kapetanovic</dc:creator>
      <dc:date>2025-07-23T08:30:59Z</dc:date>
    </item>
    <item>
      <title>Re: Connection</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/connection/m-p/13036528#M1989</link>
      <description>&lt;P&gt;You are right&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6876621"&gt;@Stephane.kapetanovic&lt;/a&gt;&amp;nbsp;, it works that way!&lt;/P&gt;&lt;P&gt;Thanks a lot!&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;</description>
      <pubDate>Sun, 22 Sep 2024 13:48:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/connection/m-p/13036528#M1989</guid>
      <dc:creator>durducgeorge</dc:creator>
      <dc:date>2024-09-22T13:48:36Z</dc:date>
    </item>
  </channel>
</rss>

