Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Uploading file via HTTP
Message
General information
Forum:
Visual FoxPro
Category:
Internet applications
Miscellaneous
Thread ID:
00819019
Message ID:
00819153
Views:
13
If you're using the longhand code you shouldn't specify the whole URL in HTTPConnect() but just the server name: www.aesdirect.gov.

I also notice that your Connect() and HTTPGetEx() Uris are different. HTTP works one request at a time, so something is not right in the way you're specifying these URLs. Note that HTTPConnect() and the username and password are HTTP login names not login values on an HTML login form.

It's easier to use HTTPGet() which is a single line of code plus the AddPostKeys() to post the data and it calls back into the same code...

+++ Rick ---

>Hi,
>
>I'm working on a project for uploading files via HTTP to a secure site. I'm using xxIPStuff to see if it will do the job but I keep getting a 'The server name or address could not be resolved' error message. I can't give out the User name and pass word but here is the code I am using.
>
>
>*** Sending Files via HTTP from a VFP client
>#INCLUDE WCONNECT.h
>SET PROCEDURE TO wwUtils ADDITIVE
>SET CLASSLIB TO wwIPStuff ADDITIVE
>
>CLEAR
>
>oHTTP = CREATEOBJECT("wwHTTP")
>
>*** Connect to the server
>oHTTP.HTTPConnect("https://www.aesdirect.gov/aesdirect/system/entry.cgi?p_action=BU", "UserName", "PassWord", .T.)
>
>*** Initialize the variables that will be filled by HTTPGetEx
>lcHTML=""     && Data buffer
>lnText=0      && Size of the output to return - 0 means autosize
>
>*** Send the POST data and retrieve HTTP result
>oHTTP.nHTTPPostMode = 2
>oHTTP.AddPostKey("filename", "C:\EXPORTVSS\AES_OUT\UPTEST01.000", .T.)
>lnResult = oHTTP.HTTPGetEx("/aesdirect/system/fup.cgi",@lcHTML,@lnText)
>oHTTP.nHTTPPostMode = 1
>IF lnResult # 0
>   WAIT WINDOW ALLTRIM(STR(lnResult)) + " - " + oHTTP.cErrorMsg NOWAIT
>   RETURN
>ENDIF
>
>? TRIM(lcHTML)
>
>oHTTP.HTTPClose()   && Close the connection
>
>RETURN
>
>
>Any help is greatly appreciated.
>
>Thanks,
>Arriyel
+++ Rick ---

West Wind Technologies
Maui, Hawaii

west-wind.com/
West Wind Message Board
Rick's Web Log
Markdown Monster
---
Making waves on the Web

Where do you want to surf today?
Previous
Reply
Map
View

Click here to load this message in the networking platform