I created a new java class and i want to use it along with one new action with the following code:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<config version="1.0">
<scope>
<action id="teste_remessa">
<execution class="com.documentum.web.formext.action.LaunchComponent">
<component>teste_remessa_component</component>
<container>dialogcontainer</container>
</execution>
</action>
</scope>
</config>
then i created the component "teste_remessa_component" :
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<config version="1.0">
<scope>
<component id="teste_remessa_component">
<desc>
This component is used to save information about "remessas"
</desc>
<pages>
<start>/custom/jsp/webcomponent/library/testeRemessa/remessa.jsp</start>
</pages>
<class>com.documentum.webcomponent.libray.sendlocator.ManipulaDados</class>
<nlsbundle>com.documentum.webcomponent.library.sendlocator.TesteRemessaNlsProp</nlsbundle>
<helpcontextid>teste_remessa_component</helpcontextid>
</component>
</scope>
</config>
but is here that the error happens. When I call may action, webtop throws a error saying Component class not found com.documentum.webcomponent.libray.sendlocator.ManipulaDados...
But i have the java class in that directory...
What i'm doing wrong??