Skip to content

Commit

Permalink
Two unsaved changes that were missing in r947453.
Browse files Browse the repository at this point in the history
  • Loading branch information
veithen committed May 23, 2010
1 parent 1d8233c commit 2d4c781
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,11 @@ private void waitForReply(MessageContext messageContext, DatagramSocket datagram

// create the soap envelope
try {
MessageContext respMessageContext = messageContext.getOperationContext().getMessageContext(WSDL2Constants.MESSAGE_LABEL_IN);
MessageContext respMessageContext = messageContext.getOperationContext().
getMessageContext(WSDL2Constants.MESSAGE_LABEL_IN);
InputStream inputStream = new ByteArrayInputStream(inputBuffer, 0, packet.getLength());
SOAPEnvelope envelope = TransportUtils.createSOAPMessage(respMessageContext, inputStream, contentType);
SOAPEnvelope envelope = TransportUtils.createSOAPMessage(respMessageContext,
inputStream, contentType);
respMessageContext.setEnvelope(envelope);
} catch (XMLStreamException e) {
throw new AxisFault("Can not build the soap message ", e);
Expand Down

0 comments on commit 2d4c781

Please sign in to comment.