Java Code Examples for com.sun.xml.internal.ws.api.message.Packet#copy()

The following examples show how to use com.sun.xml.internal.ws.api.message.Packet#copy() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: LoggingDumpTube.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
@Override
public NextAction processRequest(Packet request) {
    if (messageDumper.isLoggable()) {
        Packet dumpPacket = (request != null) ? request.copy(true) : null;
        messageDumper.dump(MessageDumper.MessageType.Request, position.requestState, Converter.toString(dumpPacket), tubeId, Fiber.current().owner.id);
    }

    return super.processRequest(request);
}
 
Example 2
Source File: LoggingDumpTube.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
@Override
public NextAction processRequest(Packet request) {
    if (messageDumper.isLoggable()) {
        Packet dumpPacket = (request != null) ? request.copy(true) : null;
        messageDumper.dump(MessageDumper.MessageType.Request, position.requestState, Converter.toString(dumpPacket), tubeId, Fiber.current().owner.id);
    }

    return super.processRequest(request);
}
 
Example 3
Source File: LoggingDumpTube.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
@Override
public NextAction processResponse(Packet response) {
    if (messageDumper.isLoggable()) {
        Packet dumpPacket = (response != null) ? response.copy(true) : null;
        messageDumper.dump(MessageDumper.MessageType.Response, position.responseState, Converter.toString(dumpPacket), tubeId, Fiber.current().owner.id);
    }

    return super.processResponse(response);
}
 
Example 4
Source File: LoggingDumpTube.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
@Override
public NextAction processRequest(Packet request) {
    if (messageDumper.isLoggable()) {
        Packet dumpPacket = (request != null) ? request.copy(true) : null;
        messageDumper.dump(MessageDumper.MessageType.Request, position.requestState, Converter.toString(dumpPacket), tubeId, Fiber.current().owner.id);
    }

    return super.processRequest(request);
}
 
Example 5
Source File: LoggingDumpTube.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
@Override
public NextAction processResponse(Packet response) {
    if (messageDumper.isLoggable()) {
        Packet dumpPacket = (response != null) ? response.copy(true) : null;
        messageDumper.dump(MessageDumper.MessageType.Response, position.responseState, Converter.toString(dumpPacket), tubeId, Fiber.current().owner.id);
    }

    return super.processResponse(response);
}
 
Example 6
Source File: LoggingDumpTube.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
@Override
public NextAction processRequest(Packet request) {
    if (messageDumper.isLoggable()) {
        Packet dumpPacket = (request != null) ? request.copy(true) : null;
        messageDumper.dump(MessageDumper.MessageType.Request, position.requestState, Converter.toString(dumpPacket), tubeId, Fiber.current().owner.id);
    }

    return super.processRequest(request);
}
 
Example 7
Source File: LoggingDumpTube.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
@Override
public NextAction processRequest(Packet request) {
    if (messageDumper.isLoggable()) {
        Packet dumpPacket = (request != null) ? request.copy(true) : null;
        messageDumper.dump(MessageDumper.MessageType.Request, position.requestState, Converter.toString(dumpPacket), tubeId, Fiber.current().owner.id);
    }

    return super.processRequest(request);
}
 
Example 8
Source File: LoggingDumpTube.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
@Override
public NextAction processResponse(Packet response) {
    if (messageDumper.isLoggable()) {
        Packet dumpPacket = (response != null) ? response.copy(true) : null;
        messageDumper.dump(MessageDumper.MessageType.Response, position.responseState, Converter.toString(dumpPacket), tubeId, Fiber.current().owner.id);
    }

    return super.processResponse(response);
}
 
Example 9
Source File: LoggingDumpTube.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
@Override
public NextAction processResponse(Packet response) {
    if (messageDumper.isLoggable()) {
        Packet dumpPacket = (response != null) ? response.copy(true) : null;
        messageDumper.dump(MessageDumper.MessageType.Response, position.responseState, Converter.toString(dumpPacket), tubeId, Fiber.current().owner.id);
    }

    return super.processResponse(response);
}
 
