473,473 Members | 2,110 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

C++ capabilities

Hello,

I would like to develop a client-side application that:

* tests web forms (fill-in forms)
o this test feature of the application would fill in a
web form with random data and submit the data,
recording whether or not the submission was
successful;
* tests chat features
o this test feature of the application would attempt to
open a chat feature on a webpage, for example, a
chat feature on the customer support section of a
website. Once a response is received, the
component of this client-side application would
disconnect, logging the results;
* monitors web links
o this feature of the application would monitor all the
links on the site and return results of any pages
that were changed;
* scans a site for spelling mistakes;
* tests e-mail addresses
o ensures that mailto links launch an e-mail client and
populate the "to" field with a properly formed e-
mail address;
* scans a site for specific keywords, which would be entered via a
form in said application;
* scans a site for image file formats, recording the links of said
image files.
First, I would like to know if C++ can do all this; or if there is
another language that would be able to do all this that is less
complicated, but capable of client-side operation.

Also, I'm an extremely stubborn person, so please don't waste your
time or bits trying to convince me that this is not a task to be taken
by a C++ novice, which I most certainly am. (I'm sure you can work
arrogance in there as a reson why I think I can do this;basically,
humor me.)

If C++ can accomplish such things, please recommend a text to help me
get started.

Thanks,

Fäffy
Apr 1 '08 #1
9 2188
On Apr 1, 9:30*am, bdy120...@gmail.com wrote:
First, I would like to know if C++ can do all this; or if there is
another language that would be able to do all this that is less
complicated, but capable of client-side operation.
C++ is a general purpose programming language. It appears you'll need
some kind of HTTP libraries or have to roll your own to do what you're
wanting to do. You may want to consider Java for this task.
Apr 1 '08 #2
bd*******@gmail.com wrote:
[..]
When you speak of Websphere, you're referring to the IBM product,
correct? If it's server-side, then it's not an option for me.
Sorry, I misread. Yes, you're right. You're talking about client
side. Consider looking into ways to program ("drive") the web
browser to do those things for you. Most of them are programmable
(and can be objects by themselves). Of course, HTTP communication
is nowadays relatively well specified, and there are numerous
libraries to perform HTTP requests and parse the responses. The
best place to start asking further questions might be the forum
dedicated to your OS.

V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask
Apr 1 '08 #3
On Apr 1, 10:54*am, "Victor Bazarov" <v.Abaza...@comAcast.netwrote:
bdy120...@gmail.com wrote:
[..]
When you speak of Websphere, you're referring to the IBM product,
correct? If it's server-side, then it's not an option for me.

Sorry, I misread. *Yes, you're right. *You're talking about client
side. *Consider looking into ways to program ("drive") the web
browser to do those things for you. *Most of them are programmable
(and can be objects by themselves). *Of course, HTTP communication
is nowadays relatively well specified, and there are numerous
libraries to perform HTTP requests and parse the responses. *The
best place to start asking further questions might be the forum
dedicated to your OS.

V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask
I see. OK, thanks. That was very helpful; much appreciated.
Apr 1 '08 #4
On Apr 1, 9:55*am, bdy120...@gmail.com wrote:
>
I see. OK, thanks. That was very helpful; much appreciated.- Hide quoted text -
You might want to look at Python as well. Check out comp.lang.python
for help, and check out the following links.

http://docs.python.org/lib/module-httplib.html
http://docs.python.org/lib/asyncore-example.html
Apr 1 '08 #5
Can PHP operate client side?
Also, Rel Link Checker Lite conatins a feature that monitors Web pages
for modifications, but I'm not sure how; I know it's not comparison,
which I think is why you referred to a lot of overhead.

Thanks,
PHP usually runs on top of a webserver like Apache, but it doesn't need
to run on the same server as the website you want to skim. So you could
write a web application that could be hosted locally for example. I know
that it can be installed independently on a Linux machine (probably
windows) but I don't have any experience of that. Anyway I think it is a
viable client-side solution.

The nice thing about PHP from your point of view is it already "knows"
about internet technology, so traversing websites is fairly straight
forward. You also have very easy interaction with a MYSQL database for
storing all of your information.

Someone else has mentioned Python, which may do this even better, I've
never tried it. Either way, you don't have anything to loose by checking
out these options. I have done a fair bit of C++ and PHP coding and I
know which one I would look at first.

Brian
Apr 1 '08 #6
If you're like me, and you're thinking these requirements are a bit off the
map, note the date...

sherm--

--
My blog: http://shermspace.blogspot.com
Cocoa programming in Perl: http://camelbones.sourceforge.net
Apr 1 '08 #7
Sherman Pendley wrote:
If you're like me, and you're thinking these requirements are a bit off the
map, note the date...
03:30 on the second of April?

--
Ian Collins.
Apr 1 '08 #8
On 2008-04-01 22:57, Ian Collins wrote:
Sherman Pendley wrote:
>If you're like me, and you're thinking these requirements are a bit off the
map, note the date...
03:30 on the second of April?
Date: Tue, 1 Apr 2008 07:30:44 -0700 (PDT)

--
Erik Wikström
Apr 1 '08 #9
On Apr 1, 2:07*pm, Sherman Pendley <spamt...@dot-app.orgwrote:
If you're like me, and you're thinking these requirements are a bit off the
map, note the date...

sherm--

--
My blog:http://shermspace.blogspot.com
Cocoa programming in Perl:http://camelbones.sourceforge.net

Why is the date of importance?
Apr 9 '08 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

7
by: Nuno Paquete | last post by:
Hi group. Does Apache fro windows allows to run PHP scripts? If no, where can I find one? Regards, Nuno Paquete
1
by: Guenther Schmidt | last post by:
Hi, does anyone know a good PHP IDE with refactoring capabilities? Refactoring meaning things like moving methods around from a subclass into the superclass, renaming methods and local...
30
by: Sean R. Lynch | last post by:
I've been playing around with Zope's RestrictedPython, and I think I'm on the way to making the modifications necessary to create a capabilities-based restricted execution system. The idea is to...
6
by: Almad | last post by:
Hello, I'm going to write a custom CMS. I'd like to use some odbms, as code is then much more cleaner...however, i'm a little bit scared about capabilities of ZoDB, when compared with f. e....
5
by: Hraklhs | last post by:
I run Win2k and IIS 5.0. Some capabilities (new to ASP 3?) like Server.Execute, Server.Transfer, ASPError Object and ObjectContext Object are not available. Why is that?
2
by: Pascal Damian | last post by:
I'm composing a comparison table of database capabilities of several different products. I've read the Transact-SQL reference and have gathered most of the information needed for SQL Server 2000...
4
by: pantagruel | last post by:
I was wondering if anyone has enough familiarity with the ActiveX scripting implementation of javascript to answer if it would be possible to define a new language for the engine, and for the...
1
by: vaughn | last post by:
I would like to be able able to implement some Access capabilities into my C# project. Is that possible? One of the capabilities I would need in my project is the Import Text Wizard so I can...
40
by: =?iso-8859-1?B?QW5kcuk=?= | last post by:
I'm really annoyed at Python - and not for the reasons already mentioned on this list. Everyone know that programming is supposed to be a dark art, nearly impossible to learn. Computer code is...
4
by: =?Utf-8?B?TmFkYXYgUG9wcGxld2VsbA==?= | last post by:
Hi everybody, I've got an ASP.NET 1.1 application and I need to add to it new Browser Capabilities information for 3 new cellular phones. I used to use...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
0
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.