XMLDOM PROBLEM ON WIN2003
It works perfect on my Win xp machine but when i upload the page into my server which is win2003 it returns 0 What is the possible cause of it ? Code:
View RepliesIt works perfect on my Win xp machine but when i upload the page into my server which is win2003 it returns 0 What is the possible cause of it ? Code:
View RepliesI have some ASP pages(called dlls) running well on Win2000, but not Win2003.
Got "Permission deny" when called Server.CreateObject
The first page create a cookies. The second read the contet. If I browse the pages via IE6.0 the pages does not work. If I browse the pages via FireFox the pages work fine....
View Replies View RelatedI have moved an ASP application to Windows 2003 and I have problems as I am currently using an Access Database until I upgrade it.
However, I am getting the error:
Operation must use an updateable query.
I have had this before so this didn't bother me too much. I added my IUSR_WINSERVER2003 to the security tab of the folder containing the database and gave read/write permissions.
However, I am still getting the updateable query errors!
I even added the Everyone account temporarily to see if it made a difference - and I still get the error.
Is there something new in Win 2003 ? Can anyone help me?
We have a web application that calls a VB dll in one of the asp pages. It
works fine on the old NT server but does not display results on the Windows
2003 server (IIS 6?). Does anyone know where I might start trying to find
out why this is happening? We copied the web pages and registered the dll
on the new server. The call to the dll function returns a string and we
just display that string on the next asp page, but it does not show up. Is
this some sort of cache issue or ???
I am moved to WIN2003 Server, and the server admin is saying CDONTS is no more supportable on Win2003 I don't like the CDOSYS
and tell me in detail what I need to do to get the CDONTS on my win2003
I have an Excel file with one column of data. This excel file, I have saved it as an XML file. Now using the XMLDOM, I am trying to display the contents into a Textarea.
This is what I do in ASP code:
Code: ....
I'm parsing an XML document using the XMLDOM object in ASP. I am
running into a problem with a section formatted like this:
<MasterElement>
TitleOfElement
<Abbreviation>
TOE
</Abbreviation>
</MasterElement>
If I use node.text, I get TitleOfElement TOE. I need to seperate the
two but cannot find any reference that addresses this. Of course I can
manually parse using standard functions like InStr, but it seems like
there should be a more proper way to extract the data. Anyone run into
this?
I want to load some HTML which is in a ASP variable into an XMLDOM object but am having no success. All the examples I see point to loading documents from the filesystem using the .Load or .LoadXML methods.
Is what I want to do possible? Any examples?
I got a new server with Windows 2003 on. I moved a site that works fine from a Windows 2000 server. On many pages i get a convertion like this:
|Microsoft VBScript runtime error '800a000d'
|Type mismatch
|
|/test/test.asp, line 3
|
This is the code that i run to get the error:
|<%
| a = 1
| if a = 1 then response.write("a = 1")
|%>
|
It does work if i add "if cint(a) = 1 then...." but is it a way to make IIS6/ASP don't check the code so critical?
I'm in the process of 'trying' to write a very small CMS which will allow me update an existing XML script I have.
Unfortunately I just cannot get the script to work, my script falls over with an objRoot error when I try to set the objField using selectsinglenode. XML looks like this:
I have transformed some xml using xsl: Code:
xslProc.input = xmlDoc ' The xml to transform
xslProc.transform()
I now want to use the resulting xml output (the xsl transforms to a different grammer) to do some stuff before the whole lot (xml and stuff) is passed back to the page that called it (AJAX). How do i feed the transformed xml into xmldom, domdocument or what every is required for me to navaigate using xpath and so my stuff?
How can I select a comment node using selectSingleNode, sendo que selectSingleNode("#comment") don't works?
View Replies View RelatedI've had an ASP project dumped on me written in VBScript. I'm actually a
C#/ASP.NET developer and am struggling trying to find a way to sort the
result of a XPath query executed using SelectNodes? Code:
I have the following code which I try to load an xml file, but in browser, I
only get text value for each node, not whole xml string. I expect to see
something like:
<name firstName="betty" lastName="Smith">I am at home</name>
But I only see text "I am at home"
did I do something wrong?
Set xmlDom=CreateObject("Microsoft.XMLDOM")
XMLDom.async =False
xmlDom.load Server.MapPath("0925SelectTest.xml")
DataToSend = "xmlValue="& xmlDom.xml
Response.Write DataToSend
Response.End
I have a field type date in xml, loading with Microsoft.XMLDOM, how can I order by date? xml code:
<Root>
<Fields>
<Field Id="456955" Date="01/05/1956" />
<Field Id="159753" Date="21/06/1972" />
<Field Id="769513" Date="14/07/1932" />
</Fields>
</Root>
I have an XML string:
<?xml version="1.0" encoding="UTF-8"?>
<SSOUser><Status>FAIL</Status><Message>Unable to find session id of
1137018716939</Message></SSOUser>
That I am trying to retrieve the values between the tags for.
I want to get the value from:
<Status>FAIL</Status>
so I get the value "FAIL"
I am using the following code (and have tried MANY variations) to retrieve
the specific field values but I can not find out how to do this.
response.Write(xml.childNodes(1).text)
This writes the ENTIRE XML data to the screen. I want to get the above data
ONLY. I want to be able to do this ALL in ASP server side ONLY.
I've got an application setup that uses freightquote.com API to receive XML responses containing shipping information. A basic response example is as follows: Code:
View Replies View RelatedI'm getting this error where I hadn't had a problem before. Prior to getting the error, I did change settings on the default web site. Could that cause this problem? How do I fix it? I've stop and restarted the server and the computer. Still getting the error. Code:
View Replies View RelatedI've recently uploaded a site to a new ISP, which is on a Win2003 platform. I've had a problem in that the existing ASP scripts handling email form submissions all experience the following error:
Microsoft VBScript runtime error '800a0046' Permission denied
From what I can gather this is due to moving from Win2000 to Win2003, and specifically the problem lies in this line of code: ....