XSD file, where to get xmlns argument?

Posted by Daok on Stack Overflow See other posts from Stack Overflow or by Daok
Published on 2010-04-07T19:04:25Z Indexed on 2010/04/07 19:33 UTC
Read the original article Hit count: 311

Filed under:
|
|
|
<?xml version="1.0" encoding="utf-8"?>
<xs:schema id="abc" targetNamespace="http://schemas.businessNameHere.com/SoftwareNameHere" 
           elementFormDefault="qualified" 
           xmlns="http://schemas.businessNameHere.com/SoftwareNameHere" 
           xmlns:mstns="http://schemas.businessNameHere.com/SoftwareNameHere" 
           xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:element name="..." type="..." />
<xs:complexType name="...">

I am working on a project using XSD to generate .cs file. My question is concerning the string "http://schemas.businessNameHere.com/SoftwareNameHere" If I change it, it doesn't work. But the http:// is not a valid one... what is the logic behind and where can I can information about what to put there or how to change it?

© Stack Overflow or respective owner

Related posts about c#

Related posts about ASP.NET