Click here to Skip to main content
15,885,182 members
Home / Discussions / XML / XSL
   

XML / XSL

 
AnswerRe: name() function fails in MSXML Pin
Stone Free12-Nov-08 7:22
Stone Free12-Nov-08 7:22 
GeneralRe: name() function fails in MSXML Pin
led mike12-Nov-08 7:29
led mike12-Nov-08 7:29 
GeneralRe: name() function fails in MSXML [modified] Pin
Stone Free13-Nov-08 0:56
Stone Free13-Nov-08 0:56 
GeneralRe: name() function fails in MSXML Pin
led mike13-Nov-08 6:54
led mike13-Nov-08 6:54 
GeneralRe: name() function fails in MSXML [modified] Pin
Stone Free13-Nov-08 7:11
Stone Free13-Nov-08 7:11 
GeneralRe: name() function fails in MSXML Pin
led mike17-Nov-08 4:55
led mike17-Nov-08 4:55 
AnswerRe: name() function fails in MSXML Pin
George L. Jackson13-Nov-08 8:57
George L. Jackson13-Nov-08 8:57 
QuestionRetrieve Data from another webpage besides XML Pin
Bad Programmer10-Nov-08 21:32
Bad Programmer10-Nov-08 21:32 
Hi,
Im trying to send a XML string to a differet asp page and get the response from it.

'strFileName = an XML file with extension .txt
My Code sample
<pre>Set objXMLHTTP = Server.CreateObject("MSXML2.ServerXMLHTTP")
Set fsoFileSystem = createobject("scripting.filesystemobject")
set fsoFile = fsoFileSystem.OpenTextFile(strFileName,ForReading)
'Read the file into a variable
strACORDXML = fsoFile.ReadAll
fsoFile.Close
set fsoFile =Nothing
objXMLHTTP.open "POST", strURL, False
'Set the option to ignore SSL cert errors
'13056 is SXH_OPTION_IGNORE_SERVER_SSL_CERT_ERROR_FLAGS
objXMLHTTP.setOption 2, 13056
'Set the HTTP headers
objXMLHTTP.setRequestHeader "MIME-Version", "1.0"
objXMLHTTP.setRequestHeader "Content-Type", "Multipart/Related; boundary=MIME_boundary;"
'Send the XML string
objXMLHTTP.send (strACORDXML)
'Get the response
strResponse = objXMLHTTP.responseText </pre>

If I used MSXML2.ServerXMLHTTP object, it gives me time out error:
msxml3.dll error '80072ee2'
The operation timed out

Actually both webpages that's communicating are hosted at the same machine. The main site (ex. aa.domain.com) points to particular folder under it, while another one (ex. bb.domain.com) points to another folder which is two levels
up to the first one.

Please help!!

Bad Programmer

AnswerCross Post Pin
led mike12-Nov-08 4:35
led mike12-Nov-08 4:35 
GeneralRe: Cross Post Pin
Bad Programmer14-Nov-08 8:11
Bad Programmer14-Nov-08 8:11 
QuestionI need to know xml tags for some formats in word2007 Pin
hatan868-Nov-08 17:09
hatan868-Nov-08 17:09 
QuestionRe: I need to know xml tags for some formats in word2007 Pin
led mike12-Nov-08 4:33
led mike12-Nov-08 4:33 
Questionwhat is the benefit of schema over DTD ? Pin
Ahmed R El Bohoty7-Nov-08 8:47
Ahmed R El Bohoty7-Nov-08 8:47 
AnswerRe: what is the benefit of schema over DTD ? Pin
led mike12-Nov-08 4:32
led mike12-Nov-08 4:32 
QuestionXML Innertext Add's all my nodes! What am i doing wrong? Pin
MegaBlasterX5-Nov-08 23:16
MegaBlasterX5-Nov-08 23:16 
AnswerRe: XML Innertext Add's all my nodes! What am i doing wrong? Pin
led mike6-Nov-08 4:30
led mike6-Nov-08 4:30 
AnswerRe: XML Innertext Add's all my nodes! What am i doing wrong? Pin
leejs4136-Nov-08 14:27
leejs4136-Nov-08 14:27 
QuestionQuestion about Convert XML to DataTable Pin
leejs4135-Nov-08 15:10
leejs4135-Nov-08 15:10 
QuestionProblems with XSL Patterns Pin
saanj5-Nov-08 0:10
saanj5-Nov-08 0:10 
QuestionUsing xs:Pattern like sql "Like" statement Pin
saanj4-Nov-08 23:45
saanj4-Nov-08 23:45 
Questionwant to see "&lt;" and "&gt;" instead of "&gt" and "&lt" Pin
idoyohanan4-Nov-08 1:19
idoyohanan4-Nov-08 1:19 
AnswerRe: want to see "&lt;" and "&gt;" instead of "&gt;" and "&lt;" Pin
harold aptroot7-Nov-08 9:17
harold aptroot7-Nov-08 9:17 
QuestionHow to handle fixing XML validation errors in C#.NET? Pin
ritatx253-Nov-08 8:20
ritatx253-Nov-08 8:20 
AnswerRe: How to handle fixing XML validation errors in C#.NET? Pin
led mike4-Nov-08 4:45
led mike4-Nov-08 4:45 
GeneralRe: How to handle fixing XML validation errors in C#.NET? Pin
ritatx254-Nov-08 6:26
ritatx254-Nov-08 6:26 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.