all groups > dotnet xml > april 2006 > threads for april 1 - 7, 2006
Filter by week: 1 2 3 4 5
XMLDocument serilization date format
Posted by RJA at 4/7/2006 2:52:01 PM
Hiyas,
Using VS .net 2003.
Setting up a Webservice that accepts 3rd party vendor designed XML requests
and returns a filled XMLDocument with response data.
Vendor XSDs were serialize into class objects to be used in the program.
EX: Used xsd.exe to turn VendorA_Request.XSD into VendorA_R... more >>
Create a sample XML data for XML Schema
Posted by Ganesh Muthuvelu at 4/7/2006 7:53:02 AM
Hello,
Let us say that I have a schema or complex type like this one below:
Is there a way programtically or a tool to create sample XML file/data for
the schema?. I have number of such complex tpyer/schemas for which I need to
create sample XMLs so I thought of doing it programatically.. An... more >>
Unable to validate data
Posted by Robbert van Geldrop at 4/7/2006 1:56:02 AM
Hello,
My site is randomly firing off a "ExceptionHttpException : Unable to
validate data. " error on some of its forms at the moment:
-------
HttpException : Unable to validate data.
--
It is the same issue as reported at:
http://www.devdex.com/asp/message.asp?p=1116&r=4791337
Thi... more >>
Unexpected WSE 2.0 errors in Event Log
Posted by Robbert van Geldrop at 4/7/2006 1:53:02 AM
Hello,
We run a very stable and well functioning ASP.Net 1.1 webservice using WSE
2.0 sp 3.
Every now and then the following error appears in the system event log:
HTTP/ASMX Message Receive Failure: System.Xml.XmlException: This is an
unexpected token. The expected token is 'EndElement... more >>
Problem restoring Exchange 2000
Posted by Robbert van Geldrop at 4/7/2006 1:49:02 AM
Hello,
I have a problem restoring Exchange 2000 files. Our software has an
interface to ESEBCLI2.dll for online backup and restore features. Everything
works fine with Exchange 2003 and also when backing up Exchange 2000, yet
restoring Exchange 2000 gives some problems:
A Store is restor... more >>
Create a single xml node
Posted by David Thielen at 4/6/2006 8:51:01 PM
Hi;
I need to be able to create a single xml node in utf-8 and do it efficiently
as this is called a lot (reason below).
What is the best way to do this? I need to end up with a string like "<node
attr1='dave'>hi there</node>" where &"<>' are all encoded and chars > 127 are
turned into u... more >>
XSLT for an xml with namespace
Posted by shalini22 NO[at]SPAM gmail.com at 4/6/2006 11:41:46 AM
HI
can anyone help me out with this, im a newbie to xml n stuff. i really
have tough time working on this .
Xml file:
<p:win32_Service xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://schemas.microsoft.com/wsman/2005/06/wmi/root/cimv2/win32_Service">
<p:AcceptPause>t... more >>
Trouble validating cXML documents with cXML.dtd using XmlValidatingReader
Posted by josh at 4/6/2006 8:41:11 AM
Hi,
[I just found this group. I had originally posted this in
microsoft.public.xml but figured this group was more appropriate.
Please excuse the cross-post.]
I am trying to validate cXML documents against cXML.dtd using the
XmlValidatingReader. If I set the XMLValidatingReader's Validati... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Need Help on Passing XML data to a webservice
Posted by SSS at 4/5/2006 11:25:52 PM
Hello there
I have to pass on some data to a webservice. I have the XML format with me. How is it passed usually? As a string or as an object?
If an object is used, what are the methods used for creating such object
Also would like to know how an XML file is received from a web service and how... more >>
custom XmlUrlResolver
Posted by pachyphloia at 4/5/2006 12:53:01 AM
I have a problem understanding what is happening when inheriting from
XmlUrlResolver.
Using standard settings (including the default XmlResolver) I can use a dtd
given in the doctype for validation without problems.
xml doctype:
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN"
"http://... more >>
XslTransform memory overload
Posted by arochax NO[at]SPAM gmail.com at 4/4/2006 8:30:04 AM
Hi.
I'm using XslTransform to transform a XML resulting of a Dataset into a
Excel spreadsheet.
But the object is not releasing its resources while transforming and
I'm getting OutOfMemory errors.
The memory consumed by the process exceeds the size of 306 MB and the
IIS process is recycled,... more >>
XMLTextWriter and SOAP
Posted by leonard.guillaume NO[at]SPAM gmail.com at 4/3/2006 8:45:13 AM
Hi guys,
I have a task to do where I need to write an XML file into SOAP format.
I use XMLTextWriter in order to write my strings to the XML file, but I
must convert somehow this xml into SOAP. How can I do that ? Is there a
way to do it without hardcoding SOAP attributes and elements ? As
ex... more >>
Traversing XSD
Posted by MMA at 4/3/2006 6:20:03 AM
Hi there,
Is there a way to traverse an XSD using XPath. My research indicates no
conventional way of doing it, but I was wondering if there was a work around.
Thanks for your help and time.... more >>
Howto select encoding ISO-8859-1
Posted by Michael H at 4/3/2006 2:40:02 AM
I'm would like to enconde my XML into ISO-8859-1, but I can't seem to find
howto. ANy suggestions?
StringWriter writer = new StringWriter();
XmlTextWriter xmlWriter = new XmlTextWriter(writer);
xmlWriter.Formatting = Formatting.Indented;
doc.Save(writer);
return writer.ToStr... more >>
XmlNode adds NamespaceURI
Posted by Vivek at 4/3/2006 12:00:00 AM
Hello,
I wish to copy an XmlNode in a string variable from a XmlDocument object.
But as I takeout this XmlNode, it adds the NamespaceURI. Why ? Could
somebody please help me ?
Vivek
... more >>
|