Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 2011-2015 Oracle and/or its affiliates. All rights reserved.
*
* The contents of this file are subject to the terms of either the GNU
* General Public License Version 2 only ("GPL") or the Common Development
* and Distribution License("CDDL") (collectively, the "License"). You
* may not use this file except in compliance with the License. You can
* obtain a copy of the License at
* https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html
* or packager/legal/LICENSE.txt. See the License for the specific
* language governing permissions and limitations under the License.
*
* When distributing the software, include this License Header Notice in each
* file and include the License file at packager/legal/LICENSE.txt.
*
* GPL Classpath Exception:
* Oracle designates this particular file as subject to the "Classpath"
* exception as provided by Oracle in the GPL Version 2 section of the License
* file that accompanied this code.
*
* Modifications:
* If applicable, add the following below the License Header, with the fields
* enclosed by brackets [] replaced by your own identifying information:
* "Portions Copyright [year] [name of copyright owner]"
*
* Contributor(s):
* If you wish your version of this file to be governed by only the CDDL or
* only the GPL Version 2, indicate your decision by adding "[Contributor]
* elects to include this software in this distribution under the [CDDL or GPL
* Version 2] license." If you don't indicate a single choice of license, a
* recipient has the option to distribute your version of this file under
* either the CDDL, the GPL Version 2 or to extend the choice of license to
* its licensees as provided above. However, if you add GPL Version 2 code
* and therefore, elected the GPL Version 2 license, then the option applies
* only if the new code is made subject to such option by the copyright
* holder.
*/
package org.glassfish.grizzly.jaxws;
import com.sun.istack.Nullable;
import com.sun.xml.stream.buffer.XMLStreamBufferResult;
import com.sun.xml.ws.api.BindingID;
import com.sun.xml.ws.api.server.InstanceResolver;
import com.sun.xml.ws.api.server.SDDocumentSource;
import com.sun.xml.ws.api.server.WSEndpoint;
import com.sun.xml.ws.binding.BindingImpl;
import com.sun.xml.ws.server.EndpointFactory;
import com.sun.xml.ws.server.ServerRtException;
import com.sun.xml.ws.transport.http.HttpAdapter;
import com.sun.xml.ws.transport.http.WSHTTPConnection;
import com.sun.xml.ws.util.xml.XmlUtil;
import java.io.IOException;
import java.net.URL;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.concurrent.TimeUnit;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.xml.namespace.QName;
import javax.xml.parsers.ParserConfigurationException;
import javax.xml.transform.Source;
import javax.xml.transform.TransformerException;
import javax.xml.ws.Endpoint;
import org.glassfish.grizzly.EmptyCompletionHandler;
import org.glassfish.grizzly.Grizzly;
import org.glassfish.grizzly.http.Method;
import org.glassfish.grizzly.http.server.HttpHandler;
import org.glassfish.grizzly.http.server.Request;
import org.glassfish.grizzly.http.server.Response;
import org.xml.sax.EntityResolver;
import org.xml.sax.SAXException;
/**
* JAX-WS {@link HttpHandler} implementation.
*
* @author Alexey Stashok
* @author JAX-WS team
*/
public class JaxwsHandler extends HttpHandler {
private static final Logger LOGGER = Grizzly.logger(JaxwsHandler.class);
private final List metadata;
private final Map properties;
private final Object implementor;
private final boolean isAsync;
private WSEndpoint endpoint;
private HttpAdapter httpAdapter;
private volatile long timeoutMillis = TimeUnit.MILLISECONDS.convert(15, TimeUnit.MINUTES);
/**
* Create JaxwsHandler based on WebService implementation class, which will
* operate in synchronous mode.
*
* @param implementor WebService implementation.
*/
public JaxwsHandler(final Object implementor) {
this(implementor, false);
}
/**
* Create JaxwsHandler based on WebService implementation class.
*
* @param implementor WebService implementation class.
* @param isAsync if true the handler will execute WebService in
* asynchronous mode, otherwise synchronous.
*/
public JaxwsHandler(final Object implementor, final boolean isAsync) {
this(implementor, isAsync, null, null);
}
/**
* Create JaxwsHandler based on WebService implementation class.
*
* @param implementor WebService implementation class.
* @param isAsync if true the handler will execute WebService in
* asynchronous mode, otherwise synchronous.
* @param metadata
* Other documents that become {@link com.sun.xml.ws.api.server.SDDocument}s. Can be null.
* @param properties extra properties to be used, when constructing WebService {@link WSEndpoint}.
*/
public JaxwsHandler(final Object implementor, final boolean isAsync,
final List metadata, final Map properties) {
this.implementor = implementor;
this.isAsync = isAsync;
this.metadata = metadata;
this.properties = properties;
}
/**
* Create JaxwsHandler based on {@link WSEndpoint}, which will
* operate in synchronous mode.
*
* @param endpoint {@link WSEndpoint}.
*/
public JaxwsHandler(final WSEndpoint endpoint) {
this(endpoint, false);
}
/**
* Create JaxwsHandler based on {@link WSEndpoint}, which will
* operate in synchronous mode.
*
* @param endpoint {@link WSEndpoint}.
* @param isAsync if true the handler will execute WebService in
* asynchronous mode, otherwise synchronous.
*/
public JaxwsHandler(final WSEndpoint endpoint, final boolean isAsync) {
this.endpoint = endpoint;
this.isAsync = isAsync;
this.implementor = null;
this.metadata = null;
this.properties = null;
}
/**
* {@inheritDoc}
*/
@Override
public void start() {
if (implementor != null) {
this.endpoint = WSEndpoint.create(
(Class>) implementor.getClass(), true,
InstanceResolver.createSingleton(implementor).createInvoker(),
getProperty(QName.class, Endpoint.WSDL_SERVICE),
getProperty(QName.class, Endpoint.WSDL_PORT),
null /* no container */,
BindingImpl.create(BindingID.parse(implementor.getClass())),
getPrimaryWsdl(implementor),
buildDocList(),
(EntityResolver) null,
!isAsync);
}
this.httpAdapter = HttpAdapter.createAlone(endpoint);
}
public boolean isAsync() {
return isAsync;
}
public void setAsyncTimeout(final long timeout, final TimeUnit timeUnit) {
timeoutMillis = TimeUnit.MILLISECONDS.convert(timeout, timeUnit);
}
public long getAsyncTimeout(final TimeUnit timeUnit) {
return timeUnit.convert(timeoutMillis, TimeUnit.MILLISECONDS);
}
/**
* Main entry point of the {@link HttpHandler} to service a request
* @param req incoming HTTP request
* @param res HTTP response to prepare
*/
@Override
public void service(Request req, Response res) throws Exception {
LOGGER.log(Level.FINE, "Received a request. The request thread {0} .", Thread.currentThread());
// TODO: synchornous execution for ?wsdl, non AsyncProvider requests
final WSHTTPConnection connection = new JaxwsConnection(httpAdapter,
req, res, req.isSecure(), isAsync);
if (Method.GET.equals(req.getMethod())) {
// metadata query. let the interceptor run
if (isMetadataQuery(connection.getQueryString())) {
// Sends published WSDL and schema documents as the default action.
httpAdapter.publishWSDL(connection);
return;
}
}
if (isAsync) {
res.suspend(timeoutMillis, TimeUnit.MILLISECONDS,
new EmptyCompletionHandler() {
@Override
public void cancelled() {
connection.close();
}
});
httpAdapter.invokeAsync(connection);
} else {
httpAdapter.handle(connection);
}
LOGGER.log(Level.FINE, "Getting out of service(). Done with the request thread {0} .", Thread.currentThread());
}
/**
* Returns true if the given query string is for metadata request.
*
* @param query
* String like "xsd=1" or "perhaps=some&unrelated=query".
* Can be null.
* @return true for metadata requests
* false for web service requests
*/
private boolean isMetadataQuery(String query) {
// we intentionally return true even if documents don't exist,
// so that they get 404.
return query != null && (query.equals("WSDL") || query.startsWith("wsdl") || query.startsWith("xsd="));
}
private T getProperty(Class type, String key) {
if (properties == null) return null;
Object o = properties.get(key);
if (o == null) return null;
if (type.isInstance(o))
return type.cast(o);
else
throw new IllegalArgumentException("Property " + key + " has to be of type " + type); // i18n
}
/**
* Gets WSDL from @WebService or @WebServiceProvider
*/
private @Nullable SDDocumentSource getPrimaryWsdl(final Object implementor) {
Class implType = implementor.getClass();
// Takes care of @WebService, @WebServiceProvider's wsdlLocation
EndpointFactory.verifyImplementorClass(implType);
String wsdlLocation = EndpointFactory.getWsdlLocation(implType);
if (wsdlLocation != null) {
ClassLoader cl = implType.getClassLoader();
URL url = cl.getResource(wsdlLocation);
if (url != null) {
return SDDocumentSource.create(url);
}
throw new ServerRtException("cannot.load.wsdl", wsdlLocation);
}
return null;
}
/**
* Convert metadata sources using identity transform. So that we can
* reuse the Source object multiple times.
*/
private List buildDocList() {
List r = new ArrayList();
if (metadata != null) {
for (Source source : metadata) {
try {
XMLStreamBufferResult xsbr = XmlUtil.identityTransform(source, new XMLStreamBufferResult());
String systemId = source.getSystemId();
r.add(SDDocumentSource.create(new URL(systemId), xsbr.getXMLStreamBuffer()));
} catch (TransformerException te) {
throw new ServerRtException("server.rt.err", te);
} catch (IOException te) {
throw new ServerRtException("server.rt.err", te);
} catch (SAXException e) {
throw new ServerRtException("server.rt.err", e);
} catch (ParserConfigurationException e) {
throw new ServerRtException("server.rt.err", e);
}
}
}
return r;
}
}