/** * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.cxf.binding.soap; import java.io.IOException; import java.net.URISyntaxException; import java.net.URL; import java.util.ArrayList; import java.util.Collection; import javax.activation.DataHandler; import javax.mail.util.ByteArrayDataSource; import org.apache.cxf.attachment.AttachmentImpl; import org.apache.cxf.attachment.AttachmentUtil; import org.apache.cxf.interceptor.InterceptorChain; import org.apache.cxf.message.Attachment; import org.apache.cxf.message.Exchange; import org.apache.cxf.message.ExchangeImpl; import org.apache.cxf.message.Message; import org.apache.cxf.message.MessageImpl; public final class TestUtil { private TestUtil() { } public static XopType createXopObject(Class<?> clazz) throws IOException, URISyntaxException { XopType xopObj = new XopType(); xopObj.setName("hello world"); URL url1 = clazz.getResource("my.wav"); xopObj.setAttachinfo(new DataHandler(url1)); return xopObj; } public static SoapMessage createSoapMessage(SoapVersion soapVersion, InterceptorChain chain, Class<?> clazz) throws IOException { SoapMessage soapMessage = createEmptySoapMessage(soapVersion, chain); // setup the message result with attachment.class ByteArrayDataSource bads = new ByteArrayDataSource(clazz.getResourceAsStream("primarySoapPart.xml"), "Application/xop+xml"); String cid = AttachmentUtil.createContentID("http://cxf.apache.org"); soapMessage.setContent(Attachment.class, new AttachmentImpl(cid, new DataHandler(bads))); // setup the message attachments Collection<Attachment> attachments = new ArrayList<>(); soapMessage.setAttachments(attachments); // String cidAtt1 = "cid:http://cxf.apache.org/me.bmp"; // bads = new ByteArrayDataSource(clazz.getResourceAsStream("me.bmp"), "image/bmp"); // AttachmentImpl att1 = new AttachmentImpl(cidAtt1, new DataHandler(bads)); // att1.setXOP(true); // attachments.add(att1); String cidAtt2 = "cid:http://cxf.apache.org/my.wav"; bads = new ByteArrayDataSource(clazz.getResourceAsStream("my.wav"), "Application/octet-stream"); AttachmentImpl att2 = new AttachmentImpl(cidAtt2, new DataHandler(bads)); att2.setXOP(true); attachments.add(att2); return soapMessage; } public static SoapMessage createEmptySoapMessage(SoapVersion soapVersion, InterceptorChain chain) { Exchange exchange = new ExchangeImpl(); MessageImpl messageImpl = new MessageImpl(); messageImpl.setInterceptorChain(chain); messageImpl.setExchange(exchange); SoapMessage soapMessage = new SoapMessage(messageImpl); soapMessage.setVersion(soapVersion); soapMessage.put(Message.HTTP_REQUEST_METHOD, "POST"); return soapMessage; } }