Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
Locked
0

http://localhost:8080 Vs http://127.0.01:8080 - VerifyError: Error #1053

New Here ,
Jul 31, 2009 Jul 31, 2009

Hi,

  I have library project which built on flex 2.0, i converted in to 3.0 with flex sdk (flex_sdk_3.3.0.4852 version).

  Library project successfully build with flex 3.3.0.4852 version and genereated swc (libraryXX.swc),
  When runnning my application with libraryXX.swc(deployed in tomcat 5.5) with http://localhost:8080/app - i have no error,
  But when i run same application with http://127.0.0.1/app am getting following verify error.


Please Let me know how to solve this issue..


ERROR:

VerifyError: Error #1053: Illegal override of lockedRowCount in mx.controls.dataGridClasses.DataGridBase.

    at flash.display::MovieClip/nextFrame()
    at mx.managers::SystemManager/deferredNextFrame()
    at mx.managers::SystemManager/preloader_initProgressHandler()
    at flash.events::EventDispatcher/dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at mx.preloaders::Preloader/timerHandler()
    at flash.utils::Timer/_timerDispatch()
    at flash.utils::Timer/tick()



Regards

Srinivas Sanga




19.3K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe Employee ,
Jul 31, 2009 Jul 31, 2009

If you are using RSLs, there may be a problem getting the RSL from 127.0.0.1 (to Flash that is a different domain than localhost:8080. Flash only checks the characters in the domain, not what IP address it resolves to) and then you might be picking up the wrong version of the framework RSL.

Alex Harui

Flex SDK Developer

Adobe Systems Inc.

Blog: http://blogs.adobe.com/aharui

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Aug 02, 2009 Aug 02, 2009

Hi Alex,
 
  Thanks for your reply,


  Problem solved with localhost and 127.0.0.1 but when i am accessing with my system IP (xx.xx.xx.xx:8080/app) still am getting following runtime error


I tried with crossdomain.xml and failed.


  crossdomain.xml
      <?xml version="1.0"?>
    <!-- http://www.foo.com/crossdomain.xml -->
    <cross-domain-policy>
      <allow-access-from domain="*" />
    </cross-domain-policy>


Eroor


VerifyError: Error #1053: Illegal override of lockedRowCount in mx.controls.dataGridClasses.DataGridBase.


    at flash.display::MovieClip/nextFrame()
    at mx.managers::SystemManager/deferredNextFrame()
    at mx.managers::SystemManager/preloader_initProgressHandler()
    at flash.events::EventDispatcher/dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at mx.preloaders::Preloader/timerHandler()
    at flash.utils::Timer/_timerDispatch()
    at flash.utils::Timer/tick()


Regards

Srinivas Sanga

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe Employee ,
Aug 02, 2009 Aug 02, 2009
LATEST

Still seems like you're pulling the wrong RSL.

Alex Harui

Flex SDK Developer

Adobe Systems Inc.

Blog: http://blogs.adobe.com/aharui

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines