I downloaded the latest reqif schema file from http://www.omg.org/spec/ReqIF/20110401/reqif.xsd and loaded the file into visual studio 2013.
Now I'm trying to generate a sample file on the global element and get the following error:
"Imported schema for namespace 'http://www.w3.org/XML/1998/namespace' was not resolved"
I tried unblocking the xsd file as suggested here:
What does "Unauthorized zone" mean when browsing xsd files with Visual Studio 2010?
I tried changing
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" schemaLocation="http://www.w3.org/2001/xml.xsd"/>
to
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" schemaLocation="http://www.w3.org/2001/03/xml.xsd"/>
since the location to the xsd seems to be wrong.
I enabled downloading the imported xsd files in visual studio.
Nothing seems to work.
If there's a download for a sample reqif 1.1 file that is based on the schema and uses every single element or a sample generated in visual studio, that would be sufficient though.