Java Code Examples for com.sun.xml.internal.stream.buffer.stax.StreamWriterBufferCreator#writeNamespace()

The following examples show how to use com.sun.xml.internal.stream.buffer.stax.StreamWriterBufferCreator#writeNamespace() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: WSEndpointReference.java    From hottub with GNU General Public License v2.0 6 votes vote down vote up
private static XMLStreamBuffer createBufferFromAddress(String address, AddressingVersion version) {
    try {
        MutableXMLStreamBuffer xsb = new MutableXMLStreamBuffer();
        StreamWriterBufferCreator w = new StreamWriterBufferCreator(xsb);
        w.writeStartDocument();
        w.writeStartElement(version.getPrefix(),
            "EndpointReference", version.nsUri);
        w.writeNamespace(version.getPrefix(), version.nsUri);
        w.writeStartElement(version.getPrefix(),version.eprType.address, version.nsUri);
        w.writeCharacters(address);
        w.writeEndElement();
        w.writeEndElement();
        w.writeEndDocument();
        w.close();
        return xsb;
    } catch (XMLStreamException e) {
        // can never happen because we are writing to XSB
        throw new AssertionError(e);
    }
}
 
Example 2
Source File: WSEndpointReference.java    From openjdk-8 with GNU General Public License v2.0 6 votes vote down vote up
/**
 * @param writer the writer should be at the start of element.
 * @param service Namespace URI of servcie is used as targetNamespace of wsdl if wsdlTargetNamespace is not null
 * @param wsdlAddress  wsdl location
 * @param wsdlTargetNamespace  targetnamespace of wsdl to be put in wsdliLocation
 *
 */
private static void writeWsdliLocation(StreamWriterBufferCreator writer, QName service,String wsdlAddress,String wsdlTargetNamespace) throws XMLStreamException {
    String wsdliLocation = "";
    if(wsdlTargetNamespace != null) {
       wsdliLocation = wsdlTargetNamespace + " ";
    } else if (service != null) {
        wsdliLocation = service.getNamespaceURI() + " ";
    } else {
        throw new WebServiceException("WSDL target Namespace cannot be resolved");
    }
    wsdliLocation += wsdlAddress;
    writer.writeNamespace(W3CAddressingMetadataConstants.WSAM_WSDLI_ATTRIBUTE_PREFIX,
        W3CAddressingMetadataConstants.WSAM_WSDLI_ATTRIBUTE_NAMESPACE);
    writer.writeAttribute(W3CAddressingMetadataConstants.WSAM_WSDLI_ATTRIBUTE_PREFIX,
            W3CAddressingMetadataConstants.WSAM_WSDLI_ATTRIBUTE_NAMESPACE,
            W3CAddressingMetadataConstants.WSAM_WSDLI_ATTRIBUTE_LOCALNAME,
            wsdliLocation);

}
 
Example 3
Source File: WSEndpointReference.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 6 votes vote down vote up
private static XMLStreamBuffer createBufferFromAddress(String address, AddressingVersion version) {
    try {
        MutableXMLStreamBuffer xsb = new MutableXMLStreamBuffer();
        StreamWriterBufferCreator w = new StreamWriterBufferCreator(xsb);
        w.writeStartDocument();
        w.writeStartElement(version.getPrefix(),
            "EndpointReference", version.nsUri);
        w.writeNamespace(version.getPrefix(), version.nsUri);
        w.writeStartElement(version.getPrefix(),version.eprType.address, version.nsUri);
        w.writeCharacters(address);
        w.writeEndElement();
        w.writeEndElement();
        w.writeEndDocument();
        w.close();
        return xsb;
    } catch (XMLStreamException e) {
        // can never happen because we are writing to XSB
        throw new AssertionError(e);
    }
}
 
Example 4
Source File: WSEndpointReference.java    From openjdk-8-source with GNU General Public License v2.0 6 votes vote down vote up
/**
 * @param writer the writer should be at the start of element.
 * @param service Namespace URI of servcie is used as targetNamespace of wsdl if wsdlTargetNamespace is not null
 * @param wsdlAddress  wsdl location
 * @param wsdlTargetNamespace  targetnamespace of wsdl to be put in wsdliLocation
 *
 */
private static void writeWsdliLocation(StreamWriterBufferCreator writer, QName service,String wsdlAddress,String wsdlTargetNamespace) throws XMLStreamException {
    String wsdliLocation = "";
    if(wsdlTargetNamespace != null) {
       wsdliLocation = wsdlTargetNamespace + " ";
    } else if (service != null) {
        wsdliLocation = service.getNamespaceURI() + " ";
    } else {
        throw new WebServiceException("WSDL target Namespace cannot be resolved");
    }
    wsdliLocation += wsdlAddress;
    writer.writeNamespace(W3CAddressingMetadataConstants.WSAM_WSDLI_ATTRIBUTE_PREFIX,
        W3CAddressingMetadataConstants.WSAM_WSDLI_ATTRIBUTE_NAMESPACE);
    writer.writeAttribute(W3CAddressingMetadataConstants.WSAM_WSDLI_ATTRIBUTE_PREFIX,
            W3CAddressingMetadataConstants.WSAM_WSDLI_ATTRIBUTE_NAMESPACE,
            W3CAddressingMetadataConstants.WSAM_WSDLI_ATTRIBUTE_LOCALNAME,
            wsdliLocation);

}
 
Example 5
Source File: WSEndpointReference.java    From openjdk-jdk8u with GNU General Public License v2.0 6 votes vote down vote up
/**
 * @param writer the writer should be at the start of element.
 * @param service Namespace URI of servcie is used as targetNamespace of wsdl if wsdlTargetNamespace is not null
 * @param wsdlAddress  wsdl location
 * @param wsdlTargetNamespace  targetnamespace of wsdl to be put in wsdliLocation
 *
 */
private static void writeWsdliLocation(StreamWriterBufferCreator writer, QName service,String wsdlAddress,String wsdlTargetNamespace) throws XMLStreamException {
    String wsdliLocation = "";
    if(wsdlTargetNamespace != null) {
       wsdliLocation = wsdlTargetNamespace + " ";
    } else if (service != null) {
        wsdliLocation = service.getNamespaceURI() + " ";
    } else {
        throw new WebServiceException("WSDL target Namespace cannot be resolved");
    }
    wsdliLocation += wsdlAddress;
    writer.writeNamespace(W3CAddressingMetadataConstants.WSAM_WSDLI_ATTRIBUTE_PREFIX,
        W3CAddressingMetadataConstants.WSAM_WSDLI_ATTRIBUTE_NAMESPACE);
    writer.writeAttribute(W3CAddressingMetadataConstants.WSAM_WSDLI_ATTRIBUTE_PREFIX,
            W3CAddressingMetadataConstants.WSAM_WSDLI_ATTRIBUTE_NAMESPACE,
            W3CAddressingMetadataConstants.WSAM_WSDLI_ATTRIBUTE_LOCALNAME,
            wsdliLocation);

}
 
Example 6
Source File: WSEndpointReference.java    From openjdk-8-source with GNU General Public License v2.0 6 votes vote down vote up
private static XMLStreamBuffer createBufferFromAddress(String address, AddressingVersion version) {
    try {
        MutableXMLStreamBuffer xsb = new MutableXMLStreamBuffer();
        StreamWriterBufferCreator w = new StreamWriterBufferCreator(xsb);
        w.writeStartDocument();
        w.writeStartElement(version.getPrefix(),
            "EndpointReference", version.nsUri);
        w.writeNamespace(version.getPrefix(), version.nsUri);
        w.writeStartElement(version.getPrefix(),version.eprType.address, version.nsUri);
        w.writeCharacters(address);
        w.writeEndElement();
        w.writeEndElement();
        w.writeEndDocument();
        w.close();
        return xsb;
    } catch (XMLStreamException e) {
        // can never happen because we are writing to XSB
        throw new AssertionError(e);
    }
}
 
Example 7
Source File: WSEndpointReference.java    From jdk8u60 with GNU General Public License v2.0 6 votes vote down vote up
private static XMLStreamBuffer createBufferFromAddress(String address, AddressingVersion version) {
    try {
        MutableXMLStreamBuffer xsb = new MutableXMLStreamBuffer();
        StreamWriterBufferCreator w = new StreamWriterBufferCreator(xsb);
        w.writeStartDocument();
        w.writeStartElement(version.getPrefix(),
            "EndpointReference", version.nsUri);
        w.writeNamespace(version.getPrefix(), version.nsUri);
        w.writeStartElement(version.getPrefix(),version.eprType.address, version.nsUri);
        w.writeCharacters(address);
        w.writeEndElement();
        w.writeEndElement();
        w.writeEndDocument();
        w.close();
        return xsb;
    } catch (XMLStreamException e) {
        // can never happen because we are writing to XSB
        throw new AssertionError(e);
    }
}
 
