Keine Cache-Version

Caching deaktiviert Standardeinstellung für diese Seite:aktiviert (code LNG204)
Wenn die Anzeige zu langsam ist, können Sie den Benutzermodus deaktivieren, um die zwischengespeicherte Version anzuzeigen.
javax.xml.soap

Class SOAPPart

  • All Implemented Interfaces:
    Document, Node

    public abstract class SOAPPart
    extends Object
    implements Document, Node
    The container for the SOAP-specific portion of a SOAPMessage object. All messages are required to have a SOAP part, so when a SOAPMessage object is created, it will automatically have a SOAPPart object.

    A SOAPPart object is a MIME part and has the MIME headers Content-Id, Content-Location, and Content-Type. Because the value of Content-Type must be "text/xml", a SOAPPart object automatically has a MIME header of Content-Type with its value set to "text/xml". The value must be "text/xml" because content in the SOAP part of a message must be in XML format. Content that is not of type "text/xml" must be in an AttachmentPart object rather than in the SOAPPart object.

    When a message is sent, its SOAP part must have the MIME header Content-Type set to "text/xml". Or, from the other perspective, the SOAP part of any message that is received must have the MIME header Content-Type with a value of "text/xml".

    A client can access the SOAPPart object of a SOAPMessage object by calling the method SOAPMessage.getSOAPPart. The following line of code, in which message is a SOAPMessage object, retrieves the SOAP part of a message.

       SOAPPart soapPart = message.getSOAPPart();
     

    A SOAPPart object contains a SOAPEnvelope object, which in turn contains a SOAPBody object and a SOAPHeader object. The SOAPPart method getEnvelope can be used to retrieve the SOAPEnvelope object.

    • Constructor Detail

      • SOAPPart

        public SOAPPart()
    • Method Detail

      • getEnvelope

        public abstract SOAPEnvelope getEnvelope()
                                          throws SOAPException
        Gets the SOAPEnvelope object associated with this SOAPPart object. Once the SOAP envelope is obtained, it can be used to get its contents.
        Returns:
        the SOAPEnvelope object for this SOAPPart object
        Throws:
        SOAPException - if there is a SOAP error
      • getContentId

        public String getContentId()
        Retrieves the value of the MIME header whose name is "Content-Id".
        Returns:
        a String giving the value of the MIME header named "Content-Id"
        See Also:
        setContentId(java.lang.String)
      • getContentLocation

        public String getContentLocation()
        Retrieves the value of the MIME header whose name is "Content-Location".
        Returns:
        a String giving the value of the MIME header whose name is "Content-Location"
        See Also:
        setContentLocation(java.lang.String)
      • setContentId

        public void setContentId(String contentId)
        Sets the value of the MIME header named "Content-Id" to the given String.
        Parameters:
        contentId - a String giving the value of the MIME header "Content-Id"
        Throws:
        IllegalArgumentException - if there is a problem in setting the content id
        See Also:
        getContentId()
      • setContentLocation

        public void setContentLocation(String contentLocation)
        Sets the value of the MIME header "Content-Location" to the given String.
        Parameters:
        contentLocation - a String giving the value of the MIME header "Content-Location"
        Throws:
        IllegalArgumentException - if there is a problem in setting the content location.
        See Also:
        getContentLocation()
      • removeMimeHeader

        public abstract void removeMimeHeader(String header)
        Removes all MIME headers that match the given name.
        Parameters:
        header - a String giving the name of the MIME header(s) to be removed
      • removeAllMimeHeaders

        public abstract void removeAllMimeHeaders()
        Removes all the MimeHeader objects for this SOAPEnvelope object.
      • getMimeHeader

        public abstract String[] getMimeHeader(String name)
        Gets all the values of the MimeHeader object in this SOAPPart object that is identified by the given String.
        Parameters:
        name - the name of the header; example: "Content-Type"
        Returns:
        a String array giving all the values for the specified header
        See Also:
        setMimeHeader(java.lang.String, java.lang.String)
      • setMimeHeader

        public abstract void setMimeHeader(String name,
                         String value)
        Changes the first header entry that matches the given header name so that its value is the given value, adding a new header with the given name and value if no existing header is a match. If there is a match, this method clears all existing values for the first header that matches and sets the given value instead. If more than one header has the given name, this method removes all of the matching headers after the first one.

        Note that RFC822 headers can contain only US-ASCII characters.

        Parameters:
        name - a String giving the header name for which to search
        value - a String giving the value to be set. This value will be substituted for the current value(s) of the first header that is a match if there is one. If there is no match, this value will be the value for a new MimeHeader object.
        Throws:
        IllegalArgumentException - if there was a problem with the specified mime header name or value
        See Also:
        getMimeHeader(java.lang.String)
      • addMimeHeader

        public abstract void addMimeHeader(String name,
                         String value)
        Creates a MimeHeader object with the specified name and value and adds it to this SOAPPart object. If a MimeHeader with the specified name already exists, this method adds the specified value to the already existing value(s).

        Note that RFC822 headers can contain only US-ASCII characters.

        Parameters:
        name - a String giving the header name
        value - a String giving the value to be set or added
        Throws:
        IllegalArgumentException - if there was a problem with the specified mime header name or value
      • getAllMimeHeaders

        public abstract Iterator getAllMimeHeaders()
        Retrieves all the headers for this SOAPPart object as an iterator over the MimeHeader objects.
        Returns:
        an Iterator object with all of the Mime headers for this SOAPPart object
      • getMatchingMimeHeaders

        public abstract Iterator getMatchingMimeHeaders(String[] names)
        Retrieves all MimeHeader objects that match a name in the given array.
        Parameters:
        names - a String array with the name(s) of the MIME headers to be returned
        Returns:
        all of the MIME headers that match one of the names in the given array, returned as an Iterator object
      • getNonMatchingMimeHeaders

        public abstract Iterator getNonMatchingMimeHeaders(String[] names)
        Retrieves all MimeHeader objects whose name does not match a name in the given array.
        Parameters:
        names - a String array with the name(s) of the MIME headers not to be returned
        Returns:
        all of the MIME headers in this SOAPPart object except those that match one of the names in the given array. The nonmatching MIME headers are returned as an Iterator object.
      • setContent

        public abstract void setContent(Source source)
                                 throws SOAPException
        Sets the content of the SOAPEnvelope object with the data from the given Source object. This Source must contain a valid SOAP document.
        Parameters:
        source - the javax.xml.transform.Source object with the data to be set
        Throws:
        SOAPException - if there is a problem in setting the source
        See Also:
        getContent()

Deutsche Übersetzung

Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.

Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.

Vielen Dank im Voraus.

Dokument erstellt 11/06/2005, zuletzt geändert 04/03/2020
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/java-api-rf-javax/xml/soap/SOAPPart.html

Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.

Referenzen

  1. Zeigen Sie - html-Dokument Sprache des Dokuments:fr Manuel PHP : https://docs.oracle.com

Diese Verweise und Links verweisen auf Dokumente, die während des Schreibens dieser Seite konsultiert wurden, oder die zusätzliche Informationen liefern können, aber die Autoren dieser Quellen können nicht für den Inhalt dieser Seite verantwortlich gemacht werden.
Der Autor Diese Website ist allein dafür verantwortlich, wie die verschiedenen Konzepte und Freiheiten, die mit den Nachschlagewerken gemacht werden, hier dargestellt werden. Denken Sie daran, dass Sie mehrere Quellinformationen austauschen müssen, um das Risiko von Fehlern zu reduzieren.

Inhaltsverzeichnis Haut