472,989 Members | 3,089 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,989 software developers and data experts.

Cross-Domain scripting solution

CJD
Hello,

I want to create a server-side object that tracks the clicks of a user
while they do a task in a browser. The tasks would take place on
external web sites. Since there does not seem to be an all
incompassing solution to the javascript cross-domain scripting
permission problem, I am wondering if anyone has any server-side
ideas. The link below proposes to do this, but I can't figure out how.
Looking at their code, they are apparently doing something on the
server side, as the javascript in their pages is not tracking URLs.

(Remove spaces)
http : //surveys.rele vantview.com/demosu rvey.asp

Thanks for any ideas! Could use HTA's but that would limit to IE only.
Jul 23 '05 #1
7 5054
CJD wrote:
I want to create a server-side object that tracks the clicks of a user
while they do a task in a browser. The tasks would take place on
external web sites.


Oh, you mean SPYWARE?

I think that only works client-side.

--
Philip Ronan
ph***********@virgin.net
(Please remove the "z"s if replying by email)
Jul 23 '05 #2
CJD wrote:
Hello,

I want to create a server-side object that tracks the clicks of a user
while they do a task in a browser. The tasks would take place on
external web sites. Since there does not seem to be an all
incompassing solution to the javascript cross-domain scripting
permission problem, I am wondering if anyone has any server-side
ideas. The link below proposes to do this, but I can't figure out how.
Looking at their code, they are apparently doing something on the
server side, as the javascript in their pages is not tracking URLs.

(Remove spaces)
http : //surveys.rele vantview.com/demosu rvey.asp

Thanks for any ideas! Could use HTA's but that would limit to IE only.


As clicks happen at the client side I doubt that you will find a server-side
solution to track them.

--
Markus
Jul 23 '05 #3
CJD
"Markus Ernst" <derernst@NO#SP#AMgmx.ch> wrote in message news:<41***********************@news.easynet.ch>.. .
As clicks happen at the client side I doubt that you will find a server-side
solution to track them.


That would seem logical, but the link below claims to be a server-side
solution and it's been baffling me as to how they are doing it. It's
got me stumped. Well, what would be the best client-side solution to
this problem in your opinions, considering the window will be in an
external domain?
Jul 23 '05 #4
si*******@yahoo.com (CJD) wrote in message news:<a3**************************@posting.google. com>...
Hello,

I want to create a server-side object that tracks the clicks of a user
while they do a task in a browser.
Write your own custom page to track clicks.
The tasks would take place on
external web sites. Since there does not seem to be an all
incompassing solution to the javascript cross-domain scripting
permission problem, I am wondering if anyone has any server-side
ideas. The link below proposes to do this, but I can't figure out how.
How is what you want to do a benefit to the user?

What is does is popup a window and ask questions about what is in the
other popup. On the pages where you click, it is a custom page written
my the folks doing the survey. The site switches between the survey
site and custom pages.
Looking at their code, they are apparently doing something on the
server side, as the javascript in their pages is not tracking URLs.

(Remove spaces)
http : //surveys.rele vantview.com/demosu rvey.asp

Thanks for any ideas! Could use HTA's but that would limit to IE only.


The site didn't work in Netscape 7.1.

I am glad that I use Netscape.

Robert
Jul 23 '05 #5
CJD
Robert) wrote:
Hello,

I want to create a server-side object that tracks the clicks of a user
while they do a task in a browser.


Write your own custom page to track clicks.
The tasks would take place on
external web sites. Since there does not seem to be an all
incompassing solution to the javascript cross-domain scripting
permission problem, I am wondering if anyone has any server-side
ideas. The link below proposes to do this, but I can't figure out how.


How is what you want to do a benefit to the user?

What is does is popup a window and ask questions about what is in the
other popup. On the pages where you click, it is a custom page written
my the folks doing the survey. The site switches between the survey
site and custom pages.
Looking at their code, they are apparently doing something on the
server side, as the javascript in their pages is not tracking URLs.

(Remove spaces)
http : //surveys.rele vantview.com/demosu rvey.asp

Thanks for any ideas! Could use HTA's but that would limit to IE only.


The site didn't work in Netscape 7.1.

I am glad that I use Netscape.

Robert


Thank you for your suggestions. I'm not quite clear on what you are
suggesting though. What I want to do is for web site owners to test
their website usefulness and navigation by having others use it. How
is the site above actually logging each page you visit in the larger,
non-question window (the window with the site being analyzed)??

I think it has something to do with the fact that it starts out as an
..htm page in their domain, and then redirects using javascript to the
site being tested.
Jul 23 '05 #6
CJD wrote:
"Markus Ernst" <derernst@NO#SP#AMgmx.ch> wrote in message
news:<41***********************@news.easynet.ch>.. .
As clicks happen at the client side I doubt that you will find a
server-side solution to track them.


That would seem logical, but the link below claims to be a server-side
solution and it's been baffling me as to how they are doing it. It's
got me stumped. Well, what would be the best client-side solution to
this problem in your opinions, considering the window will be in an
external domain?


I think you will have to add a javascript to the documents of the external
domain that on every click sends the cursor position to you. I don't know if
that is possible. Anyway IMO there is no possible solution without modifying
the pages you want to track (and I would quite hate the fact of being wrong
in this point...).