Example 8
Source File: WSEndpointReference.java    From TencentKona-8 with GNU General Public License v2.0 6 votes vote down vote up
/**
 * @param writer the writer should be at the start of element.
 * @param service Namespace URI of servcie is used as targetNamespace of wsdl if wsdlTargetNamespace is not null
 * @param wsdlAddress  wsdl location
 * @param wsdlTargetNamespace  targetnamespace of wsdl to be put in wsdliLocation
 *
 */
private static void writeWsdliLocation(StreamWriterBufferCreator writer, QName service,String wsdlAddress,String wsdlTargetNamespace) throws XMLStreamException {
    String wsdliLocation = "";
    if(wsdlTargetNamespace != null) {
       wsdliLocation = wsdlTargetNamespace + " ";
    } else if (service != null) {
        wsdliLocation = service.getNamespaceURI() + " ";
    } else {
        throw new WebServiceException("WSDL target Namespace cannot be resolved");
    }
    wsdliLocation += wsdlAddress;
    writer.writeNamespace(W3CAddressingMetadataConstants.WSAM_WSDLI_ATTRIBUTE_PREFIX,
        W3CAddressingMetadataConstants.WSAM_WSDLI_ATTRIBUTE_NAMESPACE);
    writer.writeAttribute(W3CAddressingMetadataConstants.WSAM_WSDLI_ATTRIBUTE_PREFIX,
            W3CAddressingMetadataConstants.WSAM_WSDLI_ATTRIBUTE_NAMESPACE,
            W3CAddressingMetadataConstants.WSAM_WSDLI_ATTRIBUTE_LOCALNAME,
            wsdliLocation);

}
 
Example 9
Source File: WSEndpointReference.java    From hottub with GNU General Public License v2.0 6 votes vote down vote up
/**
 * @param writer the writer should be at the start of element.
 * @param service Namespace URI of servcie is used as targetNamespace of wsdl if wsdlTargetNamespace is not null
 * @param wsdlAddress  wsdl location
 * @param wsdlTargetNamespace  targetnamespace of wsdl to be put in wsdliLocation
 *
 */
private static void writeWsdliLocation(StreamWriterBufferCreator writer, QName service,String wsdlAddress,String wsdlTargetNamespace) throws XMLStreamException {
    String wsdliLocation = "";
    if(wsdlTargetNamespace != null) {
       wsdliLocation = wsdlTargetNamespace + " ";
    } else if (service != null) {
        wsdliLocation = service.getNamespaceURI() + " ";
    } else {
        throw new WebServiceException("WSDL target Namespace cannot be resolved");
    }
    wsdliLocation += wsdlAddress;
    writer.writeNamespace(W3CAddressingMetadataConstants.WSAM_WSDLI_ATTRIBUTE_PREFIX,
        W3CAddressingMetadataConstants.WSAM_WSDLI_ATTRIBUTE_NAMESPACE);
    writer.writeAttribute(W3CAddressingMetadataConstants.WSAM_WSDLI_ATTRIBUTE_PREFIX,
            W3CAddressingMetadataConstants.WSAM_WSDLI_ATTRIBUTE_NAMESPACE,
            W3CAddressingMetadataConstants.WSAM_WSDLI_ATTRIBUTE_LOCALNAME,
            wsdliLocation);

}
 
Example 10
Source File: WSEndpointReference.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
private static void writeWsdl(StreamWriterBufferCreator writer, QName service, String wsdlAddress) throws XMLStreamException {
    // Inline-wsdl
    writer.writeStartElement(WSDLConstants.PREFIX_NS_WSDL,
            WSDLConstants.QNAME_DEFINITIONS.getLocalPart(),
            WSDLConstants.NS_WSDL);
    writer.writeNamespace(WSDLConstants.PREFIX_NS_WSDL, WSDLConstants.NS_WSDL);
    writer.writeStartElement(WSDLConstants.PREFIX_NS_WSDL,
            WSDLConstants.QNAME_IMPORT.getLocalPart(),
            WSDLConstants.NS_WSDL);
    writer.writeAttribute("namespace", service.getNamespaceURI());
    writer.writeAttribute("location", wsdlAddress);
    writer.writeEndElement();
    writer.writeEndElement();
}
 
Example 11
Source File: WSEndpointReference.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
private static void writeWsdl(StreamWriterBufferCreator writer, QName service, String wsdlAddress) throws XMLStreamException {
    // Inline-wsdl
    writer.writeStartElement(WSDLConstants.PREFIX_NS_WSDL,
            WSDLConstants.QNAME_DEFINITIONS.getLocalPart(),
            WSDLConstants.NS_WSDL);
    writer.writeNamespace(WSDLConstants.PREFIX_NS_WSDL, WSDLConstants.NS_WSDL);
    writer.writeStartElement(WSDLConstants.PREFIX_NS_WSDL,
            WSDLConstants.QNAME_IMPORT.getLocalPart(),
            WSDLConstants.NS_WSDL);
    writer.writeAttribute("namespace", service.getNamespaceURI());
    writer.writeAttribute("location", wsdlAddress);
    writer.writeEndElement();
    writer.writeEndElement();
}
 
Example 12
Source File: WSEndpointReference.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
private static void writeWsdl(StreamWriterBufferCreator writer, QName service, String wsdlAddress) throws XMLStreamException {
    // Inline-wsdl
    writer.writeStartElement(WSDLConstants.PREFIX_NS_WSDL,
            WSDLConstants.QNAME_DEFINITIONS.getLocalPart(),
            WSDLConstants.NS_WSDL);
    writer.writeNamespace(WSDLConstants.PREFIX_NS_WSDL, WSDLConstants.NS_WSDL);
    writer.writeStartElement(WSDLConstants.PREFIX_NS_WSDL,
            WSDLConstants.QNAME_IMPORT.getLocalPart(),
            WSDLConstants.NS_WSDL);
    writer.writeAttribute("namespace", service.getNamespaceURI());
    writer.writeAttribute("location", wsdlAddress);
    writer.writeEndElement();
    writer.writeEndElement();
}
 
Example 13
Source File: WSEndpointReference.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
private static void writeW3CMetaData(StreamWriterBufferCreator writer,
                                     QName service,
                                     QName port,
                                     QName portType, List<Element> metadata,
                                     String wsdlAddress, String wsdlTargetNamespace) throws XMLStreamException {


    //.NET treate empty metaData element as bad request.
    if (isEmty(service) && isEmty(port) && isEmty(portType) && metadata == null/* && wsdlAddress == null*/) {
        return;
    }

    writer.writeStartElement(AddressingVersion.W3C.getPrefix(),
            AddressingVersion.W3C.eprType.wsdlMetadata.getLocalPart(), AddressingVersion.W3C.nsUri);
    writer.writeNamespace(AddressingVersion.W3C.getWsdlPrefix(),
            AddressingVersion.W3C.wsdlNsUri);
    //write wsdliLication as defined in WS-Addressing 1.0 Metadata spec
    if(wsdlAddress != null) {
        writeWsdliLocation(writer, service, wsdlAddress, wsdlTargetNamespace);
    }

    //Write Interface info
    if (portType != null) {
        writer.writeStartElement(W3CAddressingMetadataConstants.WSAM_PREFIX_NAME,
                AddressingVersion.W3C.eprType.portTypeName,
                W3CAddressingMetadataConstants.WSAM_NAMESPACE_NAME);
        writer.writeNamespace(W3CAddressingMetadataConstants.WSAM_PREFIX_NAME,
            W3CAddressingMetadataConstants.WSAM_NAMESPACE_NAME);
        String portTypePrefix = portType.getPrefix();
        if (portTypePrefix == null || portTypePrefix.equals("")) {
            //TODO check prefix again
            portTypePrefix = "wsns";
        }
        writer.writeNamespace(portTypePrefix, portType.getNamespaceURI());
        writer.writeCharacters(portTypePrefix + ":" + portType.getLocalPart());
        writer.writeEndElement();
    }
    if (service != null) {
        //Write service and Port info
        if (!(service.getNamespaceURI().equals("") || service.getLocalPart().equals(""))) {
            writer.writeStartElement(W3CAddressingMetadataConstants.WSAM_PREFIX_NAME,
                    AddressingVersion.W3C.eprType.serviceName,
                    W3CAddressingMetadataConstants.WSAM_NAMESPACE_NAME);
            writer.writeNamespace(W3CAddressingMetadataConstants.WSAM_PREFIX_NAME,
                W3CAddressingMetadataConstants.WSAM_NAMESPACE_NAME);
            String servicePrefix = service.getPrefix();
            if (servicePrefix == null || servicePrefix.equals("")) {
                //TODO check prefix again
                servicePrefix = "wsns";
            }
            writer.writeNamespace(servicePrefix, service.getNamespaceURI());
            if (port != null) {
                writer.writeAttribute(AddressingVersion.W3C.eprType.portName, port.getLocalPart());
            }
            writer.writeCharacters(servicePrefix + ":" + service.getLocalPart());
            writer.writeEndElement();
        }
    }
    /*
    //Inline the wsdl
    if (wsdlAddress != null) {
        writeWsdl(writer, service, wsdlAddress);
    }
    */
    //Add the extra metadata Elements
    if (metadata != null) {
        for (Element e : metadata) {
            DOMUtil.serializeNode(e, writer);
        }
    }
    writer.writeEndElement();

}
 
Example 14
Source File: WSEndpointReference.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
private static void writeMSMetaData(StreamWriterBufferCreator writer,
                                    QName service,
                                    QName port,
                                    QName portType, List<Element> metadata) throws XMLStreamException {
    // TODO: write ReferenceProperties
    //TODO: write ReferenceParameters
    if (portType != null) {
        //Write Interface info
        writer.writeStartElement(AddressingVersion.MEMBER.getPrefix(),
                AddressingVersion.MEMBER.eprType.portTypeName,
                AddressingVersion.MEMBER.nsUri);


        String portTypePrefix = portType.getPrefix();
        if (portTypePrefix == null || portTypePrefix.equals("")) {
            //TODO check prefix again
            portTypePrefix = "wsns";
        }
        writer.writeNamespace(portTypePrefix, portType.getNamespaceURI());
        writer.writeCharacters(portTypePrefix + ":" + portType.getLocalPart());
        writer.writeEndElement();
    }
    //Write service and Port info
    if (service != null) {
        if (!(service.getNamespaceURI().equals("") || service.getLocalPart().equals(""))) {
            writer.writeStartElement(AddressingVersion.MEMBER.getPrefix(),
                    AddressingVersion.MEMBER.eprType.serviceName,
                    AddressingVersion.MEMBER.nsUri);
            String servicePrefix = service.getPrefix();
            if (servicePrefix == null || servicePrefix.equals("")) {
                //TODO check prefix again
                servicePrefix = "wsns";
            }
            writer.writeNamespace(servicePrefix, service.getNamespaceURI());
            if (port != null) {
                writer.writeAttribute(AddressingVersion.MEMBER.eprType.portName,
                        port.getLocalPart());
            }
            writer.writeCharacters(servicePrefix + ":" + service.getLocalPart());
            writer.writeEndElement();
        }
    }
}
 
Example 15
Source File: WSEndpointReference.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
private static void writeMSMetaData(StreamWriterBufferCreator writer,
                                    QName service,
                                    QName port,
                                    QName portType, List<Element> metadata) throws XMLStreamException {
    // TODO: write ReferenceProperties
    //TODO: write ReferenceParameters
    if (portType != null) {
        //Write Interface info
        writer.writeStartElement(AddressingVersion.MEMBER.getPrefix(),
                AddressingVersion.MEMBER.eprType.portTypeName,
                AddressingVersion.MEMBER.nsUri);


        String portTypePrefix = portType.getPrefix();
        if (portTypePrefix == null || portTypePrefix.equals("")) {
            //TODO check prefix again
            portTypePrefix = "wsns";
        }
        writer.writeNamespace(portTypePrefix, portType.getNamespaceURI());
        writer.writeCharacters(portTypePrefix + ":" + portType.getLocalPart());
        writer.writeEndElement();
    }
    //Write service and Port info
    if (service != null) {
        if (!(service.getNamespaceURI().equals("") || service.getLocalPart().equals(""))) {
            writer.writeStartElement(AddressingVersion.MEMBER.getPrefix(),
                    AddressingVersion.MEMBER.eprType.serviceName,
                    AddressingVersion.MEMBER.nsUri);
            String servicePrefix = service.getPrefix();
            if (servicePrefix == null || servicePrefix.equals("")) {
                //TODO check prefix again
                servicePrefix = "wsns";
            }
            writer.writeNamespace(servicePrefix, service.getNamespaceURI());
            if (port != null) {
                writer.writeAttribute(AddressingVersion.MEMBER.eprType.portName,
                        port.getLocalPart());
            }
            writer.writeCharacters(servicePrefix + ":" + service.getLocalPart());
            writer.writeEndElement();
        }
    }
}
 
Example 16
Source File: WSEndpointReference.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
private static void writeMSMetaData(StreamWriterBufferCreator writer,
                                    QName service,
                                    QName port,
                                    QName portType, List<Element> metadata) throws XMLStreamException {
    // TODO: write ReferenceProperties
    //TODO: write ReferenceParameters
    if (portType != null) {
        //Write Interface info
        writer.writeStartElement(AddressingVersion.MEMBER.getPrefix(),
                AddressingVersion.MEMBER.eprType.portTypeName,
                AddressingVersion.MEMBER.nsUri);


        String portTypePrefix = portType.getPrefix();
        if (portTypePrefix == null || portTypePrefix.equals("")) {
            //TODO check prefix again
            portTypePrefix = "wsns";
        }
        writer.writeNamespace(portTypePrefix, portType.getNamespaceURI());
        writer.writeCharacters(portTypePrefix + ":" + portType.getLocalPart());
        writer.writeEndElement();
    }
    //Write service and Port info
    if (service != null) {
        if (!(service.getNamespaceURI().equals("") || service.getLocalPart().equals(""))) {
            writer.writeStartElement(AddressingVersion.MEMBER.getPrefix(),
                    AddressingVersion.MEMBER.eprType.serviceName,
                    AddressingVersion.MEMBER.nsUri);
            String servicePrefix = service.getPrefix();
            if (servicePrefix == null || servicePrefix.equals("")) {
                //TODO check prefix again
                servicePrefix = "wsns";
            }
            writer.writeNamespace(servicePrefix, service.getNamespaceURI());
            if (port != null) {
                writer.writeAttribute(AddressingVersion.MEMBER.eprType.portName,
                        port.getLocalPart());
            }
            writer.writeCharacters(servicePrefix + ":" + service.getLocalPart());
            writer.writeEndElement();
        }
    }
}
 
Example 17
Source File: WSEndpointReference.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
private static void writeW3CMetaData(StreamWriterBufferCreator writer,
                                     QName service,
                                     QName port,
                                     QName portType, List<Element> metadata,
                                     String wsdlAddress, String wsdlTargetNamespace) throws XMLStreamException {


    //.NET treate empty metaData element as bad request.
    if (isEmty(service) && isEmty(port) && isEmty(portType) && metadata == null/* && wsdlAddress == null*/) {
        return;
    }

    writer.writeStartElement(AddressingVersion.W3C.getPrefix(),
            AddressingVersion.W3C.eprType.wsdlMetadata.getLocalPart(), AddressingVersion.W3C.nsUri);
    writer.writeNamespace(AddressingVersion.W3C.getWsdlPrefix(),
            AddressingVersion.W3C.wsdlNsUri);
    //write wsdliLication as defined in WS-Addressing 1.0 Metadata spec
    if(wsdlAddress != null) {
        writeWsdliLocation(writer, service, wsdlAddress, wsdlTargetNamespace);
    }

    //Write Interface info
    if (portType != null) {
        writer.writeStartElement(W3CAddressingMetadataConstants.WSAM_PREFIX_NAME,
                AddressingVersion.W3C.eprType.portTypeName,
                W3CAddressingMetadataConstants.WSAM_NAMESPACE_NAME);
        writer.writeNamespace(W3CAddressingMetadataConstants.WSAM_PREFIX_NAME,
            W3CAddressingMetadataConstants.WSAM_NAMESPACE_NAME);
        String portTypePrefix = portType.getPrefix();
        if (portTypePrefix == null || portTypePrefix.equals("")) {
            //TODO check prefix again
            portTypePrefix = "wsns";
        }
        writer.writeNamespace(portTypePrefix, portType.getNamespaceURI());
        writer.writeCharacters(portTypePrefix + ":" + portType.getLocalPart());
        writer.writeEndElement();
    }
    if (service != null) {
        //Write service and Port info
        if (!(service.getNamespaceURI().equals("") || service.getLocalPart().equals(""))) {
            writer.writeStartElement(W3CAddressingMetadataConstants.WSAM_PREFIX_NAME,
                    AddressingVersion.W3C.eprType.serviceName,
                    W3CAddressingMetadataConstants.WSAM_NAMESPACE_NAME);
            writer.writeNamespace(W3CAddressingMetadataConstants.WSAM_PREFIX_NAME,
                W3CAddressingMetadataConstants.WSAM_NAMESPACE_NAME);
            String servicePrefix = service.getPrefix();
            if (servicePrefix == null || servicePrefix.equals("")) {
                //TODO check prefix again
                servicePrefix = "wsns";
            }
            writer.writeNamespace(servicePrefix, service.getNamespaceURI());
            if (port != null) {
                writer.writeAttribute(AddressingVersion.W3C.eprType.portName, port.getLocalPart());
            }
            writer.writeCharacters(servicePrefix + ":" + service.getLocalPart());
            writer.writeEndElement();
        }
    }
    /*
    //Inline the wsdl
    if (wsdlAddress != null) {
        writeWsdl(writer, service, wsdlAddress);
    }
    */
    //Add the extra metadata Elements
    if (metadata != null) {
        for (Element e : metadata) {
            DOMUtil.serializeNode(e, writer);
        }
    }
    writer.writeEndElement();

}
 
