Created
March 31, 2011 14:37
-
-
Save sourcerebels/896461 to your computer and use it in GitHub Desktop.
weblogic-application.xml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
System.setProperty("javax.xml.soap.MessageFactory", | |
"com.sun.xml.messaging.saaj.soap.ver1_1.SOAPMessageFactory1_1Impl"); | |
System.setProperty("javax.xml.soap.SOAPConnectionFactory", | |
"weblogic.wsee.saaj.SOAPConnectionFactoryImpl"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-Djavax.xml.soap.MessageFactory=com.sun.xml.messaging.saaj.soap.ver1_1.SOAPMessageFactory1_1Impl | |
-Djavax.xml.soap.SOAPConnectionFactory=weblogic.wsee.saaj.SOAPConnectionFactoryImpl |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE weblogic-application PUBLIC | |
'-//BEA Systems, Inc.//DTD WebLogic Application 8.1.0//EN' | |
'http://www.bea.com/servers/wls810/dtd/weblogic-application_2_0.dtd'> | |
<?xml version="1.0" encoding="UTF-8"?> | |
<weblogic-application> | |
<prefer-application-packages> | |
<package-name>com.sun.xml.messaging.saaj.*</package-name> | |
<package-name>javax.jws.*</package-name> | |
</prefer-application-packages> | |
</weblogic-application> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment