Search in sources :

Example 1 with Localizable

use of com.sun.istack.localization.Localizable in project metro-jax-ws by eclipse-ee4j.

the class WSServletDelegate method doGet.

public void doGet(HttpServletRequest request, HttpServletResponse response, ServletContext context) throws ServletException {
    try {
        ServletAdapter target = getTarget(request);
        if (target != null) {
            if (logger.isLoggable(Level.FINEST)) {
                logger.finest(WsservletMessages.SERVLET_TRACE_GOT_REQUEST_FOR_ENDPOINT(target.name));
            }
            final String path = request.getContextPath() + target.getValidPath();
            probe.startedEvent(path);
            target.invokeAsync(context, request, response, new HttpAdapter.CompletionCallback() {

                @Override
                public void onCompletion() {
                    probe.endedEvent(path);
                }
            });
        } else {
            Localizer localizer = getLocalizerFor(request);
            writeNotFoundErrorPage(localizer, response, "Invalid Request");
        }
    } catch (JAXWSExceptionBase e) {
        logger.log(Level.SEVERE, defaultLocalizer.localize(e), e);
        response.setStatus(HttpServletResponse.SC_INTERNAL_SERVER_ERROR);
    } catch (Throwable e) {
        if (e instanceof Localizable) {
            logger.log(Level.SEVERE, defaultLocalizer.localize((Localizable) e), e);
        } else {
            logger.log(Level.SEVERE, "caught throwable", e);
        }
        response.setStatus(HttpServletResponse.SC_INTERNAL_SERVER_ERROR);
    }
}
Also used : HttpAdapter(com.sun.xml.ws.transport.http.HttpAdapter) JAXWSExceptionBase(com.sun.xml.ws.util.exception.JAXWSExceptionBase) Localizer(com.sun.istack.localization.Localizer) Localizable(com.sun.istack.localization.Localizable)

Example 2 with Localizable

use of com.sun.istack.localization.Localizable in project metro-jax-ws by eclipse-ee4j.

the class WSServletDelegate method doPut.

/**
 * Handles HTTP PUT for XML/HTTP binding based endpoints
 * @param request the HTTP request object
 * @param response the HTTP response object
 * @param context the Servlet context object
 * @throws ServletException for errors
 */
public void doPut(HttpServletRequest request, HttpServletResponse response, ServletContext context) throws ServletException {
    // TODO: unify this into doGet.
    try {
        ServletAdapter target = getTarget(request);
        if (target != null) {
            if (logger.isLoggable(Level.FINEST)) {
                logger.finest(WsservletMessages.SERVLET_TRACE_GOT_REQUEST_FOR_ENDPOINT(target.name));
            }
        } else {
            Localizer localizer = getLocalizerFor(request);
            writeNotFoundErrorPage(localizer, response, "Invalid request");
            return;
        }
        Binding binding = target.getEndpoint().getBinding();
        if (binding instanceof HTTPBinding) {
            target.handle(context, request, response);
        } else {
            response.setStatus(HttpServletResponse.SC_METHOD_NOT_ALLOWED);
        }
    } catch (JAXWSExceptionBase e) {
        logger.log(Level.SEVERE, defaultLocalizer.localize(e), e);
        response.setStatus(HttpServletResponse.SC_INTERNAL_SERVER_ERROR);
    } catch (Throwable e) {
        if (e instanceof Localizable) {
            logger.log(Level.SEVERE, defaultLocalizer.localize((Localizable) e), e);
        } else {
            logger.log(Level.SEVERE, "caught throwable", e);
        }
        response.setStatus(HttpServletResponse.SC_INTERNAL_SERVER_ERROR);
    }
}
Also used : Binding(jakarta.xml.ws.Binding) HTTPBinding(jakarta.xml.ws.http.HTTPBinding) JAXWSExceptionBase(com.sun.xml.ws.util.exception.JAXWSExceptionBase) Localizer(com.sun.istack.localization.Localizer) HTTPBinding(jakarta.xml.ws.http.HTTPBinding) Localizable(com.sun.istack.localization.Localizable)

Aggregations

Localizable (com.sun.istack.localization.Localizable)2 Localizer (com.sun.istack.localization.Localizer)2 JAXWSExceptionBase (com.sun.xml.ws.util.exception.JAXWSExceptionBase)2 HttpAdapter (com.sun.xml.ws.transport.http.HttpAdapter)1 Binding (jakarta.xml.ws.Binding)1 HTTPBinding (jakarta.xml.ws.http.HTTPBinding)1