473,385 Members | 1,645 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 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 5064
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...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 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 former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
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...

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.