|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
Stay one step ahead of the competition. Evaluate and give feedback
on some of the hottest web development tools on the market today.
Make your opinion heard! Click
Here
|
|
#1
|
|||
|
|||
|
best way to post data from our server1 to server2
Hi All,
Due certain business rules, we need to submit form data from a page on our server to another server. Whats a good way to do this? Is POST or GET the best way to do this ? Will a POST operation work across two servers ? Any leads or suggestions will be usefull. Tx, rig |
|
#2
|
||||
|
||||
|
POST is more secure because GET is visible in the URL string.
POST and GET work across all platforms and servers. |
|
#3
|
|||
|
|||
|
Post is the only way I know of to actually send data (aside from passing values in the URL).
__________________
Ask if you have a question, but also help answer questions that you have knowledge of! Thanks, Brian. How to Post a Question in the Forums |
|
#4
|
|||
|
|||
|
Say I go the POST way,
Do I need to do any extra encrption to make sure that the data integrity is maintained. Can I just do what I do normally on our servers, like passing a hidden field ... Tx guys rig Edit: btw, the servers are running CF 6.1 |
|
#5
|
|||
|
|||
|
HTTP is always plain text. So posting information in a hidden form field is not any more secure than sending in in as a URL variable or a standard form field. It's all plain text. And anyone with a sniffer could see the full text of anything you post.
Now, you could send it with HTTPS which would encrypt it. Or you could encrypt the data before you post it and then decrypt it on the target server. |
|
#6
|
|||
|
|||
|
Got it.
Tx Kiteless rig |
|
#7
|
||||
|
||||
|
you could always go with cfhttp and send the data that way. thats what i used in my cf shopping cart i made.
|
![]() |
| Viewing: Dev Shed Forums > Programming Languages - More > ColdFusion Development > best way to post data from our server1 to server2 |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|