XPRESS exception

Hi, I'm getting following error in my workflow,XPRESS exception: java.lang.NoClassDefFoundError: com/ibm/eNetwork/ECL/event/ECLPSListenercan any one let me know why we get this.
[213 byte] By [sudheer1] at [2007-11-26 9:06:49]
# 1
You are calling the ECLPSListener class, with an invoke, or a resource.Wich ressource do you manage ?Do you invoke a specific class ?
VinZ at 2007-7-6 23:20:50 > top of Java-index,Web & Directory Servers,Directory Servers...
# 2

I'm not invoking any class,

Activity1: I set some variables to a value.

Activity2:Checkout view, Unlock view

Following is the code

<Activity id='9' name='Checkout User' hidden='true'>

<Action id='0' name='Checkout View' application='com.waveset.session.WorkflowServices' hidden='true'>

<Argument name='op' value='checkoutView'/>

<Argument name='type' value='User'/>

<Argument name='id' value='$(accountId)'/>

<Argument name='subject' value='Configurator'/>

<Return from='view' to='user'/>

</Action>

<Action id='1' application='com.waveset.session.WorkflowServices'>

<Argument name='op' value='unlockView'/>

<Argument name='subject' value='Configurator'/>

<Argument name='view' value='$(user)'/>

</Action>

<Transition to='Error'>

<eq>

<ref>check</ref>

<s>false</s>

</eq>

</Transition>

<Transition to='Begin Process'/>

<WorkflowEditor x='64' y='117'/>

</Activity>

Pls let me know which is tjrowing Exception

sudheer1 at 2007-7-6 23:20:50 > top of Java-index,Web & Directory Servers,Directory Servers...
# 3
on which resources ?
VinZ at 2007-7-6 23:20:50 > top of Java-index,Web & Directory Servers,Directory Servers...
# 4
'eRFC' which we created.
sudheer1 at 2007-7-6 23:20:50 > top of Java-index,Web & Directory Servers,Directory Servers...
# 5
since there no ibm package in idm (checked in jar file), I think your adapter is looking for this class, and don't find it.Is it right your adapter looking for ibm package ?
VinZ at 2007-7-6 23:20:50 > top of Java-index,Web & Directory Servers,Directory Servers...
# 6
Hi, My adapter is working, im able to do all the functionality, workflow is coming to an end finishing all the activities, but with this warning message.
sudheer1 at 2007-7-6 23:20:50 > top of Java-index,Web & Directory Servers,Directory Servers...
# 7
Hi,for me, you should fix your problem if you find the correct jar file with ECLPListener class, and add it to your application server classpath.
VinZ at 2007-7-6 23:20:50 > top of Java-index,Web & Directory Servers,Directory Servers...
# 8

Hi,

I'm having the same problem.

I'm using an AD resource. Here's my code:

<Field name="testRequest">

<Display class="Label"/>

<Derivation>

<block trace="true">

<set name="resource">

<invoke name="getObjectIfExists">

<ref>:display.session</ref>

<s>resource</s>

<s>AD</s>

</invoke>

</set>

<set name="adapterProxy">

<invoke name="getAdapterProxy" class="com.waveset.adapter.ResourceAdapterBase">

<ref>resource</ref>

<ref>:display.session</ref>

</invoke>

</set>

<set name="attrsToGet">

<invoke name="getObjectTypeObjectAttributeNames">

<invoke name="getResource">

<ref>adapterProxy</ref>

</invoke>

<s>Group</s>

</invoke>

</set>

<set name="crap">

<invoke name="getObject">

<ref>adapterProxy</ref>

<s>Group</s>

<s>CN=BOBToolGroups,CN=Users,DC=bobdom,DC=local</s>

<ref>attrsToGet</ref>

<new class="java.util.HashMap"/>

</invoke>

</set>

<invoke name="toXml">

<ref>crap</ref>

</invoke>

</block>

</Derivation>

</Field>

kevinmaes at 2007-7-6 23:20:50 > top of Java-index,Web & Directory Servers,Directory Servers...
# 9
I found the solutioncheck this url: http://docs.sun.com/source/819-4520/Natural.htmlyou can find the necessary habeans.jar here: http://moka.ccr.jussieu.fr/codebase/habeans.jar
kevinmaes at 2007-7-6 23:20:50 > top of Java-index,Web & Directory Servers,Directory Servers...