Example 18
Source File: WSEndpointReference.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 4 votes vote down vote up
private static void writeW3CMetaData(StreamWriterBufferCreator writer,
                                     QName service,
                                     QName port,
                                     QName portType, List<Element> metadata,
                                     String wsdlAddress, String wsdlTargetNamespace) throws XMLStreamException {


    //.NET treate empty metaData element as bad request.
    if (isEmty(service) && isEmty(port) && isEmty(portType) && metadata == null/* && wsdlAddress == null*/) {
        return;
    }

    writer.writeStartElement(AddressingVersion.W3C.getPrefix(),
            AddressingVersion.W3C.eprType.wsdlMetadata.getLocalPart(), AddressingVersion.W3C.nsUri);
    writer.writeNamespace(AddressingVersion.W3C.getWsdlPrefix(),
            AddressingVersion.W3C.wsdlNsUri);
    //write wsdliLication as defined in WS-Addressing 1.0 Metadata spec
    if(wsdlAddress != null) {
        writeWsdliLocation(writer, service, wsdlAddress, wsdlTargetNamespace);
    }

    //Write Interface info
    if (portType != null) {
        writer.writeStartElement(W3CAddressingMetadataConstants.WSAM_PREFIX_NAME,
                AddressingVersion.W3C.eprType.portTypeName,
                W3CAddressingMetadataConstants.WSAM_NAMESPACE_NAME);
        writer.writeNamespace(W3CAddressingMetadataConstants.WSAM_PREFIX_NAME,
            W3CAddressingMetadataConstants.WSAM_NAMESPACE_NAME);
        String portTypePrefix = portType.getPrefix();
        if (portTypePrefix == null || portTypePrefix.equals("")) {
            //TODO check prefix again
            portTypePrefix = "wsns";
        }
        writer.writeNamespace(portTypePrefix, portType.getNamespaceURI());
        writer.writeCharacters(portTypePrefix + ":" + portType.getLocalPart());
        writer.writeEndElement();
    }
    if (service != null) {
        //Write service and Port info
        if (!(service.getNamespaceURI().equals("") || service.getLocalPart().equals(""))) {
            writer.writeStartElement(W3CAddressingMetadataConstants.WSAM_PREFIX_NAME,
                    AddressingVersion.W3C.eprType.serviceName,
                    W3CAddressingMetadataConstants.WSAM_NAMESPACE_NAME);
            writer.writeNamespace(W3CAddressingMetadataConstants.WSAM_PREFIX_NAME,
                W3CAddressingMetadataConstants.WSAM_NAMESPACE_NAME);
            String servicePrefix = service.getPrefix();
            if (servicePrefix == null || servicePrefix.equals("")) {
                //TODO check prefix again
                servicePrefix = "wsns";
            }
            writer.writeNamespace(servicePrefix, service.getNamespaceURI());
            if (port != null) {
                writer.writeAttribute(AddressingVersion.W3C.eprType.portName, port.getLocalPart());
            }
            writer.writeCharacters(servicePrefix + ":" + service.getLocalPart());
            writer.writeEndElement();
        }
    }
    /*
    //Inline the wsdl
    if (wsdlAddress != null) {
        writeWsdl(writer, service, wsdlAddress);
    }
    */
    //Add the extra metadata Elements
    if (metadata != null) {
        for (Element e : metadata) {
            DOMUtil.serializeNode(e, writer);
        }
    }
    writer.writeEndElement();

}
 
