1. 16 7月, 2016 1 次提交
  2. 08 10月, 2015 1 次提交
  3. 25 9月, 2015 1 次提交
  4. 24 9月, 2015 1 次提交
  5. 22 9月, 2015 1 次提交
  6. 26 8月, 2015 2 次提交
    • B
      Prepare Undertow 1.3.0 compatibility · 42588cb0
      Brian Clozel 提交于
      Xnio 3.4.0 will introduce a new source of ByteBuffers: ByteBufferPool.
      Previously this feature was offered by Pooled/Pool/ByteBufferSlicePool;
      those classes are now marked as deprecated.
      
      As of 1.3.0.Beta9, Undertow still implements the following method in its
      ClientConnection interface, using those deprecated types:
      
          Pool<ByteBuffer> getBufferPool();
      
      This commit prepares compatibility by suppressing warnings in order to
      avoid build failures in our build. Once appropriate changes are made in
      Undertow, a specific implementation with new types could be introduced.
      
      Issue: SPR-13366
      42588cb0
    • J
      Polishing · e05fb494
      Juergen Hoeller 提交于
      e05fb494
  7. 21 8月, 2015 1 次提交
  8. 29 7月, 2015 2 次提交
    • R
      Simplify use of headers for SockJsClient requests · b7bdd724
      Rossen Stoyanchev 提交于
      Before this change, XhrTransport implementations had to be configured
      with the headers to use for HTTP requests other than the initial
      handshake.
      
      After this change the handshake headers passed to SockJsClient by
      default are used for all other HTTP requests related to the SockJS
      connection (e.g. info request, xhr send/receive). A property on
      SockJsClient allows restricting the headers to use for other HTTP
      requests to a subset of the handshake headers.
      
      Issue: SPR-13254
      b7bdd724
    • R
      Polish SockJS client · 9f557cf9
      Rossen Stoyanchev 提交于
      9f557cf9
  9. 24 5月, 2015 1 次提交
  10. 27 10月, 2014 1 次提交
  11. 21 10月, 2014 1 次提交
  12. 08 10月, 2014 1 次提交
    • B
      SockJs client: add an XhrTransport for Undertow · 4cf19df4
      Brian Clozel 提交于
      This change adds a new XhrTransport for the SockJs client
      implementation. This transport is based on `UndertowClient`,
      Undertow's HTTP client.
      
      Note that this transport can be customized with an OptionMap that is
      used by the Xnio worker backing the I/O communications (see
      http://xnio.jboss.org).
      
      Implementation tested with undertow 1.0.36, 1.1.0.RC3, 1.2.0.Beta1.
      
      Issue: SPR-12008
      4cf19df4