vote up 1 vote down star

How can I refer a custom function in xml? Suppose that I have a function written in Java and want it to refer by the xml tag, how is this possible?

Current senario: I am using XACML2.0 which contains xml tags and I want to refer some function in Java that will talk to the backend data, I'm unable to refer a function in xacml. Could you help me please?

flag
I think you need to re-tag your answer to get a wider audience. How about adding xacml and java? – David Norman Nov 11 '08 at 21:05

1 Answer

vote up 1 vote down

You should read up on Reflection in Java.

The following example would invoke the method

myObjectThatContainsMethod#methodNameAsString(Integer arg1, Integer arg2)

Integer[] params = {new Integer(123),new Integer(567)}; 
Class cl=Class.forName("stringParsedFromYourXML"); 
Class[] par=new Class[2]; 
par[0]=Integer.TYPE; 
par[1]=Integer.TYPE; 
Method mthd=cl.getMethod("methodNameAsString", parameterTypes); 
mthd.invoke(new myObjectThatContainsMethod(), params);

hope that helps..

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.