all groups > dotnet xml > august 2003 > threads for august 15 - 21, 2003
Filter by week: 1 2 3 4 5
NEWBIE: XML in VB.NET
Posted by kuya789 NO[at]SPAM yahoo.com at 8/21/2003 10:58:41 PM
I need to make a script that reads the info inside a specific tag.
for example the xml file looks like this
<book genre="novel" publicationdate="1967" ISBN="0-201-63361-2">
<title>The Confidence Man</title>
<author>
<first-name>Herman</first-name>
<last-name>Melville<... more >>
Reading and Iterating through an XSD Schema?
Posted by Cy Huckaba at 8/21/2003 6:01:11 PM
I have been looking around for a sample on how to read an XSD schema and iterate
through the elements to display them.
I am working in VB.Net and I have looked at all of the docs on msdn and can find
plenty of samples on how to read it in and then write it write back out...with
no manipulation... more >>
How to get elements from XML using DOM in Javascript
Posted by Jim Mitchell at 8/21/2003 2:42:23 PM
I am getting an error...
elem is null or not an object using the following Client side javascript.
Can someone give me some help? Thanks in advance.
<XML ID="PB">
<ProductItem>
<Product ID="Adhesive">
<ItemType>Machine</ItemType>
</Product>
</Pro... more >>
Writing to file mangles special characters
Posted by rbowley NO[at]SPAM lycos-europe.com at 8/21/2003 9:58:38 AM
A guy called Yuri brought this up a while ago but no one got back to
him and now I have the same problem.
I have an xml file which contains special characters such as é
etc. The DTD declares these enitities and assigns them the correct
unicodes (such as é)
Now, when I've loaded ... more >>
edit xml
Posted by Heinz Willi Wiedow at 8/21/2003 9:11:27 AM
I'm developing smaller Websites with Asp.net and C#.
For some Contents I want to develop a management system.
At the moment a think about managing the contents via xml-files.
For example the news section maybe has not more than 4 entries per page.
And the complete application has abo... more >>
How to write XML to the rendered HTML page.
Posted by Jim Mitchell at 8/20/2003 6:22:08 PM
In code behind, I generate a string that I would like to have rendered to my
page so that my javascript can load it into a client side javascript xml
document.
If I use repsonse.write(txml), it puts it outside of the body of the
document. I also tried assigning it to a label.text, but the jav... more >>
Dataset to XMLDocument and Vice versa
Posted by Matt M at 8/20/2003 6:08:10 PM
Hey,
I'm trying to pass an XML document from a webservice to another assembly.
What I'd like to do is pass either an XML document or a dataset, so I figure
that if I can turn the Dataset into an XMLDocument, then in my assembly,
return that XMLDocument back to the dataset (if it is one), I w... more >>
xml schema in wsdl
Posted by Suresh at 8/20/2003 4:48:42 PM
Hello All,
I have a schema ( XSD) as follows.
- <xs:complexType name="Tzp3wsXSPOP3MessageArray">
- <xs:complexContent>
- <xs:restriction base="soapenc:Array">
<xs:sequence />
<xs:attribute ref="soapenc:arrayType"
n1:arrayType="ns1:Tzp3wsXSPOP3Message[]"
xmlns:n1="http://schemas.xmls... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
NEWBIE - Do I get it now.
Posted by Jim Mitchell at 8/20/2003 11:34:18 AM
Looking for the general strategy for using ASPX, XML, Javascript,
Code-behind
1) Use Code-Behind and response.write to build a few XML data islands.
2) When appropriate, use code behind.
3) Add HTML Controls when I do not want the scren to postback.
4) Keep an html form hidden on the page and... more >>
USING XML TO FILL LINKED DROPDOWN LIST
Posted by Jim Mitchell at 8/20/2003 7:56:36 AM
My Goal is to have a dropdown (DL2) filled from the selectIndexChange event
of a primary dropdown (DL1). These are picklists that will be selected
frequently.
Can someone recommend a strategy that will not require the screen to refresh
every time.
1) If I use HTML dropdown lists, how do I ... more >>
.NET and schemas
Posted by Antonio Collins at 8/20/2003 6:57:20 AM
Does anyone know of a site that details the variances
between .NET's schema implementation and other tools? I
have a dataset and schema that validates perfectly via
MSXML4 but fails validation in .NET. I am positive the
dataset is correct since if I misname attributes/elements,
or rearra... more >>
XPath woes [vb.net]
Posted by ArmsTom at 8/19/2003 7:37:22 PM
I've been playing around with xml for a couple days, so I have no idea what
I'm doing yet :). Be gentle.
Ok, here's what I have...
================================
Do while xmlIter_Records.MoveNext
Dim i As Integer = xmlIter_Records.Current.GetAttribute("id", "")
Dim xmlIter_MovieI... more >>
SoapExtension Sample
Posted by Joe at 8/19/2003 2:16:46 PM
Hi,
I am attempting to build a web service that uses a custom
soap extension. In an effort to learn about soap
extensions, I developed a simple test web service. I
read the article "Altering the SOAP Message Using SOAP
Extensions" and incorporated the sample code given into
my web ser... more >>
serialization of XML objects....
Posted by Jim at 8/19/2003 10:25:22 AM
Can I serialize an System.Xml.XmlNode object or is better to use the
'InnerText' method to extract the node defintion?
Cheers in Advance
Jim
... more >>
Problems with Xpath when adding namespace
Posted by David Williams at 8/18/2003 11:59:29 AM
I have a simple XML file that I have been using:
<component name="test">
<class name="class"/>
<component>
Up till now, the Xpath of "//component[@name="test"]/class[@name="class"]"
worked well to select the <class> tag.
Recently we added a namespace to the <component> tag:
<compo... more >>
Dynamic XSL transformation
Posted by Philippe.graca NO[at]SPAM voila.fr at 8/18/2003 10:35:52 AM
Hi,
I'm facing a annoying problem.
In the old ASP times, I was able to construct dynamically an XSL file
and then apply it to my XML file to create the HTML output.
Today, with the .NET framework, I can't find how to do this.
Of course, if my XSL file is already existing in my disk, it's easy
... more >>
How to specify proxy/authority for XmlDocument.Load()
Posted by Manfred Braun at 8/17/2003 6:45:17 PM
Hi All,
I am trying to access xml-files in the internet from my intranet-page.
Making XmlDocument.Load() calls internally works fine, but not so to the
internet. I think the calls are failing, because we use a proxy-server.
Can I specify a specifix proxy in the call and/or in the
configurat... more >>
property serialisation
Posted by erez shalom at 8/17/2003 5:39:35 PM
Hi ,
i have :
public classA
{
private int id;
public int id{get...,set....)
}
i want to serialize the field id,but i don't want to make him public(it
works like that way).
in the msdn it noted that public properties can be serialize too,but when i
put the[xmlattribute] with the pr... more >>
Using Docbook with Xml-Control
Posted by Otmar Ganahl at 8/15/2003 11:10:56 PM
Hi!
In my application I transform a docbook file to a html
view using the webcontrol "Xml" (with a xsl).It works
fine, except the using of the tag "fileref" in the
docbook-file will cause an exception:
_ctl1_DesktopThreePanes1_ThreePanes__ctl3_xml1: Failed!
Object reference not set to an ... more >>
loading XML into collection slow
Posted by Kurt Bauer at 8/15/2003 1:34:40 PM
I have an ASP group calendar application which pulls calendar data from
Exchange via webdav into an XML string. I then loop the XML nodes to
populate a collection of appointments. Finally I use the appointment
collection to populate the calendar control. The performance getting the
XML data i... more >>
|