473,804 Members | 3,220 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

XmlValidatingRe ader too sensitive?

XmlValidatingRe ader too sensitive?

I have the following schemas (simplified) and xml file which validate
fine in xmlspy, but blow up in xmlvalidatingre ader with:

'The 'Hierarchy' element is not declared. An error occurred'.

Any help appreciated.

To give a brief explanation of what I'm trying to do, the schema 1 is a
schema that is coming from a third party. The schema 2 is a wrapper
around that document.

The problem comes into light when a document based upon schema 1 has an
element outside of any namespace. Even though I qualify the tag, as in
<Hierarchy xmlns="">, xmlvalidatingre ader chokes on it. xmlspy is fine.

schema 1 (3rd party)
--------
<xsd:schema targetNamespace ="http://ns.hr-xml.org/SIDES/SIDES-1_0"
xmlns:xsd="http ://www.w3.org/2001/XMLSchema"
xmlns="http://ns.hr-xml.org/SIDES/SIDES-1_0"
elementFormDefa ult="qualified" >
<xsd:complexTyp e name="StaffingO rderType">
<xsd:element name="samplefie ld" type="xsd:strin g" />
</xsd:complexType >
<xsd:element name="StaffingO rder" type="StaffingO rderType" />
</xsd:schema>

schema 2 (our wrapper hosted on our side)
--------
<xs:schema targetNamespace ="http://ns.hr-xml.org/SIDES/SIDES-1_0"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns="http://ns.hr-xml.org/SIDES/SIDES-1_0"
elementFormDefa ult="qualified" id="MultipleHRX ML">
<xs:include schemaLocation= "StaffingOr der-1_0.xsd" />
<xs:complexTy pe name="MultipleH RXMLSidesType">
<xs:element name="StaffingO rder" type="StaffingO rderType" />
</xs:complexType>

<xs:element name="MultipleH RXML-SIDES" type="MultipleH RXMLSidesType" />
</xs:schema>

example doc based on schema 2
-----------------------------
<?xml version="1.0" encoding="UTF-8"?>
<MultipleHRXM L-SIDES xmlns="http://ns.hr-xml.org/SIDES/SIDES-1_0"
xmlns:xsi="http ://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocat ion="http://ns.hr-xml.org/SIDES/SIDES-1_0
http://localhost/HRXML/SIDES/SIDES-1_0/MultipleHRXML-SIDES-1_0.xsd">

<StaffingOrde r xsi:schemaLocat ion="http://ns.hr-xml.org/SIDES/SIDES-1_0
http://ns.hr-xml.org/SIDES/SIDES-1_0/StaffingOrder-1_0.xsd"
xmlns:xsi="http ://www.w3.org/2001/XMLSchema-instance"
xmlns="http://ns.hr-xml.org/SIDES/SIDES-1_0">
<samplefield>te st</samplefield>

<!-- *****NOTE BELOW CAUSES THE PROBLEM******-->

<Hierarchy xmlns="">someva lue</Hierarchy>
</StaffingOrder>
</MultipleHRXML-SIDES>

---Thanks in advance
Adam Smith

*** Sent via Devdex http://www.devdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 12 '05 #1
4 1620
Your XML schema is for elements from the
"http://ns.hr-xml.org/SIDES/SIDES-1_0" namespace. Your element is explicitly
set to having no namespace using xmlns="" and you have elementFormDefa ult
set to qualifued meaning that the element should be in the target namespace
of the schema.

Read the article at
http://msdn.microsoft.com/library/en...ml08192002.asp for
more information on this.

--
This posting is provided "AS IS" with no warranties, and confers no rights.

"Adam Smith" <ad*********@ho tmail.com> wrote in message
news:OA******** ******@TK2MSFTN GP09.phx.gbl...
XmlValidatingRe ader too sensitive?

I have the following schemas (simplified) and xml file which validate
fine in xmlspy, but blow up in xmlvalidatingre ader with:

'The 'Hierarchy' element is not declared. An error occurred'.

Any help appreciated.

To give a brief explanation of what I'm trying to do, the schema 1 is a
schema that is coming from a third party. The schema 2 is a wrapper
around that document.

The problem comes into light when a document based upon schema 1 has an
element outside of any namespace. Even though I qualify the tag, as in
<Hierarchy xmlns="">, xmlvalidatingre ader chokes on it. xmlspy is fine.

