Hi,I searched this forum already for a solution but did not find a propriate answer.
In a Java-Agent I try to create a SOAP-Connection via:
import lotus.domino.*;
import javax.xml.soap.*;
import javax.xml.soap.Name;
import javax.xml.messaging.*;
…
SOAPConnectionFactory scf = SOAPConnectionFactory.newInstance();
connection = scf.createConnection();
…
Some posts in the forum assigned this to be a java security issue. So I changed the security policies (java.security). But with no success.
The ouput in the java console is:
javax.xml.soap.SOAPException: Unable to create SOAP connection factory: Provider com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnectionFactory not found
at javax.xml.soap.SOAPConnectionFactory.newInstance(Unknown Source)
at JAXMNotesClient.NotesMain(JAXMNotesClient.java:42)
at lotus.domino.AgentBase.runNotes(Unknown Source)
at lotus.domino.NotesThread.run(NotesThread.java:208)
Does anyone have a hint to this problem?
Thanks in advance,
regards, Peter