Building app. to send data to website


 
Thread Tools Search this Thread
Top Forums Programming Building app. to send data to website
# 1  
Old 07-10-2012
Building app. to send data to website

Hi.
I plan to build an application which takes text data from a user.
It then sends this to a website, login required.

The business case being this site contains many text fields, mostly redundant to user. My application would only prompt user for necessary text.

What language, methods would you recommend?

Thanks
# 2  
Old 07-11-2012
It's really difficult to say without seeing what you're dealing with. The raw contents of the webpage and their login methods may make or break whatever method you try.
# 3  
Old 07-11-2012
Perl + WWW::Mechanize is sufficient in most cases like that.
# 4  
Old 07-12-2012
I wouldnt have thought GUI design was a strong point for Perl?
What about portability of the application to users Windows environment?

---------- Post updated at 02:03 PM ---------- Previous update was at 01:58 PM ----------

Quote:
Originally Posted by Corona688
It's really difficult to say without seeing what you're dealing with. The raw contents of the webpage and their login methods may make or break whatever method you try.
The webpage is built in ASP.
Also the different pages of the web site does not change the URL in Address bar. I think this could be an issue.

At main page. There is two login text fields. I assume app can simply send data to these two fields directly, without any need for backend DB coding.

The site is poorly designed with many unnecessary text fields when submitting a request. In the app I will have fields for only necessary data.

---------- Post updated at 02:04 PM ---------- Previous update was at 02:03 PM ----------

Quote:
Originally Posted by bartus11
Perl + WWW::Mechanize is sufficient in most cases like that.
I wouldnt have thought GUI design was a strong point for Perl?

What about portability of the application to users Windows environment? Is this an issue with Perl applications? These may sound like daft questions but I have little experience with Perl.
# 5  
Old 07-12-2012
Quote:
Originally Posted by cic
The webpage is built in ASP.
This is about as informative as "the webpage is blue".

How the webpage works -- HTML-wise, anyway -- not just what language it uses or what it looks like, is important.
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Read info from api website and show retrieved data

good evening, i'm still new in scripting but i'm learning every day and i'm enjoying it. so i have api website (htt p://api.nobelprize.org/v1/prize.json), i want to make a script that allows me to give it two arguments like ./test.sh 2005 physics, 2000 is for the year and physics is category... (1 Reply)
Discussion started by: kalbsghir
1 Replies

2. Shell Programming and Scripting

Grabbing data from a secured website

Hello there, I am a beginner in Perl, and I have a challenging project: I have to create a program that checks regularly on an online bank account for new operations, it should then feed a database keeping track of all the money going in and out. Of course the login details of this online... (4 Replies)
Discussion started by: freddie50
4 Replies

3. Shell Programming and Scripting

how to write a shellscript to send a mail alert to the website user based on license expiration time

hi, i am very much new to shell scripting i have a requirement that i have to develop a License Renewal Alert system that has to give a alert mail to the users before 30days of user account expiration, by checking expiration date of the user with the data base, this system will... (0 Replies)
Discussion started by: deepu_Shscripts
0 Replies

4. Shell Programming and Scripting

Using Python to grab data from a website

Hello Everyone, I'm trying to write a python script that will go to the following website and grab all the data on the page. The page refreshes regularly and the number of flights is different. Untitled Document What I wanted to do was grab all the data (except for top three row containing... (5 Replies)
Discussion started by: jl487
5 Replies

5. Shell Programming and Scripting

Store data from dynamic website table

hi everybody, Asking for something that I´m not sure if it´s possible to implement. I hope be clear enough. Well, my issue is that I´m looking how to copy or extract a particular table content of a website. I get the content from a external feed (Iframe format), the content is updated every... (1 Reply)
Discussion started by: cgkmal
1 Replies

6. Solaris

Problem building app

trying to run IPERF and i've downloaded and installed and screwed around with my path to get compilers and such available... log in as myself, go to /iperf-2.0.4 switch to su run ./configure seems to go fine, couple of no's but based on previous runs it seems to be ok... do make it goes... (3 Replies)
Discussion started by: jrich523
3 Replies

7. UNIX for Dummies Questions & Answers

Building a website, where do I start?

okay, i have absolutely no idea what im doing. i just wanted to make a website, and according to some stuff i read, i needed to have a UNIX account. sadly, i still dont know what im doing. and i dont want to download anything either, unless absolutely necessary. is there any way to go about... (1 Reply)
Discussion started by: teahelahn
1 Replies

8. Programming

Multithread app - Read-Only Data

Hello, I'm coding an application using pthreads.At some point the threads will read some read-only variables.Is it safe NOT to use mutexes, in order to make the program lighter since mutex operations are resource-demanding... Thanks (1 Reply)
Discussion started by: jonas.gabriel
1 Replies
Login or Register to Ask a Question