Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Fw: [wtp-dev] M4 milestone plans - incase you're wondering why you milestone-plan.xml won't validate


Yikes!

Please hold off on making the change I've suggested below.  By specifying a namespace for the milestone-plan.xml our stylesheets will be broken.  I'll continue to dig into this and post back when I find a    satisfactory solution.

thanks

Craig


Craig Salter
Rational Studio XML Web Services
Internal Mail: D3/RY6/8200 /MKM
Phone: (905) 413-3918  TL: 969-3918 FAX: (905) 413-4920
Internet: csalter@xxxxxxxxxx     Notes: Craig Salter/Toronto/IBM@IBMCA


----- Forwarded by Craig Salter/Toronto/IBM on 03/18/2005 12:23 AM -----
Craig Salter/Toronto/IBM@IBMCA
Sent by: wtp-dev-admin@xxxxxxxxxxx

03/17/2005 11:58 PM

Please respond to
wtp-dev

To
wtp-dev@xxxxxxxxxxx
cc
Subject
[wtp-dev] M4 milestone plans - incase you're wondering why you milestone-plan.xml won't validate






Hello component leads,


You might have noticed that your milestone-plan.xml won't validate properly.  Someone recently changed the milestonePlan.xsd to give it a namespace and that impacts all of the milestone-plan.xml instance documents resulting in validation errors.   Since giving the schema a namespace does seem to be the morally correct thing to do (all 'proper'  XML Schemas should have namespaces) I suggest that we update our milestone_plan.xml files to respond (it's a pretty simple change).


Below I've shown how to change your milestone_plan.xml file to make it happy again (so validation will work).


Before....


   <
plan xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       
xsi:noNamespaceSchemaLocation="../../../../development/milestone_plans/milestonePlan.xsd">

After....


   <
plan xmlns="http://www.eclipse.org/webtools/milestonePlan.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xsi:schemaLocation
="http://www.eclipse.org/webtools/milestonePlan.xsd ../../../../development/milestone_plans/milestonePlan.xsd>

You might want to make this change as you update your M4 plans.


thanks


Craig


Craig Salter
Rational Studio XML Web Services
Internal Mail: D3/RY6/8200 /MKM
Phone: (905) 413-3918  TL: 969-3918 FAX: (905) 413-4920
Internet: csalter@xxxxxxxxxx     Notes: Craig Salter/Toronto/IBM@IBMCA

Back to the top