Example 10
Source File: LoggingDumpTube.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
@Override
public NextAction processResponse(Packet response) {
    if (messageDumper.isLoggable()) {
        Packet dumpPacket = (response != null) ? response.copy(true) : null;
        messageDumper.dump(MessageDumper.MessageType.Response, position.responseState, Converter.toString(dumpPacket), tubeId, Fiber.current().owner.id);
    }

    return super.processResponse(response);
}
 
Example 11
Source File: LoggingDumpTube.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
@Override
public NextAction processRequest(Packet request) {
    if (messageDumper.isLoggable()) {
        Packet dumpPacket = (request != null) ? request.copy(true) : null;
        messageDumper.dump(MessageDumper.MessageType.Request, position.requestState, Converter.toString(dumpPacket), tubeId, Fiber.current().owner.id);
    }

    return super.processRequest(request);
}
 
Example 12
Source File: LoggingDumpTube.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
@Override
public NextAction processResponse(Packet response) {
    if (messageDumper.isLoggable()) {
        Packet dumpPacket = (response != null) ? response.copy(true) : null;
        messageDumper.dump(MessageDumper.MessageType.Response, position.responseState, Converter.toString(dumpPacket), tubeId, Fiber.current().owner.id);
    }

    return super.processResponse(response);
}
 
Example 13
Source File: LoggingDumpTube.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
@Override
public NextAction processRequest(Packet request) {
    if (messageDumper.isLoggable()) {
        Packet dumpPacket = (request != null) ? request.copy(true) : null;
        messageDumper.dump(MessageDumper.MessageType.Request, position.requestState, Converter.toString(dumpPacket), tubeId, Fiber.current().owner.id);
    }

    return super.processRequest(request);
}
 
Example 14
Source File: LoggingDumpTube.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
@Override
public NextAction processResponse(Packet response) {
    if (messageDumper.isLoggable()) {
        Packet dumpPacket = (response != null) ? response.copy(true) : null;
        messageDumper.dump(MessageDumper.MessageType.Response, position.responseState, Converter.toString(dumpPacket), tubeId, Fiber.current().owner.id);
    }

    return super.processResponse(response);
}
 
Example 15
Source File: LoggingDumpTube.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
@Override
public NextAction processRequest(Packet request) {
    if (messageDumper.isLoggable()) {
        Packet dumpPacket = (request != null) ? request.copy(true) : null;
        messageDumper.dump(MessageDumper.MessageType.Request, position.requestState, Converter.toString(dumpPacket), tubeId, Fiber.current().owner.id);
    }

    return super.processRequest(request);
}
 
Example 16
Source File: NonAnonymousResponseProcessor.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 4 votes vote down vote up
/**
* Send a response to a non-anonymous address. Also closes the transport back channel
* of {@link Packet} if it's not closed already.
*
* @param packet
*      The response from our server, which will be delivered to the destination.
* @return The response packet that should be used to complete the tubeline response processing
*/
   public Packet process(Packet packet) {
   Fiber.CompletionCallback fiberCallback = null;
   Fiber currentFiber = Fiber.getCurrentIfSet();
   if (currentFiber != null) {
       // Link completion of the current fiber to the new fiber that will
       // deliver the async response. This allows access to the response
       // packet that may be generated by sending a new message for the
       // current async response.

           final Fiber.CompletionCallback currentFiberCallback =
               currentFiber.getCompletionCallback();

                   if (currentFiberCallback != null) {
                     fiberCallback = new Fiber.CompletionCallback() {
                     public void onCompletion(@NotNull Packet response) {
                       currentFiberCallback.onCompletion(response);
                     }

                     public void onCompletion(@NotNull Throwable error) {
                       currentFiberCallback.onCompletion(error);
                     }
                   };
                   currentFiber.setCompletionCallback(null);
           }
   }

   // we need to assemble a pipeline to talk to this endpoint.
           WSEndpoint<?> endpoint = packet.endpoint;
           WSBinding binding = endpoint.getBinding();
   Tube transport = TransportTubeFactory.create(Thread.currentThread().getContextClassLoader(),
       new ClientTubeAssemblerContext(
                   packet.endpointAddress, endpoint.getPort(), (WSService) null,
                   binding, endpoint.getContainer(),
                   ((BindingImpl) binding).createCodec(), null, null));
   Fiber fiber = endpoint.getEngine().createFiber();
   fiber.start(transport, packet, fiberCallback);

   // then we'll proceed the rest like one-way.
   Packet copy = packet.copy(false);
   copy.endpointAddress = null;

   return copy;
   }
 
Example 17
Source File: NonAnonymousResponseProcessor.java    From TencentKona-8 with GNU General Public License v2.0 4 votes vote down vote up
/**
* Send a response to a non-anonymous address. Also closes the transport back channel
* of {@link Packet} if it's not closed already.
*
* @param packet
*      The response from our server, which will be delivered to the destination.
* @return The response packet that should be used to complete the tubeline response processing
*/
   public Packet process(Packet packet) {
   Fiber.CompletionCallback fiberCallback = null;
   Fiber currentFiber = Fiber.getCurrentIfSet();
   if (currentFiber != null) {
       // Link completion of the current fiber to the new fiber that will
       // deliver the async response. This allows access to the response
       // packet that may be generated by sending a new message for the
       // current async response.

           final Fiber.CompletionCallback currentFiberCallback =
               currentFiber.getCompletionCallback();

                   if (currentFiberCallback != null) {
                     fiberCallback = new Fiber.CompletionCallback() {
                     public void onCompletion(@NotNull Packet response) {
                       currentFiberCallback.onCompletion(response);
                     }

                     public void onCompletion(@NotNull Throwable error) {
                       currentFiberCallback.onCompletion(error);
                     }
                   };
                   currentFiber.setCompletionCallback(null);
           }
   }

   // we need to assemble a pipeline to talk to this endpoint.
           WSEndpoint<?> endpoint = packet.endpoint;
           WSBinding binding = endpoint.getBinding();
   Tube transport = TransportTubeFactory.create(Thread.currentThread().getContextClassLoader(),
       new ClientTubeAssemblerContext(
                   packet.endpointAddress, endpoint.getPort(), (WSService) null,
                   binding, endpoint.getContainer(),
                   ((BindingImpl) binding).createCodec(), null, null));
   Fiber fiber = endpoint.getEngine().createFiber();
   fiber.start(transport, packet, fiberCallback);

   // then we'll proceed the rest like one-way.
   Packet copy = packet.copy(false);
   copy.endpointAddress = null;

   return copy;
   }
 
Example 18
Source File: NonAnonymousResponseProcessor.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
/**
* Send a response to a non-anonymous address. Also closes the transport back channel
* of {@link Packet} if it's not closed already.
*
* @param packet
*      The response from our server, which will be delivered to the destination.
* @return The response packet that should be used to complete the tubeline response processing
*/
   public Packet process(Packet packet) {
   Fiber.CompletionCallback fiberCallback = null;
   Fiber currentFiber = Fiber.getCurrentIfSet();
   if (currentFiber != null) {
       // Link completion of the current fiber to the new fiber that will
       // deliver the async response. This allows access to the response
       // packet that may be generated by sending a new message for the
       // current async response.

           final Fiber.CompletionCallback currentFiberCallback =
               currentFiber.getCompletionCallback();

                   if (currentFiberCallback != null) {
                     fiberCallback = new Fiber.CompletionCallback() {
                     public void onCompletion(@NotNull Packet response) {
                       currentFiberCallback.onCompletion(response);
                     }

                     public void onCompletion(@NotNull Throwable error) {
                       currentFiberCallback.onCompletion(error);
                     }
                   };
                   currentFiber.setCompletionCallback(null);
           }
   }

   // we need to assemble a pipeline to talk to this endpoint.
           WSEndpoint<?> endpoint = packet.endpoint;
           WSBinding binding = endpoint.getBinding();
   Tube transport = TransportTubeFactory.create(Thread.currentThread().getContextClassLoader(),
       new ClientTubeAssemblerContext(
                   packet.endpointAddress, endpoint.getPort(), (WSService) null,
                   binding, endpoint.getContainer(),
                   ((BindingImpl) binding).createCodec(), null, null));
   Fiber fiber = endpoint.getEngine().createFiber();
   fiber.start(transport, packet, fiberCallback);

   // then we'll proceed the rest like one-way.
   Packet copy = packet.copy(false);
   copy.endpointAddress = null;

   return copy;
   }
 
