Re: [Flashcoders] Question on old AS1 code

2007-06-25 Thread Martin Jonasson
The extension "Firebug" for Firefox also lets you see in better detail 
what's sent/retrived between you and the server.

It's incredibly useful for all forms of debugging.

I can't understand how i managed without it.


Vaughn, David (Contractor) (J6B) skrev:

Thanks for the response Andy. Fiddler sounds very interesting.
Unfortunately, due to very tight security rules, we are not permitted to
download any software (30-day trial software, shareware, freeware, etc.)
so I'm not sure I can use that tool at work. I will check it out for
home use however.

Thanks for the suggestion!

Dave

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Andy
Herrman
Sent: Friday, June 22, 2007 2:31 PM
To: flashcoders@chattyfig.figleaf.com
Subject: Re: [Flashcoders] Question on old AS1 code

The HTTP vs HTTPS stuff should be completely handled by the browser, so
I don't think the plugin would have any issues.

One thing I find helpful for debugging these kinds of problems is
Fiddler (http://www.fiddlertool.com/fiddler/).  This will log all
requests IE makes and the responses to them.  Try installing it,
starting it up (it adds a button to the IE toolbar), and then loading
your SWF.  You'll be able to see what files are being requested.  You
can see if you're getting 404 errors, or even if they're being requested
properly.  This might help track down the problem.

  -Andy


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

  


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] Question on old AS1 code

2007-06-25 Thread Vaughn, David (Contractor) (J6B)
Thanks for the response Andy. Fiddler sounds very interesting.
Unfortunately, due to very tight security rules, we are not permitted to
download any software (30-day trial software, shareware, freeware, etc.)
so I'm not sure I can use that tool at work. I will check it out for
home use however.

Thanks for the suggestion!

Dave

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Andy
Herrman
Sent: Friday, June 22, 2007 2:31 PM
To: flashcoders@chattyfig.figleaf.com
Subject: Re: [Flashcoders] Question on old AS1 code

The HTTP vs HTTPS stuff should be completely handled by the browser, so
I don't think the plugin would have any issues.

One thing I find helpful for debugging these kinds of problems is
Fiddler (http://www.fiddlertool.com/fiddler/).  This will log all
requests IE makes and the responses to them.  Try installing it,
starting it up (it adds a button to the IE toolbar), and then loading
your SWF.  You'll be able to see what files are being requested.  You
can see if you're getting 404 errors, or even if they're being requested
properly.  This might help track down the problem.

  -Andy


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] Question on old AS1 code

2007-06-22 Thread Andy Herrman

The HTTP vs HTTPS stuff should be completely handled by the browser,
so I don't think the plugin would have any issues.

One thing I find helpful for debugging these kinds of problems is
Fiddler (http://www.fiddlertool.com/fiddler/).  This will log all
requests IE makes and the responses to them.  Try installing it,
starting it up (it adds a button to the IE toolbar), and then loading
your SWF.  You'll be able to see what files are being requested.  You
can see if you're getting 404 errors, or even if they're being
requested properly.  This might help track down the problem.

 -Andy

On 6/22/07, Vaughn, David (Contractor) (J6B) <[EMAIL PROTECTED]> wrote:

Hello all. This is my first post on the group, but I'm a regular member
of the FlashNewbies list. I'm a fairly new Flash developer using Flash
8, web player 9, and IE6. Hopefully the members of this list can offer
some guidance with a problem.

Background:
I've been asked to review some old Flash 5 or 6 code from another
developer built in 2001 or early 2002. The code is completely
undocumented and the original developer is unavailable. The FLA and AS
files load a few external JSP files and produce a detailed graph from
those files. On an HTTP server the files work as expected and have been
working properly for several years.

Problem:
Recently the web team moved the files to an HTTPS server. The background
graphics load normally but the external data is completely blank. I have
access to the FLA and AS files and have reviewed the code. Being a new
developer I can't detect any obvious problems with the FLA or AS files.

The external data files are referenced by name only, not by an explicit
file path. I have been assured by the web team that the necessary files
are all present and located within the same folder.

Question:
Are there any known compatibility or security problems between Flash
player 9, AS1 code and using HTTPS servers? Any ideas what might be
causing this problem?

I do not have direct access to the servers so I cannot give specifics
about how the servers are configured, but I can forward questions to the
web team. Also, the code is proprietary so unfortunately I'm not able to
post or share the actual code.

Any suggestions are welcomed and appreciated.

Regards,

Dave
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] Question on old AS1 code

2007-06-22 Thread Vaughn, David (Contractor) (J6B)
Hello all. This is my first post on the group, but I'm a regular member
of the FlashNewbies list. I'm a fairly new Flash developer using Flash
8, web player 9, and IE6. Hopefully the members of this list can offer
some guidance with a problem.

Background:
I've been asked to review some old Flash 5 or 6 code from another
developer built in 2001 or early 2002. The code is completely
undocumented and the original developer is unavailable. The FLA and AS
files load a few external JSP files and produce a detailed graph from
those files. On an HTTP server the files work as expected and have been
working properly for several years. 

Problem:
Recently the web team moved the files to an HTTPS server. The background
graphics load normally but the external data is completely blank. I have
access to the FLA and AS files and have reviewed the code. Being a new
developer I can't detect any obvious problems with the FLA or AS files. 

The external data files are referenced by name only, not by an explicit
file path. I have been assured by the web team that the necessary files
are all present and located within the same folder.

Question:
Are there any known compatibility or security problems between Flash
player 9, AS1 code and using HTTPS servers? Any ideas what might be
causing this problem?

I do not have direct access to the servers so I cannot give specifics
about how the servers are configured, but I can forward questions to the
web team. Also, the code is proprietary so unfortunately I'm not able to
post or share the actual code.

Any suggestions are welcomed and appreciated.

Regards,

Dave
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com