ADF WebPage Error

I converted my application to work in Screen reader mode. It is working correctly in my local Jdev But when I deploy the application to stand alone weblogic server,
When test my application url in Internet Explorer 8, I am getting a below error message But the application is working fine in Mozilla Firefox, Can you please let me know what libraries I should add to make it work in all browsers.
Prior to converting my application to screen reader mode,It was working in both IE and FireFox
Webpage error details
User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C)
Timestamp: Fri, 29 Jun 2012 09:42:38 UTC
Message: Expected '}'
Line: 2170
Char: 4
Code: 0
URI: http://testurl:8888/MyHelpADA1/adf/jsLibs/Common1_2_12_1.js
Message: 'LocaleSymbols' is undefined
Line: 1
Char: 1
Code: 0
URI: http://testurl:8888/MyHelpADA1/adf/jsLibs/resources/LocaleElements_en_US1_2_12_1.js?loc=en_US
Message: 'TrConverter' is undefined
Line: 2800
Char: 1
Code: 0
URI: http://testurl:8888/MyHelpADA1/afr/partition/ie/default/opt/core-SHEPHERD-PS1-9296.js
Message: 'AdfUIComponents' is null or not an object
Line: 1
Char: 1
Code: 0
URI: http://testurl:8888/MyHelpADA1/afr/partition/ie/default/opt/selectonelistbox-SHEPHERD-PS1-9296.js
Message: 'AdfUIComponents' is null or not an object
Line: 1
Char: 1
Code: 0
URI: http://testurl:8888/MyHelpADA1/afr/partition/ie/default/opt/selectonechoice-SHEPHERD-PS1-9296.js
Message: 'AdfUIComponents' is null or not an object
Line: 368
Char: 1
Code: 0
URI: http://testurl:8888/MyHelpADA1/afr/partition/ie/default/opt/input-SHEPHERD-PS1-9296.js
Message: 'AdfUIComponents' is null or not an object
Line: 1
Char: 1
Code: 0
URI: http://testurl:8888/MyHelpADA1/afr/partition/ie/default/opt/detail-SHEPHERD-PS1-9296.js
Message: 'AdfUIComponents' is null or not an object
Line: 1
Char: 1
Code: 0
URI: http://testurl:8888/MyHelpADA1/afr/partition/ie/default/opt/box-SHEPHERD-PS1-9296.js
Message: 'AdfUIComponents' is null or not an object
Line: 1
Char: 1
Code: 0
URI: http://testurl:8888/MyHelpADA1/afr/partition/ie/default/opt/region-SHEPHERD-PS1-9296.js
Message: 'AdfUIComponents' is null or not an object
Line: 1
Char: 1
Code: 0
URI: http://testurl:8888/MyHelpADA1/afr/partition/ie/default/opt/uncommon-SHEPHERD-PS1-9296.js
Message: 'AdfUIComponents' is null or not an object
Line: 1
Char: 1
Code: 0
URI: http://testurl:8888/MyHelpADA1/afr/partition/ie/default/opt/toolbar-SHEPHERD-PS1-9296.js
Message: 'AdfUIComponents' is null or not an object
Line: 1
Char: 1
Code: 0
URI: http://testurl:8888/MyHelpADA1/afr/partition/ie/default/opt/stretch-SHEPHERD-PS1-9296.js
Message: 'AdfUIComponents' is null or not an object
Line: 1
Char: 1
Code: 0
URI: http://testurl:8888/MyHelpADA1/afr/partition/ie/default/opt/form-SHEPHERD-PS1-9296.js
Message: 'AdfRichDocument' is undefined
Line: 7
Char: 1459
Code: 0
URI: http://testurl:8888/MyHelpADA1/faces/[email protected]&_afrWindowMode=0&_afrLoop=13825574307520124&_adf.ctrl-state=cyfuzrvyc_4
thanks
Krishnaveni

