What I ended up doing was requiring the site to POST the data to me (instead of XML, I was getting goofy BinaryRead errors), and I included my example.asp script in the target.asp script.
target.asp:
if request.querystring("externalSite") = 1 then
' example.asp now just does data validation...
that's the thing - it is never getting to target.asp. the HTML from example.asp is what's being returned to the calling site.
i need the form to execute at the server and return the result of target.asp.
unless, of course, there's another way to get this done. :)
sorry, i realize now what you're asking. :(
i replaced your pattern with:
objRegEx.Pattern = "a"
and it didn't work. i'm with you...not sure what's up.
it's not working the way i expected....
** incoming xml stream **
<?xml version="1.0">
<root>
<userID>xxxx</userID>
</root>
the XML is posted to example.asp
** example.asp **
' parse incoming XML
set objXML = Server.CreateObject("Microsoft.XMLDOM")
objXML.async=false
objXML.load(request)...
I was wondering if someone could help me out...
I have an existing ASP file that uses Request.Form() data extensively. I'm writing an intermediate file because I need to tie in the ability to receive external XML data (via POST), parse it, then tie it to Form data objects so that the existing...
I think I've got some more info to share.
what works:
logging onto production server as admin, using a browser to hit the target URL
what doesn't work:
using the ASP file from my home computer
My hunch is that since I can log onto the server as admin and hit the site via the web browser, but...
If I ever have a bad SQL statement (errors on dbConnection.Execute strSQL line), I always add the debug line that Sheco showed - that will usually show you what's wrong right away.
If you still don't see it, copy the query, go into Query Analyzer, and paste it.
I've looked around, but haven't found much info on using digital certificates in ASP. My situation - I need to develop an interface to a remote server. They've issued a digital cert (a .p12 file) and I've installed it.
I can put a URL into a browser on the production server -...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.