soapmessageprovider.java
来自「开源的axis2框架的源码。用于开发WEBSERVER」· Java 代码 · 共 387 行 · 第 1/2 页
JAVA
387 行
/*
* 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.axis2.jaxws.provider.soapmsg;
import org.apache.axis2.jaxws.TestLogger;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.InputStream;
import java.util.Iterator;
import javax.xml.namespace.QName;
import javax.xml.soap.AttachmentPart;
import javax.xml.soap.Detail;
import javax.xml.soap.MessageFactory;
import javax.xml.soap.Name;
import javax.xml.soap.Node;
import javax.xml.soap.SOAPBody;
import javax.xml.soap.SOAPConstants;
import javax.xml.soap.SOAPElement;
import javax.xml.soap.SOAPFactory;
import javax.xml.soap.SOAPFault;
import javax.xml.soap.SOAPMessage;
import javax.xml.transform.OutputKeys;
import javax.xml.transform.Result;
import javax.xml.transform.Transformer;
import javax.xml.transform.TransformerFactory;
import javax.xml.transform.stream.StreamResult;
import javax.xml.transform.stream.StreamSource;
import javax.xml.ws.BindingType;
import javax.xml.ws.Provider;
import javax.xml.ws.Service;
import javax.xml.ws.ServiceMode;
import javax.xml.ws.WebServiceException;
import javax.xml.ws.WebServiceProvider;
import javax.xml.ws.soap.SOAPBinding;
import javax.xml.ws.soap.SOAPFaultException;
@WebServiceProvider()
@ServiceMode(value=Service.Mode.MESSAGE)
public class SoapMessageProvider implements Provider<SOAPMessage> {
String responseMsgStart = "<?xml version=\"1.0\" encoding=\"UTF-8\"?><soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\"><soapenv:Header/><soapenv:Body>";
String responseMsgEnd = "</soapenv:Body></soapenv:Envelope>";
// Requests and Response values of invoke_str and return_str
// These constants are referenced by the SoapMessageProviderTest and SoapMessageProvider
public static String RESPONSE_NAME = "ReturnType";
public static String RESPONSE_DATA_NAME = "return_str";
public static String REQUEST_NAME = "invokeOp";
public static String REQUEST_DATA_NAME = "invoke_str";
public static String XML_REQUEST = "xml request";
public static String XML_RESPONSE = "xml response";
public static String XML_EMPTYBODY_REQUEST = "xml empty body request";
public static String XML_ATTACHMENT_REQUEST = "xml and attachment request";
public static String XML_ATTACHMENT_RESPONSE = "xml and attachment response";
public static String XML_MTOM_REQUEST = "xml and mtom request";
public static String XML_MTOM_RESPONSE = "xml and mtom response";
public static String XML_SWAREF_REQUEST = "xml and swaref request";
public static String XML_SWAREF_RESPONSE = "xml and swaref response";
public static String XML_FAULT_REQUEST = "xml fault";
public static String XML_WSE_REQUEST = "xml wse fault";
private String XML_RETURN = "<ns2:ReturnType xmlns:ns2=\"http://test\"><return_str>" +
SoapMessageProvider.XML_RESPONSE +
"</return_str></ns2:ReturnType>";
private String ATTACHMENT_RETURN = "<ns2:ReturnType xmlns:ns2=\"http://test\"><return_str>" +
SoapMessageProvider.XML_ATTACHMENT_RESPONSE +
"</return_str></ns2:ReturnType>";
private String MTOM_RETURN = "<ns2:ReturnType xmlns:ns2=\"http://test\"><return_str>" +
SoapMessageProvider.XML_MTOM_RESPONSE +
"</return_str>" +
SoapMessageProvider.MTOM_REF +
"</ns2:ReturnType>";
private String SWAREF_RETURN = "<ns2:ReturnType xmlns:ns2=\"http://test\"><return_str>" +
SoapMessageProvider.XML_SWAREF_RESPONSE +
"</return_str>" +
SoapMessageProvider.SWAREF_REF +
"</ns2:ReturnType>";
public static String TEXT_XML_ATTACHMENT = "<myAttachment>Hello World</myAttachment>";
public static String ID = "helloWorld123";
public static String MTOM_REF = "<data>" +
"<xop:Include href='" + ID + "' xmlns:xop='http://www.w3.org/2004/08/xop/include' />" +
"</data>";
public static String SWAREF_REF = "<data>" +
"cid:" + ID +
"</data>";
public SOAPMessage invoke(SOAPMessage soapMessage) throws SOAPFaultException {
TestLogger.logger.debug(">> SoapMessageProvider: Request received.");
try{
// Look at the incoming request message
//System.out.println(">> Request on Server:");
//soapMessage.writeTo(System.out);
//System.out.println("\n");
// Get the discrimination element. This performs basic assertions on the received message
SOAPElement discElement = assertRequestXML(soapMessage);
// Use the data element text to determine the type of response to send
SOAPMessage response = null;
// TODO AXIS2 SAAJ should (but does not) support the getTextContent();
// String text = dataElement.getTextContent();
String text = discElement.getValue();
if (XML_REQUEST.equals(text)) {
response = getXMLResponse(soapMessage, discElement);
} else if (XML_EMPTYBODY_REQUEST.equals(text)) {
response = getXMLEmptyBodyResponse(soapMessage, discElement);
} else if (XML_ATTACHMENT_REQUEST.equals(text)) {
response = getXMLAttachmentResponse(soapMessage, discElement);
} else if (XML_MTOM_REQUEST.equals(text)) {
response = getXMLMTOMResponse(soapMessage, discElement);
} else if (XML_SWAREF_REQUEST.equals(text)) {
response = getXMLSWARefResponse(soapMessage, discElement);
} else if (XML_FAULT_REQUEST.equals(text)) {
throwSOAPFaultException();
} else if (XML_WSE_REQUEST.equals(text)) {
throwWebServiceException();
} else {
// We should not get here
TestLogger.logger.debug("Unknown Type of Message");
assertTrue(false);
}
// Write out the Message
TestLogger.logger.debug(">> Response being sent by Server:");
//response.writeTo(System.out);
//System.out.println("\n");
return response;
} catch (WebServiceException wse) {
throw wse;
} catch(Exception e){
TestLogger.logger
.debug("***ERROR: In SoapMessageProvider.invoke: Caught exception " + e);
e.printStackTrace();
}
return null;
}
/**
* Common assertion checking of the request
* @param msg
* @return SOAPElement representing the data element
*/
private SOAPElement assertRequestXML(SOAPMessage msg) throws Exception {
assertTrue(msg != null);
SOAPBody body = msg.getSOAPBody();
assertTrue(body != null);
Node invokeElement = (Node) body.getFirstChild();
assertTrue(invokeElement instanceof SOAPElement);
assertTrue(SoapMessageProvider.REQUEST_NAME.equals(invokeElement.getLocalName()));
Node discElement = (Node) invokeElement.getFirstChild();
assertTrue(discElement instanceof SOAPElement);
assertTrue(SoapMessageProvider.REQUEST_DATA_NAME.equals(discElement.getLocalName()));
String text = discElement.getValue();
assertTrue(text != null);
assertTrue(text.length() > 0);
TestLogger.logger.debug("Request Message Type is:" + text);
return (SOAPElement) discElement;
}
/**
* Get the response for an XML only request
* @param request
* @param dataElement
* @return SOAPMessage
*/
private SOAPMessage getXMLResponse(SOAPMessage request, SOAPElement dataElement) throws Exception {
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?