Author: dkulp
Date: Tue Oct 23 11:12:20 2007
New Revision: 587582
URL: http://svn.apache.org/viewvc?rev=587582&view=rev
Log:
[CXF-1130] Weblogic stuff from Jeff added.
Added:
incubator/cxf/trunk/distribution/src/main/release/samples/integration/jca/inbound/etc/weblogic-ra.xml
(with props)
Modified:
incubator/cxf/trunk/distribution/src/main/release/samples/integration/jca/inbound/etc/weblogic-ejb-jar.xml
incubator/cxf/trunk/integration/jca/src/main/java/org/apache/cxf/jca/core/logging/LoggerHelper.java
Modified:
incubator/cxf/trunk/distribution/src/main/release/samples/integration/jca/inbound/etc/weblogic-ejb-jar.xml
URL:
http://svn.apache.org/viewvc/incubator/cxf/trunk/distribution/src/main/release/samples/integration/jca/inbound/etc/weblogic-ejb-jar.xml?rev=587582&r1=587581&r2=587582&view=diff
==============================================================================
---
incubator/cxf/trunk/distribution/src/main/release/samples/integration/jca/inbound/etc/weblogic-ejb-jar.xml
(original)
+++
incubator/cxf/trunk/distribution/src/main/release/samples/integration/jca/inbound/etc/weblogic-ejb-jar.xml
Tue Oct 23 11:12:20 2007
@@ -18,11 +18,11 @@
under the License.
-->
-<jboss-ejb-jar>
+<weblogic-ejb-jar xmlns="http://www.bea.com/ns/weblogic/90">
- <jboss-enterprise-bean>
+ <weblogic-enterprise-bean>
<ejb-name>GreeterBean</ejb-name>
<jndi-name>GreeterBean</jndi-name>
- </jboss-enterprise-bean>
+ </weblogic-enterprise-bean>
-</jboss-ejb-jar>
+</weblogic-ejb-jar>
Added:
incubator/cxf/trunk/distribution/src/main/release/samples/integration/jca/inbound/etc/weblogic-ra.xml
URL:
http://svn.apache.org/viewvc/incubator/cxf/trunk/distribution/src/main/release/samples/integration/jca/inbound/etc/weblogic-ra.xml?rev=587582&view=auto
==============================================================================
---
incubator/cxf/trunk/distribution/src/main/release/samples/integration/jca/inbound/etc/weblogic-ra.xml
(added)
+++
incubator/cxf/trunk/distribution/src/main/release/samples/integration/jca/inbound/etc/weblogic-ra.xml
Tue Oct 23 11:12:20 2007
@@ -0,0 +1,29 @@
+<?xml version="1.0" ?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one
+ or more contributor license agreements. See the NOTICE file
+ distributed with this work for additional information
+ regarding copyright ownership. The ASF licenses this file
+ to you under the Apache License, Version 2.0 (the
+ "License"); you may not use this file except in compliance
+ with the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing,
+ software distributed under the License is distributed on an
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ KIND, either express or implied. See the License for the
+ specific language governing permissions and limitations
+ under the License.
+-->
+<weblogic-connector xmlns="http://www.bea.com/ns/weblogic/90">
+ <outbound-resource-adapter>
+ <connection-definition-group>
+
<connection-factory-interface>org.apache.cxf.connector.CXFConnectionFactory</connection-factory-interface>
+ <connection-instance>
+ <jndi-name>CXFConnector</jndi-name>
+ </connection-instance>
+ </connection-definition-group>
+ </outbound-resource-adapter>
+</weblogic-connector>
\ No newline at end of file
Propchange:
incubator/cxf/trunk/distribution/src/main/release/samples/integration/jca/inbound/etc/weblogic-ra.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
incubator/cxf/trunk/distribution/src/main/release/samples/integration/jca/inbound/etc/weblogic-ra.xml
------------------------------------------------------------------------------
svn:keywords = Rev Date
Propchange:
incubator/cxf/trunk/distribution/src/main/release/samples/integration/jca/inbound/etc/weblogic-ra.xml
------------------------------------------------------------------------------
svn:mime-type = text/xml
Modified:
incubator/cxf/trunk/integration/jca/src/main/java/org/apache/cxf/jca/core/logging/LoggerHelper.java
URL:
http://svn.apache.org/viewvc/incubator/cxf/trunk/integration/jca/src/main/java/org/apache/cxf/jca/core/logging/LoggerHelper.java?rev=587582&r1=587581&r2=587582&view=diff
==============================================================================
---
incubator/cxf/trunk/integration/jca/src/main/java/org/apache/cxf/jca/core/logging/LoggerHelper.java
(original)
+++
incubator/cxf/trunk/integration/jca/src/main/java/org/apache/cxf/jca/core/logging/LoggerHelper.java
Tue Oct 23 11:12:20 2007
@@ -34,7 +34,7 @@
public static final String WRITER_HANDLER = "WriterHandler";
private static String rootLoggerName = "org.apache.cxf";
private static boolean initComplete;
- private static Level currentLogLevel = Level.WARNING;;
+ private static Level currentLogLevel = Level.WARNING;
private LoggerHelper() {
//do nothing here
@@ -57,8 +57,7 @@
final WriterHandler handler = new WriterHandler(writer);
cxfLogger.addHandler(handler);
}
- // log just to the print writer
- disableConsoleLogging();
+
}
}