schema 1 (3rd party)
--------
<xsd:schema targetNamespace ="http://ns.hr-xml.org/SIDES/SIDES-1_0"
xmlns:xsd="http ://www.w3.org/2001/XMLSchema"
xmlns="http://ns.hr-xml.org/SIDES/SIDES-1_0"
elementFormDefa ult="qualified" >
<xsd:complexTyp e name="StaffingO rderType">
<xsd:element name="samplefie ld" type="xsd:strin g" />
</xsd:complexType >
<xsd:element name="StaffingO rder" type="StaffingO rderType" />
</xsd:schema>

schema 2 (our wrapper hosted on our side)
--------
<xs:schema targetNamespace ="http://ns.hr-xml.org/SIDES/SIDES-1_0"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns="http://ns.hr-xml.org/SIDES/SIDES-1_0"
elementFormDefa ult="qualified" id="MultipleHRX ML">
<xs:include schemaLocation= "StaffingOr der-1_0.xsd" />
<xs:complexTy pe name="MultipleH RXMLSidesType">
<xs:element name="StaffingO rder" type="StaffingO rderType" />
</xs:complexType>

<xs:element name="MultipleH RXML-SIDES" type="MultipleH RXMLSidesType" />
</xs:schema>

example doc based on schema 2
-----------------------------
<?xml version="1.0" encoding="UTF-8"?>
<MultipleHRXM L-SIDES xmlns="http://ns.hr-xml.org/SIDES/SIDES-1_0"
xmlns:xsi="http ://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocat ion="http://ns.hr-xml.org/SIDES/SIDES-1_0
http://localhost/HRXML/SIDES/SIDES-1_0/MultipleHRXML-SIDES-1_0.xsd">

<StaffingOrde r xsi:schemaLocat ion="http://ns.hr-xml.org/SIDES/SIDES-1_0
http://ns.hr-xml.org/SIDES/SIDES-1_0/StaffingOrder-1_0.xsd"
xmlns:xsi="http ://www.w3.org/2001/XMLSchema-instance"
xmlns="http://ns.hr-xml.org/SIDES/SIDES-1_0">
<samplefield>te st</samplefield>

<!-- *****NOTE BELOW CAUSES THE PROBLEM******-->

<Hierarchy xmlns="">someva lue</Hierarchy>
</StaffingOrder>
</MultipleHRXML-SIDES>

---Thanks in advance
Adam Smith

*** Sent via Devdex http://www.devdex.com ***
Don't just participate in USENET...get rewarded for it!

Nov 12 '05 #2
Your XML schema is for elements from the
"http://ns.hr-xml.org/SIDES/SIDES-1_0" namespace. Your element is explicitly
set to having no namespace using xmlns="" and you have elementFormDefa ult
set to qualifued meaning that the element should be in the target namespace
of the schema.

Read the article at
http://msdn.microsoft.com/library/en...ml08192002.asp for
more information on this.

--
This posting is provided "AS IS" with no warranties, and confers no rights.

"Adam Smith" <ad*********@ho tmail.com> wrote in message
news:OA******** ******@TK2MSFTN GP09.phx.gbl...
XmlValidatingRe ader too sensitive?

I have the following schemas (simplified) and xml file which validate
fine in xmlspy, but blow up in xmlvalidatingre ader with:

'The 'Hierarchy' element is not declared. An error occurred'.

Any help appreciated.

To give a brief explanation of what I'm trying to do, the schema 1 is a
schema that is coming from a third party. The schema 2 is a wrapper
around that document.

The problem comes into light when a document based upon schema 1 has an
element outside of any namespace. Even though I qualify the tag, as in
<Hierarchy xmlns="">, xmlvalidatingre ader chokes on it. xmlspy is fine.

schema 1 (3rd party)
--------
<xsd:schema targetNamespace ="http://ns.hr-xml.org/SIDES/SIDES-1_0"
xmlns:xsd="http ://www.w3.org/2001/XMLSchema"
xmlns="http://ns.hr-xml.org/SIDES/SIDES-1_0"
elementFormDefa ult="qualified" >
<xsd:complexTyp e name="StaffingO rderType">
<xsd:element name="samplefie ld" type="xsd:strin g" />
</xsd:complexType >
<xsd:element name="StaffingO rder" type="StaffingO rderType" />
</xsd:schema>

schema 2 (our wrapper hosted on our side)
--------
<xs:schema targetNamespace ="http://ns.hr-xml.org/SIDES/SIDES-1_0"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns="http://ns.hr-xml.org/SIDES/SIDES-1_0"
elementFormDefa ult="qualified" id="MultipleHRX ML">
<xs:include schemaLocation= "StaffingOr der-1_0.xsd" />
<xs:complexTy pe name="MultipleH RXMLSidesType">
<xs:element name="StaffingO rder" type="StaffingO rderType" />
</xs:complexType>

<xs:element name="MultipleH RXML-SIDES" type="MultipleH RXMLSidesType" />
</xs:schema>

example doc based on schema 2
-----------------------------
<?xml version="1.0" encoding="UTF-8"?>
<MultipleHRXM L-SIDES xmlns="http://ns.hr-xml.org/SIDES/SIDES-1_0"
xmlns:xsi="http ://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocat ion="http://ns.hr-xml.org/SIDES/SIDES-1_0
http://localhost/HRXML/SIDES/SIDES-1_0/MultipleHRXML-SIDES-1_0.xsd">

<StaffingOrde r xsi:schemaLocat ion="http://ns.hr-xml.org/SIDES/SIDES-1_0
http://ns.hr-xml.org/SIDES/SIDES-1_0/StaffingOrder-1_0.xsd"
xmlns:xsi="http ://www.w3.org/2001/XMLSchema-instance"
xmlns="http://ns.hr-xml.org/SIDES/SIDES-1_0">
<samplefield>te st</samplefield>

<!-- *****NOTE BELOW CAUSES THE PROBLEM******-->

<Hierarchy xmlns="">someva lue</Hierarchy>
</StaffingOrder>
</MultipleHRXML-SIDES>

---Thanks in advance
Adam Smith

*** Sent via Devdex http://www.devdex.com ***
Don't just participate in USENET...get rewarded for it!

Nov 12 '05 #3
The "StaffingOrderT ype" declares only one element SampleField. Once a schema
is found for the xml, XmlValidatingRe ader will validate according to that
schema and will not skip elements that do not belong to the targetNamespace .
XmlSPY has a bug here as the content model of StaffingOrderTy pe does not
allow anything else other than the samplefield element.

Hence, undeclaring the default namespace in <Hierarchy
xmlns="">someva lue</Hierarchy> will not make the validating reader skip
validation for this element.

If you need elements in the empty namespace to be allowed as children of the
"StaffingOr der" element, then you need to define StaffingOrderTy pe as open
content model using xs:any:
<xsd:complexTyp e name="StaffingO rderType">
<xsd:sequence >
<xsd:element name="samplefie ld" type="xsd:strin g" />
<xsd:any namespace="##lo cal" processContents ="lax"/> --> ##local
allows only elements with no namespace
</xsd:sequence>
</xsd:complexType >

Thanks,
Priya

"Adam Smith" <ad*********@ho tmail.com> wrote in message
news:OA******** ******@TK2MSFTN GP09.phx.gbl...
XmlValidatingRe ader too sensitive?

I have the following schemas (simplified) and xml file which validate
fine in xmlspy, but blow up in xmlvalidatingre ader with:

'The 'Hierarchy' element is not declared. An error occurred'.

Any help appreciated.

To give a brief explanation of what I'm trying to do, the schema 1 is a
schema that is coming from a third party. The schema 2 is a wrapper
around that document.

The problem comes into light when a document based upon schema 1 has an
element outside of any namespace. Even though I qualify the tag, as in
<Hierarchy xmlns="">, xmlvalidatingre ader chokes on it. xmlspy is fine.

schema 1 (3rd party)
--------
<xsd:schema targetNamespace ="http://ns.hr-xml.org/SIDES/SIDES-1_0"
xmlns:xsd="http ://www.w3.org/2001/XMLSchema"
xmlns="http://ns.hr-xml.org/SIDES/SIDES-1_0"
elementFormDefa ult="qualified" >
<xsd:complexTyp e name="StaffingO rderType">
<xsd:element name="samplefie ld" type="xsd:strin g" />
</xsd:complexType >
<xsd:element name="StaffingO rder" type="StaffingO rderType" />
</xsd:schema>

schema 2 (our wrapper hosted on our side)
--------
<xs:schema targetNamespace ="http://ns.hr-xml.org/SIDES/SIDES-1_0"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns="http://ns.hr-xml.org/SIDES/SIDES-1_0"
elementFormDefa ult="qualified" id="MultipleHRX ML">
<xs:include schemaLocation= "StaffingOr der-1_0.xsd" />
<xs:complexTy pe name="MultipleH RXMLSidesType">
<xs:element name="StaffingO rder" type="StaffingO rderType" />
</xs:complexType>

