How to catch an exception thrown by MSXML?
Tue, 30 Sep 2008 10:54:05 -0700
Consider this function:
BOOL GetSingleNodeV(const MSXML2::IXMLDOMDocumentPtr pXMLDoc, const CString
&strPath, CString &StrValue)
{
BOOL bRetCode=FALSE;
BSTR bstrQstr = strPath.AllocSysString();
IXMLDOMNodePtr o;
o = pXMLDoc->selectSingleNode( bstrQstr);
if (o!=NULL)
{
HRESULT hr=o->get_text(&b ...
|
xml validation
Mon, 29 Sep 2008 13:09:51 -0700 (PDT)
Hi
I've got a xml file and xsd with only one namespace -
xmlns:media="http://search.yahoo.com/mrss". When I'm getting the rss
feed for example from Youtube there're also others namespaces such as
xmlns:atom or xmlns:yt. When I'm trying to validate this Xml with my
xsd the validationeventhandler show me only the ...
|
apply xsl on xml to generate sql
Sun, 28 Sep 2008 17:47:39 -0700 (PDT)
Hi All,
I have this XML files here:
<?xml version="1.0" encoding="utf-8">
<?xml-stylesheet type="text/xsl" href="TimesheetSQLScript.xsl"???>
<myfields>
<timesheetid>
<companycode>CCCRM</companycode>
<employee>Adrian</employee>
<weekpick>2008-09-15</weekpick>
...
|
XML Shareware
Fri, 26 Sep 2008 08:36:04 -0700
Is there any free XML software out there which enables you to view XML in an
orderly fashion???
Thanks in advance for your help.
PSULionRP ...
|
Search Companion Is Incredibly Slow
Thu, 25 Sep 2008 12:55:01 -0700
My dearch feature for finding files on the hard drives is running so slowly
that it might as well not be running at all. What are things I can do speed
it up. I'm running Windows XP SP 3. Thanks so much for your help! ...
|
MSXML Handle Leaks
Mon, 22 Sep 2008 06:43:52 -0700
I have a Windows service that exposes a COM object that accepts requests
defined as XML documents - a sort of propretry SOAP I guess.
Anyway, the COM method signature looks like this:
HRESULT Server::Execute(BSTR in, BSTR* out)
{
/* ... */
}
The first thing I do is turn the string into an XML docu ...
|
Is there no resolution to this? IFRAME ignores marginwidth attribu
Mon, 22 Sep 2008 06:05:01 -0700
Is there no resolution to this? My IFRAME completely ignores the attribute
marginwidth="0" just because it's partly XML(with xslt in a separate file),
partly Classic ASP and not partly HTML, partly ASP as it was before.
<IFRAME SRC="sometable.asp" id="iframe" onload="resolveAccessDifferences();"
WIDTH=779 H ...
|
|
|
IXMLHTTPReuest Problem
Sat, 20 Sep 2008 00:25:00 -0700
Hi all,
I have developed an C++ application with Visual Studio 2005 and in them i
want save some files in a remote server using IXMLHTTPRequest component.
usually before save the file, i read the directory tree in remote server and
user can select the right destination directory and often everything is OK
...
|
Dynamic loading MSXML
Tue, 16 Sep 2008 05:48:01 -0700
hi,
Is it possible to dynamic link MSXML to the application?
...
|
Error while trying to validate a schema - posting again
Fri, 12 Sep 2008 14:28:42 -0700 (PDT)
Hi
the previous post got messed up, posting again:
Dim oSettings As New XmlReaderSettings
oSettings.ValidationType = ValidationType.Schema
oSettings.ValidationFlags =
XmlSchemaValidationFlags.ProcessInlineSchema
Dim xmlr As XmlReader
xmlr = XmlRe ...
|