all groups > dotnet xml > november 2004 > threads for november 29 - 30, 2004
Filter by week: 1 2 3 4 5
xsd pattern needed
Posted by ray NO[at]SPAM cape.com at 11/30/2004 7:28:09 PM
i need to create a pattern for an string field in my xsd. the field
may or may not have a value if it has a value it should be an integer.
I have tried nillable and that didn't work. I'm writting this in c#
using XmlValidatingReader.
Thanks for your help
Ray... more >>
SelectSingleNode with multiple namespaces (sort of)...
Posted by 455 at 11/30/2004 6:21:43 PM
Hello all,
I've been trying to figure this out for hours now... can anyone help?
I have an XML document like this:
<?xml version="1.0" encoding="utf-8" ?>
<ICE:ServiceCall xmlns="ICE" xmlns:ICE="http://www.ice.net">
<ICE:Service name="">
<ICE:RetVal/>
<ICE:ConnString/>
<ICE:Para... more >>
Read XML from a scoket
Posted by Drago Velchev at 11/30/2004 5:57:05 PM
Hi,
I have a socket connection where messages are formatted as XML, i.e. each
message is in the form <msg>..</msg>.
Is there an easy way to get a XMLDocument for each message form the socket
stream?
I tried with XMLTextReader and the NetworkStream of the socket but the
reader blocks until the ... more >>
Is Visual Studio a bad validator?
Posted by Wole Ogunremi at 11/30/2004 1:37:06 AM
Can anyone please explain why VS.NET 2003 XML IDE sometimes has problems
validating documents against a schema but the same document/schema validates
fine when run against system.xml.xmlvalidatingreader. Is this a documented
bug? I could not find much on google.
In the future I'll validate at... more >>
xml -> xml using xslt
Posted by Chris at 11/29/2004 4:42:08 PM
Hi,
I have an XML-file :
<book>
<title>Alaska</title>
</book>
I would like transfer the <book>-elements to <bookname> using an xsl-sheet,
thus producing xml-again. and saving the output in a new xml-file
how can I achieve this ? I don't know how to setup my select-statements
(????)... more >>
HELP! XSLTranform and XMLTextWriter Error
Posted by devanoy NO[at]SPAM hotmail.com at 11/29/2004 3:27:27 PM
I have tried everything with this!
I get an error stating "Index was outside the bounds of the array"
My code looks like this....
xmlDoc = New XmlDocument()
xmlDoc.Load("xml.doc")
xslDoc = New XslTransform()
xslDoc.Load("xsl.doc")
Dim TWrtr As... more >>
Performance of XmlDocument.ImportNode
Posted by Andrew Jacobs at 11/29/2004 11:29:09 AM
I am using C# to write an application that migrates documents from one
version of an XML schema/DTD to later one. Much of the document has the same
structure in the two versions and I use XMLDocument.ImportNode to copy
unchanged sub-trees between the old and new document but this takes much
... more >>
XmlTextReader with Stream
Posted by CLL at 11/29/2004 6:37:05 AM
Sorry about creating a new post, but my old one is 3 pages down and the older
posts don't seem to get answered very often. (original post at the bottom)
I called PSS about the QFE fix and gave them the number provided below and
they told me I need an article number because QFE 1641 fixes many... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Set Attribute Fail
Posted by Kevin Tang at 11/29/2004 2:13:02 AM
Dear all,
I am using MS XML Parser 3.0, I want to know what will cause the
"setAttribute" fail in IXMLDOMElement ??
My program is:
extern CComQIPtr<IXMLDOMElement> elem;
ASSERT(elem); // this is a valid element.
HRESULT hr = elem->setAttribute(name, value); // why it return S_FAIL ???... more >>
|