all groups > dotnet xml > november 2005 > threads for november 29 - 30, 2005
Filter by week: 1 2 3 4 5
ANNOUNCING: MSDN Forums for .NET and XML
Posted by Chris Lovett at 11/30/2005 11:07:24 PM
You can now discuss issues regarding processing of XML, XSLT and/or XSD
using .NET frameworks and the XML Tools in Visual Studio 2005 using the new
online discussion forum located at:
http://forums.microsoft.com/msdn/showforum.aspx?forumid=38&siteid=1&PageID=0
Cool features include:
- R... more >>
Web services, SOAP and harness applications
Posted by Tarun Mistry at 11/30/2005 12:24:57 PM
Hi all, im pretty new to .NET development and have some question I hope some
nice people here can help me with.
Just to point out im not new to programming, just .NET, as such some of the
concepts and libraries that are available for use may need to be clarified.
Ok, my problem.
I have ... more >>
How to serialize number to specific format
Posted by eSapient at 11/30/2005 12:24:04 PM
In the code I use for serialization/deserialization is the following:
[XmlElementAttribute(Form=XmlSchemaForm.Unqualified)]
public Decimal valArcBegAngle
{
[return: MarshalAs(UnmanagedType.Currency)]
get {return m_valArcBegAngle;}
[param: MarshalAs(UnmanagedType.Currency)]
s... more >>
How to handle empty datetime if read by ReadXML
Posted by GossTremontTech at 11/30/2005 7:52:15 AM
Hi,
We have a webservice that generates an xml string that has a empty/null
datetime field (<OurDate></Ourdate>). When we use ReadXML read in the
serialized string we get the error:
"string not recognized as a valid datetime"
Our code looks like this:
Dim sReader As New Str... more >>
Can't aquire element's value if it hosts sub-elements
Posted by DesperateDan at 11/30/2005 4:37:52 AM
As the title say, I can't aquire element's value if it hosts
sub-elements.
Let me explain - My XML looks like this:-
<a>
<infill>xxxxxx</infill>
<SourceEndPoint>testdata
<EndPoint>
<AliasRef ref="lAlias120001">
<Qualifier><![CDATA[OrganizationNam... more >>
GridView, XML, and .NET 2005 Application
Posted by dm1608 at 11/29/2005 7:03:54 PM
Hello, I'm in the processing of learning .NET 2005 and an trying to rewrite
a simple command line application that I wrote a couple years ago. I have
the following requirements:
1) Read an XML file that I create with a list of .EXE and .DLL files.
2) Scan a directory based on the path sto... more >>
Attributes for XML serialization
Posted by Jeff Connelly at 11/29/2005 4:43:51 PM
I'm using the XML attribute (.NET meaning) XMLArray on an array in a class,
to serialize it. What can I do to specify that I want to serialize an XML
attribute (regular XML meaning) for the element that is created?
e.g.
[XmlArray("namedUsers")]
[XmlArrayItem("user",typeof(User))]
public... more >>
XSL Sort
Posted by aerotops at 11/29/2005 12:22:30 PM
Hi,
I am trying to sort something using XSLT. I am going to give examples.
Original.xml
<Root>
<Car>
<Name>Ford</Name>
<DealerRating>3</DealerRating>
<MyRating>1</MyRating>
</Car>
<Car>
<Name>Honda</Name>
<DealerRating>4</DealerRating>
<MyRating>5</MyR... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
xmlns:g - base.google.com namespace problem
Posted by Kal at 11/29/2005 10:33:49 AM
I found some sample code to construct an rss feed and am trying to modify it
to match Google's specs at: http://www.google.com/base/rss_specs.html, but
without knowing much about XML.
Their samples show the namespace declaration in the rss tag, I tried it both
ways with the same result.
It... more >>
|