当前位置: 首页>>代码示例>>Java>>正文


Java HttpExchange类代码示例

本文整理汇总了Java中javax.xml.ws.spi.http.HttpExchange的典型用法代码示例。如果您正苦于以下问题:Java HttpExchange类的具体用法?Java HttpExchange怎么用?Java HttpExchange使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


HttpExchange类属于javax.xml.ws.spi.http包,在下文中一共展示了HttpExchange类的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: handle

import javax.xml.ws.spi.http.HttpExchange; //导入依赖的package包/类
/**
 * Called by HttpServer when there is a matching request for the context
 */
@Override
public void handle(HttpExchange msg) {
    try {
        if (logger.isLoggable(Level.FINE)) {
            logger.log(Level.FINE, "Received HTTP request:{0}", msg.getRequestURI());
        }
        if (executor != null) {
            // Use application's Executor to handle request. Application may
            // have set an executor using Endpoint.setExecutor().
            executor.execute(new HttpHandlerRunnable(msg));
        } else {
            handleExchange(msg);
        }
    } catch (Throwable e) {
        // Dont't propagate the exception otherwise it kills the httpserver
        logger.log(Level.SEVERE, null, e);
    }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:22,代码来源:PortableHttpHandler.java

示例2: handleExchange

import javax.xml.ws.spi.http.HttpExchange; //导入依赖的package包/类
public void handleExchange(HttpExchange msg) throws IOException {
    WSHTTPConnection con = new PortableConnectionImpl(adapter,msg);
    try {
        if (logger.isLoggable(Level.FINE)) {
            logger.log(Level.FINE, "Received HTTP request:{0}", msg.getRequestURI());
        }
        String method = msg.getRequestMethod();
        if(method.equals(GET_METHOD) || method.equals(POST_METHOD) || method.equals(HEAD_METHOD)
        || method.equals(PUT_METHOD) || method.equals(DELETE_METHOD)) {
            adapter.handle(con);
        } else {
            logger.warning(HttpserverMessages.UNEXPECTED_HTTP_METHOD(method));
        }
    } finally {
        msg.close();
    }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:18,代码来源:PortableHttpHandler.java

示例3: handle

import javax.xml.ws.spi.http.HttpExchange; //导入依赖的package包/类
/**
 * Called by HttpServer when there is a matching request for the context
 */
public void handle(HttpExchange msg) {
    try {
        logger.fine("Received HTTP request:"+msg.getRequestURI());
        if (executor != null) {
            // Use application's Executor to handle request. Application may
            // have set an executor using Endpoint.setExecutor().
            executor.execute(new HttpHandlerRunnable(msg));
        } else {
            handleExchange(msg);
        }
    } catch(Throwable e) {
        // Dont't propagate the exception otherwise it kills the httpserver
        e.printStackTrace();
    }
}
 
开发者ID:alexkasko,项目名称:openjdk-icedtea7,代码行数:19,代码来源:PortableHttpHandler.java

示例4: handleRequest

import javax.xml.ws.spi.http.HttpExchange; //导入依赖的package包/类
@Override
public void handleRequest(HttpServerExchange ex) throws IOException
{
   ClassLoader origClassLoader = SecurityActions.getContextClassLoader();
   final Bus origBus = BusFactory.getThreadDefaultBus();
   if (bus != null) {
       BusFactory.setThreadDefaultBus(bus);
   }
   
   try
   {
      SecurityActions.setContextClassLoader(this.classLoader);
      super.handleRequest(ex);
   }
   catch (Exception e)
   {
      LOG.throwing(SwitchYardHttpHandler.class.getName(), "handle(" + HttpExchange.class.getName() + " ex)", e);
      if (e instanceof IOException)
      {
         throw (IOException) e;
      }
      else
      {
         throw new RuntimeException(e);
      }
   }
   finally
   {
      if (bus != null) {
          SecurityActions.setContextClassLoader(origClassLoader);
          BusFactory.setThreadDefaultBus(origBus);
      }
   }
}
 
开发者ID:jboss-switchyard,项目名称:switchyard,代码行数:35,代码来源:HttpServerDestination.java

示例5: handleExchange

import javax.xml.ws.spi.http.HttpExchange; //导入依赖的package包/类
public void handleExchange(HttpExchange msg) throws IOException {
    WSHTTPConnection con = new PortableConnectionImpl(adapter,msg);
    try {
        logger.fine("Received HTTP request:"+msg.getRequestURI());
        String method = msg.getRequestMethod();
        if(method.equals(GET_METHOD) || method.equals(POST_METHOD) || method.equals(HEAD_METHOD)
        || method.equals(PUT_METHOD) || method.equals(DELETE_METHOD)) {
            adapter.handle(con);
        } else {
            logger.warning(HttpserverMessages.UNEXPECTED_HTTP_METHOD(method));
        }
    } finally {
        msg.close();
    }
}
 
开发者ID:alexkasko,项目名称:openjdk-icedtea7,代码行数:16,代码来源:PortableHttpHandler.java

示例6: PortableConnectionImpl

import javax.xml.ws.spi.http.HttpExchange; //导入依赖的package包/类
public PortableConnectionImpl(@NotNull HttpAdapter adapter, @NotNull HttpExchange httpExchange) {
    this.adapter = adapter;
    this.httpExchange = httpExchange;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:5,代码来源:PortableConnectionImpl.java

示例7: getExchange

import javax.xml.ws.spi.http.HttpExchange; //导入依赖的package包/类
@Property(JAXWSProperties.HTTP_EXCHANGE)
public HttpExchange getExchange() {
    return httpExchange;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:5,代码来源:PortableConnectionImpl.java

示例8: HttpHandlerRunnable

import javax.xml.ws.spi.http.HttpExchange; //导入依赖的package包/类
HttpHandlerRunnable(HttpExchange msg) {
    this.msg = msg;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:4,代码来源:PortableHttpHandler.java


注:本文中的javax.xml.ws.spi.http.HttpExchange类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。