|
|
|
@ -1,5 +1,5 @@ |
|
|
|
/* |
|
|
|
/* |
|
|
|
* Copyright 2002-2019 the original author or authors. |
|
|
|
* Copyright 2002-2020 the original author or authors. |
|
|
|
* |
|
|
|
* |
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); |
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); |
|
|
|
* you may not use this file except in compliance with the License. |
|
|
|
* you may not use this file except in compliance with the License. |
|
|
|
@ -253,7 +253,7 @@ public class RestTemplateXhrTransport extends AbstractXhrTransport { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
private void handleFrame(ByteArrayOutputStream os) throws IOException { |
|
|
|
private void handleFrame(ByteArrayOutputStream os) throws IOException { |
|
|
|
String content = os.toString(SockJsFrame.CHARSET.toString()); |
|
|
|
String content = os.toString(SockJsFrame.CHARSET.name()); |
|
|
|
os.reset(); |
|
|
|
os.reset(); |
|
|
|
if (logger.isTraceEnabled()) { |
|
|
|
if (logger.isTraceEnabled()) { |
|
|
|
logger.trace("XHR receive content: " + content); |
|
|
|
logger.trace("XHR receive content: " + content); |
|
|
|
|