You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@juddi.apache.org by William Drozd <wd...@i-a-i.com> on 2010/07/14 17:58:31 UTC

GetPublisherAssertions Return question

Shouldn't GetPublisherAssertions return a PublisherAssertions object (which contains a List<PublisherAssertion>) rather than the List<PublisherAssertion> directly? I mean according to the UDDI spec. Or was there some technical reason for doing this?

Thanks,
Bill

__________________________________________________________________________
This message and all attachments are PRIVATE, and contain information that
is PROPRIETARY to Intelligent Automation, Inc. You are not authorized to
transmit or otherwise disclose this message or any attachments to any
third party whatsoever without the express written consent of Intelligent
Automation, Inc. If you received this message in error or you are not
willing to view this message or any attachments on a confidential basis,
please immediately delete this email and any attachments and notify
Intelligent Automation, Inc.


Re: GetPublisherAssertions Return question

Posted by Kurt T Stam <ku...@gmail.com>.
William Drozd wrote:
> Shouldn't GetPublisherAssertions return a PublisherAssertions object (which contains a List<PublisherAssertion>) rather than the List<PublisherAssertion> directly? I mean according to the UDDI spec. Or was there some technical reason for doing this?
>
> Thanks,
> Bill
>
> __________________________________________________________________________
> This message and all attachments are PRIVATE, and contain information that
> is PROPRIETARY to Intelligent Automation, Inc. You are not authorized to
> transmit or otherwise disclose this message or any attachments to any
> third party whatsoever without the express written consent of Intelligent
> Automation, Inc. If you received this message in error or you are not
> willing to view this message or any attachments on a confidential basis,
> please immediately delete this email and any attachments and notify
> Intelligent Automation, Inc.
>
>   
Hi Bill,

The API was generated from the xsd/wslds provided along with the spec.

<xsd:element name="publisherAssertionsResponse" 
type="uddi:publisherAssertionsResponse" final="restriction"/>
    <xsd:complexType name="publisherAssertionsResponse" final="restriction">
        <xsd:sequence>
            <xsd:element ref="uddi:publisherAssertion" minOccurs="0" 
maxOccurs="unbounded"/>
        </xsd:sequence>
    </xsd:complexType>

And this looks like the response is defined as the list.

Never noticed the discrepancy. Is it causing an issue for you?

--Kurt