| Thread | Last Post | Replies |
|
| XSD.EXE issue | 31 Jan 2006 22:50 GMT | 1 |
I was trying to import this schema using XSD.EXE tool. After the import into a C# file, i created an object of type "result" and tried to serialize it to XML file. This causes an exception to be thrown. Please could some one let me know what the issue is?
|
| xsl magic | 31 Jan 2006 17:18 GMT | 2 |
I have an xml document containing properties for a group of hyperlinks. Currently my xsl:stylesheet contains code as follows: <a href="{concat(/links/@webroot,@url)}" title="My ToolTip Here"> <xsl:value-of select="@name"/></a>
|
| Unknown error in XmlSerializer | 31 Jan 2006 16:01 GMT | 1 |
when calling the XmlSerializer constructor, I get the following error: Top Level Exception Type: System.IO.IOException Message: Unknown Error (-1).
|
| How to change attributes in an xml-file | 31 Jan 2006 15:11 GMT | 2 |
I wrote a small c# programm, which generates an xml-string by serializing a class and sends it to a server. Now I want to change some values in that xml-string. The only way for me to do that might be, to deserialize it, change the
|
| Complex Type Collision with XSD.exe | 31 Jan 2006 13:55 GMT | 2 |
I am having difficulty coming up with an elegant solution to a problem that I am having. I have a web service that processes different types of requests and return the appropriate response. Each request and response type has its own schema, and requests and responses are in
|
| Compare two Schemas | 30 Jan 2006 22:00 GMT | 2 |
How can I compare or visually check the differences between two XML schemas. Let us say I have two files like "version_1.xsd" and "version_2.xsd" , how would I programtically find out the differences between these two XSD files?. Is there a way to do this in .NET?
|
| how to add namespace prefix declarations to a new XmlDocument | 30 Jan 2006 15:05 GMT | 3 |
I am creating a new XmlDocument from scratch, but I can't see how I can make a namespace declaration and associate a prefix with it. For instance in the following example: XmlDocument doc = new XmlDocument();
|
| How do I display images from an XML doc that are in this format>> | 30 Jan 2006 11:18 GMT | 1 |
The xml doc has pictures but in the format of a very long character string. I'm not sure what this format is called so I do not know what type of converter I should be looking for. May have something to do with base64. I want to read it from the xml doc and display it in a ...
|
| Strange error validating XML against XSD | 29 Jan 2006 08:31 GMT | 1 |
I've developed a .NET C# web service; which has one method named, let's say, upload_your_data. This method has one parameter ( string your_data). The value that this parameter will actually have is the content of a XML document. This data will be processed and check for a ...
|
| Standard datetime format? | 27 Jan 2006 14:54 GMT | 1 |
I have an XML web service which accepts a few datetime values. We have some clients using it who are using different systems (java etc) and they need to know what the standard format for a datetime node should be? Have tried DD/MM/YY but no luck. Anybody know?
|
| XML with no schemaLocation | 27 Jan 2006 13:47 GMT | 1 |
I have some XML instance documents that specify schemas via the xmlns attribute. I need to load these documents (with XmlDocument) and have them verified against the XSD's that are mentioned.
|
| Problem element <NewDataSet> with writing xml from a dataset | 27 Jan 2006 10:55 GMT | 3 |
I have a big problem i have a dataset that I would like to write to a xml file. I don't have any problem doing that but the xml starts and ends with this tag: <NewDataSet>
|
| XSD Schema - nillable fields in keyref | 27 Jan 2006 10:07 GMT | 2 |
I run into a problem defining a XSD schema with KEYREF references. Is it possible to use KEYREF with nillable fields? Just like a database where a FK could be null. In the example below the tag <Owner> is nillable
|
| Querying the last 2 ids for displaying | 27 Jan 2006 07:45 GMT | 1 |
How can pull the last 5 ids in a list for displaying? Display.xsl <xsl:template match="/"> <xsl:for-each select="document(/Filings/File/@href)/DataCollected">
|
| String function to end at a specific point | 26 Jan 2006 23:18 GMT | 8 |
I have this portion of code: <xsl:value-of select="substring(Body,1,400)" disable-output-escaping="yes" /> Is it possible to code it to stop when it reads the first </p> instead
|