hi Krishnaveni,
This is due to Javascript component was not recognised by your server. To enable this.
In META-INF add this file
adf-js-features.xml
<?xml version="1.0" encoding="utf-8" ?>
<adf-js-features xmlns="http://xmlns.oracle.com/adf/faces/feature">
<features xmlns="http://xmlns.oracle.com/adf/faces/feature">
<feature>
<feature-name>AcmeMyPane</feature-name>
<feature-class>oracle/adfdemo/acme/js/component/AcmeMyPane.js</feature-class>
<feature-class>oracle/adfdemo/acme/js/event/AcmePaneSelectEvent.js</feature-class>
<feature-class>oracle/adfdemo/acme/js/component/AcmeMyPanePeer.js</feature-class>
<!-- Dependencies -->
<!-- Popup hints -->
<feature-dependency>AdfRichPopup</feature-dependency>
<feature-dependency>AdfRichDocument</feature-dependency>
</feature>
</features>
</adf-js-features>
And in WEB-INF add this file
adf-js-partitions.xml
<?xml version="1.0" encoding="utf-8" ?>
<adf-js-features xmlns="http://xmlns.oracle.com/adf/faces/partition">
<adf-js-partitions>
<partitions xmlns="http://xmlns.oracle.com/adf/faces/partition">
<partition>
<partition-name>boot</partition-name>
<feature>AdfBootstrap</feature>
</partition>
<partition>
<partition-name>core</partition-name>
<feature>AdfCore</feature>
<!-- Behavioral component super classes -->
<feature>AdfUIChoose</feature>
<feature>AdfUICollection</feature>
<feature>AdfUICommand</feature>
<feature>AdfUIDialog</feature>
<feature>AdfUIDocument</feature>
<feature>AdfUIEditableValue</feature>
<feature>AdfUIForm</feature>
<feature>AdfUIGo</feature>
<feature>AdfUIInput</feature>
<feature>AdfUIObject</feature>
<feature>AdfUIOutput</feature>
<feature>AdfUIPanel</feature>
<feature>AdfUIPopup</feature>
<feature>AdfUISelectBoolean</feature>
<feature>AdfUISelectInput</feature>
<feature>AdfUISelectOne</feature>
<feature>AdfUISelectMany</feature>
<feature>AdfUIShowDetail</feature>
<feature>AdfUISubform</feature>
<feature>AdfUIValue</feature>
<!-- These are all so common that we group them with core -->
<feature>AdfRichDocument</feature>
<feature>AdfRichForm</feature>
<feature>AdfRichPopup</feature>
<feature>AdfRichSubform</feature>
<feature>AdfRichCommandButton</feature>
<feature>AdfRichCommandLink</feature>
<!--
Dialog is currently on every page for messaging. No use
in putting these in a separate partition.
-->
<feature>AdfRichPanelWindow</feature>
<feature>AdfRichDialog</feature>
<!-- af:showPopupBehavior is so small/common, belongs in core -->
<feature>AdfShowPopupBehavior</feature>
</partition>
<partition>
<partition-name>document</partition-name>
<feature>AdfRichDocument</feature>
</partition>
<partition>
<partition-name>accordion</partition-name>
<feature>AdfRichPanelAccordion</feature>
</partition>
<partition>
<partition-name>border</partition-name>
<feature>AdfRichPanelBorderLayout</feature>
</partition>
<partition>
<partition-name>box</partition-name>
<feature>AdfRichPanelBox</feature>
</partition>
<partition>
<partition-name>calendar</partition-name>
<feature>AdfUICalendar</feature>
<feature>AdfRichCalendar</feature>
<feature>AdfCalendarDragSource</feature>
<feature>AdfCalendarDropTarget</feature>
</partition>
<partition>
<partition-name>collection</partition-name>
<feature>AdfUIDecorateCollection</feature>
<feature>AdfRichPanelCollection</feature>
</partition>
<partition>
<partition-name>color</partition-name>
<feature>AdfRichChooseColor</feature>
<feature>AdfRichInputColor</feature>
</partition>
<partition>
<partition-name>date</partition-name>
<feature>AdfRichChooseDate</feature>
<feature>AdfRichInputDate</feature>
</partition>
<partition>
<partition-name>declarativeComponent</partition-name>
<feature>AdfUIInclude</feature>
<feature>AdfUIDeclarativeComponent</feature>
<feature>AdfRichDeclarativeComponent</feature>
</partition>
<partition>
<partition-name>detail</partition-name>
<feature>AdfRichShowDetail</feature>
</partition>
<partition>
<partition-name>dnd</partition-name>
<feature>AdfDragAndDrop</feature>
<feature>AdfCollectionDragSource</feature>
<feature>AdfStampedDropTarget</feature>
<feature>AdfCollectionDropTarget</feature>
<feature>AdfAttributeDragSource</feature>
<feature>AdfAttributeDropTarget</feature>
<feature>AdfComponentDragSource</feature>
<feature>AdfDropTarget</feature>
</partition>
<partition>
<partition-name>detailitem</partition-name>
<feature>AdfRichShowDetailItem</feature>
</partition>
<partition>
<partition-name>file</partition-name>
<feature>AdfRichInputFile</feature>
</partition>
<partition>
<partition-name>form</partition-name>
<feature>AdfRichPanelFormLayout</feature>
<feature>AdfRichPanelLabelAndMessage</feature>
</partition>
<partition>
<partition-name>format</partition-name>
<feature>AdfRichOutputFormatted</feature>
</partition>
<partition>
<partition-name>frame</partition-name>
<feature>AdfRichInlineFrame</feature>
</partition>
<partition>
<partition-name>header</partition-name>
<feature>AdfRichPanelHeader</feature>
<feature>AdfRichShowDetailHeader</feature>
</partition>
<partition>
<partition-name>imagelink</partition-name>
<feature>AdfRichCommandImageLink</feature>
</partition>
<partition>
<partition-name>iedit</partition-name>
<feature>AdfInlineEditing</feature>
</partition>
<partition>
<partition-name>input</partition-name>
<feature>AdfRichInputText</feature>
<feature>AdfInsertTextBehavior</feature>
</partition>
<partition>
<partition-name>label</partition-name>
<feature>AdfRichOutputLabel</feature>
</partition>
<partition>
<partition-name>list</partition-name>
<feature>AdfRichPanelList</feature>
</partition>
<partition>
<partition-name>lov</partition-name>
<feature>AdfUIInputPopup</feature>
<feature>AdfRichInputComboboxListOfValues</feature>
<feature>AdfRichInputListOfValues</feature>
</partition>
<partition>
<partition-name>media</partition-name>
<feature>AdfRichMedia</feature>
</partition>
<partition>
<partition-name>message</partition-name>
<feature>AdfUIMessage</feature>
<feature>AdfUIMessages</feature>
<feature>AdfRichMessage</feature>
<feature>AdfRichMessages</feature>
</partition>
<partition>
<partition-name>menu</partition-name>
<feature>AdfRichCommandMenuItem</feature>
<feature>AdfRichGoMenuItem</feature>
<feature>AdfRichMenuBar</feature>
<feature>AdfRichMenu</feature>
</partition>
<partition>
<partition-name>nav</partition-name>
<feature>AdfUINavigationPath</feature>
<feature>AdfUINavigationLevel</feature>
<feature>AdfRichBreadCrumbs</feature>
<feature>AdfRichCommandNavigationItem</feature>
<feature>AdfRichNavigationPane</feature>
</partition>
<partition>
<partition-name>note</partition-name>
<feature>AdfRichNoteWindow</feature>
</partition>
<partition>
<partition-name>poll</partition-name>
<feature>AdfUIPoll</feature>
<feature>AdfRichPoll</feature>
</partition>
<partition>
<partition-name>progress</partition-name>
<feature>AdfUIProgress</feature>
<feature>AdfRichProgressIndicator</feature>
</partition>
<partition>
<partition-name>print</partition-name>
<feature>AdfShowPrintablePageBehavior</feature>
</partition>
<partition>
<partition-name>scrollComponentIntoView</partition-name>
<feature>AdfScrollComponentIntoViewBehavior</feature>
</partition>
<partition>
<partition-name>query</partition-name>
<feature>AdfUIQuery</feature>
<feature>AdfRichQuery</feature>
<feature>AdfRichQuickQuery</feature>
</partition>
<partition>
<partition-name>region</partition-name>
<feature>AdfUIRegion</feature>
<feature>AdfRichRegion</feature>
</partition>
<partition>
<partition-name>reset</partition-name>
<feature>AdfUIReset</feature>
<feature>AdfRichResetButton</feature>
</partition>
<partition>
<partition-name>rte</partition-name>
<feature>AdfRichTextEditor</feature>
<feature>AdfRichTextEditorInsertBehavior</feature>
</partition>
<partition>
<partition-name>select</partition-name>
<feature>AdfRichSelectBooleanCheckbox</feature>
<feature>AdfRichSelectBooleanRadio</feature>
<feature>AdfRichSelectManyCheckbox</feature>
<feature>AdfRichSelectOneRadio</feature>
</partition>
<partition>
<partition-name>selectmanychoice</partition-name>
<feature>AdfRichSelectManyChoice</feature>
</partition>
<partition>
<partition-name>selectmanylistbox</partition-name>
<feature>AdfRichSelectManyListbox</feature>
</partition>
<partition>
<partition-name>selectonechoice</partition-name>
<feature>AdfRichSelectOneChoice</feature>
</partition>
<partition>
<partition-name>selectonelistbox</partition-name>
<feature>AdfRichSelectOneListbox</feature>
</partition>
<partition>
<partition-name>shuttle</partition-name>
<feature>AdfUISelectOrder</feature>
<feature>AdfRichSelectManyShuttle</feature>
<feature>AdfRichSelectOrderShuttle</feature>
</partition>
<partition>
<partition-name>slide</partition-name>
<feature>AdfRichInputNumberSlider</feature>
<feature>AdfRichInputRangeSlider</feature>
</partition>
<partition>
<partition-name>spin</partition-name>
<feature>AdfRichInputNumberSpinbox</feature>
</partition>
<partition>
<partition-name>status</partition-name>
<feature>AdfRichStatusIndicator</feature>
</partition>
<partition>
<partition-name>stretch</partition-name>
<feature>AdfRichDecorativeBox</feature>
<feature>AdfRichPanelSplitter</feature>
<feature>AdfRichPanelStretchLayout</feature>
<feature>AdfRichPanelDashboard</feature>
<feature>AdfPanelDashboardBehavior</feature>
<feature>AdfDashboardDropTarget</feature>
</partition>
<partition>
<partition-name>tabbed</partition-name>
<feature>AdfUIShowOne</feature>
<feature>AdfRichPanelTabbed</feature>
</partition>
<partition>
<partition-name>table</partition-name>
<feature>AdfUIIterator</feature>
<feature>AdfUITable</feature>
<feature>AdfUITable2</feature>
<feature>AdfUIColumn</feature>
<feature>AdfRichColumn</feature>
<feature>AdfRichTable</feature>
</partition>
<partition>
<partition-name>toolbar</partition-name>
<feature>AdfRichCommandToolbarButton</feature>
<feature>AdfRichToolbar</feature>
</partition>
<partition>
<partition-name>toolbox</partition-name>
<feature>AdfRichToolbox</feature>
</partition>
<partition>
<partition-name>train</partition-name>
<feature>AdfUIProcess</feature>
<feature>AdfRichCommandTrainStop</feature>
<feature>AdfRichTrainButtonBar</feature>
<feature>AdfRichTrain</feature>
</partition>
<partition>
<partition-name>tree</partition-name>
<feature>AdfUITree</feature>
<feature>AdfUITreeTable</feature>
<feature>AdfRichTree</feature>
<feature>AdfRichTreeTable</feature>
</partition>
<!--
Some components which typically do have client-side representation,
but small enough that we might as well download in a single partition
in the event that any of these are needed.
-->
<partition>
<partition-name>uncommon</partition-name>
<feature>AdfRichGoButton</feature>
<feature>AdfRichIcon</feature>
<feature>AdfRichImage</feature>
<feature>AdfRichOutputText</feature>
<feature>AdfRichPanelGroupLayout</feature>
<feature>AdfRichSeparator</feature>
<feature>AdfRichSpacer</feature>
<feature>AdfRichGoLink</feature>
</partition>
<partition>
<partition-name>eum</partition-name>
<feature>AdfEndUserMonitoring</feature>
</partition>
<partition>
<partition-name>ads</partition-name>
<feature>AdfActiveDataService</feature>
</partition>
<partition>
<partition-name>automation</partition-name>
<feature>AdfAutomationTest</feature>
</partition>
</partitions>
</adf-js-partitions>
</adf-js-features>
this should sortout your problem.
Thanks
CN Balu Ramesh

