Hello David!
Huh, let me try to help you :) I just tried what you did, and it worked for me. This action:
@MadvocAction
public class AllAction {
@In
String part1;
@Action("/${part1}")
public void viewOnePartMakro() {
System.out.println(part1);
}
}
worked just fine. So I would suggest the following:
+ be sure that only 3.6. jar files are deployed, as mixture of old and new jars may be not good
+ turn on the debug log and see if there is a message like this on server startup:
Registering Madvoc action: /${part1} to: com.oblac.gogolog.action.AllAction#viewOnePartMakro
+ Maybe something changed with your interceptor stack (MMInterceptorStack)? Can you try my class from above to see if that worked?
Finally, If you can isolate the problem in few classes, just send it to me, I will be more then happy to help you!