I think there are softwares for tracking user clicks, but you will have to
invite the test users to visit you and do the testing sitting at your box. I
know a company who does professional usability testing that way, they have
good coffee and always find test users.

--
Markus
Jul 23 '05 #7
si*******@yahoo.com (CJD) wrote in message news:<a3**************************@posting.google. com>...
Robert) wrote: Thank you for your suggestions. I'm not quite clear on what you are
suggesting though. What I want to do is for web site owners to test
their website usefulness and navigation by having others use it. How
is the site above actually logging each page you visit in the larger,
I did not look at the visited site code. The survey site doesn't have
access to the visited site usage. The survey site is creating an
illusion about the internaction

You need to check with a usability consultant. These sort of tests
are usually done in a usability lab. They usually record the test with
cameras.

In a test situation, you can install special software on the PC to
record all mouse clicks.
non-question window (the window with the site being analyzed)??

I think it has something to do with the fact that it starts out as an
.htm page in their domain, and then redirects using javascript to the
site being tested.

Yes, although redirect may not be what they are doing.

The survey site may be modified to assist with the testing.

I didn't look at the survey site in detail.

Page1
1) introduces you to the survey.
2) Open the survey window on your left

Left window
1) Displays the questions.
2) Opens the site window on the right.
I assume that no changes have been made to the survey site.
3) User answers question about site.
4) Left window submits information to its host.
5) Left window asks another of question on the site
6) Left window takes down the site window.
7) Left window opens new window that you can click on
New window is coded by survey site owner.
New windows is on survey site web site.
When user click on the new window, the new
window pass where user click on it back to
the left window.
New window closes itself.
8) Left window gets results and adds results to your question.
9) User complete question and left window passed this result to its
host.
10) left window continues with the above until all questions are
answered.

By intermixing site windows and survey site windows an illustion more
interaction can be created than there actually is.

You could copy survery site windows to you local site and change them.
Assuming you have the authority to do so.

Robert
Jul 23 '05 #8

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

Similar topics

12
by: * ProteanThread * | last post by:
but depends upon the clique: ...
3
by: rollasoc | last post by:
Hi, Doing a bit of system testing on a Windows 98 laptop. (.Net 1.1 app). Did a bit of testing. Loaded a previously saved file. A gray box appeared with the text and buttons all white...
4
by: David Peach | last post by:
Hello, hope somebody here can help me... I have a query that lists defects recorded in a user defined date range. That query is then used as the source for a Cross Tab query that cross-tabs count...
23
by: Jeff Rodriguez | last post by:
Here's what I want do: Have a main daemon which starts up several threads in a Boss-Queue structure. From those threads, I want them all to sit and watch a queue. Once an entry goes into the...
8
by: Pieter | last post by:
Hi, I'm having some weird problem using the BackGroundWorker in an Outlook (2003) Add-In, with VB.NET 2005: I'm using the BackGroundWorker to get the info of some mailitems, and after each item...
1
by: Rob Woodworth | last post by:
Hi, I'm having serious problems getting my report to work. I need to generate a timesheet report which will contain info for one employee between certain dates (one week's worth of dates). I...
6
by: Robert Bravery | last post by:
Hi all, Can some one show me how to achieve a cross product of arrays. So that if I had two arrays (could be any number) with three elements in each (once again could be any number) I would get:...
7
by: Charles | last post by:
I'd like to develop a simple cross-platform application in C++. I'd like it to run in Windows, OS X, PC-BSD and Linux. From my research, it seems I should use Qt or Gtk as a graphical library. Do...
1
by: Otacon22 | last post by:
Hi all, I want to create a robot with a router board based on processor atheros 2.6, called "fonera". I have installed a version of linux, Openwrt and python and i want to use it for some...
3
by: Squat'n Dive | last post by:
Does anyone have an idea why -fno-strict-aliasing is turned off when cross compiling? in configure generated for 2.4.4: case $GCC in yes) # Python violates C99 rules, by casting between...
2
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 4 Oct 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM) The start time is equivalent to 19:00 (7PM) in Central...
0
tracyyun
by: tracyyun | last post by:
Hello everyone, I have a question and would like some advice on network connectivity. I have one computer connected to my router via WiFi, but I have two other computers that I want to be able to...
2
by: giovanniandrean | last post by:
The energy model is structured as follows and uses excel sheets to give input data: 1-Utility.py contains all the functions needed to calculate the variables and other minor things (mentions...
3
NeoPa
by: NeoPa | last post by:
Introduction For this article I'll be using a very simple database which has Form (clsForm) & Report (clsReport) classes that simply handle making the calling Form invisible until the Form, or all...
1
by: Teri B | last post by:
Hi, I have created a sub-form Roles. In my course form the user selects the roles assigned to the course. 0ne-to-many. One course many roles. Then I created a report based on the Course form and...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 1 Nov 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM) Please note that the UK and Europe revert to winter time on...
3
by: nia12 | last post by:
Hi there, I am very new to Access so apologies if any of this is obvious/not clear. I am creating a data collection tool for health care employees to complete. It consists of a number of...
0
NeoPa
by: NeoPa | last post by:
Introduction For this article I'll be focusing on the Report (clsReport) class. This simply handles making the calling Form invisible until all of the Reports opened by it have been closed, when it...
0
isladogs
by: isladogs | last post by:
The next online meeting of the Access Europe User Group will be on Wednesday 6 Dec 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, Mike...

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.