all groups > dotnet xml > june 2006 > threads for june 22 - 28, 2006
Filter by week: 1 2 3 4 5
VS 2005 Com Interop Exception in Web Service
Posted by Richard Collette at 6/28/2006 2:00:02 PM
Hi,
I have a service, that runs perfectly when executed outside of the web
service environment. When called as a web service I get the exception
listed below sporadically. A call to the web method may succeed one time and
not another. I cannot find any reason why it would work one time... more >>
Insert / delete ?
Posted by Patrick at 6/28/2006 1:31:47 PM
Hi, im trying to first insert a node in the xml file and save it.
XmlDocument mDoc = new XmlDocument();
mDoc.Load("struct.xml");
XmlNode singleNode;
XmlNode newNode = mDoc.CreateNode(XmlNodeType.Element, "page", "");
XmlAttribute mAttr = mDoc.CreateAttribut... more >>
How do I parse an XML file
Posted by Jose Cintron at 6/27/2006 5:38:49 PM
The XML file looks something like this...
--- Start XML ---
<?xml version=3D"1.0" ?>
<VULNERABILITIES>
<PROGRAM_VERSION>0.0.1</PROGRAM_VERSION>
<CONTROL_VERSION>0.0.1</CONTROL_VERSION>
<VULNERABILITY>
<V_SHORT_NAME>SOMETHING</V_SHORT_NAME>
<V_LONG_NAME>SOMETHING... more >>
new xml file is larger than the original
Posted by dotnetnoob at 6/27/2006 12:24:01 PM
i'm working on a windows application that will edit and create xml files from
another application. the original file is 83k, the one created by my vb.net
program is 153k but all i add is a new xmlelement when i use the other
program and add a xmlelement is only increased the file to 85k. how c... more >>
XML merging
Posted by Sanjib Biswas at 6/27/2006 1:52:46 AM
Hi All,
I am looking for XML merging for the following scenarios. I want to =
load both the input files and show in the tree viewer and highlight the =
differences. Now its up to the user to select the correct node. Any non =
conflicting differences should be automatically merge onto the me... more >>
How to get needed data from XML document
Posted by Tony Girgenti at 6/26/2006 3:40:02 PM
Hello.
Using VS.NET 2003(VB), .NET Framework 1.1.4322, ASP.NET 1.1.4322, WSE2.0 on
a WinXP Pro Sp2 computer.
I need help trying to extract the "TruckName" data from this XML document
(at the end of this request). I want the data after the equal(=) sign. The
data is the InnerXml and the... more >>
single quote xml value
Posted by dotnetnoob at 6/26/2006 1:51:01 PM
EvtEnrollAttr.Value = "3748"
EvtEnrollElem.Attributes.Append(EvtEnrollAttr)
i need the attr value to be <stuff ID = '3748'> in single quote
how can i do that with visual basic.net?
thanks
... more >>
insert xml element in a speicific location
Posted by dotnetnoob at 6/26/2006 6:04:02 AM
let's say i have a xml file
<root>
<stuff id='1'>
<stuff1>
</stuff1>
</stuff>
</root>
how do i insert new <stuff2>element and atrribute after stuff1... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
SOAP, Web services and XML
Posted by Dave at 6/25/2006 11:58:17 AM
Hi all,
I very much hope you can help - i am sure there is a very simple
solution, but after days of scouring the net, i have come up blank.
Basically i am trying to access a web service provided by my till
operator to access product details. They have provided me with a
document on the se... more >>
Force the prefix of the document element
Posted by BizTalk Benjamin at 6/24/2006 3:40:02 PM
Hi, I have an XmlDocument loaded from a memory stream. I set the document
element prefix in this way
XmlElement e = xDoc.DocumentElement;
e.Prefix = "abc"
When i simply write the document element to the command line it shows the
prefix. However, it does not persist in the XmlDoc so when i... more >>
The correct way to set XSD namespaces?
Posted by BizTalk Benjamin at 6/24/2006 7:47:02 AM
Hi, I have created a set of schemas for messages that i need to exchange
between services. I set the targetNamespace ="http://mycompany/services/abc"
and the root elements have names like FindCustomerRequest,
FindCustomerResponse, CreateCustomerRequest and so on.
In Biztalk when a message ... more >>
Why does VS not format an XML document?
Posted by Randolph Neall at 6/23/2006 11:55:22 AM
I'm new to XML. I'm noticing that certain XML documents, when viewing XML
text, do not format in VS 2005. Instead, everything is rendered on one long
line. In Internet Explorer, the text formats fine. What do I need to do to
get VS to format XML text for me?
Thanks,
Randy Neall
... more >>
XSD help
Posted by Peter Morris [Droopy eyes software] at 6/23/2006 12:00:00 AM
Hi all
I have a config file like so
<config>
<optionSet1>
<option index="1" name="Set 1 index 1"/>
</optionSet1>
<optionSet1>
<option index="1" name="Set 2 index 2"/>
</optionSet1>
</config>
optionSet1-index1 can only have set values 1, 3, 5, 7
Ho... more >>
XML Config File
Posted by ccole at 6/22/2006 8:10:01 AM
I have about thirteen configuration files that are written in XML. I need to
be able to read and cross reference these files with each other. I have
already written an xsl translator but due to the large size of the file it is
very slow. I have also been unable to access some of the relatio... more >>
|