Package com.sun.xml.ws.api.message

Examples of com.sun.xml.ws.api.message.Packet


    }
     
    public JAXBElement startSecureConversation(Packet packet)
            throws WSSecureConversationException {

  PacketMessageInfo info = new PacketMapMessageInfo(packet,new Packet());
  JAXBElement token = null;

  try {

      // gets the subject from the packet (puts one there if not found)
View Full Code Here


     * This method is called once in server side and at most one in client side.
     */
    public void preDestroy() {
  helper.disable();
         try {
            Packet request = new Packet();
            PacketMessageInfo info = new PacketMapMessageInfo(request, new Packet());
            Subject subj = new Subject();
            ServerAuthContext sAC = helper.getServerAuthContext(info, subj);
            if (sAC != null && WSIT_SERVER_AUTH_CONTEXT.equals(sAC.getClass().getName())) {
                sAC.cleanSubject(info, subj);
            }
View Full Code Here

    public Packet process(Packet request) {
        if (isHttpBinding) {
            return next.process(request);
        }
       
        Packet response = null;
        try {
            response = processRequest(request);
        } catch(Exception e) {
            if (_logger.isLoggable(Level.FINE)) {
                _logger.log(Level.FINE, "Failure in security pipe process", e);
View Full Code Here

    }   

    private Packet processRequest(Packet request) throws Exception {

        AuthStatus status = AuthStatus.SUCCESS; 
  PacketMessageInfo info= new PacketMapMessageInfo(request,new Packet());
  // XXX at this time, we expect the server subject to be null
  Subject serverSubject = (Subject)
      request.invocationProperties.get(PipeConstants.SERVER_SUBJECT);

  //could change the request packet
        ServerAuthContext sAC =
      helper.getServerAuthContext(info,serverSubject);
  Subject clientSubject = getClientSubject(request);
  final Packet validatedRequest; 
  try {
      if (sAC != null) {   
    // client subject must not be null
    // and when return status is SUCCESS, module
    // must have called handler.handle(CallerPrincipalCallback)
    status = sAC.validateRequest(info,clientSubject,serverSubject);
      }
  } catch(Exception e) {
      _logger.log(Level.SEVERE,"ws.error_validate_request", e);
      WebServiceException wse = new WebServiceException
    (localStrings.getLocalString
     ("enterprise.webservice.cantValidateRequest",
      "Cannot validate request for {0}",
      new Object[] { helper.getModelName() }),e);

      //set status for audit
      status = AuthStatus.SEND_FAILURE;
      // if unable to determine if two-way will return empty response
      return helper.getFaultResponse
    (info.getRequestPacket(),info.getResponsePacket(),wse);

  } finally {
      validatedRequest = info.getRequestPacket();
      helper.auditInvocation(validatedRequest,status);
  }

  Packet response = null;
  if (status == AuthStatus.SUCCESS) {
      boolean authorized = false;
      try {
    helper.authorize(validatedRequest);
    authorized = true;

      } catch (Exception e) {
    // not authorized, construct fault and proceded
    response = helper.getFaultResponse
        (validatedRequest,info.getResponsePacket(),e);
      }   
      if (authorized) {

    // only do doAdPriv if SecurityManager is in effect
    if (System.getSecurityManager() == null) {
                      try {
                        // proceed to invoke the endpoint
                        response = next.process(validatedRequest);
                    } catch (Exception e) {
                        _logger.log(Level.SEVERE, "ws.error_next_pipe", e);
                        response = helper.getFaultResponse(validatedRequest, info.getResponsePacket(), e);
                    }
    } else {
        try {
      response = (Packet)Subject.doAsPrivileged
          (clientSubject,new PrivilegedExceptionAction() {
        public Object run() throws Exception {
            // proceed to invoke the endpoint
            return next.process(validatedRequest);
        }
          }, null);
        } catch (PrivilegedActionException pae) {
            Throwable cause = pae.getCause();
      _logger.log(Level.SEVERE,"ws.error_next_pipe", cause);
      response = helper.getFaultResponse
          (validatedRequest,info.getResponsePacket(),cause);
        }
    }
      }
     
      //pipes are not supposed to return a null response packet
      if (response == null) {
    WebServiceException wse = new WebServiceException
        (localStrings.getLocalString
         ("enterprise.webservice.nullResponsePacket",
          "Invocation of Service {0} returned null response packet",
          new Object[] { helper.getModelName() }));
    response = helper.getFaultResponse
        (validatedRequest,info.getResponsePacket(),wse);
    _logger.log(Level.SEVERE,"",wse);

      }

      // secure response, including if it is a fault
      if (sAC != null && response.getMessage() != null) {
    info.setResponsePacket(response);
    response = processResponse(info, sAC, serverSubject);
      }

  } else {
View Full Code Here

        } catch (Exception e) {
            // temporary - need to send back SOAP fault message
        }

        Packet pipeResponse = next.process(request);

        //Make the response packet available in the MessageContext
        ((SOAPMessageContextImpl)ctxt).setPacket(pipeResponse);

View Full Code Here

        }

        ERWSWOHTTPConnection con = new ERWSWOHTTPConnection(woRequest);
        try
        {
            Packet packet;
            boolean invoke = false;
            try
            {
                packet = decodePacket(con, codec);
                invoke = true;
            }
            catch(Exception e)
            {
                packet = new Packet();
                if(e instanceof ExceptionHasMessage)
                {
                    webServiceLog.error(e.getMessage(), e);
                    packet.setMessage(((ExceptionHasMessage)e).getFaultMessage());
                }
                else if(e instanceof UnsupportedMediaException)
                {
                    webServiceLog.error(e.getMessage(), e);
                    con.setStatus(415);
View Full Code Here

    private Packet decodePacket(WSHTTPConnection con, Codec codec)
        throws IOException
    {
        String ct = con.getRequestHeader("Content-Type");
        InputStream in = con.getInput();
        Packet packet = new Packet();
        packet.soapAction = fixQuotesAroundSoapAction(con.getRequestHeader("SOAPAction"));
        packet.wasTransportSecure = con.isSecure();
        packet.acceptableMimeTypes = con.getRequestHeader("Accept");
        packet.addSatellite(con);
        addSatellites(packet);
        packet.webServiceContextDelegate = con.getWebServiceContextDelegate();
        codec.decode(in, ct, packet);
        return packet;
    }
View Full Code Here

            // when the call fails with an exception it's no longer a 'reply' but it may provide some information
            // about what went wrong.

            // note that Packet can still be updated after
            // ResponseContext is created.
            Packet reply = (fiber.getPacket() == null) ? packet : fiber.getPacket();
            receiver.setResponseContext(new ResponseContext(reply));

            pool.recycle(tube);
        }
    }
View Full Code Here

            default:
                throw new WebServiceException("Unrecognized message mode");
            }
        }

        return new Packet(message);
    }
View Full Code Here

        if(msg==null)
            message = Messages.createEmpty(soapVersion);
        else
            message = new PayloadSourceMessage(null, msg, setOutboundAttachments(), soapVersion);

        return new Packet(message);
    }
View Full Code Here

TOP

Related Classes of com.sun.xml.ws.api.message.Packet

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.