al agady

Greenhorn
+ Follow
since Feb 07, 2004
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by al agady

Yes, I did (this is what I started with). When you Goggle "Drool", the top in the list is "Drool - JBoss community" link where you can get link to "Documentation". Over there there is a link to manual, but I don't see any link to beginners tutorials. The link that I found for tutorials, doesn't contain source code. This is what is not clear for me - if there is an active development of a tool, but there is not much recent activity around this tool in Java world, then the question is if people are still using this tool. That's why I am looking to hear about other developers experience with different rule engines.
I am looking for an open source rule engine, and so far what I see is that there was a lot of development of different rule engines (like Drools, JSR-94 etc) few years ago, but I don't see much action around this topic currently. All the articles that I found are dated back to 2004 - 2008. I tried to use Drools' tutorials from "codehaus", but when I click on "CSV" link to download source code for tutorial, I get "Page Not Found".

Does anyone has a positive experience with any of open source rule engines? Any articles to read about what is going on in this area?
Thanks, Jayr

It's clear to me now.

Regards
Gali
I am trying to understand what is the reason for creating topic session with acknowledge modes. Since topic is a publish / subscribe implementation, I believe the MQ server should not care if the message was received by some subscribers or not.

I was not able to find an answer to this question. All articles and tutorials are describing how acknowledge modes affect queue, but don't mention how they affect topic. Is there any article that would describe this issue?

Thanks
Gali
I am trying to create Struts unit test using AspectJ. I installed AJDT plugin in Eclipse, and created an easy aspect. There are only two pointcuts and two advices in the aspect. The first advice gets applied, and the second does not get applied because it doesn't find right match (can not find a match for Action "execute" method. I can not figure out why. Did someone had similar problems with applying advice to "execute" method :

Here is my code (advice highligted in green, gets applied, advice hightligted in red does not get applied):

public aspect ErrorLookupAspect {

pointcut errorLookupTest(ErrorLookupActionTest actionTest):
execution(public void ErrorLookupActionTest+.test*())
&& this(actionTest);

pointcut actionExecute()
: execution(public ActionForward ErrorLookupAction.execute(..));

before(ErrorLookupActionTest actionTest)
: errorLookupTest(actionTest){
System.out.println("Before Test");
}


before(): actionExecute(){
System.out.println("Executing");
}
}
13 years ago
Hi,
My test environment doesn't auto-reload classes after comiplation. In web.xml "Enable reloading" is checked and in ibm-ext-web.xmi autoReloading is set to "true". However to reload the classes I have to restart the server. Did someone has this problem or has an idea what is going on?
Thanks
Agady
21 years ago
Hi, does someone know if it is possible to set up a cyrillic encoding support in WebSphere Application Developer 5 (in HTML editor)? I need Windows-1251 encoding. May be there is a plug-in for this?
Thanks
Agady
21 years ago