Lightswitch HTMLclient App loads for ever - spanish is not supported

Hi,
the loading splash screen of my HTML client LightSwitch application is shown for ever if the page is called from a Chrome Browser that has set his language to Spanish (Latin America).
In the browser debug window I see this as the last file the browser tries to get:
https://ajax.aspnetcdn.com/ajax/globalize/0.1.1/cultures/globalize.culture.ES-419.js Failed to load resource: the server responded with a status of 404 (Not Found)
My target is that i would just load the default language files */HTMLClient/Content/Resources/client.lang-EN-US.resjson and run. The file is actually loaded as well but the application seems to get stuck then with the globalize.culture file.
Thank you for any help or workaround!
Spikey

Good point. I forced my IE language settings to use es-419 (by configurating a custom language code). And it runs without problems. It still does not find the globalize culture file, but the application does not block: it works in IE!
http://ajax.aspnetcdn.com/ajax/globalize/0.1.1/cultures/globalize.culture.ES-419.js GET 404 text/html 340 B 437 ms <script> 702 0 437 0 0 3167
The headers, IE sent were like this:
Request GET /ajax/globalize/0.1.1/cultures/globalize.culture.ES-419.js HTTP/1.1
Accept application/javascript, */*;q=0.8
Referer http://localhost:61610/HTMLClient/
Accept-Language es-419
User-Agent Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)
Accept-Encoding gzip, deflate
Host ajax.aspnetcdn.com
DNT 1
Connection Keep-Alive
-> So, I have no clue anymore, because it seems not to come from the globalize code.
Appendix: I just saw that in IE after 0.5 secs of waiting for globalize.culture.ES-419.js, IE receives the alternative culture file
globalize.culture.ES.js.
On Chrome this file is never accessed.

Similar Messages

  • During restore my 3GS has been stuck in Apps loading for over 30 minutes now.. Any suggestions? Thanks

    During restore my 3GS has been stuck in Apps loading for over 30 minutes now.. Any suggestions? Thanks ps.. I am holding off buying 4S until bugs worked out..

    The problem is twenty three people leaving or twenty three thousand leaving has zero impact on a carrier with over 100 million customers. And they have the lowest churn rate. So if 10,000 or 20,000 or more churn out it means little to the carrier.
    If you have a real lawyer he/she will advise you that you have no case. The device was not lost or stolen by the carrier, you were not eligible for a new device, and like any business who employs large numbers of poorly trained personnel who make low wages what was told to you is not in writing. So a verbal exchange does not hold up.
    In fact in Verizon's customer agreement it has such a disclaimer against any verbal exchanges so if you have that agreement in writing, go get them.
    The posting on public forums and places like Face Book, Linkin, Google+ or a personal web site can open you up to a lawsuit for Dilution of Trade Name, and other offences. However if you have proof then go for it.
    Unfortunately that is how big business works today. A pity

  • ITunes keeps loading for ever

    my iTunes keeps on loading when I try to import music from my files on my Mac, and it keeps on loading for ever, how can i fix this?

    I followed the steps that cazzo had. I can't find any thing with a manual sync.......but I did have it set to back up to iCloud instead of my computer. Which I just changed recently. I've reverted back to computer back up. Maybe one of us will get it right lol.

  • After updating ios 5 on ipad1, the ipod app used for the audiobooks is not there anymore ?

    the ipod app used for the audiobooks is not there anymore ? It is not availble at the app store and not too sure where to retrieve it ? if possible !
    Thanks in advance for any support provided on this.

    Thank you Johnathan.  We had checked Music before my post but no success.  Some mofifications in the settings made it happen !!  Cheers

  • Used to convert all my videos into iPhone mp4 format using Any Video Converter - then add it to my iPhone 3GS. But last few days, I cant add video files to iTunes. and the iTunes doesnt even specify the reason except for that "files are not supported"

    Everyting was perfect earlier. Used to convert all my videos into iPhone mp4 format using Any Video Converter - then add it to my iPhone 3GS. But last few days, I cant add video files to iTunes. and the iTunes doesnt even specify the reason except for that "files are not supported"
    Everything is fine.
    -They are the right format
    -Quicktime is updated
    -I have tried simply dragging them into the 'movie' library
    -I have tried going to file<add file to library
    Nothing works, has anyone else had this problem and found a way around it?
    Any and all help appreciated.

    In addition to Mike's suggestions,  you only have 4GB of RAM and Mavericks does use more RAM than other versions. You may also want to look at the apps that startup on login and the possiblity of upgrading RAM.

  • Does apple have any explanations for why iCloud will not support iWeb & is there any viable solutions. iWeb is critical to my small business & we have all been trained via joint ventue on iWeb. Now it just goes away. Why?

    Does apple have any explanations for why iCloud will not support iWeb & is there any viable solutions. iWeb is critical to my small business & we have all been trained via joint ventue on iWeb. Now it just goes away. Why?

    turbodave2 wrote:
    I appreciate your repsonse, but the irony is that Apple is still scheduling "One-to-One" & Joint Venture training on iWeb knowing that it all will end next June. ..
    Just to add this : iWeb -- the app itself -- is still supported,updated only months ago and as part of the ilife '11 DVDs still widely spread even though it is not sold on the AppStore it is official part of iLife. It runs in Lion and there is zero issues with the app. So a training makes sense, doesn't it ?.
    They would only to exclude the "publish to me.com" part to be up to date for courses and trainings :-≠

  • Why Microsoft Office for Mac 2011 does not support Arabic and persian?

    Why Microsoft Office for Mac 2011 does not support Arabic and persian

    For Arabic/Persian on  a Mac, the best app is Mellel.  But TextEdit, Nisus Writer, or OpenOffice should also work OK.

  • The requested operation could not be performed because OLE DB provider "MSOLAP" for linked server does not support the required transaction interface.

    I am getting the following error when attempting to INSERT the results of an "EXEC(@MDXQuery) at SSAS LinkedServer":
    The requested operation could not be performed because OLE DB provider "MSOLAP" for linked server does not support the required transaction interface.
    Here is code that illustrates what I am doing:
    DECLARE @MDX varchar(max);
    SET @MDX='
    SELECT
    [Measures].[Extended Service Count]
    } ON COLUMNS,
    NON EMPTY [Organization].[By Manufacturer].[Manufacturer]
    ON ROWS
    FROM (
    SELECT
    {[Organization].[Org Tree].&[2025],[Organization].[Org Tree].&[2040]} ON 0
    FROM [MyCube]
    /* Test 1 */
    EXECUTE(@MDX) at SSASLinkedServer;
    /* Test 2 */
    DECLARE @ResultsB TABLE (
    Manufacturer varchar(255)
    , ExtendedServiceCount float
    INSERT INTO @ResultsB (Manufacturer, ExtendedServiceCount) EXECUTE(@MDX) at SSASLinkedServer;
    Test 1 succeeds, returning expected results, and Test 2 fails returning the error mentioned above.
    Other articles I've found so far don't seem to apply to my case.  I am not creating any explicit transactions in my code.   When I use OPENQUERY, I am able to do the insert just fine, but not when I use EXEC @MDX at LinkedServer.
    Unfortunately in some variations of the query, I run into the 8800 character limit on OPENQUERY, so I need to use this other approach.
    Any ideas?
    -Tab Alleman

    Hi Tab,
    In this case, SQL Server Analysis Services doesn’t support Distributed Transactions by design. Here is a similar thread about this issue for your reference, please see:
    http://social.technet.microsoft.com/Forums/en-US/8b07be45-01b6-49d4-b773-9f441c0e44c9/olaplinked-server-error-msolap-for-linked-server-olaplinked-server-does-not-support-the?forum=sqlanalysisservices
    One workaround is that use SQLCMD to execute the EXEC AT command and saved the results to a file, then import using SSIS.
    If you have any feedback on our support, please click
    here.
    Regards,
    Elvis Long
    TechNet Community Support

  • Mat. for Initial Download: Table not supported by function "C_"

    Hi All,
    We are in SRM 5.0 & ECC 6.0 with Classic scenario. While uploading the MATERIAL through R3AS, we have the "Mat. for Initial Download: Table not supported by function C_" & "No product ID determined for material number ... of logical system" error in SMW01.
    In SMQ2 in SRM, Queue is blocked with "Error in Mapping (Details: transaction SMW01)"
    For your information RFC Users at both the ends have SAP_ALL authorisation. SAP Notes 720819, 420980 & 432339 are implemented.
    Please guide me to resolve this issue.
    Regards
    Ashutosh

    hi,
    How was the issue resolved , i am having the same problem.
    can somebody provide with clue
    regards

  • Subitems for manual strategy are not supported

    Hi Experts,
    Need help from you,
    While configuring material substitution reasons  with inputs substititution strategy as A(Substitute products or display for selection) and in the outcome i am trying to use A (Substution Products are displayed as subitems), system throughing error message "subitems for manual strategy are not supported".
    My requirement is like this - In sales order i enter material, system should pop up with substitutions and after selecting the substitute material, i would like to have the sub item for the original mateiral along with the substitute material.
    I know it is supporting automatic substitution strategy, but i need for manual substitution strategy.
    - Prem

    Hi,
    maintain Stragegy "A" and  then u need to  keep Outcome as "  "( Blank:-Item will be replaced) :-
    Becasue,Strategy Determines Alternate of material Ex:- for X Mat Repalce with Y. where as Outcome control :-
    product selection should replace the original entry or whether it should be recorded as a subitem.Both will not be possible one at time.

  • Mat. for Initial Download: Table not supported by function

    Dear All,
    While replicating material from R3AS, I am getting error in SMW01 as below:
    "Mat. for Initial Download: Table not supported by function"
    Kindly suggest.
    Regards,
    Sagar

    Hi,
    if anybody is interested:I solved the problem for our systems, but it's not a very nice solution:
    In backendsystem, which is ECC 6.0 for us, in table CRMRFCPAR the field CRM_REL was empty for connection to CRM. I think this field should be filled automatically but it wasn't. I filled it 'hard' with '700' and then product/material data could be replicated.
    Background:
    In ECC system while collecting material data the subroutine GET_DOWNLOAD_PARAMS_AND_QUEUE of FG CRM0 is called and there is a request 'IF gt_rfcdest-crm_rel GE '500'.'
    This field crm_rel is filled from table CRMRFCPAR.
    I think CRMRFCPAR-CRM_REL should be filled automatically when using SM30 using the RFC-Destination but in our system it was empty. (CRMPAROLTP -> CRM_RELEASE is set !). So I set CRMRFCPAR-CRM_REL 'hard' in SE11 to '700'.
    This is not a very nice solution but maybe it will help anyone.
    I'm also interested if anybody has another better solution.
    Regards
    Christoph

  • Config view for VLAN config is not supported

    Hi folks,
    I have the following error when I try to view the VLAN config from RME->ConfigManagement->Version Tree.
    "Config view for VLAN config is not supported"
    I didn't found any information over the RME and Campus documentation.
    Anybody know what kind of error I'm issuing
    Thanks and Regards.
    Leonardo

    Hi Pablo,
    The VLAN.dat file cannot be used to be deployed via CiscoWorks, but it can be done manually:
    http://www.cisco.com/en/US/docs/net_mgmt/ciscoworks_resource_manager_essentials/4.3/user/guide/config.html#wp1311740
    The problem with viewing the VLAN.dat contents in the config viewer or change audit reports is also mentioned in the link below:
    http://www.cisco.com/en/US/docs/net_mgmt/ciscoworks_resource_manager_essentials/4.3/user/guide/chgaud.html#wp1060886
    Look for the "Details" row and there you will see the following:
    VLAN configurations cannot be compared because they are in binary format. In this case, the Details link will not be available and will be shown as NA.
    Hope this helps!

  • In-place upgrade of Enterprise Manager for RAC databases is not supported

    upgrading 2 node RAC from 10.2.0.1 to 10.2.0.3 on Windows 2003 64 bit. I got the following:
    In-place upgrade of Enterprise Manager for RAC databases is not supported in this release
    Now I cannot log in to the database control as sys with sysdba role . I get "invalid username/password" error
    I can login as a dba user
    I also get a java error after I log in, some thing about class not found, but then I'm in and I can do everything that I try, although I haven't tried scheduling a backup yet
    Can I upgrade EM to 10.2.0.3?
    If so, how?

    On the patchset readme...
    11.3 Upgrade of Oracle Enterprise Manager Not Supported
    When you start Oracle Database Upgrade Assistant to upgrade 10.2.0.1 database to 10.2.0.3 patch set, the following error occurs:
    Inplace upgrade of Enterprise Manager is not supported for RAC databases is not supported in this release
    Workaround:
    Ignore warning.
    If you drop and recreate the EM repository?
    1). emca -deconfig dbcontrol db repos drop
    2). emca -config dbcontrol db -repos create
    Be careful, doing this put the database on QUIESCE mode.
    Regards,
    Rodrigo Mufalani

  • SBS 2008 - Microsoft Azure Active Directory Module for Windows PowerShell - is not supported by your version

    Hi,
    I was following the artigle (http://www.messageops.com/resources/office-365-documentation/ad-fs-with-office-365-step-by-step-guide/) but
    when try to install the 'Office 365 PowerShell Module' shows a msg saying that 'windows azure active directory module for windows powershell is not supported by your version'.
    And according to the blog (http://blogs.office.com/2014/04/15/synchronizing-your-directory-with-office-365-is-easy/) "DirSync can be
    installed on an existing domain controller"
    >>>> Any help is appreciated.
    * Similar issue: http://www.adaxes.com/forum/post7398.html

    Ok Vasil tks for reply, but this server is 64x. I dont get the point.
    Microsoft Windows [Version 6.0.6002]
    C:\Users\Administrator>set
    ALLUSERSPROFILE=C:\ProgramData
    APPDATA=C:\Users\Administrator\AppData\Roaming
    CLIENTNAME=ANJOTEC_NOTE01
    CommonProgramFiles=C:\Program Files\Common Files
    CommonProgramFiles(x86)=C:\Program Files (x86)\Common Files
    COMPUTERNAME=COMPANYBR-SERVER
    ComSpec=C:\Windows\system32\cmd.exe
    FP_NO_HOST_CHECK=NO
    HOMEDRIVE=C:
    HOMEPATH=\Users\Administrator
    lib=C:\Program Files\SQLXML 4.0\bin\
    LOCALAPPDATA=C:\Users\Administrator\AppData\Local
    LOGONSERVER=\\COMPANYBR-SERVER
    NUMBER_OF_PROCESSORS=4
    OS=Windows_NT
    Path=C:\ProgramData\Oracle\Java\javapath;C:\Program Files\HP\NCU;C:\Windows\sys
    em32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\
    1.0\;C:\Program Files (x86)\Microsoft SQL Server\90\Tools\binn\;C:\Program File
    (x86)\Microsoft SQL Server\80\Tools\Binn\;C:\Program Files\Microsoft SQL Serve
    \90\DTS\Binn\;C:\Program Files\Microsoft SQL Server\90\Tools\binn\;C:\Program F
    les (x86)\Microsoft SQL Server\90\DTS\Binn\;C:\Program Files (x86)\Microsoft SQ
    Server\90\Tools\Binn\VSShell\Common7\IDE\;C:\Program Files (x86)\Microsoft Vis
    al Studio 8\Common7\IDE\PrivateAssemblies\;C:\Program Files (x86)\ExchangeMapi\
    C:\Program Files (x86)\Common Files\Roxio Shared\DLLShared\;C:\Program Files (x
    6)\Common Files\Roxio Shared\DLLShared\;C:\Program Files (x86)\Common Files\Rox
    o Shared\9.0\DLLShared\;C:\Program Files\Microsoft\Exchange Server\bin;C:\Progr
    m Files\Microsoft\Exchange Server\Scripts
    PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC
    PROCESSOR_ARCHITECTURE=AMD64
    PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 30 Stepping 5, GenuineIntel
    PROCESSOR_LEVEL=6
    PROCESSOR_REVISION=1e05
    ProgramData=C:\ProgramData
    ProgramFiles=C:\Program Files
    ProgramFiles(x86)=C:\Program Files (x86)
    PROMPT=$P$G
    PSModulePath=C:\Windows\system32\WindowsPowerShell\v1.0\Modules\
    PUBLIC=C:\Users\Public
    RoxioCentral=C:\Program Files (x86)\Common Files\Roxio Shared\9.0\Roxio Central
    3\
    SESSIONNAME=RDP-Tcp#0
    SystemDrive=C:
    SystemRoot=C:\Windows
    TEMP=C:\Users\Administrator\AppData\Local\Temp\2
    TMP=C:\Users\Administrator\AppData\Local\Temp\2
    USERDNSDOMAIN=COMPANYBR.LOCAL
    USERDOMAIN=COMPANYBR
    USERNAME=administrator
    USERPROFILE=C:\Users\Administrator
    windir=C:\Windows
    C:\Users\Administrator>

  • Why do me apps load for 5 secound and then it goes back to my folder it does that with alot of apps most of my paid apps, why do me apps load for 5 secound and then it goes back to my folder it does that with alot of apps most of my paid apps

    when i go to most of my apps they load for 5 secounds then they go back to my folder
    why does it do that
    PS: Half of the apps are paid

    Try:
    - Resetting the iPOd. Nothing will be los.
    Reset iPod touch:  Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears
    - Download/install a new app
    - Restore from backup

Maybe you are looking for

  • Job for V3 updates failing for inventory

    Dear all, We have implemented inventory in BW and are extracting data from R/3 using LO extraction method. The V3 update is scheduled in R/3 using 'Queued Delta' method. It has been running fine for last six months or so but suddenly the V3 update jo

  • Walmart online billing won't display my bill..adobe reader is installed

    I am new to safari so this may be simple.  I downloaded and installed adobe reader, but when I try to view my Walmart Credit on-line bill, it will not display.  I cannot download the file and open it.  That is NOT an option.... has something to do wi

  • Duplicate Records in Infocube : Full Repair without DSO is possible ?

    Hello Gurus, I have a critical situation in BI production. we have more then 3 years of data in inventory infocubes (PSA->ODS->CUBE). everything was working fine till december 2010. after that in January 2010 and March -2010 we were getting double re

  • Imovie not responding after trying to import big file.

    I have been attempting to import a large file onto imovie, and just before the file is finished and says that it will be imported in "under a minute" It will say that imovie is not responding. I've tryed restarting my macbook, and trying again with t

  • Updation of Standard SAP Fields

    Hi Friends, I am generating some transaction with business object.I would like to update some SAP Standard Tables (base transaction). SAP does not recommend us to fire SQL Statement on standard tables. How can I update some fields like baseref, baset