I'm implementing a web service for the first time and everything went smoothly. It was beautiful.
Then, when I wanted to put the meat and potatoes into the service, I had to create a schema document for the first time. Now, I've done DTD's and the XSD wasn't really that hard. I wanted to do an automatic code generation thing available in Visual Studio .NET, so, for some reason it wasn't accepting my XSD. That was a pain, but after hours of playing with it, it finally worked. Now, with this, I had to specify the XSD file in the XML file. Once I did this, the other pages that I had referring to the XML file will not work. So, as of right now, my XSL cannot traverse my XML model. I can see that there is an element at the root, but for some reason, when I access it directly, nothing happens. I know how the XMLNS property works - allows you to specify a namespace for tags - so I'm thinking that when my XSL is being processed there is some sort of namespace-specifier that I must use. I just have no idea what that would be.
Please feel free to ask for clarification, I don't think I did a good job of explaining everything.
Here is what my XML looks like:
<calendar xmlns="...
</calendar>
I know for a fact that it's the XMLNS attribute that's causing the problem because I have taken everything else out and it works fine. There are also "xmlns:xsi" and "xsi:????" attributes, but I can't remember what they are off the top of my head.
I appreciate any help that can be given! Thanks. ________________________________________
Michael C Flanakin
Indigo Web Systems
michael.flanakin@indigows.com
Then, when I wanted to put the meat and potatoes into the service, I had to create a schema document for the first time. Now, I've done DTD's and the XSD wasn't really that hard. I wanted to do an automatic code generation thing available in Visual Studio .NET, so, for some reason it wasn't accepting my XSD. That was a pain, but after hours of playing with it, it finally worked. Now, with this, I had to specify the XSD file in the XML file. Once I did this, the other pages that I had referring to the XML file will not work. So, as of right now, my XSL cannot traverse my XML model. I can see that there is an element at the root, but for some reason, when I access it directly, nothing happens. I know how the XMLNS property works - allows you to specify a namespace for tags - so I'm thinking that when my XSL is being processed there is some sort of namespace-specifier that I must use. I just have no idea what that would be.
Please feel free to ask for clarification, I don't think I did a good job of explaining everything.
Here is what my XML looks like:
<calendar xmlns="...
</calendar>
I know for a fact that it's the XMLNS attribute that's causing the problem because I have taken everything else out and it works fine. There are also "xmlns:xsi" and "xsi:????" attributes, but I can't remember what they are off the top of my head.
I appreciate any help that can be given! Thanks. ________________________________________
Michael C Flanakin
Indigo Web Systems
michael.flanakin@indigows.com