Search Unity

Web player crash?

Discussion in 'Editor & General Support' started by littlelingo, Sep 20, 2006.

  1. littlelingo

    littlelingo

    Joined:
    Jul 18, 2006
    Posts:
    372
    I am sure it is something I am doing wrong but now it seems everything I do with Unity and export to a web player crashes. I have tried both the beta and older version of the player with no joy.

    The crash is pretty much you double click the web page and the Unity logo comes up you see the load bar complete and then the application complete closes with no error message etc. I even looked in the logs and no report there either.

    Does anyone have any thoughts or ideas?

    I have attached a test player for anyone to review.

    Thanks,

    -- Clint
     

    Attached Files:

  2. Jonathan Czeck

    Jonathan Czeck

    Joined:
    Mar 17, 2005
    Posts:
    1,713
    Here's from the Console:
    Code (csharp):
    1. 060920 08:44:33 Datafile file:///Users/aarku/Desktop/webtest_409/webTest.unityweb
    2.  
    3. ---
    4. Window clip rect: 515, 835, 77, 317
    5. Port bounds: -515, 835, -77, 744
    6. port x, y: -515, -77
    7. window x, y, width, height: 515, 77, 320, 240
    8. ---
    9.  
    10. 060920 08:44:33 Loading Unity Player
    11. Player: init engine
    12.       060920 08:44:35 Loader: Start Success
    13.  
    14. ---
    15. Window clip rect: 515, 835, 77, 317
    16. Port bounds: -515, 835, -77, 744
    17. port x, y: -515, -77
    18. window x, y, width, height: 515, 77, 320, 240
    19. ---
    20.  
    21.  
    22. ** (process:9233): WARNING **: The following assembly referenced from data-0xcec0000 could not be loaded:
    23.      Assembly:   System    (assemblyref_index=0)
    24.      Version:    1.0.5000.0
    25.      Public Key: b77a5c561934e089
    26. The assembly was not found in the Global Assembly Cache, a path listed in the MONO_PATH environment variable, or in the location of the executing assembly (/).
    27.  
    28.  
    29. ** (process:9233): WARNING **: Could not load file or assembly 'System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' or one of its dependencies.
    30.  
    31. ** (process:9233): WARNING **: Missing method Parse in assembly data-0xcec0000, type System.Net.IPAddress
    32.  
    33. Unhandled Exception: System.IO.FileNotFoundException: Could not load file or assembly 'System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' or one of its dependencies. :
    Weird :)

    -Jon
     
  3. littlelingo

    littlelingo

    Joined:
    Jul 18, 2006
    Posts:
    372
    Huh, I didn't even get that from my console. I did got to the log file and saw a bunch of jibberish. ;-)

    Anyone know what all that means and what I can do to fix it? ;-p

    Thanks!

    -- Clint
     
  4. Joachim_Ante

    Joachim_Ante

    Unity Technologies

    Joined:
    Mar 16, 2005
    Posts:
    5,203
    You are using .NET functions in the web player which are probably not supported in the web player due to security reasons. You can contact me via email, so we can figure out exactly what functionality you need in the web player.
     
  5. littlelingo

    littlelingo

    Joined:
    Jul 18, 2006
    Posts:
    372
    Will do. Thanks! :)

    -- Clint