Search in sources :

Example 1 with AttachmentSet

use of com.sun.xml.ws.api.message.AttachmentSet in project metro-jax-ws by eclipse-ee4j.

the class EndpointMessageContextImpl method get.

@Override
@SuppressWarnings("element-type-mismatch")
public Object get(Object key) {
    if (packet.supports(key)) {
        // strongly typed
        return packet.get(key);
    }
    if (packet.getHandlerScopePropertyNames(true).contains(key)) {
        // no such application-scope property
        return null;
    }
    Object value = packet.invocationProperties.get(key);
    // add the attachments from the Message to the corresponding attachment property
    if (key.equals(MessageContext.OUTBOUND_MESSAGE_ATTACHMENTS) || key.equals(MessageContext.INBOUND_MESSAGE_ATTACHMENTS)) {
        Map<String, DataHandler> atts = (Map<String, DataHandler>) value;
        if (atts == null)
            atts = new HashMap<>();
        AttachmentSet attSet = packet.getMessage().getAttachments();
        for (Attachment att : attSet) {
            atts.put(att.getContentId(), att.asDataHandler());
        }
        return atts;
    }
    return value;
}
Also used : AttachmentSet(com.sun.xml.ws.api.message.AttachmentSet) Attachment(com.sun.xml.ws.api.message.Attachment) DataHandler(jakarta.activation.DataHandler)

Example 2 with AttachmentSet

use of com.sun.xml.ws.api.message.AttachmentSet in project metro-jax-ws by eclipse-ee4j.

the class SwaMimeAttachmentTest method testCustomAttachmentContentId.

public void testCustomAttachmentContentId() throws Exception {
    WSDLPort wsdlPort = getWSDLPort(getResource("WSW2JDLSwaTestService.wsdl"));
    Class proxySEIClass = SwaTest1.class;
    WebServiceFeature[] f = { databindingMode() };
    DatabindingConfig cliConfig = new DatabindingConfig();
    cliConfig.setContractClass(proxySEIClass);
    cliConfig.setFeatures(f);
    cliConfig.setWsdlPort(wsdlPort);
    cliConfig.setWsdlPort(wsdlPort);
    cliConfig.getMappingInfo().setServiceName(new QName("http://SwaTestService.org/wsdl", "WSIDLSwaTestService"));
    Databinding cli = (Databinding) factory.createRuntime(cliConfig);
    URL url1 = getResource("attach.text");
    URL url2 = getResource("attach.html");
    URL url3 = getResource("attach.xml");
    URL url4 = getResource("attach.jpeg1");
    URL url5 = getResource("attach.jpeg2");
    DataHandler dh1 = new DataHandler(url1);
    DataHandler dh2 = new DataHandler(url2);
    DataHandler dh3 = new DataHandler(url3);
    DataHandler dh4 = new DataHandler(url4);
    // DataHandler dh5 = new DataHandler(url5);
    jakarta.xml.ws.Holder<jakarta.activation.DataHandler> attach1 = new jakarta.xml.ws.Holder<jakarta.activation.DataHandler>();
    attach1.value = dh1;
    jakarta.xml.ws.Holder<jakarta.activation.DataHandler> attach2 = new jakarta.xml.ws.Holder<jakarta.activation.DataHandler>();
    attach2.value = dh2;
    jakarta.xml.ws.Holder<javax.xml.transform.Source> attach3 = new jakarta.xml.ws.Holder<javax.xml.transform.Source>();
    attach3.value = new StreamSource(dh3.getInputStream());
    jakarta.xml.ws.Holder<java.awt.Image> attach4 = new jakarta.xml.ws.Holder<java.awt.Image>();
    jakarta.xml.ws.Holder<java.awt.Image> attach5 = new jakarta.xml.ws.Holder<java.awt.Image>();
    attach4.value = javax.imageio.ImageIO.read(url4);
    attach5.value = javax.imageio.ImageIO.read(url5);
    VoidRequest request = new VoidRequest();
    Object[] args = { request, attach1, attach2, attach3, attach4, attach5 };
    Method method = findMethod(proxySEIClass, "echoAllAttachmentTypes");
    JavaCallInfo cliCall = cli.createJavaCallInfo(method, args);
    Packet cliSoapReq = (Packet) cli.serializeRequest(cliCall);
    String customContentId = "<abcd@example.org>";
    Map<String, DataHandler> attMap = new HashMap<String, DataHandler>();
    attMap.put(customContentId, dh4);
    cliSoapReq.invocationProperties.put(MessageContext.OUTBOUND_MESSAGE_ATTACHMENTS, attMap);
    SOAPMessageContextImpl smc = new SOAPMessageContextImpl(null, cliSoapReq, null);
    Map<String, DataHandler> smcAtts1 = (Map<String, DataHandler>) smc.get(MessageContext.OUTBOUND_MESSAGE_ATTACHMENTS);
    assertEquals(6, smcAtts1.size());
    assertNotNull(smcAtts1.get(customContentId));
    {
        // ClientSOAPHandlerTube.callHandlersOnRequest
        Map<String, DataHandler> atts = (Map<String, DataHandler>) smc.get(MessageContext.OUTBOUND_MESSAGE_ATTACHMENTS);
        AttachmentSet attSet = cliSoapReq.getMessage().getAttachments();
        for (String cid : atts.keySet()) {
            if (attSet.get(cid) == null) {
                // Otherwise we would be adding attachments twice
                Attachment att = new DataHandlerAttachment(cid, atts.get(cid));
                attSet.add(att);
            }
        }
    }
    int attCount = 0;
    for (com.sun.xml.ws.api.message.Attachment a : cliSoapReq.getMessage().getAttachments()) {
        // assertTrue(a.getContentId().charAt(0)!='<');
        attCount++;
    }
    assertEquals(6, attCount);
    Object s1 = cliSoapReq.getAsSOAPMessage();
    Object s2 = smc.getMessage();
    assertTrue(s1 == s2);
    int attCountSaaj = 0;
    for (com.sun.xml.ws.api.message.Attachment a : cliSoapReq.getMessage().getAttachments()) {
        assertTrue(a.getContentId().charAt(0) != '<');
        attCountSaaj++;
    }
    assertEquals(6, attCountSaaj);
    Map<String, DataHandler> smcAtts2 = (Map<String, DataHandler>) smc.get(MessageContext.OUTBOUND_MESSAGE_ATTACHMENTS);
    assertEquals(6, smcAtts2.size());
    // System.out.println(smcAtts2.size() + " " + smcAtts2);
    assertNotNull(smcAtts2.get(customContentId));
}
Also used : DataHandlerAttachment(com.sun.xml.ws.message.DataHandlerAttachment) HashMap(java.util.HashMap) DataHandlerAttachment(com.sun.xml.ws.message.DataHandlerAttachment) Attachment(com.sun.xml.ws.api.message.Attachment) DataHandler(jakarta.activation.DataHandler) Image(java.awt.Image) URL(java.net.URL) StreamSource(javax.xml.transform.stream.StreamSource) Source(javax.xml.transform.Source) WSDLPort(com.sun.xml.ws.api.model.wsdl.WSDLPort) Databinding(com.sun.xml.ws.api.databinding.Databinding) AttachmentSet(com.sun.xml.ws.api.message.AttachmentSet) Attachment(com.sun.xml.ws.api.message.Attachment) JavaCallInfo(com.oracle.webservices.api.databinding.JavaCallInfo) Packet(com.sun.xml.ws.api.message.Packet) QName(javax.xml.namespace.QName) StreamSource(javax.xml.transform.stream.StreamSource) Method(java.lang.reflect.Method) SOAPMessageContextImpl(com.sun.xml.ws.handler.SOAPMessageContextImpl) DatabindingConfig(com.sun.xml.ws.api.databinding.DatabindingConfig) WebServiceFeature(jakarta.xml.ws.WebServiceFeature) HashMap(java.util.HashMap) Map(java.util.Map) MailcapCommandMap(jakarta.activation.MailcapCommandMap) CommandMap(jakarta.activation.CommandMap)