Example 19
Source File: NonAnonymousResponseProcessor.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
/**
* Send a response to a non-anonymous address. Also closes the transport back channel
* of {@link Packet} if it's not closed already.
*
* @param packet
*      The response from our server, which will be delivered to the destination.
* @return The response packet that should be used to complete the tubeline response processing
*/
   public Packet process(Packet packet) {
   Fiber.CompletionCallback fiberCallback = null;
   Fiber currentFiber = Fiber.getCurrentIfSet();
   if (currentFiber != null) {
       // Link completion of the current fiber to the new fiber that will
       // deliver the async response. This allows access to the response
       // packet that may be generated by sending a new message for the
       // current async response.

           final Fiber.CompletionCallback currentFiberCallback =
               currentFiber.getCompletionCallback();

                   if (currentFiberCallback != null) {
                     fiberCallback = new Fiber.CompletionCallback() {
                     public void onCompletion(@NotNull Packet response) {
                       currentFiberCallback.onCompletion(response);
                     }

                     public void onCompletion(@NotNull Throwable error) {
                       currentFiberCallback.onCompletion(error);
                     }
                   };
                   currentFiber.setCompletionCallback(null);
           }
   }

   // we need to assemble a pipeline to talk to this endpoint.
           WSEndpoint<?> endpoint = packet.endpoint;
           WSBinding binding = endpoint.getBinding();
   Tube transport = TransportTubeFactory.create(Thread.currentThread().getContextClassLoader(),
       new ClientTubeAssemblerContext(
                   packet.endpointAddress, endpoint.getPort(), (WSService) null,
                   binding, endpoint.getContainer(),
                   ((BindingImpl) binding).createCodec(), null, null));
   Fiber fiber = endpoint.getEngine().createFiber();
   fiber.start(transport, packet, fiberCallback);

   // then we'll proceed the rest like one-way.
   Packet copy = packet.copy(false);
   copy.endpointAddress = null;

   return copy;
   }
 
Example 20
Source File: NonAnonymousResponseProcessor.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
/**
* Send a response to a non-anonymous address. Also closes the transport back channel
* of {@link Packet} if it's not closed already.
*
* @param packet
*      The response from our server, which will be delivered to the destination.
* @return The response packet that should be used to complete the tubeline response processing
*/
   public Packet process(Packet packet) {
   Fiber.CompletionCallback fiberCallback = null;
   Fiber currentFiber = Fiber.getCurrentIfSet();
   if (currentFiber != null) {
       // Link completion of the current fiber to the new fiber that will
       // deliver the async response. This allows access to the response
       // packet that may be generated by sending a new message for the
       // current async response.

           final Fiber.CompletionCallback currentFiberCallback =
               currentFiber.getCompletionCallback();

                   if (currentFiberCallback != null) {
                     fiberCallback = new Fiber.CompletionCallback() {
                     public void onCompletion(@NotNull Packet response) {
                       currentFiberCallback.onCompletion(response);
                     }

                     public void onCompletion(@NotNull Throwable error) {
                       currentFiberCallback.onCompletion(error);
                     }
                   };
                   currentFiber.setCompletionCallback(null);
           }
   }

   // we need to assemble a pipeline to talk to this endpoint.
           WSEndpoint<?> endpoint = packet.endpoint;
           WSBinding binding = endpoint.getBinding();
   Tube transport = TransportTubeFactory.create(Thread.currentThread().getContextClassLoader(),
       new ClientTubeAssemblerContext(
                   packet.endpointAddress, endpoint.getPort(), (WSService) null,
                   binding, endpoint.getContainer(),
                   ((BindingImpl) binding).createCodec(), null, null));
   Fiber fiber = endpoint.getEngine().createFiber();
   fiber.start(transport, packet, fiberCallback);

   // then we'll proceed the rest like one-way.
   Packet copy = packet.copy(false);
   copy.endpointAddress = null;

   return copy;
   }