You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by bu...@apache.org on 2013/07/31 11:48:03 UTC

svn commit: r872078 - in /websites/production/cxf/content: cache/docs.pageCache docs/jaxrs-testing.html

Author: buildbot
Date: Wed Jul 31 09:48:03 2013
New Revision: 872078

Log:
Production update by buildbot for cxf

Modified:
    websites/production/cxf/content/cache/docs.pageCache
    websites/production/cxf/content/docs/jaxrs-testing.html

Modified: websites/production/cxf/content/cache/docs.pageCache
==============================================================================
Binary files - no diff available.

Modified: websites/production/cxf/content/docs/jaxrs-testing.html
==============================================================================
--- websites/production/cxf/content/docs/jaxrs-testing.html (original)
+++ websites/production/cxf/content/docs/jaxrs-testing.html Wed Jul 31 09:48:03 2013
@@ -238,7 +238,6 @@ import org.apache.cxf.jaxrs.client.WebCl
 import org.apache.cxf.jaxrs.lifecycle.SingletonResourceProvider;
 
 import org.apache.cxf.transport.local.LocalConduit;
-import org.apache.cxf.transport.local.LocalTransportFactory;
 
 import org.junit.Test;
 import org.junit.Assert;
@@ -260,7 +259,6 @@ public static void initialize() throws E
 
 private static void startServer() throws Exception {
      JAXRSServerFactoryBean sf = new JAXRSServerFactoryBean();
-     sf.setTransportId(LocalTransportFactory.TRANSPORT_ID);
      sf.setResourceClasses(MyJaxrsResource.class);
         
      List<Object> providers = new ArrayList<Object>();