Example 3 with AttachmentSet

use of com.sun.xml.ws.api.message.AttachmentSet in project metro-jax-ws by eclipse-ee4j.

the class ClientMessageHandlerTube method callHandlersOnRequest.

boolean callHandlersOnRequest(MessageUpdatableContext context, boolean isOneWay) {
    boolean handlerResult;
    // Lets copy all the MessageContext.OUTBOUND_ATTACHMENT_PROPERTY to the message
    Map<String, DataHandler> atts = (Map<String, DataHandler>) context.get(MessageContext.OUTBOUND_MESSAGE_ATTACHMENTS);
    AttachmentSet attSet = context.packet.getMessage().getAttachments();
    for (Entry<String, DataHandler> entry : atts.entrySet()) {
        String cid = entry.getKey();
        if (attSet.get(cid) == null) {
            // Otherwise we would be adding attachments twice
            Attachment att = new DataHandlerAttachment(cid, atts.get(cid));
            attSet.add(att);
        }
    }
    try {
        // CLIENT-SIDE
        handlerResult = processor.callHandlersRequest(HandlerProcessor.Direction.OUTBOUND, context, !isOneWay);
    } catch (WebServiceException wse) {
        remedyActionTaken = true;
        // no rewrapping
        throw wse;
    } catch (RuntimeException re) {
        remedyActionTaken = true;
        throw new WebServiceException(re);
    }
    if (!handlerResult) {
        remedyActionTaken = true;
    }
    return handlerResult;
}
Also used : AttachmentSet(com.sun.xml.ws.api.message.AttachmentSet) DataHandlerAttachment(com.sun.xml.ws.message.DataHandlerAttachment) WebServiceException(jakarta.xml.ws.WebServiceException) DataHandlerAttachment(com.sun.xml.ws.message.DataHandlerAttachment) Attachment(com.sun.xml.ws.api.message.Attachment) DataHandler(jakarta.activation.DataHandler)

