<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:content="http://purl.org/rss/1.0/modules/content/"
    xmlns:wfw="http://wellformedweb.org/CommentAPI/"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
>
<!-- MHonArc v2.6.10 -->
	<channel>
		<title>news.eclipse.technology.xsd</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.technology.xsd/maillist.html</link>
		<description>NewsGroup: news.eclipse.technology.xsd</description>
		<language>en-us</language>
		<pubDate>Thu, 02 Jul 2009 13:13:15 GMT</pubDate>
		<lastBuildDate>Thu, 02 Jul 2009 13:13:15 GMT</lastBuildDate>
		<docs>http://blogs.law.harvard.edu/tech/rss</docs>
		<generator>MHonArc RSS 2.0 RCFile</generator>
		<managingEditor>webmaster@eclipse.org (Webmaster)</managingEditor>
		<webMaster>webmaster@eclipse.org (Webmaster)</webMaster>
		<image>
			<title>news.eclipse.technology.xsd</title>
			<url>http://www.eclipse.org/eclipse.org-common/themes/Phoenix/images/eclipse_home_header.jpg</url>
			<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.technology.xsd/maillist.html</link>
		</image>
 

	<item>
		<title>[news.eclipse.technology.xsd] Re: How to copy XSDSchema object</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.technology.xsd/msg02233.html</link>
		<description>Ok, thanks for your answer, I'll rework that class. Marcin </description>
		<content:encoded><![CDATA[<pre style="margin: 0em;">Ok, thanks for your answer, I'll rework that class.</pre><br>
<pre style="margin: 0em;">Marcin</pre><br>
<br>
]]></content:encoded>
		<pubDate>Thu, 02 Jul 2009 12:59:32 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.technology.xsd/msg02233.html</guid>
		<author>marcin_cylke@xxxxxxx (Marcin Cylke)</author>
	</item>
	<item>
		<title>[news.eclipse.technology.xsd] Re: How to copy XSDSchema object</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.technology.xsd/msg02232.html</link>
		<description>That sounds like a bad idea. You should load schemas using an XSDResourceImpl, not this way. You should not want to do that. It's a bad idea and you already see why. You can't ensure that the rest of the framework will create instances of your derived clas...</description>
		<content:encoded><![CDATA[<pre style="margin: 0em;">Marcin,</pre><br>
<pre style="margin: 0em;">Comments below.</pre><br>
<tt>Marcin Cylke wrote:
</tt><blockquote style="border-left: #5555EE solid 0.2em; margin: 0em; padding-left: 0.85em"><pre style="margin: 0em;">Hello</pre><br>
<tt>What I'm trying to achieve is create a class extending XSDSchema and 
put some convenience functions in it.
</tt></blockquote><tt>That sounds like a bad idea.
</tt><blockquote style="border-left: #5555EE solid 0.2em; margin: 0em; padding-left: 0.85em"><tt>I want to have my own interface to XSDSchema object. This part is 
done, but I have a hard time loading content into such object.<br>
Normaly I would do:<br>
XSDParser xsdParser1 = new XSDParser(null);
</tt></blockquote><tt>You should load schemas using an XSDResourceImpl, not this way.
</tt><blockquote style="border-left: #5555EE solid 0.2em; margin: 0em; padding-left: 0.85em"><pre style="margin: 0em;">xsdParser1.parse(uri);
XSDSchema schm = xsdParser1.getSchema();</pre><br>
<tt>But since I want to pack that schema into my own object how should I 
do this?
</tt></blockquote><tt>You should not want to do that.  It's a bad idea and you already see 
why.  You can't ensure that the rest of the framework will create 
instances of your derived class.
</tt><blockquote style="border-left: #5555EE solid 0.2em; margin: 0em; padding-left: 0.85em"><tt><br>I tried extending XSDParser to return my object when getSchema() is 
called, but it just doesn't work - it returns empty XSDSchema.</tt><br>
<br>
<tt>It would suffice to copy one schema to another, since my object is 
XSDSchema object on steroids ;-)
</tt></blockquote><tt>Even the XML Schema specification makes the schema definition final, so 
again, it's a really bad idea.
</tt><blockquote style="border-left: #5555EE solid 0.2em; margin: 0em; padding-left: 0.85em"><tt><br>Do you have any ideas about this kind of problem?
</tt></blockquote><tt>Yes, avoid it completely.  Put your convenience functions in a 
convenient separate class.
</tt><blockquote style="border-left: #5555EE solid 0.2em; margin: 0em; padding-left: 0.85em"><pre style="margin: 0em;"><br>Marcin</pre><br>
</blockquote><br>
]]></content:encoded>
		<pubDate>Thu, 02 Jul 2009 10:56:49 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.technology.xsd/msg02232.html</guid>
		<author>Ed.Merks@xxxxxxx (Ed Merks)</author>
	</item>


	<item>
		<title>[news.eclipse.technology.xsd] How to copy XSDSchema object</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.technology.xsd/msg02231.html</link>
		<description>Hello What I'm trying to achieve is create a class extending XSDSchema and put some convenience functions in it. I want to have my own interface to XSDSchema object. This part is done, but I have a hard time loading content into such object. Normaly I woul...</description>
		<content:encoded><![CDATA[<pre style="margin: 0em;">Hello</pre><br>
<tt>What I'm trying to achieve is create a class extending XSDSchema and put 
some convenience functions in it. I want to have my own interface to 
XSDSchema object. This part is done, but I have a hard time loading 
content into such object. </tt><br>
<br>
<pre style="margin: 0em;">Normaly I would do:
XSDParser xsdParser1 = new XSDParser(null);
xsdParser1.parse(uri);
XSDSchema schm = xsdParser1.getSchema();</pre><br>
<tt>But since I want to pack that schema into my own object how should I do 
this?</tt><br>
<br>
<tt>I tried extending XSDParser to return my object when getSchema() is 
called, but it just doesn't work - it returns empty XSDSchema.</tt><br>
<br>
<tt>It would suffice to copy one schema to another, since my object is 
XSDSchema object on steroids ;-)</tt><br>
<br>
<pre style="margin: 0em;">Do you have any ideas about this kind of problem?</pre><br>
<pre style="margin: 0em;">Marcin</pre><br>
<br>
]]></content:encoded>
		<pubDate>Wed, 01 Jul 2009 20:06:49 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.technology.xsd/msg02231.html</guid>
		<author>marcin_cylke@xxxxxxx (Marcin Cylke)</author>
	</item>


	<item>
		<title>[news.eclipse.technology.xsd] Re: WSDL Validator issue</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.technology.xsd/msg02230.html</link>
		<description>Hi Khaled, the WTP WSDL tools, the validator included, conform to the WSDL schema provided by the WS-I Basic Profile 1.1. See the last paragraph here http://www.ws-i.org/Profiles/BasicProfile-1.1-2004-08-24.html#WSDL_Extensions. As you've pointed out, some...</description>
		<content:encoded><![CDATA[<pre>Hi Khaled, the WTP WSDL tools, the validator included, conform to the WSDL 
schema provided by the WS-I Basic Profile 1.1.  See the last paragraph here 
<a  href="http://www.ws-i.org/Profiles/BasicProfile-1.1-2004-08-24.html#WSDL_Extensions">http://www.ws-i.org/Profiles/BasicProfile-1.1-2004-08-24.html#WSDL_Extensions</a>.

As you've pointed out, some of the WS* specifications require extensibility 
elements in places not supported by the original WSDL 1.1 W3C note. The 
underlying Java object models used to manipulate WSDL (JWSDL/WSDL4J and the 
WTP WSDL EMF model) have also evolved to allow extensibility elements for 
all WSDL elements.

I hope this helps.
Regards, Valentin

&quot;khaled sharief&quot; &lt;khaledsharief@xxxxxxxxx&gt; wrote in message 
<a  href="news:b1ef36f70688811ff5686162e3ab8b0b$1@xxxxxxxxxxxxxxxxxx">news:b1ef36f70688811ff5686162e3ab8b0b$1@xxxxxxxxxxxxxxxxxx</a>
&gt; Hi Ed,
&gt;
&gt; This is the version of WTP that I'm using.
&gt; Version: 3.0.3.v200809250443
&gt;
&gt; Thanks &amp; Regards,
&gt; Mohammad Khaled Sharief
&gt; 



</pre>]]></content:encoded>
		<pubDate>Tue, 30 Jun 2009 15:24:19 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.technology.xsd/msg02230.html</guid>
		<author>valentinbaciu@xxxxxxx (Valentin)</author>
	</item>
	<item>
		<title>[news.eclipse.technology.xsd] Re: WSDL Validator issue</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.technology.xsd/msg02229.html</link>
		<description>Hi Ed, This is the version of WTP that I'm using. Version: 3.0.3.v200809250443 Thanks &amp;amp; Regards, Mohammad Khaled Sharief </description>
		<content:encoded><![CDATA[<pre style="margin: 0em;">Hi Ed,</pre><br>
<pre style="margin: 0em;">This is the version of WTP that I'm using.
Version: 3.0.3.v200809250443</pre><br>
<pre style="margin: 0em;">Thanks &amp; Regards,
Mohammad Khaled Sharief</pre><br>
<br>
]]></content:encoded>
		<pubDate>Tue, 30 Jun 2009 05:29:42 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.technology.xsd/msg02229.html</guid>
		<author>khaledsharief@xxxxxxx (khaled sharief)</author>
	</item>


	<item>
		<title>[news.eclipse.technology.xsd] Re: WSDL Validator issue</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.technology.xsd/msg02228.html</link>
		<description> </description>
		<content:encoded><![CDATA[<pre style="margin: 0em;">Khaled,</pre><br>
<tt>This is the XSD newsgroup, not a WSDL newsgroup.  It's best to ask on 
the Web Tools newsgroup, which I've added to the &quot;to&quot; list of the reply, 
so no need to repost.  You might want to clarify which version of WTP 
you're using.</tt><br>
<br>
<tt><br>khaled sharief wrote:
</tt><blockquote style="border-left: #5555EE solid 0.2em; margin: 0em; padding-left: 0.85em"><pre style="margin: 0em;">Hi,</pre><br>
<tt>As per WSDL 1.1 Spec its not valid to have extensibility elements in 
the porttype element but when i place any extensibility element in 
porttype<br>
e.g.</tt><br>
<br>
<pre style="margin: 0em;">&lt;jaxws:bindings&gt;
     &lt;jaxws:class name=&quot;Service1&quot;/&gt;
&lt;/jaxws:bindings&gt;</pre><br>
<tt>the validator doesn't report any problem. This is also the same in 
Altova XML Spy.</tt><br>
<br>
<tt>Did i miss anything in the specification or will this be a bug in WSDL 
validator and Altova XML Spy validator.</tt><br>
<br>
<pre style="margin: 0em;">Reference - <a  href="http://www.w3.org/TR/wsdl#A3">http://www.w3.org/TR/wsdl#A3</a></pre><br>
<pre style="margin: 0em;">Regards,
Khaled Sharief</pre><br>
<pre style="margin: 0em;"><br></pre><br>
<br>
</blockquote><br>
]]></content:encoded>
		<pubDate>Mon, 29 Jun 2009 12:41:52 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.technology.xsd/msg02228.html</guid>
		<author>Ed.Merks@xxxxxxx (Ed Merks)</author>
	</item>
	<item>
		<title>[news.eclipse.technology.xsd] WSDL Validator issue</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.technology.xsd/msg02227.html</link>
		<description>Hi, As per WSDL 1.1 Spec its not valid to have extensibility elements in the porttype element but when i place any extensibility element in porttype e.g. &amp;lt;jaxws:bindings&amp;gt; &amp;lt;jaxws:class name=&amp;quot;Service1&amp;quot;/&amp;gt; &amp;lt;/jaxws:bindings&amp;gt; the validator doesn't report any pro...</description>
		<content:encoded><![CDATA[<pre style="margin: 0em;">Hi,</pre><br>
<tt>As per WSDL 1.1 Spec its not valid to have extensibility elements in the 
porttype element but when i place any extensibility element in porttype<br>
e.g.</tt><br>
<br>
<pre style="margin: 0em;">&lt;jaxws:bindings&gt;
     &lt;jaxws:class name=&quot;Service1&quot;/&gt;
&lt;/jaxws:bindings&gt;</pre><br>
<tt>the validator doesn't report any problem. This is also the same in Altova 
XML Spy.</tt><br>
<br>
<tt>Did i miss anything in the specification or will this be a bug in WSDL 
validator and Altova XML Spy validator.</tt><br>
<br>
<pre style="margin: 0em;">Reference - <a  href="http://www.w3.org/TR/wsdl#A3">http://www.w3.org/TR/wsdl#A3</a></pre><br>
<pre style="margin: 0em;">Regards,
Khaled Sharief</pre><br>
<pre style="margin: 0em;"><br></pre><br>
<pre style="margin: 0em;"><br></pre><br>
]]></content:encoded>
		<pubDate>Mon, 29 Jun 2009 12:23:38 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.technology.xsd/msg02227.html</guid>
		<author>khaledsharief@xxxxxxx (khaled sharief)</author>
	</item>


	<item>
		<title>[news.eclipse.technology.xsd] UML to XSD</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.technology.xsd/msg02226.html</link>
		<description>Hi, I want to convert UML to XSD but I am unable to do so in Eclipse Version: 3.4.2. My ultimate goal is to generate wsdl from this UML. Thank you in advance. -- Ankit </description>
		<content:encoded><![CDATA[<pre style="margin: 0em;">Hi,</pre><br>
<tt>I want to convert UML to XSD but I am unable to do so in Eclipse Version: 
3.4.2. My ultimate goal is to generate wsdl from this UML. 
Thank you in advance. 
--<br>
Ankit</tt><br>
<br>
<pre style="margin: 0em;"><br></pre><br>
]]></content:encoded>
		<pubDate>Fri, 26 Jun 2009 12:31:22 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.technology.xsd/msg02226.html</guid>
		<author>ankit.jindal@xxxxxxx (Ankit Jindal)</author>
	</item>


	<item>
		<title>[news.eclipse.technology.xsd] Re: Defining mulitple persistency for	EMF Model from one xsd</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.technology.xsd/msg02225.html</link>
		<description> </description>
		<content:encoded><![CDATA[<pre style="margin: 0em;">Ashwani,</pre><br>
<tt>Please don't ask the same question in multiple newsgroups with different 
posts.  This is already answered in the EMF newsgroup.</tt><br>
<br>
<tt><br>Ashwani Kr Sharma wrote:
</tt><blockquote style="border-left: #5555EE solid 0.2em; margin: 0em; padding-left: 0.85em"><pre style="margin: 0em;">Hi,</pre><br>
<tt>I have defined my metamodel in a xsd file. The metamodel is something 
like following:<br>
Company contains 1..n Employees.<br>
Each employee has 1..n Responsibility.</tt><br>
<br>
<pre style="margin: 0em;">I created a EMF model based on this. I generated code from this.
Now, the editor which gets generated - Is for files of type extensions
- Allows me to Add Employees and Add Responsibility to Employee</pre><br>
<pre style="margin: 0em;">Now, the complete info is stored in one file of extensios .company.
I want to store the information in two files.
    -&gt; .company     -&gt; .employee</pre><br>
<tt>Is it possible ? OR Do i need to have two xsd, one for metamodel of 
company and one for metamodel of employee ?</tt><br>
<br>
<pre style="margin: 0em;">Regards,
Ashwani Kr Sharma</pre><br>
</blockquote><br>
]]></content:encoded>
		<pubDate>Fri, 19 Jun 2009 07:23:26 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.technology.xsd/msg02225.html</guid>
		<author>Ed.Merks@xxxxxxx (Ed Merks)</author>
	</item>
	<item>
		<title>[news.eclipse.technology.xsd] Defining mulitple persistency for EMF	Model from one xsd</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.technology.xsd/msg02224.html</link>
		<description>Hi, I have defined my metamodel in a xsd file. The metamodel is something like following: Company contains 1..n Employees. Each employee has 1..n Responsibility. I created a EMF model based on this. I generated code from this. Now, the editor which gets ge...</description>
		<content:encoded><![CDATA[<pre style="margin: 0em;">Hi,</pre><br>
<tt>I have defined my metamodel in a xsd file. The metamodel is something like 
following:<br>
Company contains 1..n Employees.<br>
Each employee has 1..n Responsibility.</tt><br>
<br>
<tt>I created a EMF model based on this. I generated code from this.<br>
Now, the editor which gets generated 
- Is for files of type extensions<br>
- Allows me to Add Employees and Add Responsibility to Employee</tt><br>
<br>
<tt>Now, the complete info is stored in one file of extensios .company.<br>
I want to store the information in two files.<br>
    -&gt; .company 
    -&gt; .employee</tt><br>
<br>
<tt>Is it possible ? OR 
Do i need to have two xsd, one for metamodel of company and one for 
metamodel of employee ?</tt><br>
<br>
<pre style="margin: 0em;">Regards,
Ashwani Kr Sharma</pre><br>
<br>
]]></content:encoded>
		<pubDate>Fri, 19 Jun 2009 04:13:33 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.technology.xsd/msg02224.html</guid>
		<author>ashw.kumar@xxxxxxx (Ashwani Kr Sharma)</author>
	</item>

 
	</channel>
	</rss>
<!-- MHonArc v2.6.10 -->