<xs:element name="MultipleH RXML-SIDES" type="MultipleH RXMLSidesType" />
</xs:schema>

example doc based on schema 2
-----------------------------
<?xml version="1.0" encoding="UTF-8"?>
<MultipleHRXM L-SIDES xmlns="http://ns.hr-xml.org/SIDES/SIDES-1_0"
xmlns:xsi="http ://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocat ion="http://ns.hr-xml.org/SIDES/SIDES-1_0
http://localhost/HRXML/SIDES/SIDES-1_0/MultipleHRXML-SIDES-1_0.xsd">

<StaffingOrde r xsi:schemaLocat ion="http://ns.hr-xml.org/SIDES/SIDES-1_0
http://ns.hr-xml.org/SIDES/SIDES-1_0/StaffingOrder-1_0.xsd"
xmlns:xsi="http ://www.w3.org/2001/XMLSchema-instance"
xmlns="http://ns.hr-xml.org/SIDES/SIDES-1_0">
<samplefield>te st</samplefield>

<!-- *****NOTE BELOW CAUSES THE PROBLEM******-->

<Hierarchy xmlns="">someva lue</Hierarchy>
</StaffingOrder>
</MultipleHRXML-SIDES>

---Thanks in advance
Adam Smith

*** Sent via Devdex http://www.devdex.com ***
Don't just participate in USENET...get rewarded for it!

Nov 12 '05 #4
The "StaffingOrderT ype" declares only one element SampleField. Once a schema
is found for the xml, XmlValidatingRe ader will validate according to that
schema and will not skip elements that do not belong to the targetNamespace .
XmlSPY has a bug here as the content model of StaffingOrderTy pe does not
allow anything else other than the samplefield element.

Hence, undeclaring the default namespace in <Hierarchy
xmlns="">someva lue</Hierarchy> will not make the validating reader skip
validation for this element.

If you need elements in the empty namespace to be allowed as children of the
"StaffingOr der" element, then you need to define StaffingOrderTy pe as open
content model using xs:any:
<xsd:complexTyp e name="StaffingO rderType">
<xsd:sequence >
<xsd:element name="samplefie ld" type="xsd:strin g" />
<xsd:any namespace="##lo cal" processContents ="lax"/> --> ##local
allows only elements with no namespace
</xsd:sequence>
</xsd:complexType >

Thanks,
Priya

"Adam Smith" <ad*********@ho tmail.com> wrote in message
news:OA******** ******@TK2MSFTN GP09.phx.gbl...
XmlValidatingRe ader too sensitive?

I have the following schemas (simplified) and xml file which validate
fine in xmlspy, but blow up in xmlvalidatingre ader with:

'The 'Hierarchy' element is not declared. An error occurred'.

Any help appreciated.

To give a brief explanation of what I'm trying to do, the schema 1 is a
schema that is coming from a third party. The schema 2 is a wrapper
around that document.

The problem comes into light when a document based upon schema 1 has an
element outside of any namespace. Even though I qualify the tag, as in
<Hierarchy xmlns="">, xmlvalidatingre ader chokes on it. xmlspy is fine.

schema 1 (3rd party)
--------
<xsd:schema targetNamespace ="http://ns.hr-xml.org/SIDES/SIDES-1_0"
xmlns:xsd="http ://www.w3.org/2001/XMLSchema"
xmlns="http://ns.hr-xml.org/SIDES/SIDES-1_0"
elementFormDefa ult="qualified" >
<xsd:complexTyp e name="StaffingO rderType">
<xsd:element name="samplefie ld" type="xsd:strin g" />
</xsd:complexType >
<xsd:element name="StaffingO rder" type="StaffingO rderType" />
</xsd:schema>

schema 2 (our wrapper hosted on our side)
--------
<xs:schema targetNamespace ="http://ns.hr-xml.org/SIDES/SIDES-1_0"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns="http://ns.hr-xml.org/SIDES/SIDES-1_0"
elementFormDefa ult="qualified" id="MultipleHRX ML">
<xs:include schemaLocation= "StaffingOr der-1_0.xsd" />
<xs:complexTy pe name="MultipleH RXMLSidesType">
<xs:element name="StaffingO rder" type="StaffingO rderType" />
</xs:complexType>

<xs:element name="MultipleH RXML-SIDES" type="MultipleH RXMLSidesType" />
</xs:schema>

example doc based on schema 2
-----------------------------
<?xml version="1.0" encoding="UTF-8"?>
<MultipleHRXM L-SIDES xmlns="http://ns.hr-xml.org/SIDES/SIDES-1_0"
xmlns:xsi="http ://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocat ion="http://ns.hr-xml.org/SIDES/SIDES-1_0
http://localhost/HRXML/SIDES/SIDES-1_0/MultipleHRXML-SIDES-1_0.xsd">

<StaffingOrde r xsi:schemaLocat ion="http://ns.hr-xml.org/SIDES/SIDES-1_0
http://ns.hr-xml.org/SIDES/SIDES-1_0/StaffingOrder-1_0.xsd"
xmlns:xsi="http ://www.w3.org/2001/XMLSchema-instance"
xmlns="http://ns.hr-xml.org/SIDES/SIDES-1_0">
<samplefield>te st</samplefield>

<!-- *****NOTE BELOW CAUSES THE PROBLEM******-->

<Hierarchy xmlns="">someva lue</Hierarchy>
</StaffingOrder>
</MultipleHRXML-SIDES>

---Thanks in advance
Adam Smith

*** Sent via Devdex http://www.devdex.com ***
Don't just participate in USENET...get rewarded for it!

Nov 12 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
1854
by: Alejandro Calbazana | last post by:
Hello, Should the XmlValidatingReader validating xml against an xsd serially (e.g. - does the XML have to be in the correct position in order for a document to be valid)? For example, I am trying to validate an xsd against a sample XML document and receive errors indicating that there is an invalid child node in my xml.
18
5573
by: Vlad | last post by:
I have the following code: I have a local copy of the DTD that I need to validate incoming XML documents against. The XML document has the <!DOCTYPE myname SYSTEM "myfile.dtd"> define. When the following code is executed the XML gets resolved through the XMLResolver and gets correctly validated against the locally stored DTD file. The problem occurs when the incoming XML contains no DOCTYPE attribute. The resolver code never gets called...
0
374
by: Adam Smith | last post by:
XmlValidatingReader too sensitive? I have the following schemas (simplified) and xml file which validate fine in xmlspy, but blow up in xmlvalidatingreader with: 'The 'Hierarchy' element is not declared. An error occurred'. Any help appreciated. To give a brief explanation of what I'm trying to do, the schema 1 is a
4
2607
by: Jesse Elve | last post by:
I am using an XmlValidatingReader which uses an XSD for xml validation. The code has been performing reliably for months. Yesterday it failed for the first time with the following exception: Inner exception of type System.InvalidOperationException has occurred : The operation is not valid due to the current state of the object. [stack trace = at System.Xml.XmlValidatingReader.set_ValidationType(ValidationType
9
1942
by: jason | last post by:
how do you use the XmlValidatingReader to validate an XML document that is passed into the XmlValidatingReader constructor? it looks like the normal process is to use an underlying reader, as follows (C#): XmlValidatingReader oMyVReader = new XmlValidatingReader(oMyReader); oMyVReader.Schemas.Add(oMySchemaCollection); oMyVReader.ValidationType = ValidationType.Schema;
5
1414
by: Geoff | last post by:
I am using an XMLValidatingReader to validate an XML file received via a web service. I want to verify that the incoming file matches the XML schema. When testing the validation routine, the XMLValidatingReader correctly flags mis-matched tags such as <abc>some content</xyz> but does not catch other errors. For example, it doesn't catch tags that are not part of the schema, doesn't catch missing tags where the schema has minoccurs="1", and...
1
2116
by: Bernhard Felkel | last post by:
I have troubles validating XML files with key/keyref constraints. Here´s my schema: <?xml version="1.0" encoding="utf-8"?> <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:transNS="http://Festo.Common.Translation" xmlns="http://Festo.Common.Translation" targetNamespace="http://Festo.Common.Translation" elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0.1">
1
1848
by: Plop69 | last post by:
need some help on following: xml file 1 <TEST xmlns="http://test" > <OK>mlkddflmkj</OK> </TEST> xml file 2
12
8569
by: Plop69 | last post by:
need some help on following: xml file 1 <TEST xmlns="http://test" > <OK>mlkddflmkj</OK> </TEST>
0
9587
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
1
10324
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10085
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
6857
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5527
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5662
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4302
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3827
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2998
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.