Skip to content

Commit 89a7777

Browse files
authored
SWS-996 - Fix XmppTransportUtils toURI (#94)
1 parent bfff048 commit 89a7777

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-ws-support/src/main/java/org/springframework/ws/transport/xmpp/support/XmppTransportUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ private XmppTransportUtils() {
4343
*/
4444
public static URI toUri(Message requestMessage) throws URISyntaxException {
4545
return new URI(XmppTransportConstants.XMPP_URI_SCHEME,
46-
requestMessage.getTo().asDomainFullJidIfPossible().asUnescapedString(), null);
46+
requestMessage.getTo().asUnescapedString(), null);
4747
}
4848

4949
public static String getTo(URI uri) {

0 commit comments

Comments
 (0)