Similar Messages

  • ADF 11g: Error with IE8, Win 7 OS

    Hi ,
    I am using ADF version 11.1.1.3.0, my hosted application is running fine with IE-7 on XP, Vista OS
    But when i am trying to access application using IE - 8 on Win 7 OS i am getting below mentioned error:
    Webpage error details
    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.3; MS-RTC LM 8)
    Timestamp: Fri, 7 Jan 2011 10:41:38 UTC
    Message: Permission denied
    Line: 4354
    Char: 1
    Code: 0
    URI: http://10.21.136.19:8103/EmersonMMI-EmMMI-context-root/afr/partition/ie/default/opt/boot-11.1.1.3.0-0084.js
    Please help to resolve this
    Thanks n Regards
    Manav Ratra

    Hi Manav Ratra,
    Me too having the same configuration as said but i am running all ADF apps fine....
    U might have local machine problem... try running the same in IE-8 compatibility mode and also try with Win 7 Firefox
    Regards,
    Suganth.G

  • Safari and Chrome "can't connect to webpage" error message

    I recently purchased this macbook on the 26th and it was working completely fine the first day. Today i was using my macbook and it was working completely fine, then about 20-30 minutes after turning on and using my macbook webpages failed to load. In safari I would refresh the page and the page would stop loading at about 40%, and when i tried doing using the search bar instead of the URL bar, i would recieve a "Can't connect to server error" saying that safari was unable to connect to Google. On Chrome i tried opening the same page, such as twitter or youtube, and the page would fail to load as well and it would give me the "unable to connect to webpage" error message. Anything connected to the internet won't load as well, such as the app store or even skype. Whenever i restart the computer it begins working fine again, but returns to its previous state after 20-30 mins again. I have tried restarting my router and even connecting to a different router. I have also checked my proxies and nothing is selected. I am just wondering what to do at this moment, should i take my computer in so soon? Or should I give the computer some time to get "broken in."? My macbook is running Mac OS X Lion 10.7.4
    Preferences
    1
    2
    3
    4
    5
    6
    7
    8
    9
    0
    =
    Backspace
    Tab
    q
    w
    e
    r
    t
    y
    u
    i
    o
    p
    Return
    capslock
    a
    s
    d
    f
    g
    h
    j
    k
    l
    shift
    `
    z
    x
    c
    v
    b
    n
    m
    shift
    English
    alt
    alt
    PreferencesI r

    Do you have Little Snitch installed?
    See: https://discussions.apple.com/thread/3892943?start=0&tstart=0

  • "Message from Webpage (error) There was an error in the browser while setting properties into the page HTML, possibly due to invalid URLs or other values. Please try again or use different property values."

    I created a site column at the root of my site and I have publishing turned on.  I selected the Hyperlink with formatting and constraints for publishing.
    I went to my subsite and added the column.  The request was to have "Open in new tab" for their hyperlinks.  I was able to get the column to be added and yesterday we added items without a problem. 
    The problem arose when, today, a user told me that he could not edit the hyperlink.  He has modify / delete permissions on this list.
    He would edit the item, in a custom list, and click on the address "click to add a new hyperlink" and then he would get the error below after succesfully putting in the Selected URL (http://www.xxxxxx.com), Open
    Link in New Window checkbox, the Display Text, and Tooltip:
    "Message from Webpage  There was an error in the browser while setting properties into the page HTML, possibly due to invalid URLs or other values. Please try again or use different property values."
    We are on IE 9.0.8.1112 x86, Windows 7 SP1 Enterprise Edition x64
    The farm is running SharePoint 2010 SP2 Enterprise Edition August 2013 CU Mark 2, 14.0.7106.5002
    and I saw in another post, below with someone who had a similar problem and the IISreset fixed it, as did this problem.  I wonder if this is resolved in the latest updated CU of SharePoint, the April 2014 CU?
    Summary from this link below: Comment out, below, in AssetPickers.js
    //callbackThis.VerifyAnchorElement(HtmlElement, Config);
    perform IISReset
    This is referenced in the item below:
    http://social.technet.microsoft.com/Forums/en-US/d51a3899-e8ea-475e-89e9-770db550c06e/message-from-webpage-error-there-was-an-error-in-the-browser-while-setting?forum=sharepointgeneralprevious
    TThThis is possibly the same information that I saw, possibly from the above link as reference.
    http://seanshares.com/post/69022029652/having-problems-with-sharepoint-publishing-links-after
    Again, if I update my SharePoint 2010 farm to April 2014 CU is this going to resolve the issue I have?
    I don't mind changing the JS file, however I'd like to know / see if there is anything official regarding this instead of my having to change files.
    Thank you!
    Matt

    We had the same issue after applying the SP2 & August CU. we open the case with MSFT and get the same resolution as you mentioned.
    I blog about this issue and having the office reference.
    Later MSFT release the Hotfix for this on December 10, 2013 which i am 100% positive should be part of future CUs.
    So if you apply the April CU then you will be fine.
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

  • Oracle BAM Webpage error details

    When trying to use the surface prompt to filter data in a report I am getting the following webpage error has anyone faced this issue before,
    I am using IE 8 and Our BAM version is 11.1.1.7
    Webpage error details
    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.3; .NET4.0C; .NET4.0E)
    Timestamp: Tue, 8 Jul 2014 15:45:20 UTC
    Message: '2' is null or not an object
    Line: 1482
    Char: 5
    Code: 0
    URI: http://cifasoa-wc-a1p.sys.comcast.net:9001/OracleBAM/17584/shared/scripts/utilities/Utilities.js

    Hello
    Downgrade you're IE to 7 or 6 ..you're problem solved.
    Regards
    Shankar

  • ADF Mobile Error handling and redirect

    I'm stuck on how to handle errors within my ADF Mobile application. My application consumes a number of web services and we have found we often get error messages when phone connections switch from wifi to 3g or lose connection altogether. These are errors such as SSL handshake failure, HTTP500 errors, and also errors where it can't display the binding eh "Unable to get value for the property due to invalid binding iterator" because a WS call has failed. From the little information I can find - and none of it specific to ADF Mobile, I think I need to write an error handler class which I set against ErrorHandlerClass in databinding.cpx - if that correct? Am I able to catch these errors using that method and if so has anyone got any examples at all. Ideally what I'd like to do when I've caught those errors is redirect to another page (showing something like facebooks app does when it loses a connection and says tap to try again), does anyone have any suggestions or examples?
    thanks
    lynsey

    A sample for ADF Mobile Error Handling.
    SDA013
    Error Handling in ADF Mobile
    https://java.net/projects/smuenchadf/pages/ADFMobile#SDA013

  • ADF Script Error

    Hi,
    i am getting a script error like:
    Webpage error details
    Message: 'position' is null or not an object
    Line: 1094
    Char: 1
    Code: 0
    URI: http://127.0.0.1:7101/context-root/afr/partition/ie/default/opt/stretch-11.1.1.4.0-0355.js.
    and input fields become read only.
    I don't know wat is the problem in my page?
    Any suggestions?
    I am using JDev11.1.1.4.0
    Edited by: Raj Gopal K on May 17, 2011 3:09 PM

    You need to provide more info like the source of the page. Before posting it here, try to make it as small as possible. e.g. remove all stuff which is not needed to reproduce the error.
    From the message it's something to do this stretching (panelstrechLayout or panelSplitter may be).
    Timo

  • Webpage error in BPS running on IE8

    Dear all,
    I am trying to find out why the BPS planning tool doesn't open the graphical layout in IE8.
    In IE7 it works properly, but in IE8 (also compatibility mode) doesn't show anything, only an error-sign in the left bottom of IE8.
    After clicking on it the following error shows:
         Webpage error details
         User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; NET              CLR  3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; MS-RTC LM 8)
         Timestamp: Mon, 17 May 2010 14:05:07 UTC
         Message: Object required
         Line: 466
         Char: 7
         Code: 0
         URI: http://<Removing server references>/sap(bD1lbiZjPTUwMCZkPW1pbg==)/bc/bsp/sap/zrofo_w0002/pm_page.htm
    Any idea?
    Regards,
    Marit Duits
    Have removed references to the server - please do not quote server addresses directly... replace the same with <server>:<port>
    Edited by: Arun Varadarajan on May 21, 2010 7:13 PM

    Hello
    What is your system version? You have to confirm in service.sap.com/pam if your system version supports IE8. Only the new support package level has support for that. If you uses Bw7.0 you should be at least on SPS20 to use IE8.
    I hope this information helps
    Lucimar

  • Webpage error on VPN

    I was wondering if anyone had encountered an issue with the published RoboHelp receiving error on javascripts when the contents are being access via VPN.  We started to face the issue once we've upgraded from RH7 to RH8.
    We tried the convert to html feature in RH8 to cleanup the HTML but it is still an issue.
    The VPN that is being used Juniper.
    Webpage error details
    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)
    Timestamp: Tue, 5 Apr 2011 15:13:24 UTC
    Message: Object expected
    Line: 1
    Char: 1
    Code: 0
    URI: https://vpn1.../Procedures/Close_a_MAC_Call/,DanaIn fo=help.com,SSL+Loto-PM.htm

    The issue is due to the javascript format
    The Javascript failed because the "</script>" is commented out as it's on the same line as the // (comment close for the CDATA)
    <script type="text/javascript" language="JavaScript1.2">//<![CDATA[
    if( typeof( TextPopupInit ) != 'function' ) TextPopupInit = new Function();
    TextPopupInit('a2','POPUP380679909');
    //]]></script>
    Does anyone know if there is a setting in RH8 HTML to format the scripts correctly?  Having to update the format each time the library is published will be a pain.
    <script type="text/javascript" language="JavaScript1.2">//<![CDATA[
    if( typeof( TextPopupInit ) != 'function' ) TextPopupInit = new Function();
    TextPopupInit('a2','POPUP380679909');
    //]]>
    </script>
    instead of:
    <script type="text/javascript" language="JavaScript1.2">//<![CDATA[
    if( typeof( TextPopupInit ) != 'function' ) TextPopupInit = new Function();
    TextPopupInit('a2','POPUP380679909');
    //]]></script>

  • Loading - won't play - Webpage error details added

    When I try to play anything on the CBS website the video goes into a loading cycle and will not play - when I right click it doesn't allow me to click play.  Any suggestions?
    Webpage error details
    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; InfoPath.2; MS-RTC LM 8)
    Timestamp: Thu, 16 Jul 2009 19:59:13 UTC
    Message: Invalid character
    Line: 1
    Char: 7
    Code: 0
    URI: http://ad.doubleclick.net/adj/CBS/daytime/the_young_and_the_restless/season0/video;dpart=d aytime;show=the_young_and_the_restless;feat=video;type=ros;;sec=0;sz=234x60;tile=6;prod=pr esenting;dcopt=ist;adv=d;abr=!webtv;ord=1247774262026?
    Message: Invalid character
    Line: 1
    Char: 7
    Code: 0
    URI: http://ad.doubleclick.net/adj/CBS/daytime/the_young_and_the_restless/season0/video;dpart=d aytime;show=the_young_and_the_restless;feat=video;type=ros;;sec=0;sz=234x60;tile=2;prod=fe ature;dcopt=istundefined;abr=!webtv;ord=1247774262026?
    Message: Syntax error
    Line: 1
    Char: 1
    Code: 0
    URI: http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php
    Message: Object expected
    Line: 45
    Char: 5
    Code: 0
    URI: http://www.cbs.com/sitecommon/js/fb_connect.js
    Message: Invalid character
    Line: 1
    Char: 7
    Code: 0
    URI: http://content.dl-rms.com/rms/mother/6401/nodetag.js

    I appreciate you're frustrated with the situation but it's hardly 'Snarky' telling you the truth regarding your specific comment.  I've offered an answer elsewhere - I've just checked and it still lists Apple TV rental for me, though the item may not appear if you've not had the e-mail detailing your purchases yet.
    In iTunes on your computer log into your account.
    Under Account Information>Purchase History it should list your purchases.
    Select the problem purchase/purchases form the list, and it should list them with 'Report a Problem' as a button to click on the bottom.
    AC

  • Webpage error details

    Please help i am facing below error while running the page
    Webpage error details
    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.1)
    Timestamp: Tue, 1 Feb 2011 06:20:12 UTC
    Message: Object doesn't support this property or method
    Line: 2724
    Char: 1
    Code: 0
    URI: http://172.22.162.35:8988/OA_HTML/cabo/jsLibs/Common2_3_6_2.js

    Is this an Oracle E-Business Suite question? If yes, please post the details of the application release, database version and OS.
    How do you get this error? What is the navigation path?
    Was this working before? If yes, what changes have been done recently?
    Please see these docs.
    Recommended Browsers for Oracle E-Business Suite 11i (Doc ID 285218.1)
    Recommended Browsers for Oracle E-Business Suite Release 12 (Doc ID 389422.1)
    IE8 AND R12 SECURITY SETTING REQUIREMENT ON CROSS SITE SCRIPTING (XSS) (Doc ID 1069497.1)
    How To View The Java Console And Enable Tracing For Sun JRE (Native Plug-in) (Doc ID 452853.1)
    How To Enable The Java Console Jinitiator 1.1.8 and 1.3 (Doc ID 310961.1)
    Thanks,
    Hussein

  • How do i fix webpage error flashVer=12.0.0?  i've tried everything

    im trying to watch a tutorial that has little videos in it.  everytime the page tries to load it says webpage error flashVer=12.0.0.  ihave windows 8.1 with internet explorer.  my computer says i have all the latest flash player and adobe and its installedcorrectly?  it is enabled and activex is turned off.  what is the problem??

    My best guess is that it isn't Windows 8 or Flash Player, but rather IE11, which comes with Windows 8.1.
    Microsoft fiddled with the "User-Agent Strings" which websites and apps use to identify a browser and provide the proper content for it.
    The altered strings ID Internet Explorer 11 as either a Gecko browser (Firefox) or a Webkit browser (Chrome or Safari). The problem is that the content which matches those User-Agent Strings requires the matching browser engine, but IE uses a Trident engine and so it becomes an "unidentified" browser when the page or app can't macth the UAS with the engine.
    The pages or app can't recognize the browser, so they don't recognize any of the plugins, like Flash Player. So far, Microsoft has made NO indication that they have any plan to fix it soon.
    Microsoft's recommendation is to use Compatibility View for affected pages, and "pretend" you're using a different browser. Trouble with that is it has seen limited success at best, and you have to individually enable it for EVERY page that has problems.
    I'm not big on "pretending" so I recommend actually using another browser.
    Firefox (from Mozilla)
    Opera (from Opera)
    Safari (from Apple)
    Chrome (from Google)
    ANY of those will work where IE11 won't, with the Flash Player Plug-in (For all other browsers), and Chrome doesn't even need that because it has its own Flash Player plugin built in.

  • IE8 webpage errors

    I've noticed lately that all of the forum pages after downloading in IE8 have a "Done, but with errors on page." message at the bottom.  Clicking on that, I get this
    Webpage error details
    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET4.0C; InfoPath.1; .NET CLR 3.0.30729; .NET4.0E)
    Timestamp: Wed, 4 Jan 2012 02:37:04 UTC
    Message: Object expected
    Line: 672
    Char: 2387
    Code: 0
    URI: http://www.ni.com/javascript/analysis/us/tag-footer.js
     I don't see this on other webpages.
    It doesn't seem to be causing any problems, but it is annoying when I notice there is an error. 
    Any ideas why the forums are generating this error message?

    I see the same thing on IE8, but not on IE9, or Firefox. Looking at the script the function it's in is related to eloqua.com stuff.

  • ADF 11g:Error When running login page: ADF security

    I am using Jdeveloper 11.1.1.2.0.Based on the following post
    http://blogs.oracle.com/fusionmiddlewarereallife/adf11gsecurity.html when I am running the application I am getting following error in web browser:-
    Error 403--Forbidden
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    +10.4.4 403 Forbidden+
    The server understood the request, but is refusing to fulfill it. Authorization will not help and the request SHOULD NOT be repeated. If the request method was not HEAD and the server wishes to make public why the request has not been fulfilled, it SHOULD describe the reason for the refusal in the entity. This status code is commonly used when the server does not wish to reveal exactly why the request has been refused, or when no other response is applicable.
    Steps to reproduce the error:-
    1) Unzip the lession6.zip file (http://blogs.oracle.com/fusionmiddlewarereallife/Lesson6.zip)
    2) Open application in your Jdeveloper and run the login.html page.
    3) In the login page,give user id as "James" and password as "welcome1"
    4) You will see above error.
    I have tested the above in Firefox 3.6.3 and IE7.*Please note that when you run the PublicPage.jspx, application works fine*. Its not working in the case when you are running the application using login.html
    I have checked the Adnrejus post on this error(http://andrejusb.blogspot.com/2009/12/solving-error-403-forbidden-in-adf.html), but weblogic.xml is generated with required entries.
    Can anyone help me in this please:-
    Thanks,
    Vikram

    Me too have tested the application by running the public page. Its working fine.
    But my hole point here is, why application is not moving to the PrivatePage.jspx from login page. Means why can't we directly run the login page and access the PrivatePage. Even when success_url is configured in web.xml
    <servlet>
    <servlet-name>adfAuthentication</servlet-name>
    <servlet-class>oracle.adf.share.security.authentication.AuthenticationServlet</servlet-class>
    <init-param>
    <param-name>success_url</param-name>
    <param-value>/faces/PrivatePage.jspx</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
    </servlet>
    Thanks again,
    Vikram

  • ADF: showing error message on a validation rule programatically

    Jdeveloper : 11.1.2.2.0
    i m using ADF. i ve a form that contains input text that is binded to a managed bean property.
    that input text value is inserted into an entity attribute.the attribute in the entity has a validation rule.
    i submit the form and in my managed bean i call
    am.getDBTransaction().commit();
    i want when i submit the form and the when the commit is called and throws exception regarding the validation rule,i want to show an error note window same style like this http://oi50.tinypic.com/15fhnpt.jpg
    how can i do that ?
    thanks in advance :)

    Hi,
    i submit the form and in my managed bean i call
    am.getDBTransaction().commit();A strict NO NO for doing this. You add the commit action to the binding and call the execute the commit operation binding programatically.
    i m using ADF.ADF is vast. Be specific on the technologies you use (ADF BC and ADF Faces?)
    that input text value is inserted into an entity attribute.the attribute in the entity has a validation rule.Are you doing something special with the binding you have in bean? If not, why don't you Drag and Drop the VO from the data control directly? (set the af:messages tag to have inline=true).
    -Arun

Maybe you are looking for