RE: xmlhttp & VFP

2006-07-24 Thread Aida I . Rivera-Benítez , MSMIS
] [mailto:[EMAIL PROTECTED] On Behalf Of Andy Davies Sent: Sunday, July 23, 2006 1:22 PM To: [EMAIL PROTECTED] Subject: RE: xmlhttp & VFP >Using object Microsoft.xmlhttp vs. MSXML2 didn't make any difference. No I thought it wouldn't >The results were: >202 >"I

RE: xmlhttp & VFP

2006-07-24 Thread Andy Davies
Doh! I just tried the obvious and put: https://www.clearinghouse.com/hipaa/Get271.asp into a browser window - I get 'unable to access server'! Andrew Davies  MBCS CITP   - AndyD    8-)# ** This email and any files transmit

RE: xmlhttp & VFP

2006-07-23 Thread Andy Davies
>I get an HTML server response as follows:... looks like a standard error page - paste it into a .htm file and open it in a browser. also try: lcURL = "https://www.clearinghouse.com/hipaa/Get271.asp"; lcFile = FILETOSTR("c:\temp\eligblty.txt") && make sure this file exists loXmlHttp = NEWOBJECT(

RE: xmlhttp & VFP

2006-07-23 Thread Andy Davies
>Using object Microsoft.xmlhttp vs. MSXML2 didn't make any >difference. No I thought it wouldn't >The results were: >202 >"Invalid path or file name" >.NULL. >.NULL. >.NULL. >.NULL. >.NULL. > >Hope this means something to you. sorry I don't see how you could get those results from my code: is th

RE: xmlhttp & VFP

2006-07-22 Thread air
Many thanks to Andy, Sam and Tracy!!! I got pass the username and password part. Moving ahead, now am receiving an HTML response from the server. The piece code looks like this: lcParametros = "Username=" + lcUsuario + "&" + "Password=" + lcPassword lcURL = "https://www.clearinghouse.com/hipaa/

RE: xmlhttp & VFP

2006-07-22 Thread Aida I . Rivera-Benítez , MSMIS
vies Sent: Thursday, July 20, 2006 12:45 PM To: [EMAIL PROTECTED] Subject: RE: xmlhttp & VFP >Not yet any suggestions? >AiR Yes , first try exactly this: CLOSE ALL CLEAR ALL RELEASE ALL lcURL = "https://www.clearinghouse.com/hipaa/Get271.asp"; loXmlHttp = NEWOBJECT( "Micro

RE: xmlhttp & VFP

2006-07-21 Thread Andy Davies
I said: > then repeat but with: > ?loXmlHttp.open("POST",lcURL,.F.,"","") I should have added: ... ?loXmlHttp.send("") Andrew Davies  MBCS CITP   - AndyD    8-)# ** This email and any files transmitted with it are confiden

RE: xmlhttp & VFP

2006-07-20 Thread Andy Davies
>Not yet any suggestions? >AiR Yes , first try exactly this: CLOSE ALL CLEAR ALL RELEASE ALL lcURL = "https://www.clearinghouse.com/hipaa/Get271.asp"; loXmlHttp = NEWOBJECT( "Microsoft.XMLHTTP" ) ?loXmlHttp.open("POST",lcURL,.F.,"GUEST","") ?loXmlHttp.send("") =AERROR(ae) DISPLAY MEMORY LIKE ae

RE: xmlhttp & VFP

2006-07-20 Thread Tracy Pearson
The object to create is MSXML2.XMLHttp not Microsoft.XMLHttp Tracy -Original Message- From: Aida I. Rivera-Benítez Sent: Thursday, July 20, 2006 10:27 AM Subject: RE: xmlhttp & VFP Not yet but I see something different in your post I haven't tried yet. I let you know if it wo

RE: xmlhttp & VFP

2006-07-20 Thread Tracy Pearson
What error are you getting? Tracy -Original Message- From: Aida I. Rivera-Benítez Sent: Thursday, July 20, 2006 10:26 AM Subject: RE: xmlhttp & VFP Not yet any suggestions? AiR ___ Post Messages to: ProFox@leafe.com Subscrip

RE: xmlhttp & VFP

2006-07-20 Thread Aida I . Rivera-Benítez , MSMIS
m: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tracy Pearson Sent: Wednesday, July 19, 2006 12:34 PM To: [EMAIL PROTECTED] Subject: RE: xmlhttp & VFP Did you get this working? It's bugging me. lcparametros = "Username=" + lcUsername + "&"

RE: xmlhttp & VFP

2006-07-20 Thread Aida I . Rivera-Benítez , MSMIS
sday, July 19, 2006 12:34 PM To: [EMAIL PROTECTED] Subject: RE: xmlhttp & VFP Did you get this working? It's bugging me. lcparametros = "Username=" + lcUsername + "&" + "Password=" + lcPassword lcURL = "https://www.clearinghouse.com/hipaa/Get

RE: xmlhttp & VFP

2006-07-19 Thread Tracy Pearson
open("POST",lcURL + "?" + lcparametros,.F.) loXmlHttp.send(lcFile) Tracy -Original Message----- From: Aida I. Rivera-Benítez Sent: Tuesday, July 18, 2006 12:07 PM Subject: RE: xmlhttp & VFP Yes, it fails. AiR Aida I. Rivera-Benítez, MSMIS AiR Information Systems, I

RE: xmlhttp & VFP

2006-07-18 Thread Aida I . Rivera-Benítez , MSMIS
2006 11:58 AM To: [EMAIL PROTECTED] Subject: RE: xmlhttp & VFP Even this way fails? lcURL = "https://www.clearinghouse.com/hipaa/Get271.asp"; loXmlHttp = NEWOBJECT( "Microsoft.XMLHTTP" ) loXmlHttp.open("POST",lcURL,.F.,lcUsername,lcPassword) loXmlHttp.send(

RE: xmlhttp & VFP

2006-07-18 Thread Tracy Pearson
Benítez Sent: Tuesday, July 18, 2006 11:51 AM Subject: RE: xmlhttp & VFP Yes I tried that like: lcparametros = "Username=" + lcUsername + "&" + "Password=" + lcPassword + "&" + lcFile lcURL = "https://www.clearinghouse.com/hipaa/Get

RE: xmlhttp & VFP

2006-07-18 Thread Aida I . Rivera-Benítez , MSMIS
ion, as per the specs for the service I use. If the specs Aida has needs to send the username and password as parameters in the url, they should be added there, instead of being passed into the method. Tracy -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EM

RE: xmlhttp & VFP

2006-07-18 Thread stephen . russell
> From: Aida I. Rivera-Benítez, MSMIS <[EMAIL PROTECTED]> > Date: Tue, July 18, 2006 7:54 am > To: > > Do you mean IE 7? Since I have IE 7 installed could be it is somehow > blocking > what I'm sending? interesting... No the patch goes back to IE6 I believe. It's a security issue that they wer

RE: xmlhttp & VFP

2006-07-18 Thread Andy Davies
Stephen Russell said "I think that a security patch to IE has STOPPED this functionality of PW & ID??? " iirc it stopped the use of (a fairly rare) uid/pwd as part of url syntax, not the xmlhttp use afaik (you would have to be able to specify the info somewhere). Aida should check which syntax her

RE: xmlhttp & VFP

2006-07-18 Thread Tracy Pearson
, they should be added there, instead of being passed into the method. Tracy -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Tuesday, July 18, 2006 10:46 AM To: [EMAIL PROTECTED] Subject: RE: xmlhttp & VFP > From: Andy

RE: xmlhttp & VFP

2006-07-18 Thread Aida I . Rivera-Benítez , MSMIS
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Tuesday, July 18, 2006 10:46 AM To: [EMAIL PROTECTED] Subject: RE: xmlhttp & VFP > From: Andy Davies <[EMAIL PROTECTED]> > yes, if the parameters are for the open() - the original question sor

RE: xmlhttp & VFP

2006-07-18 Thread stephen . russell
> From: Andy Davies <[EMAIL PROTECTED]> > yes, if the parameters are for the open() - the original question sort of > implied they were url parms > - Oh, and Tracy's suggestion also seems to work > > lcURL = "https://www.clearinghouse.com/hipaa/Get271.asp"; > loXmlHttp = NEWOBJECT( "Microsoft.XML

RE: xmlhttp & VFP

2006-07-18 Thread Andy Davies
Tracy Pearson said: > With the Open method, the username and password are separate parameters: > http://tinyurl.com/f4gnb see the method "open > (ServerXMLHTTP/IServerXMLHTTPRequest)" yes, if the parameters are for the open() - the original question sort of implied they were url parms - Oh, and Tr

RE: xmlhttp & VFP

2006-07-18 Thread Aida I . Rivera-Benítez , MSMIS
70152 San Juan PR 00927-0152 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tracy Pearson Sent: Tuesday, July 18, 2006 9:36 AM To: [EMAIL PROTECTED] Subject: RE: xmlhttp & VFP With the Open method, the username and password are separate parameters:

RE: xmlhttp & VFP

2006-07-18 Thread Tracy Pearson
With the Open method, the username and password are separate parameters: http://tinyurl.com/f4gnb see the method "open (ServerXMLHTTP/IServerXMLHTTPRequest)" Tracy -Original Message- From: Aida I. Rivera-Benítez Sent: Monday, July 17, 2006 5:20 PM Subject: xmlhttp & VFP I'm working on

Re: xmlhttp & VFP

2006-07-18 Thread Andy Davies
try: + "Password=" instead of: + "Password =" and just possibly lcParametros = "?Username=" + ... Andrew Davies  MBCS CITP   - AndyD    8-)# ** This email and any files transmitted with it are confidential and intended