Before the upgrade from 6.7.2 to 7.2.1 we used the following external java code
import org.w3c.dom.Document;
public class DcrLijst extends BaseExternal { public Document execute(String method, com.interwoven.livesite.common.util.Hashtable params) throws ExternalException { .... ....
|
But they don't work anymore

.
Even the helloWorld example does not work when I use the
| import org.w3c.dom.Document; |
So did they change the Document import from
| import org.w3c.dom.Document; |
to
| import org.dom4j.Document; |
?
And do I need to do this for all the external java call?
I am getting the following error -->
Caused by: java.lang.RuntimeException: No such method: public org.dom4j.Document helloWorld(com.interwoven.livesite.runtime.RequestContext,) found on object of type: biz.panoptic.livesite.dcr.HelloWorld at com.interwoven.livesite.common.pojo.PojoMethodCall.executeMethod(PojoMethodCall.java:393) at com.interwoven.livesite.common.pojo.PojoMethodCall.execute(PojoMethodCall.java:454)
|