ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Revision history [back]

I am sorry guys I found the problem!!!

I tried exhaustively solve the issue....

Maybe help someone too: The problem is in the urdf.xacro files which is the robot_model_description...

In the first line on the headers, the authors wrote:

<robot xmlns:xacro="http://ros.org/wiki/xacro" name="ur10e" &gt;<="" p="">

When they should write:

<robot xmlns:xacro="http://ros.org/wiki/xacro"> <xacro:include filename="ur10e">

When I implemented the change below, the moveit_assistant worked well and load the urdf model!!!

click to hide/show revision 2
No.2 Revision

I am sorry guys I found the problem!!!

I tried exhaustively solve the issue....

Maybe help someone too: The problem is in the urdf.xacro files which is the robot_model_description...

In the first line on the headers, the authors wrote:

<?xml version="1.0"?>
<robot xmlns:xacro="http://ros.org/wiki/xacro"
       name="ur10e" >
<robot xmlns:xacro="http://ros.org/wiki/xacro" name="ur10e" &gt;<="" p="">

When they should write:

<?xml version="1.0"?>
<robot xmlns:xacro="http://ros.org/wiki/xacro">
<xacro:include filename="ur10e">

filename="ur10e">

When I implemented the change below, the moveit_assistant worked well and load the urdf model!!!