Hi!

I still have the problem of setting up the javaflow byte code enhancement.

After the task did not work (as described within my previous email):
---
<javaflow srcdir="build/classes" destdir="build/classes">
  <include name="**/*.class" />
</javaflow>
--
Returns the error message:
The <javaflow> type doesn't support the "destdir" attribute.

I tried to use the continuation class loader:
--
                try {
                        ClassLoader cl = new ContinuationClassLoader(new URL[] 
{ new URL(
                                        "file:///.") }, 
A.class.getClassLoader()); // parent class
                                                                                
                                                // loader
                        cl.loadClass("MyRunnable");
                } catch (Exception e) {
                        System.out.println(e);
                        e.printStackTrace();
                        return;
                }

                Continuation c = Continuation.startWith(new MyRunnable());
--
but all I get is an illegal state exception, just as if I didn't use it.

Am I missing something?
Or is the javaflow jar corrupted?

Thanks for any help!

Greetings,
Marcus

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to