JBossWS SVN: r12811 - in framework/trunk: src/main/java/org/jboss/wsf/framework/management and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2010-08-13 09:17:49 -0400 (Fri, 13 Aug 2010)
New Revision: 12811
Modified:
framework/trunk/pom.xml
framework/trunk/src/main/java/org/jboss/wsf/framework/management/DefaultJMSEndpointResolver.java
Log:
refactoring DefaultJMSEndpointResolver to jbossws-common to remove AS IL dependency on jbossws-framework
Modified: framework/trunk/pom.xml
===================================================================
--- framework/trunk/pom.xml 2010-08-13 13:16:34 UTC (rev 12810)
+++ framework/trunk/pom.xml 2010-08-13 13:17:49 UTC (rev 12811)
@@ -31,7 +31,6 @@
<jaxws.api.version>2.2</jaxws.api.version>
<jboss.web.version>2.1.3.GA</jboss.web.version>
<jbossxb.version>2.0.1.GA</jbossxb.version>
- <jms.api.version>1.1</jms.api.version>
</properties>
<!-- Dependencies -->
@@ -69,12 +68,6 @@
<scope>provided</scope>
</dependency>
<dependency>
- <groupId>javax.jms</groupId>
- <artifactId>jms</artifactId>
- <version>${jms.api.version}</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
<groupId>org.jboss</groupId>
<artifactId>jbossxb</artifactId>
<version>${jbossxb.version}</version>
Modified: framework/trunk/src/main/java/org/jboss/wsf/framework/management/DefaultJMSEndpointResolver.java
===================================================================
--- framework/trunk/src/main/java/org/jboss/wsf/framework/management/DefaultJMSEndpointResolver.java 2010-08-13 13:16:34 UTC (rev 12810)
+++ framework/trunk/src/main/java/org/jboss/wsf/framework/management/DefaultJMSEndpointResolver.java 2010-08-13 13:17:49 UTC (rev 12811)
@@ -21,60 +21,11 @@
*/
package org.jboss.wsf.framework.management;
-import java.util.Iterator;
-
-import javax.jms.Destination;
-import javax.jms.JMSException;
-import javax.jms.Queue;
-import javax.jms.Topic;
-
-import org.jboss.wsf.spi.deployment.Endpoint;
-import org.jboss.wsf.spi.management.JMSEndpointResolver;
-
/**
* Default resolver for JMS endpoints
- *
+ *
* @author alessio.soldano(a)jboss.com
* @since 19-Mar-2010
- *
+ * @Deprecated Use org.jboss.wsf.common.management.DefaultJMSEndpointResolver instead
*/
-public class DefaultJMSEndpointResolver implements JMSEndpointResolver
-{
- private String fromName;
-
- public void setDestination(Destination destination)
- {
- if (destination instanceof Queue)
- setFromName(destination, true);
- else if (destination instanceof Topic)
- setFromName(destination, false);
- }
-
- protected void setFromName(Destination destination, boolean queue)
- {
- try
- {
- fromName = queue ? "queue/" + ((Queue)destination).getQueueName() : "topic/" + ((Topic)destination).getTopicName();
- }
- catch (JMSException e)
- {
- throw new RuntimeException(e);
- }
- }
-
- public Endpoint query(Iterator<Endpoint> endpoints)
- {
- Endpoint endpoint = null;
- while (endpoints.hasNext())
- {
- Endpoint aux = endpoints.next();
- String jmsProp = aux.getName().getKeyProperty("jms");
- if (jmsProp != null && jmsProp.equals(fromName))
- {
- endpoint = aux;
- break;
- }
- }
- return endpoint;
- }
-}
+public class DefaultJMSEndpointResolver extends org.jboss.wsf.common.management.DefaultJMSEndpointResolver {}
15 years, 8 months
JBossWS SVN: r12810 - in common/trunk: src/main/java/org/jboss/wsf/common/management and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2010-08-13 09:16:34 -0400 (Fri, 13 Aug 2010)
New Revision: 12810
Added:
common/trunk/src/main/java/org/jboss/wsf/common/management/DefaultJMSEndpointResolver.java
Modified:
common/trunk/pom.xml
Log:
refactoring DefaultJMSEndpointResolver to jbossws-common to remove AS IL dependency on jbossws-framework
Modified: common/trunk/pom.xml
===================================================================
--- common/trunk/pom.xml 2010-08-13 12:59:11 UTC (rev 12809)
+++ common/trunk/pom.xml 2010-08-13 13:16:34 UTC (rev 12810)
@@ -36,6 +36,7 @@
<jbossws.spi.version>1.4.0-SNAPSHOT</jbossws.spi.version>
<junit.version>3.8.2</junit.version>
<wsdl4j.version>1.6.2</wsdl4j.version>
+ <jms.api.version>1.1</jms.api.version>
</properties>
<!-- Dependencies -->
@@ -95,6 +96,12 @@
<scope>provided</scope>
</dependency>
<dependency>
+ <groupId>javax.jms</groupId>
+ <artifactId>jms</artifactId>
+ <version>${jms.api.version}</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
<groupId>wsdl4j</groupId>
<artifactId>wsdl4j</artifactId>
<version>${wsdl4j.version}</version>
Added: common/trunk/src/main/java/org/jboss/wsf/common/management/DefaultJMSEndpointResolver.java
===================================================================
--- common/trunk/src/main/java/org/jboss/wsf/common/management/DefaultJMSEndpointResolver.java (rev 0)
+++ common/trunk/src/main/java/org/jboss/wsf/common/management/DefaultJMSEndpointResolver.java 2010-08-13 13:16:34 UTC (rev 12810)
@@ -0,0 +1,80 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2010, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.wsf.common.management;
+
+import java.util.Iterator;
+
+import javax.jms.Destination;
+import javax.jms.JMSException;
+import javax.jms.Queue;
+import javax.jms.Topic;
+
+import org.jboss.wsf.spi.deployment.Endpoint;
+import org.jboss.wsf.spi.management.JMSEndpointResolver;
+
+/**
+ * Default resolver for JMS endpoints
+ *
+ * @author alessio.soldano(a)jboss.com
+ * @since 19-Mar-2010
+ *
+ */
+public class DefaultJMSEndpointResolver implements JMSEndpointResolver
+{
+ private String fromName;
+
+ public void setDestination(Destination destination)
+ {
+ if (destination instanceof Queue)
+ setFromName(destination, true);
+ else if (destination instanceof Topic)
+ setFromName(destination, false);
+ }
+
+ protected void setFromName(Destination destination, boolean queue)
+ {
+ try
+ {
+ fromName = queue ? "queue/" + ((Queue)destination).getQueueName() : "topic/" + ((Topic)destination).getTopicName();
+ }
+ catch (JMSException e)
+ {
+ throw new RuntimeException(e);
+ }
+ }
+
+ public Endpoint query(Iterator<Endpoint> endpoints)
+ {
+ Endpoint endpoint = null;
+ while (endpoints.hasNext())
+ {
+ Endpoint aux = endpoints.next();
+ String jmsProp = aux.getName().getKeyProperty("jms");
+ if (jmsProp != null && jmsProp.equals(fromName))
+ {
+ endpoint = aux;
+ break;
+ }
+ }
+ return endpoint;
+ }
+}
15 years, 8 months
JBossWS SVN: r12809 - in container/jboss60/branches/jbossws-jboss600M4/src/main: resources/jbossws-jboss.deployer/META-INF and 1 other directories.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2010-08-13 08:59:11 -0400 (Fri, 13 Aug 2010)
New Revision: 12809
Removed:
container/jboss60/branches/jbossws-jboss600M4/src/main/java/org/jboss/webservices/integration/endpoint/EndpointAPIHttpServer.java
container/jboss60/branches/jbossws-jboss600M4/src/main/java/org/jboss/webservices/integration/endpoint/HttpServerFactoryImpl.java
container/jboss60/branches/jbossws-jboss600M4/src/main/resources/jbossws-jboss.jar/META-INF/services/org.jboss.wsf.spi.http.HttpServerFactory
Modified:
container/jboss60/branches/jbossws-jboss600M4/src/main/resources/jbossws-jboss.deployer/META-INF/stack-agnostic-jboss-beans.xml
Log:
get rid of broken HTTP SPI
Deleted: container/jboss60/branches/jbossws-jboss600M4/src/main/java/org/jboss/webservices/integration/endpoint/EndpointAPIHttpServer.java
===================================================================
--- container/jboss60/branches/jbossws-jboss600M4/src/main/java/org/jboss/webservices/integration/endpoint/EndpointAPIHttpServer.java 2010-08-13 12:55:58 UTC (rev 12808)
+++ container/jboss60/branches/jbossws-jboss600M4/src/main/java/org/jboss/webservices/integration/endpoint/EndpointAPIHttpServer.java 2010-08-13 12:59:11 UTC (rev 12809)
@@ -1,242 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2009, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package org.jboss.webservices.integration.endpoint;
-
-import java.util.HashMap;
-import java.util.List;
-import java.util.Map;
-
-import javax.xml.ws.Endpoint;
-
-import org.jboss.classloading.spi.dependency.ClassLoading;
-import org.jboss.classloading.spi.dependency.Module;
-import org.jboss.deployers.client.plugins.deployment.AbstractDeployment;
-import org.jboss.deployers.client.spi.DeployerClient;
-import org.jboss.deployers.client.spi.Deployment;
-import org.jboss.deployers.client.spi.DeploymentFactory;
-import org.jboss.deployers.spi.DeploymentException;
-import org.jboss.deployers.spi.attachments.MutableAttachments;
-import org.jboss.deployers.structure.spi.ClassLoaderFactory;
-import org.jboss.deployers.structure.spi.DeploymentUnit;
-import org.jboss.metadata.web.jboss.JBossServletsMetaData;
-import org.jboss.metadata.web.jboss.JBossWebMetaData;
-import org.jboss.metadata.web.spec.ServletMappingMetaData;
-import org.jboss.webservices.integration.util.WebMetaDataHelper;
-import org.jboss.wsf.spi.SPIProvider;
-import org.jboss.wsf.spi.SPIProviderResolver;
-import org.jboss.wsf.spi.deployment.AbstractExtensible;
-import org.jboss.wsf.spi.deployment.WSFDeploymentException;
-import org.jboss.wsf.spi.http.HttpContext;
-import org.jboss.wsf.spi.http.HttpContextFactory;
-import org.jboss.wsf.spi.http.HttpServer;
-
-/**
- * JAXWS HTTP server implementation that nestles inside JBoss AS.
- * This implementation simply delegates deployment of dynamically created
- * JBoss web deployment to JBoss main deployer.
- *
- * @author <a href="mailto:ropalka@redhat.com">Richard Opalka</a>
- * @author <a href="mailto:tdiesler@redhat.com">Thomas Diesler</a>
- */
-public final class EndpointAPIHttpServer extends AbstractExtensible implements HttpServer
-{
-
- /** JBoss deployment factory. */
- private final DeploymentFactory factory = new DeploymentFactory();
- /** JBoss Main deployer. */
- private final DeployerClient mainDeployer;
- /** JBossWS SPI provider. */
- private final SPIProvider spiProvider = SPIProviderResolver.getInstance().getProvider();
- /** Registered deployments. */
- private final Map<String, Deployment> deployments = new HashMap<String, Deployment>();
-
- /**
- * Constructor - invoked by MC.
- *
- * @param mainDeployer JBoss main deployer
- */
- public EndpointAPIHttpServer(final DeployerClient mainDeployer)
- {
- super();
- this.mainDeployer = mainDeployer;
- }
-
- /**
- * Creates an requested HTTP context.
- *
- * @param contextRoot context root name
- * @return context instance
- */
- public synchronized HttpContext createContext(final String contextRoot)
- {
- return this.spiProvider.getSPI(HttpContextFactory.class).newHttpContext(this, contextRoot);
- }
-
- /**
- * Publishes a JAXWS endpoint to the JBoss server.
- *
- * @param context web context
- * @param endpoint to publish
- */
- public synchronized void publish(final HttpContext context, final Endpoint endpoint)
- {
- final String contextRoot = context.getContextRoot();
- if (this.deployments.keySet().contains(contextRoot))
- {
- throw new WSFDeploymentException("Context root '" + contextRoot + "' already exists");
- }
-
- final Class<?> endpointClass = this.getEndpointClass(endpoint);
- final ClassLoader endpointClassLoader = endpointClass.getClassLoader();
- final Deployment deployment = this.createSimpleDeployment("http://jaxws-endpoint-api" + contextRoot);
- final MutableAttachments mutableAttachments = (MutableAttachments) deployment.getPredeterminedManagedObjects();
- final JBossWebMetaData jbossWebMD = this.newJBossWebMetaData(contextRoot, endpointClass);
-
- mutableAttachments.addAttachment("org.jboss.web.explicitDocBase", "/", String.class);
- mutableAttachments.addAttachment(JBossWebMetaData.class, jbossWebMD);
- mutableAttachments.addAttachment(ClassLoaderFactory.class, new ContextClassLoaderFactory(endpointClassLoader));
- mutableAttachments.addAttachment(Module.class, ClassLoading.getModuleForClassLoader(endpointClassLoader));
-
- try
- {
- this.mainDeployer.deploy(deployment);
- this.deployments.put(contextRoot, deployment);
- }
- catch (DeploymentException de)
- {
- WSFDeploymentException.rethrow(de);
- }
- }
-
- /**
- * Destroys dynamically published JAXWS endpoint on the JBoss server.
- *
- * @param context to be destroyed
- * @param endpoint to be unpublished
- */
- public synchronized void destroy(final HttpContext context, final Endpoint endpoint)
- {
- try
- {
- final String contextRoot = context.getContextRoot();
- final Deployment deployment = this.deployments.remove(contextRoot);
- if (deployment != null)
- {
- this.mainDeployer.undeploy(deployment);
- }
- }
- catch (Exception ex)
- {
- WSFDeploymentException.rethrow(ex);
- }
- }
-
- /**
- * Returns implementor class associated with endpoint.
- *
- * @param endpoint to get implementor class from
- * @return implementor class
- */
- private Class<?> getEndpointClass(final Endpoint endpoint)
- {
- final Object implementor = endpoint.getImplementor();
- return implementor instanceof Class<?> ? (Class<?>) implementor : implementor.getClass();
- }
-
- /**
- * Creates new JBoss web meta data.
- *
- * @param contextRoot context root
- * @param endpointClass endpoint class
- * @return new JBoss web meta data
- */
- private JBossWebMetaData newJBossWebMetaData(final String contextRoot, final Class<?> endpointClass)
- {
- final JBossWebMetaData jbossWebMD = new JBossWebMetaData();
- final JBossServletsMetaData servletsMD = WebMetaDataHelper.getServlets(jbossWebMD);
- final List<ServletMappingMetaData> servletMappingMD = WebMetaDataHelper.getServletMappings(jbossWebMD);
- final String servletName = "jaxws-dynamic-endpoint";
-
- WebMetaDataHelper.newServlet(servletName, endpointClass.getName(), servletsMD);
- WebMetaDataHelper.newServletMapping(servletName, WebMetaDataHelper.getUrlPatterns("/*"), servletMappingMD);
- jbossWebMD.setContextRoot(contextRoot);
-
- return jbossWebMD;
- }
-
- /**
- * Creates simple web deployment using deployers client api.
- *
- * @param name deployment name
- * @return new deployment
- */
- private Deployment createSimpleDeployment(final String name)
- {
- final Deployment unit = new AbstractDeployment(name);
- this.factory.addContext(unit, "");
-
- return unit;
- }
-
- /**
- * @see org.jboss.deployers.structure.spi.ClassLoaderFactory
- */
- private static class ContextClassLoaderFactory implements ClassLoaderFactory
- {
- /** Delegee. */
- private ClassLoader classLoader;
-
- /**
- * Constructor.
- *
- * @param classLoader class loader
- */
- public ContextClassLoaderFactory(final ClassLoader classLoader)
- {
- this.classLoader = classLoader;
- }
-
- /**
- * @see org.jboss.deployers.structure.spi.ClassLoaderFactory#createClassLoader(DeploymentUnit)
- *
- * @param unit deployment unit
- * @return class loader
- * @throws Exception never thrown in our case
- */
- public ClassLoader createClassLoader(final DeploymentUnit unit) throws Exception
- {
- return this.classLoader;
- }
-
- /**
- * @see org.jboss.deployers.structure.spi.ClassLoaderFactory#removeClassLoader(DeploymentUnit)
- *
- * @param unit deployment unit
- * @throws Exception never thrown in our case
- */
- public void removeClassLoader(final DeploymentUnit unit) throws Exception
- {
- this.classLoader = null;
- }
- }
-
-}
Deleted: container/jboss60/branches/jbossws-jboss600M4/src/main/java/org/jboss/webservices/integration/endpoint/HttpServerFactoryImpl.java
===================================================================
--- container/jboss60/branches/jbossws-jboss600M4/src/main/java/org/jboss/webservices/integration/endpoint/HttpServerFactoryImpl.java 2010-08-13 12:55:58 UTC (rev 12808)
+++ container/jboss60/branches/jbossws-jboss600M4/src/main/java/org/jboss/webservices/integration/endpoint/HttpServerFactoryImpl.java 2010-08-13 12:59:11 UTC (rev 12809)
@@ -1,66 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2009, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package org.jboss.webservices.integration.endpoint;
-
-import org.jboss.wsf.spi.SPIProvider;
-import org.jboss.wsf.spi.SPIProviderResolver;
-import org.jboss.wsf.spi.http.HttpServer;
-import org.jboss.wsf.spi.http.HttpServerFactory;
-import org.jboss.wsf.spi.ioc.IoCContainerProxy;
-import org.jboss.wsf.spi.ioc.IoCContainerProxyFactory;
-
-/**
- * Lookups http server inside MC container.
- *
- * @author <a href="mailto:tdiesler@redhat.com">Thomas Diesler</a>
- * @author <a href="mailto:ropalka@redhat.com">Richard Opalka</a>
- */
-public final class HttpServerFactoryImpl extends HttpServerFactory
-{
-
- /** The default bean name. */
- private static final String BEAN_NAME = "WSHTTPServer";
-
- /**
- * Constructor.
- */
- public HttpServerFactoryImpl()
- {
- super();
- }
-
- /**
- * Returns http server registered in MC kernel.
- *
- * @return http server
- */
- @Override
- public HttpServer getHttpServer()
- {
- final SPIProvider spiProvider = SPIProviderResolver.getInstance().getProvider();
- final IoCContainerProxyFactory iocContainerFactory = spiProvider.getSPI(IoCContainerProxyFactory.class);
- final IoCContainerProxy iocContainer = iocContainerFactory.getContainer();
-
- return iocContainer.getBean(HttpServerFactoryImpl.BEAN_NAME, HttpServer.class);
- }
-
-}
Modified: container/jboss60/branches/jbossws-jboss600M4/src/main/resources/jbossws-jboss.deployer/META-INF/stack-agnostic-jboss-beans.xml
===================================================================
--- container/jboss60/branches/jbossws-jboss600M4/src/main/resources/jbossws-jboss.deployer/META-INF/stack-agnostic-jboss-beans.xml 2010-08-13 12:55:58 UTC (rev 12808)
+++ container/jboss60/branches/jbossws-jboss600M4/src/main/resources/jbossws-jboss.deployer/META-INF/stack-agnostic-jboss-beans.xml 2010-08-13 12:59:11 UTC (rev 12809)
@@ -16,15 +16,6 @@
</constructor>
</bean>
- <!-- Endpoint API http server -->
- <bean name="WSHTTPServer" class="org.jboss.webservices.integration.endpoint.EndpointAPIHttpServer">
- <constructor>
- <parameter>
- <inject bean="MainDeployer"/>
- </parameter>
- </constructor>
- </bean>
-
<!-- An abstraction of server configuration aspects. -->
<bean name="WSServerConfig" class="org.jboss.webservices.integration.config.ServerConfigImpl">
<property name="mbeanServer"><inject bean="WSMBeanServerLocator" property="mbeanServer"/></property>
Deleted: container/jboss60/branches/jbossws-jboss600M4/src/main/resources/jbossws-jboss.jar/META-INF/services/org.jboss.wsf.spi.http.HttpServerFactory
===================================================================
--- container/jboss60/branches/jbossws-jboss600M4/src/main/resources/jbossws-jboss.jar/META-INF/services/org.jboss.wsf.spi.http.HttpServerFactory 2010-08-13 12:55:58 UTC (rev 12808)
+++ container/jboss60/branches/jbossws-jboss600M4/src/main/resources/jbossws-jboss.jar/META-INF/services/org.jboss.wsf.spi.http.HttpServerFactory 2010-08-13 12:59:11 UTC (rev 12809)
@@ -1 +0,0 @@
-org.jboss.webservices.integration.endpoint.HttpServerFactoryImpl
\ No newline at end of file
15 years, 8 months
JBossWS SVN: r12808 - in container/jboss50/branches: jbossws-jboss501/src/main/resources/jbossws-jboss.deployer/META-INF and 4 other directories.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2010-08-13 08:55:58 -0400 (Fri, 13 Aug 2010)
New Revision: 12808
Removed:
container/jboss50/branches/jbossws-jboss501/src/main/java/org/jboss/webservices/integration/endpoint/
container/jboss50/branches/jbossws-jboss501/src/main/resources/jbossws-jboss.jar/META-INF/services/org.jboss.wsf.spi.http.HttpServerFactory
container/jboss50/branches/jbossws-jboss510/src/main/java/org/jboss/webservices/integration/endpoint/
container/jboss50/branches/jbossws-jboss510/src/main/resources/jbossws-jboss.jar/META-INF/services/org.jboss.wsf.spi.http.HttpServerFactory
Modified:
container/jboss50/branches/jbossws-jboss501/src/main/resources/jbossws-jboss.deployer/META-INF/stack-agnostic-jboss-beans.xml
container/jboss50/branches/jbossws-jboss510/src/main/resources/jbossws-jboss.deployer/META-INF/stack-agnostic-jboss-beans.xml
Log:
[JBWS-3106] get rid of broken HTTP SPI
Modified: container/jboss50/branches/jbossws-jboss501/src/main/resources/jbossws-jboss.deployer/META-INF/stack-agnostic-jboss-beans.xml
===================================================================
--- container/jboss50/branches/jbossws-jboss501/src/main/resources/jbossws-jboss.deployer/META-INF/stack-agnostic-jboss-beans.xml 2010-08-13 12:51:55 UTC (rev 12807)
+++ container/jboss50/branches/jbossws-jboss501/src/main/resources/jbossws-jboss.deployer/META-INF/stack-agnostic-jboss-beans.xml 2010-08-13 12:55:58 UTC (rev 12808)
@@ -16,15 +16,6 @@
</constructor>
</bean>
- <!-- Endpoint API http server -->
- <bean name="WSHTTPServer" class="org.jboss.webservices.integration.endpoint.EndpointAPIHttpServer">
- <constructor>
- <parameter>
- <inject bean="MainDeployer"/>
- </parameter>
- </constructor>
- </bean>
-
<!-- An abstraction of server configuration aspects. -->
<bean name="WSServerConfig" class="org.jboss.webservices.integration.config.ServerConfigImpl">
<property name="mbeanServer"><inject bean="WSMBeanServerLocator" property="mbeanServer"/></property>
Deleted: container/jboss50/branches/jbossws-jboss501/src/main/resources/jbossws-jboss.jar/META-INF/services/org.jboss.wsf.spi.http.HttpServerFactory
===================================================================
--- container/jboss50/branches/jbossws-jboss501/src/main/resources/jbossws-jboss.jar/META-INF/services/org.jboss.wsf.spi.http.HttpServerFactory 2010-08-13 12:51:55 UTC (rev 12807)
+++ container/jboss50/branches/jbossws-jboss501/src/main/resources/jbossws-jboss.jar/META-INF/services/org.jboss.wsf.spi.http.HttpServerFactory 2010-08-13 12:55:58 UTC (rev 12808)
@@ -1 +0,0 @@
-org.jboss.webservices.integration.endpoint.HttpServerFactoryImpl
\ No newline at end of file
Modified: container/jboss50/branches/jbossws-jboss510/src/main/resources/jbossws-jboss.deployer/META-INF/stack-agnostic-jboss-beans.xml
===================================================================
--- container/jboss50/branches/jbossws-jboss510/src/main/resources/jbossws-jboss.deployer/META-INF/stack-agnostic-jboss-beans.xml 2010-08-13 12:51:55 UTC (rev 12807)
+++ container/jboss50/branches/jbossws-jboss510/src/main/resources/jbossws-jboss.deployer/META-INF/stack-agnostic-jboss-beans.xml 2010-08-13 12:55:58 UTC (rev 12808)
@@ -16,15 +16,6 @@
</constructor>
</bean>
- <!-- Endpoint API http server -->
- <bean name="WSHTTPServer" class="org.jboss.webservices.integration.endpoint.EndpointAPIHttpServer">
- <constructor>
- <parameter>
- <inject bean="MainDeployer"/>
- </parameter>
- </constructor>
- </bean>
-
<!-- An abstraction of server configuration aspects. -->
<bean name="WSServerConfig" class="org.jboss.webservices.integration.config.ServerConfigImpl">
<property name="mbeanServer"><inject bean="WSMBeanServerLocator" property="mbeanServer"/></property>
Deleted: container/jboss50/branches/jbossws-jboss510/src/main/resources/jbossws-jboss.jar/META-INF/services/org.jboss.wsf.spi.http.HttpServerFactory
===================================================================
--- container/jboss50/branches/jbossws-jboss510/src/main/resources/jbossws-jboss.jar/META-INF/services/org.jboss.wsf.spi.http.HttpServerFactory 2010-08-13 12:51:55 UTC (rev 12807)
+++ container/jboss50/branches/jbossws-jboss510/src/main/resources/jbossws-jboss.jar/META-INF/services/org.jboss.wsf.spi.http.HttpServerFactory 2010-08-13 12:55:58 UTC (rev 12808)
@@ -1 +0,0 @@
-org.jboss.webservices.integration.endpoint.HttpServerFactoryImpl
\ No newline at end of file
15 years, 8 months
JBossWS SVN: r12807 - in container/jboss50/branches: jbossws-jboss510/src/main/resources/jbossws-jboss.jar/META-INF/services and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2010-08-13 08:51:55 -0400 (Fri, 13 Aug 2010)
New Revision: 12807
Added:
container/jboss50/branches/jbossws-jboss501/src/main/resources/jbossws-jboss.jar/META-INF/services/org.jboss.wsf.spi.deployment.DeploymentModelFactory
container/jboss50/branches/jbossws-jboss501/src/main/resources/jbossws-jboss.jar/META-INF/services/org.jboss.wsf.spi.invocation.InvocationHandlerFactory
container/jboss50/branches/jbossws-jboss510/src/main/resources/jbossws-jboss.jar/META-INF/services/org.jboss.wsf.spi.deployment.DeploymentModelFactory
container/jboss50/branches/jbossws-jboss510/src/main/resources/jbossws-jboss.jar/META-INF/services/org.jboss.wsf.spi.invocation.InvocationHandlerFactory
Log:
rollback wrong commit
Added: container/jboss50/branches/jbossws-jboss501/src/main/resources/jbossws-jboss.jar/META-INF/services/org.jboss.wsf.spi.deployment.DeploymentModelFactory
===================================================================
--- container/jboss50/branches/jbossws-jboss501/src/main/resources/jbossws-jboss.jar/META-INF/services/org.jboss.wsf.spi.deployment.DeploymentModelFactory (rev 0)
+++ container/jboss50/branches/jbossws-jboss501/src/main/resources/jbossws-jboss.jar/META-INF/services/org.jboss.wsf.spi.deployment.DeploymentModelFactory 2010-08-13 12:51:55 UTC (rev 12807)
@@ -0,0 +1 @@
+org.jboss.wsf.framework.deployment.ArchiveDeploymentModelFactory
\ No newline at end of file
Added: container/jboss50/branches/jbossws-jboss501/src/main/resources/jbossws-jboss.jar/META-INF/services/org.jboss.wsf.spi.invocation.InvocationHandlerFactory
===================================================================
--- container/jboss50/branches/jbossws-jboss501/src/main/resources/jbossws-jboss.jar/META-INF/services/org.jboss.wsf.spi.invocation.InvocationHandlerFactory (rev 0)
+++ container/jboss50/branches/jbossws-jboss501/src/main/resources/jbossws-jboss.jar/META-INF/services/org.jboss.wsf.spi.invocation.InvocationHandlerFactory 2010-08-13 12:51:55 UTC (rev 12807)
@@ -0,0 +1 @@
+org.jboss.webservices.integration.invocation.InvocationHandlerFactoryImpl
\ No newline at end of file
Added: container/jboss50/branches/jbossws-jboss510/src/main/resources/jbossws-jboss.jar/META-INF/services/org.jboss.wsf.spi.deployment.DeploymentModelFactory
===================================================================
--- container/jboss50/branches/jbossws-jboss510/src/main/resources/jbossws-jboss.jar/META-INF/services/org.jboss.wsf.spi.deployment.DeploymentModelFactory (rev 0)
+++ container/jboss50/branches/jbossws-jboss510/src/main/resources/jbossws-jboss.jar/META-INF/services/org.jboss.wsf.spi.deployment.DeploymentModelFactory 2010-08-13 12:51:55 UTC (rev 12807)
@@ -0,0 +1 @@
+org.jboss.wsf.framework.deployment.ArchiveDeploymentModelFactory
\ No newline at end of file
Added: container/jboss50/branches/jbossws-jboss510/src/main/resources/jbossws-jboss.jar/META-INF/services/org.jboss.wsf.spi.invocation.InvocationHandlerFactory
===================================================================
--- container/jboss50/branches/jbossws-jboss510/src/main/resources/jbossws-jboss.jar/META-INF/services/org.jboss.wsf.spi.invocation.InvocationHandlerFactory (rev 0)
+++ container/jboss50/branches/jbossws-jboss510/src/main/resources/jbossws-jboss.jar/META-INF/services/org.jboss.wsf.spi.invocation.InvocationHandlerFactory 2010-08-13 12:51:55 UTC (rev 12807)
@@ -0,0 +1 @@
+org.jboss.webservices.integration.invocation.InvocationHandlerFactoryImpl
\ No newline at end of file
15 years, 8 months
JBossWS SVN: r12806 - container/jboss60/branches/jbossws-jboss600M4/src/main/resources/jbossws-jboss.jar/META-INF/services.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2010-08-13 08:49:26 -0400 (Fri, 13 Aug 2010)
New Revision: 12806
Added:
container/jboss60/branches/jbossws-jboss600M4/src/main/resources/jbossws-jboss.jar/META-INF/services/org.jboss.wsf.spi.deployment.DeploymentModelFactory
container/jboss60/branches/jbossws-jboss600M4/src/main/resources/jbossws-jboss.jar/META-INF/services/org.jboss.wsf.spi.invocation.InvocationHandlerFactory
Log:
rollback wrong commit
Copied: container/jboss60/branches/jbossws-jboss600M4/src/main/resources/jbossws-jboss.jar/META-INF/services/org.jboss.wsf.spi.deployment.DeploymentModelFactory (from rev 12801, container/jboss60/branches/jbossws-jboss600M4/src/main/resources/jbossws-jboss.jar/META-INF/services/org.jboss.wsf.spi.deployment.DeploymentModelFactory)
===================================================================
--- container/jboss60/branches/jbossws-jboss600M4/src/main/resources/jbossws-jboss.jar/META-INF/services/org.jboss.wsf.spi.deployment.DeploymentModelFactory (rev 0)
+++ container/jboss60/branches/jbossws-jboss600M4/src/main/resources/jbossws-jboss.jar/META-INF/services/org.jboss.wsf.spi.deployment.DeploymentModelFactory 2010-08-13 12:49:26 UTC (rev 12806)
@@ -0,0 +1 @@
+org.jboss.wsf.framework.deployment.ArchiveDeploymentModelFactory
\ No newline at end of file
Copied: container/jboss60/branches/jbossws-jboss600M4/src/main/resources/jbossws-jboss.jar/META-INF/services/org.jboss.wsf.spi.invocation.InvocationHandlerFactory (from rev 12801, container/jboss60/branches/jbossws-jboss600M4/src/main/resources/jbossws-jboss.jar/META-INF/services/org.jboss.wsf.spi.invocation.InvocationHandlerFactory)
===================================================================
--- container/jboss60/branches/jbossws-jboss600M4/src/main/resources/jbossws-jboss.jar/META-INF/services/org.jboss.wsf.spi.invocation.InvocationHandlerFactory (rev 0)
+++ container/jboss60/branches/jbossws-jboss600M4/src/main/resources/jbossws-jboss.jar/META-INF/services/org.jboss.wsf.spi.invocation.InvocationHandlerFactory 2010-08-13 12:49:26 UTC (rev 12806)
@@ -0,0 +1 @@
+org.jboss.webservices.integration.invocation.InvocationHandlerFactoryImpl
\ No newline at end of file
15 years, 8 months
JBossWS SVN: r12805 - stack/cxf/trunk/modules/server/src/main/resources/jbossws-cxf-server.jar/META-INF/services.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2010-08-13 08:46:14 -0400 (Fri, 13 Aug 2010)
New Revision: 12805
Removed:
stack/cxf/trunk/modules/server/src/main/resources/jbossws-cxf-server.jar/META-INF/services/org.jboss.wsf.spi.deployment.DeploymentModelFactory
stack/cxf/trunk/modules/server/src/main/resources/jbossws-cxf-server.jar/META-INF/services/org.jboss.wsf.spi.invocation.InvocationHandlerFactory
Log:
rollback wrong commit
Deleted: stack/cxf/trunk/modules/server/src/main/resources/jbossws-cxf-server.jar/META-INF/services/org.jboss.wsf.spi.deployment.DeploymentModelFactory
===================================================================
--- stack/cxf/trunk/modules/server/src/main/resources/jbossws-cxf-server.jar/META-INF/services/org.jboss.wsf.spi.deployment.DeploymentModelFactory 2010-08-13 12:45:08 UTC (rev 12804)
+++ stack/cxf/trunk/modules/server/src/main/resources/jbossws-cxf-server.jar/META-INF/services/org.jboss.wsf.spi.deployment.DeploymentModelFactory 2010-08-13 12:46:14 UTC (rev 12805)
@@ -1 +0,0 @@
-org.jboss.wsf.framework.deployment.ArchiveDeploymentModelFactory
\ No newline at end of file
Deleted: stack/cxf/trunk/modules/server/src/main/resources/jbossws-cxf-server.jar/META-INF/services/org.jboss.wsf.spi.invocation.InvocationHandlerFactory
===================================================================
--- stack/cxf/trunk/modules/server/src/main/resources/jbossws-cxf-server.jar/META-INF/services/org.jboss.wsf.spi.invocation.InvocationHandlerFactory 2010-08-13 12:45:08 UTC (rev 12804)
+++ stack/cxf/trunk/modules/server/src/main/resources/jbossws-cxf-server.jar/META-INF/services/org.jboss.wsf.spi.invocation.InvocationHandlerFactory 2010-08-13 12:46:14 UTC (rev 12805)
@@ -1 +0,0 @@
-org.jboss.webservices.integration.invocation.InvocationHandlerFactoryImpl
\ No newline at end of file
15 years, 8 months
JBossWS SVN: r12804 - stack/cxf/branches/cxf-2.3/modules/server/src/main/resources/jbossws-cxf-server.jar/META-INF/services.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2010-08-13 08:45:08 -0400 (Fri, 13 Aug 2010)
New Revision: 12804
Removed:
stack/cxf/branches/cxf-2.3/modules/server/src/main/resources/jbossws-cxf-server.jar/META-INF/services/org.jboss.wsf.spi.deployment.DeploymentModelFactory
stack/cxf/branches/cxf-2.3/modules/server/src/main/resources/jbossws-cxf-server.jar/META-INF/services/org.jboss.wsf.spi.invocation.InvocationHandlerFactory
Log:
rollback wrong commit
Deleted: stack/cxf/branches/cxf-2.3/modules/server/src/main/resources/jbossws-cxf-server.jar/META-INF/services/org.jboss.wsf.spi.deployment.DeploymentModelFactory
===================================================================
--- stack/cxf/branches/cxf-2.3/modules/server/src/main/resources/jbossws-cxf-server.jar/META-INF/services/org.jboss.wsf.spi.deployment.DeploymentModelFactory 2010-08-13 12:44:04 UTC (rev 12803)
+++ stack/cxf/branches/cxf-2.3/modules/server/src/main/resources/jbossws-cxf-server.jar/META-INF/services/org.jboss.wsf.spi.deployment.DeploymentModelFactory 2010-08-13 12:45:08 UTC (rev 12804)
@@ -1 +0,0 @@
-org.jboss.wsf.framework.deployment.ArchiveDeploymentModelFactory
\ No newline at end of file
Deleted: stack/cxf/branches/cxf-2.3/modules/server/src/main/resources/jbossws-cxf-server.jar/META-INF/services/org.jboss.wsf.spi.invocation.InvocationHandlerFactory
===================================================================
--- stack/cxf/branches/cxf-2.3/modules/server/src/main/resources/jbossws-cxf-server.jar/META-INF/services/org.jboss.wsf.spi.invocation.InvocationHandlerFactory 2010-08-13 12:44:04 UTC (rev 12803)
+++ stack/cxf/branches/cxf-2.3/modules/server/src/main/resources/jbossws-cxf-server.jar/META-INF/services/org.jboss.wsf.spi.invocation.InvocationHandlerFactory 2010-08-13 12:45:08 UTC (rev 12804)
@@ -1 +0,0 @@
-org.jboss.webservices.integration.invocation.InvocationHandlerFactoryImpl
\ No newline at end of file
15 years, 8 months
JBossWS SVN: r12803 - stack/metro/trunk/modules/server/src/main/resources/jbossws-metro-server.jar/META-INF/services.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2010-08-13 08:44:04 -0400 (Fri, 13 Aug 2010)
New Revision: 12803
Removed:
stack/metro/trunk/modules/server/src/main/resources/jbossws-metro-server.jar/META-INF/services/org.jboss.wsf.spi.deployment.DeploymentModelFactory
stack/metro/trunk/modules/server/src/main/resources/jbossws-metro-server.jar/META-INF/services/org.jboss.wsf.spi.invocation.InvocationHandlerFactory
Log:
rollback wrong commit
Deleted: stack/metro/trunk/modules/server/src/main/resources/jbossws-metro-server.jar/META-INF/services/org.jboss.wsf.spi.deployment.DeploymentModelFactory
===================================================================
--- stack/metro/trunk/modules/server/src/main/resources/jbossws-metro-server.jar/META-INF/services/org.jboss.wsf.spi.deployment.DeploymentModelFactory 2010-08-13 12:35:28 UTC (rev 12802)
+++ stack/metro/trunk/modules/server/src/main/resources/jbossws-metro-server.jar/META-INF/services/org.jboss.wsf.spi.deployment.DeploymentModelFactory 2010-08-13 12:44:04 UTC (rev 12803)
@@ -1 +0,0 @@
-org.jboss.wsf.framework.deployment.ArchiveDeploymentModelFactory
\ No newline at end of file
Deleted: stack/metro/trunk/modules/server/src/main/resources/jbossws-metro-server.jar/META-INF/services/org.jboss.wsf.spi.invocation.InvocationHandlerFactory
===================================================================
--- stack/metro/trunk/modules/server/src/main/resources/jbossws-metro-server.jar/META-INF/services/org.jboss.wsf.spi.invocation.InvocationHandlerFactory 2010-08-13 12:35:28 UTC (rev 12802)
+++ stack/metro/trunk/modules/server/src/main/resources/jbossws-metro-server.jar/META-INF/services/org.jboss.wsf.spi.invocation.InvocationHandlerFactory 2010-08-13 12:44:04 UTC (rev 12803)
@@ -1 +0,0 @@
-org.jboss.webservices.integration.invocation.InvocationHandlerFactoryImpl
\ No newline at end of file
15 years, 8 months
JBossWS SVN: r12802 - container/jboss60/branches/jbossws-jboss600M4/src/main/resources/jbossws-jboss.jar/META-INF/services.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2010-08-13 08:35:28 -0400 (Fri, 13 Aug 2010)
New Revision: 12802
Removed:
container/jboss60/branches/jbossws-jboss600M4/src/main/resources/jbossws-jboss.jar/META-INF/services/org.jboss.wsf.spi.deployment.DeploymentModelFactory
container/jboss60/branches/jbossws-jboss600M4/src/main/resources/jbossws-jboss.jar/META-INF/services/org.jboss.wsf.spi.invocation.InvocationHandlerFactory
Log:
[JBWS-3106] stack is responsible for InvocationHandlerFactory & DeploymentModelFactory configuration - not AS IL
Deleted: container/jboss60/branches/jbossws-jboss600M4/src/main/resources/jbossws-jboss.jar/META-INF/services/org.jboss.wsf.spi.deployment.DeploymentModelFactory
===================================================================
--- container/jboss60/branches/jbossws-jboss600M4/src/main/resources/jbossws-jboss.jar/META-INF/services/org.jboss.wsf.spi.deployment.DeploymentModelFactory 2010-08-13 12:33:33 UTC (rev 12801)
+++ container/jboss60/branches/jbossws-jboss600M4/src/main/resources/jbossws-jboss.jar/META-INF/services/org.jboss.wsf.spi.deployment.DeploymentModelFactory 2010-08-13 12:35:28 UTC (rev 12802)
@@ -1 +0,0 @@
-org.jboss.wsf.framework.deployment.ArchiveDeploymentModelFactory
\ No newline at end of file
Deleted: container/jboss60/branches/jbossws-jboss600M4/src/main/resources/jbossws-jboss.jar/META-INF/services/org.jboss.wsf.spi.invocation.InvocationHandlerFactory
===================================================================
--- container/jboss60/branches/jbossws-jboss600M4/src/main/resources/jbossws-jboss.jar/META-INF/services/org.jboss.wsf.spi.invocation.InvocationHandlerFactory 2010-08-13 12:33:33 UTC (rev 12801)
+++ container/jboss60/branches/jbossws-jboss600M4/src/main/resources/jbossws-jboss.jar/META-INF/services/org.jboss.wsf.spi.invocation.InvocationHandlerFactory 2010-08-13 12:35:28 UTC (rev 12802)
@@ -1 +0,0 @@
-org.jboss.webservices.integration.invocation.InvocationHandlerFactoryImpl
\ No newline at end of file
15 years, 8 months