Example 19
Source File: WSEndpointReference.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
private static void writeW3CMetaData(StreamWriterBufferCreator writer,
                                     QName service,
                                     QName port,
                                     QName portType, List<Element> metadata,
                                     String wsdlAddress, String wsdlTargetNamespace) throws XMLStreamException {


    //.NET treate empty metaData element as bad request.
    if (isEmty(service) && isEmty(port) && isEmty(portType) && metadata == null/* && wsdlAddress == null*/) {
        return;
    }

    writer.writeStartElement(AddressingVersion.W3C.getPrefix(),
            AddressingVersion.W3C.eprType.wsdlMetadata.getLocalPart(), AddressingVersion.W3C.nsUri);
    writer.writeNamespace(AddressingVersion.W3C.getWsdlPrefix(),
            AddressingVersion.W3C.wsdlNsUri);
    //write wsdliLication as defined in WS-Addressing 1.0 Metadata spec
    if(wsdlAddress != null) {
        writeWsdliLocation(writer, service, wsdlAddress, wsdlTargetNamespace);
    }

    //Write Interface info
    if (portType != null) {
        writer.writeStartElement(W3CAddressingMetadataConstants.WSAM_PREFIX_NAME,
                AddressingVersion.W3C.eprType.portTypeName,
                W3CAddressingMetadataConstants.WSAM_NAMESPACE_NAME);
        writer.writeNamespace(W3CAddressingMetadataConstants.WSAM_PREFIX_NAME,
            W3CAddressingMetadataConstants.WSAM_NAMESPACE_NAME);
        String portTypePrefix = portType.getPrefix();
        if (portTypePrefix == null || portTypePrefix.equals("")) {
            //TODO check prefix again
            portTypePrefix = "wsns";
        }
        writer.writeNamespace(portTypePrefix, portType.getNamespaceURI());
        writer.writeCharacters(portTypePrefix + ":" + portType.getLocalPart());
        writer.writeEndElement();
    }
    if (service != null) {
        //Write service and Port info
        if (!(service.getNamespaceURI().equals("") || service.getLocalPart().equals(""))) {
            writer.writeStartElement(W3CAddressingMetadataConstants.WSAM_PREFIX_NAME,
                    AddressingVersion.W3C.eprType.serviceName,
                    W3CAddressingMetadataConstants.WSAM_NAMESPACE_NAME);
            writer.writeNamespace(W3CAddressingMetadataConstants.WSAM_PREFIX_NAME,
                W3CAddressingMetadataConstants.WSAM_NAMESPACE_NAME);
            String servicePrefix = service.getPrefix();
            if (servicePrefix == null || servicePrefix.equals("")) {
                //TODO check prefix again
                servicePrefix = "wsns";
            }
            writer.writeNamespace(servicePrefix, service.getNamespaceURI());
            if (port != null) {
                writer.writeAttribute(AddressingVersion.W3C.eprType.portName, port.getLocalPart());
            }
            writer.writeCharacters(servicePrefix + ":" + service.getLocalPart());
            writer.writeEndElement();
        }
    }
    /*
    //Inline the wsdl
    if (wsdlAddress != null) {
        writeWsdl(writer, service, wsdlAddress);
    }
    */
    //Add the extra metadata Elements
    if (metadata != null) {
        for (Element e : metadata) {
            DOMUtil.serializeNode(e, writer);
        }
    }
    writer.writeEndElement();

}
 
Example 20
Source File: WSEndpointReference.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 4 votes vote down vote up
private static void writeMSMetaData(StreamWriterBufferCreator writer,
                                    QName service,
                                    QName port,
                                    QName portType, List<Element> metadata) throws XMLStreamException {
    // TODO: write ReferenceProperties
    //TODO: write ReferenceParameters
    if (portType != null) {
        //Write Interface info
        writer.writeStartElement(AddressingVersion.MEMBER.getPrefix(),
                AddressingVersion.MEMBER.eprType.portTypeName,
                AddressingVersion.MEMBER.nsUri);


        String portTypePrefix = portType.getPrefix();
        if (portTypePrefix == null || portTypePrefix.equals("")) {
            //TODO check prefix again
            portTypePrefix = "wsns";
        }
        writer.writeNamespace(portTypePrefix, portType.getNamespaceURI());
        writer.writeCharacters(portTypePrefix + ":" + portType.getLocalPart());
        writer.writeEndElement();
    }
    //Write service and Port info
    if (service != null) {
        if (!(service.getNamespaceURI().equals("") || service.getLocalPart().equals(""))) {
            writer.writeStartElement(AddressingVersion.MEMBER.getPrefix(),
                    AddressingVersion.MEMBER.eprType.serviceName,
                    AddressingVersion.MEMBER.nsUri);
            String servicePrefix = service.getPrefix();
            if (servicePrefix == null || servicePrefix.equals("")) {
                //TODO check prefix again
                servicePrefix = "wsns";
            }
            writer.writeNamespace(servicePrefix, service.getNamespaceURI());
            if (port != null) {
                writer.writeAttribute(AddressingVersion.MEMBER.eprType.portName,
                        port.getLocalPart());
            }
            writer.writeCharacters(servicePrefix + ":" + service.getLocalPart());
            writer.writeEndElement();
        }
    }
}