xsd conversion

Hello
I’ve unsucesfullly try to convert xsd schema file, with some includes to local files, to TSD so I can define a new ‘table’. This is the message I get:
Command:
inoxsdconv.cmd -xsd d:SCL_Substation.xsd -tsd subestacion.tsd -outputEncoding UTF-8 -noLog
Stderr:
XSCMOI1010: All xml comments, processing instructions and cdata sections have been removed.
XSCXCC5007: Could neither read the schema “SCL_BaseTypes.xsd” from file nor get “[schema location: SCL_BaseTypes.xsd, collection: null]” from Tamino “null”.
XSCMOW1013: There can be only one target namespace. This target namespace has been used: “http://www.iec.ch/61850/2003/SCL”. This namespace has not been used: “http://www.iec.ch/61850/2003/SCL”.

What can I do to solve?

Hello,

XSCXCC5007: Could neither read the schema “SCL_BaseTypes.xsd” from file nor get “[schema location: SCL_BaseTypes.xsd, collection: null]” from Tamino “null”.
From the error it seems that schema location contains only file name. It does not specify the absolute path of the XSD file you are including in it. Try to give the absolute path for the schema “SCL_BaseTypes.xsd” including file protocol. e.g. “file:///c:/SCL_BaseTypes.xsd”.

XSCMOW1013: There can be only one target namespace. This target namespace has been used: “http://www.iec.ch/61850/2003/SCL”. This namespace has not been used: “http://www.iec.ch/61850/2003/SCL”.
If you are including schemas in your main schema then make sure that target namespace for all schemas is same.

Hope this resolves your problem.

Cheers,
Vipin

Solved, the problem is that i namespace was defined and also set as target. Something that makes no sense.