Example 4 with AttachmentSet

use of com.sun.xml.ws.api.message.AttachmentSet in project metro-jax-ws by eclipse-ee4j.

the class ClientSOAPHandlerTube method callHandlersOnRequest.

boolean callHandlersOnRequest(MessageUpdatableContext context, boolean isOneWay) {
    boolean handlerResult;
    // Lets copy all the MessageContext.OUTBOUND_ATTACHMENT_PROPERTY to the message
    Map<String, DataHandler> atts = (Map<String, DataHandler>) context.get(MessageContext.OUTBOUND_MESSAGE_ATTACHMENTS);
    AttachmentSet attSet = context.packet.getMessage().getAttachments();
    for (Entry<String, DataHandler> entry : atts.entrySet()) {
        String cid = entry.getKey();
        if (attSet.get(cid) == null) {
            // Otherwise we would be adding attachments twice
            Attachment att = new DataHandlerAttachment(cid, atts.get(cid));
            attSet.add(att);
        }
    }
    try {
        // CLIENT-SIDE
        handlerResult = processor.callHandlersRequest(HandlerProcessor.Direction.OUTBOUND, context, !isOneWay);
    } catch (WebServiceException wse) {
        remedyActionTaken = true;
        // no rewrapping
        throw wse;
    } catch (RuntimeException re) {
        remedyActionTaken = true;
        throw new WebServiceException(re);
    }
    if (!handlerResult) {
        remedyActionTaken = true;
    }
    return handlerResult;
}
Also used : AttachmentSet(com.sun.xml.ws.api.message.AttachmentSet) DataHandlerAttachment(com.sun.xml.ws.message.DataHandlerAttachment) WebServiceException(jakarta.xml.ws.WebServiceException) DataHandlerAttachment(com.sun.xml.ws.message.DataHandlerAttachment) Attachment(com.sun.xml.ws.api.message.Attachment) DataHandler(jakarta.activation.DataHandler)

Example 5 with AttachmentSet

use of com.sun.xml.ws.api.message.AttachmentSet in project metro-jax-ws by eclipse-ee4j.

the class ServerSOAPHandlerTube method callHandlersOnResponse.

void callHandlersOnResponse(MessageUpdatableContext context, boolean handleFault) {
    // Lets copy all the MessageContext.OUTBOUND_ATTACHMENT_PROPERTY to the message
    Map<String, DataHandler> atts = (Map<String, DataHandler>) context.get(MessageContext.OUTBOUND_MESSAGE_ATTACHMENTS);
    AttachmentSet attSet = context.packet.getMessage().getAttachments();
    for (Map.Entry<String, DataHandler> entry : atts.entrySet()) {
        String cid = entry.getKey();
        if (attSet.get(cid) == null) {
            // Otherwise we would be adding attachments twice
            Attachment att = new DataHandlerAttachment(cid, atts.get(cid));
            attSet.add(att);
        }
    }
    try {
        // SERVER-SIDE
        processor.callHandlersResponse(HandlerProcessor.Direction.OUTBOUND, context, handleFault);
    } catch (RuntimeException wse) {
        // no rewrapping
        throw wse;
    }
}
Also used : AttachmentSet(com.sun.xml.ws.api.message.AttachmentSet) DataHandlerAttachment(com.sun.xml.ws.message.DataHandlerAttachment) DataHandlerAttachment(com.sun.xml.ws.message.DataHandlerAttachment) Attachment(com.sun.xml.ws.api.message.Attachment) DataHandler(jakarta.activation.DataHandler)

Aggregations

Attachment (com.sun.xml.ws.api.message.Attachment)9 AttachmentSet (com.sun.xml.ws.api.message.AttachmentSet)9 DataHandler (jakarta.activation.DataHandler)9 DataHandlerAttachment (com.sun.xml.ws.message.DataHandlerAttachment)6 Map (java.util.Map)4 HashMap (java.util.HashMap)3 WebServiceException (jakarta.xml.ws.WebServiceException)2 JavaCallInfo (com.oracle.webservices.api.databinding.JavaCallInfo)1 Databinding (com.sun.xml.ws.api.databinding.Databinding)1 DatabindingConfig (com.sun.xml.ws.api.databinding.DatabindingConfig)1 Packet (com.sun.xml.ws.api.message.Packet)1 WSDLPort (com.sun.xml.ws.api.model.wsdl.WSDLPort)1 SOAPMessageContextImpl (com.sun.xml.ws.handler.SOAPMessageContextImpl)1 CommandMap (jakarta.activation.CommandMap)1 MailcapCommandMap (jakarta.activation.MailcapCommandMap)1 WebServiceFeature (jakarta.xml.ws.WebServiceFeature)1 Image (java.awt.Image)1 Method (java.lang.reflect.Method)1 URL (java.net.URL)1 AbstractMap (java.util.AbstractMap)1