include document and concatanated id's
Mon, 07 Apr 2008 10:38:25 +0100
Hi,
I have the following:
<xsl:template match="parts">
<xsl:variable name="inc-url">
<xsl:value-of select="@url"/>.data
</xsl:variable>
<xsl:variable name="inc-doc" select="document($inc-url, .)" />
<xsl:for-each select="$inc-doc/*">
<xsl:copy-of select="." />
</xsl:for-each>
</xsl:template>
...
|
xs conditional schema
Sun, 6 Apr 2008 06:43:02 -0700 (PDT)
Hi,
could you tell me please is it possible to create a xs schema with
structure depending on attribute value ?
E.g.
<node1 attr="1">
<a> ... </a>
<b> ... </b>
</node1>
<node1 attr="2">
<c> ... </c>
</node1>
where inner node1 xml section can varry depending on attr value.
Thanks in advance ...
|
xml dom char 1 object required???
Sun, 6 Apr 2008 04:38:50 -0700 (PDT)
Hi i am usign teh following loop to go find a note vdn and get its
attribut value but i am getting "char 1 object required" what's wrong
with that piece of code???
Thanks
var m=xmlDoc.documentElement.childNodes;
for (i=0;i<m.length;i++)
{
Line 277: m=xmlDoc.getElementsByTagName("VDN")[i].attributes;
...
|
What is MSXML 6.0 SDK? does it work with Accces?
Thu, 3 Apr 2008 16:48:54 -0700 (PDT)
Dear All
Well, the question is in the tiltle
I download MSXML 6.0 SDK, I want to start to learn XML, but also I
want to know if this player will work in conjunction with Access 2002
& 2003
Thans in advace for any information you can provide me
Regards
Antonio Macias ...
|
What is the difference between MSXML 6.0 Parser (KB933579) and
Microsoft Core XML Services (MSXML) 6.0?
Wed, 2 Apr 2008 18:18:49 -0700 (PDT)
Dear All
Are complete different, nothing in common?
What in your Add/Remove Microsoft Core XML Services (MSXML) 6.0
shows ?
Thanks in advance for any information you can provide me
Regards,
Antonio Macias
...
|
Error with selectSingleNode in VBScript to VB6 convert
Wed, 2 Apr 2008 13:11:12 -0700 (PDT)
Hi everybody,
I need some assistance with the following VBScript. I need to convert
this into running under VB6 and has no idea as to why it keeps falling
oover on line no 5.
Would appreciate it if help could be given in this respect.
Thanks
----------------------------------------------------
1 Dim o ...
|
how to entity microsoft datatype ?
Thu, 3 Apr 2008 03:30:55 +0800
hi,
I like to use ms_datatype , but the xmlns string is too long , and making
the xml files huge.
So , I look for using ENTITY to reduce the size . I try the method below ,
but failed , can any body help me out ?
My try:
<?xml version="1.0" encoding="gb2312"?>
<!DOCTYPE root[
<!ELEMENT root ANY>
<!ENTIT ...
|
|
|
linked textboxes
Wed, 2 Apr 2008 12:08:03 -0700 (PDT)
Can anyone point me to a spec that shows the XML tagging for linked
textboxes? I've tried exporting documents with and without linked
textboxes to XML and I truly cannot see where the linking information
is encoded. Thanks --
--larry ...
|
Formatting: A line break before each attribute?
Mon, 31 Mar 2008 21:34:10 +0100
Hello,
I have to deal with Xml files which mainly consist of nodes which contain a
large number of attributes. I can manage to format these Xml files to
nicely indent each node, but all the attributes remain on the same
(extremely long) line as the node.
Does anyone know of a way I can automatically for ...
|
simple xml de-serializer test
Mon, 31 Mar 2008 04:40:01 -0700
Hi,
I am trying to read my xml file and output in console prompt.
I get the error message: "There is an error in XML document (2, 2)."
I'm not very sure what this message means. Any advice would be appreciated.
cheers
Andrew
code
====
static void Main(string[] args)
{
clsProduct p = new clsProduct( ...
|