I got Russ's code working but if I do this:
 public class IRMark  {
     protected String filename;
  public IRMark (String filename) throws Exception
  {
    this.filename=filename;            
        // Init the Apache XML security library
                Init.init();
                }
      public String doStuff()
      {
        return filename;           
   }            
}
I get an Object Instantiation Exception
and if i do this
 public class IRMark  {
     protected String filename;
  public IRMark (String filename) throws Exception
  {
    this.filename=filename;            
        
                }
      public String doStuff()
      {
        // Init the Apache XML security library
                Init.init();
                return filename;           
   }            
}
I get this
500 org/apache/xml/security/Init
org/apache/xml/security/Init
no errors
I tried the latter with the rest of the code but cannot get anything else
Any suggestions?
A+

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade & see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:275563
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to