<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:content="http://purl.org/rss/1.0/modules/content/"
    xmlns:wfw="http://wellformedweb.org/CommentAPI/"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
>
<!-- MHonArc v2.6.10 -->
	<channel>
		<title>aspectj-users</title>
		<link>http://dev.eclipse.org/mhonarc/lists/aspectj-users/maillist.html</link>
		<description>aspectj-users</description>
		<language>en-us</language>
		<pubDate>Sat, 30 Aug 2008 15:39:28 GMT</pubDate>
		<lastBuildDate>Sat, 30 Aug 2008 15:39:28 GMT</lastBuildDate>
		<docs>http://blogs.law.harvard.edu/tech/rss</docs>
		<generator>MHonArc RSS 2.0 RCFile</generator>
		<managingEditor>webmaster@eclipse.org (Webmaster)</managingEditor>
		<webMaster>webmaster@eclipse.org (Webmaster)</webMaster>
		<image>
			<title>aspectj-users</title>
			<url>http://www.eclipse.org/eclipse.org-common/themes/Phoenix/images/eclipse_home_header.jpg</url>
			<link>http://dev.eclipse.org/mhonarc/lists/aspectj-users/maillist.html</link>
		</image>
 

	<item>
		<title>Re: [aspectj-users] Advising advice</title>
		<link>http://dev.eclipse.org/mhonarc/lists/aspectj-users/msg09619.html</link>
		<description>You have to store &amp;quot;thisJoinPoint&amp;quot; using the original advice (e.g. in a field) or you hav eto make it the argument of a &amp;quot;dummy&amp;quot; method call which will then be advised by the second advice. Eric 2008/8/30 Sago Djuret &amp;lt;sagodjuret@xxxxxxxxx&amp;gt;: </description>
		<content:encoded><![CDATA[<pre>You have to store &quot;thisJoinPoint&quot; using the original advice (e.g. in a
field) or you hav eto make it the argument of a &quot;dummy&quot; method call
which will then be advised by the second advice.

Eric

2008/8/30 Sago Djuret &lt;sagodjuret@xxxxxxxxx&gt;:
&gt; Is there a way to access the thisJoinPoint of an advice from a second advice?
&gt;
&gt; The following pointcut successfully picks out interesting calls from other advice.
&gt;
&gt;
&gt; pointcut breachOfContract( boolean condition ):
&gt;                call( * require( boolean ))
&gt;                &amp;&amp; args( condition );
&gt;
&gt;
&gt;
&gt; How can I access the data of the original thisJoinPoint? Something like:
&gt;
&gt; before( boolean condition ): breachOfContract( condition ) {
&gt;        System.out.println( thisJoinPoint.getThis().getSourceLocation() );
&gt; }
&gt;
&gt;
&gt;
&gt;
&gt;
&gt;
&gt; _______________________________________________
&gt; aspectj-users mailing list
&gt; aspectj-users@xxxxxxxxxxx
&gt; <a  href="https://dev.eclipse.org/mailman/listinfo/aspectj-users">https://dev.eclipse.org/mailman/listinfo/aspectj-users</a>
&gt;



-- 
Eric Bodden
Sable Research Group
McGill University, Montr&#xE9;al, Canada

</pre>]]></content:encoded>
		<pubDate>Sat, 30 Aug 2008 15:26:04 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/aspectj-users/msg09619.html</guid>
		<author>eric.bodden@xxxxxxx (Eric Bodden)</author>
	</item>
	<item>
		<title>[aspectj-users] Advising advice</title>
		<link>http://dev.eclipse.org/mhonarc/lists/aspectj-users/msg09618.html</link>
		<description>Is there a way to access the thisJoinPoint of an advice from a second advice? The following pointcut successfully picks out interesting calls from other advice. pointcut breachOfContract( boolean condition ): call( * require( boolean )) &amp;amp;&amp;amp; args( condition ...</description>
		<content:encoded><![CDATA[<pre>Is there a way to access the thisJoinPoint of an advice from a second advice?

The following pointcut successfully picks out interesting calls from other advice.


pointcut breachOfContract( boolean condition ):
		call( * require( boolean ))
		&amp;&amp; args( condition );



How can I access the data of the original thisJoinPoint? Something like:

before( boolean condition ): breachOfContract( condition ) {
	System.out.println( thisJoinPoint.getThis().getSourceLocation() );
}



      


</pre>]]></content:encoded>
		<pubDate>Sat, 30 Aug 2008 11:22:45 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/aspectj-users/msg09618.html</guid>
		<author>sagodjuret@xxxxxxx (Sago Djuret)</author>
	</item>
	<item>
		<title>[aspectj-users] Advising advice</title>
		<link>http://dev.eclipse.org/mhonarc/lists/aspectj-users/msg09617.html</link>
		<description>Is there a way to access the thisJoinPoint of an advice from a second advice? The following pointcut successfully picks out interesting calls from other advice. pointcut breachOfContract( boolean condition ): call( * require( boolean )) &amp;amp;&amp;amp; args( condition ...</description>
		<content:encoded><![CDATA[<pre>Is there a way to access the thisJoinPoint of an advice from a second advice?

The following pointcut successfully picks out interesting calls from other advice.


pointcut breachOfContract( boolean condition ):
		call( * require( boolean ))
		&amp;&amp; args( condition );



How can I access the data of the original thisJoinPoint? Something like:

before( boolean condition ): breachOfContract( condition ) {
	System.out.println( thisJoinPoint.getThis().getSourceLocation() );
}




      


</pre>]]></content:encoded>
		<pubDate>Sat, 30 Aug 2008 11:11:41 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/aspectj-users/msg09617.html</guid>
		<author>sagodjuret@xxxxxxx (Sago Djuret)</author>
	</item>
	<item>
		<title>Re: [aspectj-users] Getting Ejb Sessions IDs</title>
		<link>http://dev.eclipse.org/mhonarc/lists/aspectj-users/msg09616.html</link>
		<description> </description>
		<content:encoded><![CDATA[<pre>I've been holding of since I don't know EJB very well, but if you can
provide some code (or pseudo code), then I can give you some ideas
about aspectj.

On Fri, Aug 29, 2008 at 6:34 PM, Guillaume Pothier &lt;gpothier@xxxxxxxxx&gt; wrote:
&gt;&gt; What i was looking about getting Responses(Result) from this method calls?
&gt;
&gt; If I understand you (and AspectJ...) correctly, that would be either
&gt; with an &quot;after returning&quot; advice
&gt; (<a  href="http://www.eclipse.org/aspectj/doc/released/progguide/semantics-advice.html">http://www.eclipse.org/aspectj/doc/released/progguide/semantics-advice.html</a>),
&gt; or with an around advice, using the result of proceed()
&gt;
&gt;&gt; Most important is how can i get information like Bean Session IDs, and other
&gt;&gt; IDs and
&gt;&gt; contextual information?
&gt;
&gt; I know nothing about ejb, how do you get those from normal java code?
&gt; You can probably get them in the same way in an advice.
&gt; g
&gt;
&gt;&gt;
&gt;&gt; Please share your ideas and experiences
&gt;&gt;
&gt;&gt; Regards
&gt;&gt;
&gt;&gt;
&gt;&gt; _______________________________________________
&gt;&gt; aspectj-users mailing list
&gt;&gt; aspectj-users@xxxxxxxxxxx
&gt;&gt; <a  href="https://dev.eclipse.org/mailman/listinfo/aspectj-users">https://dev.eclipse.org/mailman/listinfo/aspectj-users</a>
&gt;&gt;
&gt;&gt;
&gt; _______________________________________________
&gt; aspectj-users mailing list
&gt; aspectj-users@xxxxxxxxxxx
&gt; <a  href="https://dev.eclipse.org/mailman/listinfo/aspectj-users">https://dev.eclipse.org/mailman/listinfo/aspectj-users</a>
&gt;

</pre>]]></content:encoded>
		<pubDate>Sat, 30 Aug 2008 09:49:01 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/aspectj-users/msg09616.html</guid>
		<author>andrew@xxxxxxx (Andrew Eisenberg)</author>
	</item>


	<item>
		<title>Re: [aspectj-users] Getting Ejb Sessions IDs</title>
		<link>http://dev.eclipse.org/mhonarc/lists/aspectj-users/msg09615.html</link>
		<description> If I understand you (and AspectJ...) correctly, that would be either with an &amp;quot;after returning&amp;quot; advice (http://www.eclipse.org/aspectj/doc/released/progguide/semantics-advice.html), or with an around advice, using the result of proceed() I know nothing abo...</description>
		<content:encoded><![CDATA[<pre>&gt; What i was looking about getting Responses(Result) from this method calls?

If I understand you (and AspectJ...) correctly, that would be either
with an &quot;after returning&quot; advice
(<a  href="http://www.eclipse.org/aspectj/doc/released/progguide/semantics-advice.html">http://www.eclipse.org/aspectj/doc/released/progguide/semantics-advice.html</a>),
or with an around advice, using the result of proceed()

&gt; Most important is how can i get information like Bean Session IDs, and other
&gt; IDs and
&gt; contextual information?

I know nothing about ejb, how do you get those from normal java code?
You can probably get them in the same way in an advice.
g

&gt;
&gt; Please share your ideas and experiences
&gt;
&gt; Regards
&gt;
&gt;
&gt; _______________________________________________
&gt; aspectj-users mailing list
&gt; aspectj-users@xxxxxxxxxxx
&gt; <a  href="https://dev.eclipse.org/mailman/listinfo/aspectj-users">https://dev.eclipse.org/mailman/listinfo/aspectj-users</a>
&gt;
&gt;

</pre>]]></content:encoded>
		<pubDate>Sat, 30 Aug 2008 01:34:34 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/aspectj-users/msg09615.html</guid>
		<author>gpothier@xxxxxxx (Guillaume Pothier)</author>
	</item>
	<item>
		<title>Re: [aspectj-users] Problem with annotation based pointcut and inner	classes</title>
		<link>http://dev.eclipse.org/mhonarc/lists/aspectj-users/msg09614.html</link>
		<description> </description>
		<content:encoded><![CDATA[<pre>No problem at all.  :-)

On Fri, Aug 29, 2008 at 4:46 AM, Christian K&#xF6;lle
&lt;christian.koelle@xxxxxxxxx&gt; wrote:
&gt; Andrew Eisenberg wrote:
&gt;&gt; Does this not work for you?  The call to method() in main() is where
&gt;&gt; the advice is applied.
&gt;&gt;
&gt;
&gt; Hi
&gt;
&gt; Thanks for the answer and sorry for the question in the first place.
&gt; You're right, this works fine. My problem was the result of a build
&gt; problem in our project. The subproject in question hasn't been weaved
&gt; with the aspect.
&gt;
&gt; Sorry for wasting your time
&gt; Christian
&gt;

</pre>]]></content:encoded>
		<pubDate>Fri, 29 Aug 2008 15:15:01 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/aspectj-users/msg09614.html</guid>
		<author>andrew@xxxxxxx (Andrew Eisenberg)</author>
	</item>
	<item>
		<title>Re: [aspectj-users] Loadtime weaving of Ejb Calls</title>
		<link>http://dev.eclipse.org/mhonarc/lists/aspectj-users/msg09613.html</link>
		<description> </description>
		<content:encoded><![CDATA[<pre>

I didnt realize that Javax package was not included by default while
weaving.

I did it by placing weave tag inside aop.xml and included javax.ejb.* and 
now its weaving my ejb calls.

Thanx to one of previous posts.

 

rmahmood wrote:
&gt; 
&gt; Hi All,
&gt; 
&gt; I am working on an application where i have to intercept all the calls
&gt; made by EjbHome and EjbObject interface from an existing J2EE
&gt; Application(.jar or binary form).
&gt; 
&gt; How can i do it with loadtime weaving or is there any other way to do it?
&gt; 
&gt; Thanx for ur replies:confused:
&gt; 
&gt; 

-- 
View this message in context: <a  href="http://www.nabble.com/Loadtime-weaving-of-Ejb-Calls-tp19161136p19219712.html">http://www.nabble.com/Loadtime-weaving-of-Ejb-Calls-tp19161136p19219712.html</a>
Sent from the AspectJ - users mailing list archive at Nabble.com.


</pre>]]></content:encoded>
		<pubDate>Fri, 29 Aug 2008 13:17:05 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/aspectj-users/msg09613.html</guid>
		<author>rashid_m180@xxxxxxx (rmahmood)</author>
	</item>
	<item>
		<title>Re: [aspectj-users] Problem with annotation based pointcut and inner	classes</title>
		<link>http://dev.eclipse.org/mhonarc/lists/aspectj-users/msg09612.html</link>
		<description> Hi Thanks for the answer and sorry for the question in the first place. You're right, this works fine. My problem was the result of a build problem in our project. The subproject in question hasn't been weaved with the aspect. Sorry for wasting your time ...</description>
		<content:encoded><![CDATA[<pre>Andrew Eisenberg wrote:
&gt; Does this not work for you?  The call to method() in main() is where
&gt; the advice is applied.
&gt; 

Hi

Thanks for the answer and sorry for the question in the first place.
You're right, this works fine. My problem was the result of a build
problem in our project. The subproject in question hasn't been weaved
with the aspect.

Sorry for wasting your time
Christian

</pre>]]></content:encoded>
		<pubDate>Fri, 29 Aug 2008 11:49:25 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/aspectj-users/msg09612.html</guid>
		<author>christian.koelle@xxxxxxx (Christian K&#xF6;lle)</author>
	</item>
	<item>
		<title>[aspectj-users] Getting Ejb Sessions IDs</title>
		<link>http://dev.eclipse.org/mhonarc/lists/aspectj-users/msg09611.html</link>
		<description>Hi All,I am working on an application where i have to record/save Ejb invocations from an Ejb Client Application. I tried with AspectJ LoadTime Weaving and am able to get some information about these invocations like Method Name, Method Arguments etc.What ...</description>
		<content:encoded><![CDATA[<table cellspacing="0" cellpadding="0" border="0" ><tr><td valign="top" style="font: inherit;">Hi All,<br><br>I am working on an application where i have to record/save Ejb invocations from an Ejb Client Application. I tried with AspectJ LoadTime Weaving and am able to get some information about these invocations like Method Name, Method Arguments etc.<br><br>What i was looking about getting Responses(Result) from this method calls?<br><br>Most important is how can i get information like Bean Session IDs, and other IDs and<br>contextual information?<br><br>Please share your ideas and experiences<br><br>Regards &nbsp; <br></td></tr></table><br>



      ]]></content:encoded>
		<pubDate>Fri, 29 Aug 2008 07:48:57 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/aspectj-users/msg09611.html</guid>
		<author>rashid_m180@xxxxxxx (Rashid Mahmood)</author>
	</item>


	<item>
		<title>Re: [aspectj-users] Regression from 1.5: can't find type error in	AspectJ 1.6</title>
		<link>http://dev.eclipse.org/mhonarc/lists/aspectj-users/msg09610.html</link>
		<description> </description>
		<content:encoded><![CDATA[<pre>Hi Andy,

Many thanks! The fix that you committed is working. I cannot reproduce
the issue with build aspectj-DEVELOPMENT-20080828133357.jar.
Everything is working properly again.

Kevin

On Wed, Aug 27, 2008 at 4:24 PM, Andy Clement &lt;andrew.clement@xxxxxxxxx&gt; wrote:
&gt; Hi Kevin,
&gt;
&gt; Thanks for trying that.  Instead of the unhelpful 'Argh!' message I now get
&gt; a much more reasonable:
&gt;
&gt; Unable to pack method, jump (with opcode=167) is too far: 42205
&gt; java.lang.IllegalStateException: Unable to pack method, jump (with
&gt; opcode=167) is too far: 42205
&gt;
&gt; 	at
&gt; org.aspectj.apache.bcel.generic.InstructionBranch.updatePosition(InstructionBranch.java:179)
&gt; 	at
&gt; org.aspectj.apache.bcel.generic.BranchHandle.updatePosition(BranchHandle.java:92)
&gt; 	at
&gt; org.aspectj.apache.bcel.generic.InstructionList.setPositions(InstructionList.java:905)
&gt;
&gt;
&gt; in your ajcore file.  And I think that is enough information for me to fix
&gt; it.
&gt;
&gt; Andy.
&gt;
&gt; 2008/8/27 Kevin Hoffman &lt;kevinjohnhoffman@xxxxxxxxx&gt;
&gt;&gt;
&gt;&gt; Hi Andy,
&gt;&gt;
&gt;&gt; I tried with the latest development version (version string is Wed Aug
&gt;&gt; 27 2008 at 1:27:57 GMT) with the same results.
&gt;&gt;
&gt;&gt; Here are the new corefiles.
&gt;&gt;
&gt;&gt; <a  href="http://www.cs.purdue.edu/homes/kjhoffma/ajcore.20080827.160703.630.txt">http://www.cs.purdue.edu/homes/kjhoffma/ajcore.20080827.160703.630.txt</a>
&gt;&gt; <a  href="http://www.cs.purdue.edu/homes/kjhoffma/ajcore.20080827.160703.864.txt">http://www.cs.purdue.edu/homes/kjhoffma/ajcore.20080827.160703.864.txt</a>
&gt;&gt;
&gt;&gt; I'll email you a direct link to the zip that allows you to easily
&gt;&gt; reproduce. Is there indication which method is becoming too large? Let
&gt;&gt; me know what else I can do to help.
&gt;&gt;
&gt;&gt; Thanks,
&gt;&gt; Kevin
&gt;&gt;
&gt;&gt; On Tue, Aug 26, 2008 at 11:37 AM, Andy Clement &lt;andrew.clement@xxxxxxxxx&gt;
&gt;&gt; wrote:
&gt;&gt; &gt; Hi Kevin,
&gt;&gt; &gt;
&gt;&gt; &gt; I have raised:
&gt;&gt; &gt;
&gt;&gt; &gt; <a  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=245274">https://bugs.eclipse.org/bugs/show_bug.cgi?id=245274</a>
&gt;&gt; &gt;
&gt;&gt; &gt; to look at this.
&gt;&gt; &gt;
&gt;&gt; &gt; The exception is thrown because the method becomes too large during
&gt;&gt; &gt; weaving
&gt;&gt; &gt; and cannot fit into the max method code size when we come to pack it up
&gt;&gt; &gt; and
&gt;&gt; &gt; write it to disk.  Why is it bigger than previously?  I'm thinking right
&gt;&gt; &gt; now
&gt;&gt; &gt; that it is this:
&gt;&gt; &gt;
&gt;&gt; &gt; <a  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=243192">https://bugs.eclipse.org/bugs/show_bug.cgi?id=243192</a>
&gt;&gt; &gt;
&gt;&gt; &gt; which I only fixed a week ago.  That fix is in the latest dev builds of
&gt;&gt; &gt; AspectJ (as we get ready for AspectJ 1.6.2) - can you please try it out?
&gt;&gt; &gt; The
&gt;&gt; &gt; dev builds are available at the top of the download page.
&gt;&gt; &gt;
&gt;&gt; &gt; It is possible that weaving can cause a method to become too large - and
&gt;&gt; &gt; we
&gt;&gt; &gt; currently do not have a solution to that (we have open bugs relating to
&gt;&gt; &gt; it),
&gt;&gt; &gt; but if it previously didn't get too big, there is no reason why it
&gt;&gt; &gt; should
&gt;&gt; &gt; now be too big.  If you try it out with a dev build and it still fails,
&gt;&gt; &gt; I'll
&gt;&gt; &gt; probably ask you for the extra materials to recreate it.  If nothing
&gt;&gt; &gt; else
&gt;&gt; &gt; I'll certainly change the exception message from 'Argh!' ;)
&gt;&gt; &gt;
&gt;&gt; &gt; cheers,
&gt;&gt; &gt; Andy.
&gt;&gt; &gt;
&gt;&gt; &gt; 2008/8/25 Kevin Hoffman &lt;kevinjohnhoffman@xxxxxxxxx&gt;
&gt;&gt; &gt;&gt;
&gt;&gt; &gt;&gt; Hello,
&gt;&gt; &gt;&gt;
&gt;&gt; &gt;&gt; I'm using the aj5 script to perform dynamic weaving on Xalan for Java.
&gt;&gt; &gt;&gt; Things were working fine when we were using AspectJ 1.5. Recently I
&gt;&gt; &gt;&gt; upgraded to version 1.6.1 and recompiled my aspects using the newer
&gt;&gt; &gt;&gt; compiler. The runtime weaving / aspects still work most of the time,
&gt;&gt; &gt;&gt; but I have encountered an important case where AspectJ core-dumps with
&gt;&gt; &gt;&gt; ajcore files when trying to dynamically weave a certain class:
&gt;&gt; &gt;&gt;
&gt;&gt; &gt;&gt; Aug 25, 2008 6:20:52 PM org.aspectj.weaver.tools.Jdk14Trace error
&gt;&gt; &gt;&gt; SEVERE: org/apache/xalan/xslt/Process
&gt;&gt; &gt;&gt; java.lang.IllegalStateException: Argh!
&gt;&gt; &gt;&gt;    at
&gt;&gt; &gt;&gt;
&gt;&gt; &gt;&gt; org.aspectj.apache.bcel.generic.InstructionBranch.updatePosition(InstructionBranch.java:178)
&gt;&gt; &gt;&gt;    at
&gt;&gt; &gt;&gt;
&gt;&gt; &gt;&gt; org.aspectj.apache.bcel.generic.BranchHandle.updatePosition(BranchHandle.java:92)
&gt;&gt; &gt;&gt;    at
&gt;&gt; &gt;&gt;
&gt;&gt; &gt;&gt; org.aspectj.apache.bcel.generic.InstructionList.setPositions(InstructionList.java:905)
&gt;&gt; &gt;&gt;    at
&gt;&gt; &gt;&gt;
&gt;&gt; &gt;&gt; org.aspectj.apache.bcel.generic.InstructionList.setPositions(InstructionList.java:826)
&gt;&gt; &gt;&gt;    at
&gt;&gt; &gt;&gt;
&gt;&gt; &gt;&gt; org.aspectj.apache.bcel.generic.InstructionList.getByteCode(InstructionList.java:931)
&gt;&gt; &gt;&gt;    at
&gt;&gt; &gt;&gt; org.aspectj.apache.bcel.generic.MethodGen.getMethod(MethodGen.java:699)
&gt;&gt; &gt;&gt;    ...
&gt;&gt; &gt;&gt;
&gt;&gt; &gt;&gt; Process is a class that has a main method. (I'm able to weave other
&gt;&gt; &gt;&gt; classes not from Xalan that have main methods just fine.) I have tried
&gt;&gt; &gt;&gt; compiling Xalan with Java 1.4 or 1.5 but it doesn't affect the result.
&gt;&gt; &gt;&gt; I haven't tried compiling with 1.6.
&gt;&gt; &gt;&gt;
&gt;&gt; &gt;&gt; I still have the JAR of my aspects that were compiled with AspectJ
&gt;&gt; &gt;&gt; 1.5. Using the JAR of aspects compiled with AspectJ 1.5 with the
&gt;&gt; &gt;&gt; AspectJ 1.6 runtime weaver produces the same error. Using the AspectJ
&gt;&gt; &gt;&gt; 1.5 runtime weaver with the aspects compiled with AspectJ 1.5 still
&gt;&gt; &gt;&gt; works fine. (and using the AspectJ 1.5 runtime with the aspects
&gt;&gt; &gt;&gt; compiled with AspectJ 1.6 isn't possible...)
&gt;&gt; &gt;&gt;
&gt;&gt; &gt;&gt; Here are links to the ajcore files (two ajcore files generated per
&gt;&gt; &gt;&gt; attempt at weaving the class):
&gt;&gt; &gt;&gt;
&gt;&gt; &gt;&gt; <a  href="http://www.cs.purdue.edu/homes/kjhoffma/ajcore.20080825.182052.910.txt">http://www.cs.purdue.edu/homes/kjhoffma/ajcore.20080825.182052.910.txt</a>
&gt;&gt; &gt;&gt; <a  href="http://www.cs.purdue.edu/homes/kjhoffma/ajcore.20080825.182053.153.txt">http://www.cs.purdue.edu/homes/kjhoffma/ajcore.20080825.182053.153.txt</a>
&gt;&gt; &gt;&gt;
&gt;&gt; &gt;&gt; The Java class file that it is having trouble weaving is also
&gt;&gt; &gt;&gt; available:
&gt;&gt; &gt;&gt;
&gt;&gt; &gt;&gt; <a  href="http://www.cs.purdue.edu/homes/kjhoffma/Process.class">http://www.cs.purdue.edu/homes/kjhoffma/Process.class</a>
&gt;&gt; &gt;&gt;
&gt;&gt; &gt;&gt; I can provide information to download the full package with JARs and
&gt;&gt; &gt;&gt; scripts to reproduce off-list. Let me know what else I can gather to
&gt;&gt; &gt;&gt; help get this issue fixed.
&gt;&gt; &gt;&gt;
&gt;&gt; &gt;&gt; Thanks,
&gt;&gt; &gt;&gt; Kevin
&gt;&gt; &gt;&gt; _______________________________________________
&gt;&gt; &gt;&gt; aspectj-users mailing list
&gt;&gt; &gt;&gt; aspectj-users@xxxxxxxxxxx
&gt;&gt; &gt;&gt; <a  href="https://dev.eclipse.org/mailman/listinfo/aspectj-users">https://dev.eclipse.org/mailman/listinfo/aspectj-users</a>
&gt;&gt; &gt;
&gt;&gt; &gt;
&gt;&gt; &gt; _______________________________________________
&gt;&gt; &gt; aspectj-users mailing list
&gt;&gt; &gt; aspectj-users@xxxxxxxxxxx
&gt;&gt; &gt; <a  href="https://dev.eclipse.org/mailman/listinfo/aspectj-users">https://dev.eclipse.org/mailman/listinfo/aspectj-users</a>
&gt;&gt; &gt;
&gt;&gt; &gt;
&gt;&gt; _______________________________________________
&gt;&gt; aspectj-users mailing list
&gt;&gt; aspectj-users@xxxxxxxxxxx
&gt;&gt; <a  href="https://dev.eclipse.org/mailman/listinfo/aspectj-users">https://dev.eclipse.org/mailman/listinfo/aspectj-users</a>
&gt;
&gt;
&gt; _______________________________________________
&gt; aspectj-users mailing list
&gt; aspectj-users@xxxxxxxxxxx
&gt; <a  href="https://dev.eclipse.org/mailman/listinfo/aspectj-users">https://dev.eclipse.org/mailman/listinfo/aspectj-users</a>
&gt;
&gt;

</pre>]]></content:encoded>
		<pubDate>Fri, 29 Aug 2008 01:50:10 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/aspectj-users/msg09610.html</guid>
		<author>kevinjohnhoffman@xxxxxxx (Kevin Hoffman)</author>
	</item>

 
	</channel>
	</rss>
<!-- MHonArc v2.6.10 -->
