Show Bid Request
VB INET Post Method
Bid Request Id: 49881
|
|
|
Posted by: |
mwade (101 ratings)
(Software buyer rating 9.96)
|
Non-action Ratio: |
Very Good - 12.09%
|
Buyer Security Verifications: |
Excellent
|
Approved on: |
Feb 24, 2003 8:11:31 PM EDT
|
Bidding Closes: |
Feb 27, 2003 8:10:38 PM EDT
|
Viewed (by coders): |
985 times
|
Deadline: |
3/1/2003
TIME EXPIRED
|
|
|
|
Description:
I need to submit some information to a website using VB6 and an INET Control.
I am currently submitting the post method successfully however I need to be able to see what the website is returning after the post method has been sent.
Does anyone know how to send a post method using INET and then grab the info from the site and display it?
1. Create a VB program that uses INET to send info as a post method 2. Display the information in message box that the site returns after the post method has been submitted.
Here is the way I am currently doing this:
Sub SendDBInfo() strSendString = "strCourseID=1" _ & "&strCourseTitle=2" _ & "&strCategoryID=3" _ & "&strCourseStatus=4" _ & "&strCourseCategoryName=5" _ & "&strCourseFormat=6" _ & "&strCourseType=7" _ & "&strAuthor=8" _ & "&strUserGroup=9" _ & "&strCourseAdmin=1" _ & "&strCourseGroup=2" _ & "&strPublishDate=3" _ & "&strPayment=4" _ & "&strCost=5" _ & "&strRetake=6" _ & "&strRestart=7" _ & "&strDescriptio=8" _ & "&strKeyword=9" check: b = Inet1.StillExecuting
If b Then Pause 0.0001 GoTo check End If Inet1.Execute "http://synchroschool.synchromeshsoftware.com/dbcourseupdate.mws", "Post", strSendString, "Content-Type: application/x-www-form-urlencoded"
End Sub
Deliverables: 1) Complete and fully-functional working program(s) in executable form as well as complete source code of all work done.
2) Installation package that will install the software (in ready-to-run condition) on the platform(s) specified in this bid request.
3) Complete ownership and distribution copyrights to all work purchased.
Platform:
Windows
Must be 100% finished and received by buyer on:
Mar 1, 2003 EDT
Deadline legal notes: All times are expressed in the time zone of the site EDT (UT - 5). If the buyer omitted a time, then the deadline is 11:59:59 PM EDT on the indicated date.
Remember that contacting the other party outside of the site (by email, phone, etc.) on all business projects < $500 (before the buyer's money is escrowed) is a violation of both the software buyer and seller agreements.
We monitor all site activity for such violations and can instantly expel transgressers on the spot, so we thank you in advance for your cooperation.
If you notice a violation please help out the site and report it. Thanks for your help.
|
|
Bidding/Comments:
|
All monetary amounts on the site are in United States dollars.
Rent a Coder is a closed auction, so coders can only see their own bids and comments. Buyers can view every posting made on their bid requests. |
See all rejected bids (and all comments)
Name |
Bid Amount |
Date |
Coder Rating |
|
|
|
This bid was accepted by the buyer!
|
$10 (USD)
|
Feb 24, 2003 8:58:26 PM EDT
|
10
(Excellent)
|
|
|
Hi,
I have used POST method many times in vb6.
I recommend you reference the Microsoft XML v3.0 library instead of using the INET control. Using this method, the code you need is only 5 lines long and the data sent back from the post is returned to a string.
I have the code now for you and can give it to you immediately.
Thanks,
Danny.
'When the only tool you own is a hammer, every problem you encounter resembles a nail.' |
|
|
|
|
N/A
|
Feb 24, 2003 9:02:18 PM EDT
|
10
(Excellent)
|
|
|
Hi again,
One additional comment..
Using the MS XML library, the post is done synchronously, which eliminates the need for your 'still executing' check above.
Thanks,
Danny.
'When the only tool you own is a hammer, every problem you encounter resembles a nail.' |
|
|
|
|
|