1

我需要构建一个接受 .wsdl 文件作为输入的实用程序。验证文件并在天气文件有效时提供输出(就语义而言)。如果可能的话,我还想在文件中显示错误(如果有的话)。

我知道网上有可用的实用程序,但我无法通过互联网上传传入的 .wsdl 文件(出于安全目的)。因此,我想使用 Java 以编程方式执行此操作。

如果在java中有任何可用的API,请建议我?

4

2 回答 2

3

感谢这个博客使用 wsdl4j

www.vorburger.ch/files/WSDLValidationTask.java‎</p>

package wsdlvalidation; 

import java.io.File;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.StringTokenizer;
import java.util.Map.Entry;

import javax.wsdl.Definition;
import javax.wsdl.Fault;
import javax.wsdl.Message;
import javax.wsdl.Operation;
import javax.wsdl.Part;
import javax.wsdl.PortType;
import javax.wsdl.WSDLException;
import javax.wsdl.factory.WSDLFactory;
import javax.wsdl.xml.WSDLReader;
import javax.xml.namespace.QName;

import org.apache.tools.ant.BuildException;
import org.apache.tools.ant.taskdefs.MatchingTask;
import org.apache.tools.ant.types.FileSet;

/**
 * Ant Task to validate a WDSL for an Axis1 bug.
 *
*/
public class WSDLValidationTask extends MatchingTask
{
    private FileSet configuredWsdl;

    public void execute() throws BuildException
    {
        super.execute();

        try {
            WSDLFactory wsdlFactory = WSDLFactory.newInstance();
            WSDLReader reader = wsdlFactory.newWSDLReader();

            Iterator it = getWSDLFileNamesList().iterator();
            while (it.hasNext()) {
                String wsdl = (String) it.next();

                Definition theWSDL = reader.readWSDL(wsdl);


                // This is a Bag of all Messages in the WSDL that are used in some <wsdl:fault> of any Operation of any PortType
                Set faultMessages = new HashSet();
                Map allPortTypes = theWSDL.getPortTypes();
                Iterator portTypeIt = allPortTypes.entrySet().iterator();
                while (portTypeIt.hasNext()) {
                    Map.Entry entry = (Entry) portTypeIt.next();
                    PortType portType = (PortType) entry.getValue();
                    List allOperations = portType.getOperations();
                    Iterator listIt = allOperations.iterator();
                    while (listIt.hasNext()) {
                        Operation operation = (Operation)listIt.next();
                        Iterator faultIt = operation.getFaults().values().iterator();
                        while (faultIt.hasNext()) {
                            Fault fault = (Fault) faultIt.next();    
                            faultMessages.add(fault.getMessage());                    
                        }
                    }
                }

                Map allMessages = theWSDL.getMessages();
                Iterator messageIt = allMessages.entrySet().iterator();
                while (messageIt.hasNext()) {
                    Map.Entry entry = (Entry) messageIt.next();
                    QName messageNameQName = (QName) entry.getKey();
                    String messageName = messageNameQName.getLocalPart();

                    Message message = (Message) entry.getValue();
                    Map parts = message.getParts();
                    validate(parts.size() == 1, wsdl,
                            "wsdl:message has more than one part: " + messageNameQName.toString());
                    Part messagePart = (Part) parts.values().iterator().next();
                    validate(messagePart.getTypeName() == null, wsdl, "wsdl:part should not have a 'type' attribute: " + messagePart.getName());

                    // Only for Messages that are used in Fault:
                    if (faultMessages.contains(message)) {
                        validate(!messagePart.getElementName().getLocalPart().equals(messageName), wsdl,
                                "Due to an Axis1 bug, please do NOT use the same name for <wsdl:message name=\"" + messageName + "\"> and <xsd:element name=\"" + messagePart.getElementName().getLocalPart()+"\">");
                    }
                }

            }
        } catch (WSDLException e) {
            throw new BuildException(e);
        }
    }

    private void validate(boolean condition, String wsdlFilename, String failureMessage) throws BuildException {
        if (!condition) {
            throw new BuildException(wsdlFilename + ": " + failureMessage);
        }
    }

    // TODO Doesn't code like this already exist in ant??
    private List getWSDLFileNamesList() {
        List/*<String>*/ wsdlList = new ArrayList/*<String>*/();
        File dir = configuredWsdl.getDir(configuredWsdl.getProject());
        StringTokenizer tokenizer = new StringTokenizer(configuredWsdl.toString(), ";");
        while (tokenizer.hasMoreTokens()) {
            String token = tokenizer.nextToken();
            wsdlList.add(new File(dir, token).toString());
        }
        return wsdlList;
    }

    public void addConfiguredWsdl(FileSet fileSet) {
        configuredWsdl = fileSet;
    }
}
于 2013-11-11T06:23:28.640 回答
2

另一种方法是使用 SOAPUI 工具 API。请参考以下链接。尝试导入 WSDL 并捕获任何异常以了解 WSDL 是否正确。

WsdlInterface iface = WsdlInterfaceFactory.importWsdl( "WSDl_LOCATION", true )[0];

与 SoapUI 集成

于 2013-11-11T06:26:51.080 回答