XML dig sig error after upgrade to java7u25

后端 未结 6 682
隐瞒了意图╮
隐瞒了意图╮ 2020-12-14 02:08

I have a Java application for signing XML documents. After upgrading Java to the latest version (Java7u25) it stops working. I get the following error:

javax         


        
6条回答
  •  轮回少年
    2020-12-14 02:54

    If you have

    dsObjectChild.setAttribute("Id", "My-id-value");
    

    Change it to

    dsObjectChild.setAttribute("Id", "My-id-value");
    dsObjectChild.setIdAttribute("Id", true);
    

    It is working with java 1.7.0_45

提交回复
热议问题