Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Archived » XML Schema Definition (XSD) » Trying to find an example
Trying to find an example [message #72732] Tue, 17 July 2007 17:41 Go to next message
Jason Henriksen is currently offline Jason HenriksenFriend
Messages: 231
Registered: July 2009
Senior Member
Hi All,

I'm sorry if this is a dumb question, but I'm trying to find an example and
so far have had not luck.

I use some XSD which I use to generate EMF objects and WSDL bindings
It basically looks like this:

<xsd:complexType name="Book">
<xsd:sequence>
<xsd:element name="authors"
maxOccurs="unbounded" minOccurs="0"
type="xsd:anyURI"
ecore:reference="lib:Writer"
ecore:opposite="books"/>
</xsd:sequence>
</xsd:complexType>

<xsd:complexType name="Writer">
<xsd:sequence>
<xsd:element name="books"
maxOccurs="unbounded" minOccurs="0"
type="xsd:anyURI"
ecore:reference="lib:Book"
ecore:opposite="author">
</xsd:element>
</xsd:sequence>
</xsd:complexType>

Using that WSDL I need to make a conforming SOAP call. So my operation
needs a create a new Writer and I specify it with a uri for the book. But
in that same document I also need to specify the Book object so that I can
have something for the URI to point at. Where do I put that Book in the
SOAP XML? Is this even supported by soap? Will EMF
Serialization/Deserialization handle a big tree of these objects in a SOAP
friendly way? I'm using the Eclipse-Eudora RC4 so I can use whatever code
is latest, but I having trouble finding an example where someone has
actually done this and shows the XML for it.

I'm hoping one of you has a link to example/instructions/tutorial about this
is supposed to look. I'm guessing it's out there somewhere, but I'm just
too blind to find it.

Thanks for your help,

Jason
Re: Trying to find an example [message #72739 is a reply to message #72732] Tue, 17 July 2007 17:46 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: merks.ca.ibm.com

Jason,

This is a little off topic for this newsgroup. Supporting things like
WSDL and SOAP bindings for web services falls within the scope of the
WebTools project which I've added to the "to" list of the reply. I
have no direct experience with SOAP, although I'm aware of other people
having used EMF in conjunction with web services, but that might have
been using document literal rather than SOAP. I think, but am not sure,
that WTP provides some SDO-based support...


Jason Henriksen wrote:
> Hi All,
>
> I'm sorry if this is a dumb question, but I'm trying to find an example and
> so far have had not luck.
>
> I use some XSD which I use to generate EMF objects and WSDL bindings
> It basically looks like this:
>
> <xsd:complexType name="Book">
> <xsd:sequence>
> <xsd:element name="authors"
> maxOccurs="unbounded" minOccurs="0"
> type="xsd:anyURI"
> ecore:reference="lib:Writer"
> ecore:opposite="books"/>
> </xsd:sequence>
> </xsd:complexType>
>
> <xsd:complexType name="Writer">
> <xsd:sequence>
> <xsd:element name="books"
> maxOccurs="unbounded" minOccurs="0"
> type="xsd:anyURI"
> ecore:reference="lib:Book"
> ecore:opposite="author">
> </xsd:element>
> </xsd:sequence>
> </xsd:complexType>
>
> Using that WSDL I need to make a conforming SOAP call. So my operation
> needs a create a new Writer and I specify it with a uri for the book. But
> in that same document I also need to specify the Book object so that I can
> have something for the URI to point at. Where do I put that Book in the
> SOAP XML? Is this even supported by soap? Will EMF
> Serialization/Deserialization handle a big tree of these objects in a SOAP
> friendly way? I'm using the Eclipse-Eudora RC4 so I can use whatever code
> is latest, but I having trouble finding an example where someone has
> actually done this and shows the XML for it.
>
> I'm hoping one of you has a link to example/instructions/tutorial about this
> is supposed to look. I'm guessing it's out there somewhere, but I'm just
> too blind to find it.
>
> Thanks for your help,
>
> Jason
>
>
>
Re: Trying to find an example [message #72781 is a reply to message #72739] Tue, 17 July 2007 18:20 Go to previous message
Jason Henriksen is currently offline Jason HenriksenFriend
Messages: 231
Registered: July 2009
Senior Member
Thanks Ed,

Sorry for the off topic post.

Jason
Re: Trying to find an example [message #602505 is a reply to message #72732] Tue, 17 July 2007 17:46 Go to previous message
Ed Merks is currently offline Ed MerksFriend
Messages: 33141
Registered: July 2009
Senior Member
Jason,

This is a little off topic for this newsgroup. Supporting things like
WSDL and SOAP bindings for web services falls within the scope of the
WebTools project which I've added to the "to" list of the reply. I
have no direct experience with SOAP, although I'm aware of other people
having used EMF in conjunction with web services, but that might have
been using document literal rather than SOAP. I think, but am not sure,
that WTP provides some SDO-based support...


Jason Henriksen wrote:
> Hi All,
>
> I'm sorry if this is a dumb question, but I'm trying to find an example and
> so far have had not luck.
>
> I use some XSD which I use to generate EMF objects and WSDL bindings
> It basically looks like this:
>
> <xsd:complexType name="Book">
> <xsd:sequence>
> <xsd:element name="authors"
> maxOccurs="unbounded" minOccurs="0"
> type="xsd:anyURI"
> ecore:reference="lib:Writer"
> ecore:opposite="books"/>
> </xsd:sequence>
> </xsd:complexType>
>
> <xsd:complexType name="Writer">
> <xsd:sequence>
> <xsd:element name="books"
> maxOccurs="unbounded" minOccurs="0"
> type="xsd:anyURI"
> ecore:reference="lib:Book"
> ecore:opposite="author">
> </xsd:element>
> </xsd:sequence>
> </xsd:complexType>
>
> Using that WSDL I need to make a conforming SOAP call. So my operation
> needs a create a new Writer and I specify it with a uri for the book. But
> in that same document I also need to specify the Book object so that I can
> have something for the URI to point at. Where do I put that Book in the
> SOAP XML? Is this even supported by soap? Will EMF
> Serialization/Deserialization handle a big tree of these objects in a SOAP
> friendly way? I'm using the Eclipse-Eudora RC4 so I can use whatever code
> is latest, but I having trouble finding an example where someone has
> actually done this and shows the XML for it.
>
> I'm hoping one of you has a link to example/instructions/tutorial about this
> is supposed to look. I'm guessing it's out there somewhere, but I'm just
> too blind to find it.
>
> Thanks for your help,
>
> Jason
>
>
>


Ed Merks
Professional Support: https://www.macromodeling.com/
Re: Trying to find an example [message #602507 is a reply to message #72739] Tue, 17 July 2007 18:20 Go to previous message
Jason Henriksen is currently offline Jason HenriksenFriend
Messages: 231
Registered: July 2009
Senior Member
Thanks Ed,

Sorry for the off topic post.

Jason
Previous Topic:Trying to find an example
Next Topic:Are there any docs for the XML Schema engine?
Goto Forum:
  


Current Time: Thu Apr 25 15:40:38 GMT 2024

Powered by FUDForum. Page generated in 0.02922 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top