Applet refresh with MS-VM in IE fails

Hi,
sorry, but I'm a real NEWBIE in java...
My problem is:
I use a simple freeware barchart applet on our website
and when first opened it works fine with IE5.5 or 6 (Microsoft VM!).
After a reload just a small part of the applet will
be rebuilt. No error is printed out in the Java Debug Console. With the jre 1.4 used in the IE theres no
problem!
Has anybody an idea how to make my applet "compatible" with the MS-VM??
Thanks in advance,
Dirk

Hi,
thanks for your answer!
Here's the code of the bar chart applet.
I've also written a little html-testpage and SURPRISE, after running the html-File locally the Applet works in IE (with MS VM) after Refresh!
No, I'm really confused :-(
Any idea?
Dirk
the java-source:
import java.applet.Applet;
import java.applet.AppletContext;
import java.awt.*;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;
import java.net.MalformedURLException;
import java.net.URL;
public class BarChartDK extends Applet
implements MouseListener {
private int i;
private int AnzSaeulen;
private int Breite;
private int Hoehe;
private int Hoehe_diagramm;
private int Breite_diagramm;
private int AktKomPos1;
private int AktKomPos2;
private int j;
private int KomPos1;
private int KomPos2;
private int P_Rand;
private int P_Breite;
private int P_Hoehe;
private int P_X;
private int P_Y;
private int AbsS�ulenBreite;
private int Max_Farbe;
private int y_VersatzBeschr;
private int MaxWert;
private int AktWert;
private int MaxSaeulenHoehe;
private int AktFarbIndex;
private int Bod1x;
private int Bod2x;
private int Bod3x;
private int Bod4x;
private int Bod5x;
private int Bod6x;
private int Bod7x;
private int Bod1y;
private int Bod2y;
private int Bod3y;
private int Bod4y;
private int Bod5y;
private int Bod6y;
private int Bod7y;
private Color SaeulenFarbe;
private Color Akt_Farbe;
private Color Farbe[];
private Color HGFarbe[];
private Color BeschrFarbe;
private int Rand[];
//private int Horny[];
private String Numbers;
private String Legend;
private String myLink;
private String AktWertStr1;
private String AktWertStr2;
private URL myURL;
private boolean BeschrJN;
private boolean Mouse;
     public void start() {
Farbe = new Color[13];
Farbe[1] = str2col("CCFFFF");
Farbe[2] = str2col("66FFFF");
Farbe[3] = str2col("00FFFF");
Farbe[4] = str2col("CCFF00");
Farbe[5] = str2col("66FF00");
Farbe[6] = str2col("00FF00");
Farbe[7] = str2col("CCFFCC");
Farbe[8] = str2col("FFFF66");
Farbe[9] = str2col("FFFF00");
Farbe[10] = str2col("FFCC00");
Farbe[11] = str2col("FF6600");
Farbe[12] = str2col("FF0000");
HGFarbe = new Color[4];
HGFarbe[1] = Color.white;
HGFarbe[2] = Color.gray;
HGFarbe[3] = Color.black;
Max_Farbe = DF("BGCOLOR", HGFarbe);
Max_Farbe = 12;
Max_Farbe = DF("COLOR", Farbe);
Mouse = false;
myLink = getParameter("LINK");
if(myLink != null) {
Mouse = true;
BeschrJN = true;
Legend = getParameter("HIDENUMBERS");
if(Legend != null) {
BeschrJN = false;
Breite = getSize().width;
Hoehe = getSize().height;
Hoehe_diagramm = Hoehe - 50;
Numbers = getParameter("NUMBERS");
Legend = getParameter("LEGEND");
if(Legend == null) {
Legend = Numbers;
AnzSaeulen = 0;
MaxWert = 0;
AktKomPos1 = 0;
if(Numbers != null) {
do
KomPos1 = Numbers.indexOf(",", AktKomPos1);
if(KomPos1 < 0) {
break;
AnzSaeulen = AnzSaeulen + 1;
AktWertStr1 = Numbers.substring(AktKomPos1, KomPos1);
try {
AktWert = Integer.parseInt(AktWertStr1);
catch(NumberFormatException numberformatexception) {
AktWert = 0;
if(AktWert > MaxWert) {
MaxWert = AktWert;
AktKomPos1 = KomPos1 + 1;
while(KomPos1 > 0); {
Rand = new int[AnzSaeulen + 1];
//Horny = new int[AnzSaeulen + 1];
private Color str2col(String s)
int k = Integer.decode("0x" + s.substring(0, 2)).intValue();
int l = Integer.decode("0x" + s.substring(2, 4)).intValue();
int i1 = Integer.decode("0x" + s.substring(4, 6)).intValue();
return new Color(k, l, i1);
private int DF(String s, Color acolor[])
Numbers = getParameter(s);
if(Numbers != null)
AktKomPos1 = 0;
Max_Farbe = 0;
do
KomPos1 = Numbers.indexOf(",", AktKomPos1);
if(KomPos1 < 0) {
break;
Max_Farbe = Max_Farbe + 1;
if(Max_Farbe == acolor.length) {
break;
AktWertStr1 = Numbers.substring(AktKomPos1, KomPos1 + 1);
acolor[Max_Farbe] = str2col(AktWertStr1);
AktKomPos1 = KomPos1 + 1;
while(KomPos1 > 0);
return Max_Farbe;
public void mousePressed(MouseEvent mouseevent)
public void mouseReleased(MouseEvent mouseevent)
public void mouseEntered(MouseEvent mouseevent)
public void mouseExited(MouseEvent mouseevent)
public void mouseClicked(MouseEvent mouseevent)
int i1 = mouseevent.getX();
int j1 = mouseevent.getY();
if(Mouse)
int l = 0;
for(int k = 1; k <= AnzSaeulen; k++)
if(i1 >= Rand[k] && i1 <= Rand[k] + AbsS�ulenBreite && Mouse){
l = k;
if(l > 0){
NewURL(FrontFarbe(l));
stop();
start();
public String FrontFarbe(int SaeulenNr)
int index1=0;
     int index2;
     String AktuellFarbe = "";
     for(i=1;i<=SaeulenNr;i++) {
index2=Legend.indexOf(",",index1);
AktuellFarbe=Legend.substring(index1,index2);
index1=index2+1;
     return AktuellFarbe;
public void NewURL(String k)
boolean flag = true;
int l = myLink.indexOf("*");
int i1 = myLink.length();
if(l > -1){
myLink = myLink.substring(0, l) + k + myLink.substring(l + 1, i1);
try {
myURL = new URL(getDocumentBase(), myLink);
catch(MalformedURLException malformedurlexception) {
showStatus("Malformed URL : " + malformedurlexception);
flag = false;
if(flag) {
getAppletContext().showDocument(myURL, "_self");
public void paint(Graphics g)
setBackground(HGFarbe[1]);
P_Rand = 50;
Breite_diagramm = Breite - P_Rand - 20;
AbsS�ulenBreite = Breite_diagramm / AnzSaeulen;
MaxSaeulenHoehe = Hoehe_diagramm - 20;
y_VersatzBeschr = 1;
P_Breite = AbsS�ulenBreite - 10;
P_Hoehe = 100;
P_X = 10;
P_Y = 10;
if(P_Breite < P_X) {
P_X = P_Breite;
P_Y = P_Breite;
g.setColor(HGFarbe[2]);
for(i = 1; i < Hoehe_diagramm / 20; i++) {
g.drawLine(40, i * 20, Breite_diagramm + 40, i * 20);
g.drawLine(40, i * 20, 40 - P_X * 3, i * 20 + P_Y * 3);
AktFarbIndex = 1;
AktKomPos1 = 0;
AktKomPos2 = 0;
for(i = 1; i <= AnzSaeulen; i++) {
KomPos1 = Numbers.indexOf(",", AktKomPos1);
AktWertStr1 = Numbers.substring(AktKomPos1, KomPos1);
try {
P_Hoehe = Integer.parseInt(AktWertStr1, 10);
catch(NumberFormatException numberformatexception) {
P_Hoehe = 0;
AktKomPos1 = KomPos1 + 1;
P_Hoehe = (P_Hoehe * MaxSaeulenHoehe) / MaxWert;
KomPos2 = Legend.indexOf(",", AktKomPos2);
AktWertStr2 = Legend.substring(AktKomPos2, KomPos2);
AktKomPos2 = KomPos2 + 1;
SaeulenFarbe = Farbe[AktFarbIndex];
g.setColor(SaeulenFarbe);
Bod2x = P_Rand;
Bod2y = Hoehe_diagramm - P_Hoehe;
Bod3x = Bod2x + P_X;
Bod3y = Bod2y - P_Y;
Bod4x = Bod3x + P_Breite;
Bod4y = Bod3y;
Bod5x = Bod2x + P_Breite;
Bod5y = Bod2y;
Bod6x = Bod5x;
Bod6y = Hoehe_diagramm;
Bod7x = Bod4x;
Bod7y = Hoehe_diagramm - P_Y;
Rand[i] = P_Rand;
//Horny[i] = Bod2y + P_Hoehe;
g.fillRect(Bod2x, Bod2y, P_Breite, P_Hoehe);
for(j = Bod2x; j <= Bod5x; j = j + 2){
g.drawLine(j, Bod2y, j + P_X, Bod3y);
g.setColor(SaeulenFarbe);
Akt_Farbe = SaeulenFarbe.darker();
g.setColor(Akt_Farbe);
for(j = Bod5y; j < Bod6y; j++){
g.drawLine(Bod5x, j, Bod4x, j - P_Y);
g.drawLine(Bod7x, Bod7y, Bod6x, Bod6y);
Akt_Farbe = SaeulenFarbe.darker();
//g.setColor(Akt_Farbe);
g.setColor(HGFarbe[3]);
if(BeschrJN) {
g.drawString(AktWertStr1, Bod2x+20, Bod2y - 10);
g.drawString(AktWertStr2, Bod2x+15, Hoehe_diagramm + 10 + 10 * y_VersatzBeschr);
P_Rand = P_Rand + AbsS�ulenBreite;
AktFarbIndex = AktFarbIndex + 1;
if(AktFarbIndex > Max_Farbe){
AktFarbIndex = 1;
//y_VersatzBeschr = y_VersatzBeschr + 1;
//if(y_VersatzBeschr > 3) {
// y_VersatzBeschr = 1;
addMouseListener(this);
and the html testpage:
<HTML>
<HEAD>
     <TITLE>
          BarChartDK - Java applet for bar chart
     </TITLE>
</HEAD>
<BODY TEXT="white" BGCOLOR="navy" LINK="#FFFF00" ALINK="#FFFF00" VLINK="#FFFF00">
     <H1>
          HTML-Page for bar chart Demo 
     </H1>
     <P>
     <CENTER>
          <applet code=BarChartDK.class name=BarChartDK width=700 height=350 VIEWASTEXT>
               <param name=numbers value="26,9,9,8,7,6,5,4,4,3,">
               <param name=legend value="L11,V10,S60,C54,R11,L13,G11,C17,1,D51,">
               <param name=color value="EEEEEE,FFFFCC,">
               <param name=bgcolor value="FFFFFF,FFFFFF,">
               <param name=link value="test.htm?F=*">
          </applet>
          <P>
          <TABLE BORDER=0 CELLSPACING="5">
          <TR><TD>
               param name=numbers value="26,9,9,8,7,6,5,4,4,3,"
          </TD></TR>
          <TR><TD>
               param name=legend value="L11,V10,S60,C54,R11,L13,G11,C17,1,D51,"
          </TD></TR>
          <TR><TD>
               param name=color value="EEEEEE,FFFFCC,"
          </TD></TR>
          <TR><TD>
               param name=bgcolor value="FFFFFF,FFFFFF,"
          </TD></TR>
          <TR><TD>
               param name=link value="test.htm?F=*"
          </TD></TR>
          </TABLE>
          <HR>
     </center>
</BODY>
</HTML>

Similar Messages

  • My new i phone 5 wont sync with my laptop, keeps saying failed to connect to sync services. any help?

    I just purchased a new i phone 5. when i go to connect with my laptop it says 'failed to connect to sync services, try again later' it shows my phone, and i can see my app screens, however it wont let me sync, back up or make changes. this is my first apple product, any help would be greatly appreciated.

    Hello there, load dogg.
    The following Knowledge Base article provides some in-depth steps to help troubleshoot the issue you are descibing:
    iTunes for Windows: "Unable to load data class" or "Unable to load provider data" sync services alert
    http://support.apple.com/kb/ts2690
    Thanks for reaching out to Apple Support Communities for answers to your question.
    Cheers,
    Pedro D.

  • AppV 5 slow to refresh with roaming profile (no redirects) but fast with local profile

    Hi,
    I have an issue I can't get thought out. I have an AppV5 SP3 full infra, with SMB share and local caching of packages enabled. Everything works from a functional level. However I have an issue where users with a roaming profile get a very slow AppV refresh
    during login.
    I created a few testaccounts, a few with local profile and a few with roaming profiles. For these testusers there are NO folder redirects. The only difference between them is local profile or roaming profile.
    When I login with a local-profile user initially, the AppV client rather slowly refreshes the applications and shortcuts. It generates quite some CPU load on the RDS host, but as soon as the shortcuts are placed everything is fine. When I log that user off,
    and log in again, the shortcuts are there immediately and I can immediately start the applications (Office 2010 for example). Blazing fast. Also when logging in, the refresh-UI is there for about half a second, it really flashes and it's done.
    Then with a testuser with roaming profile, the initial refresh is about the same. But when I logoff that user and login again, it's all very slow. The shortcuts are there but blank initially, it takes about 5-10 seconds to get the correct icon. It takes
    much longer before the refresh actually starts (sometimes up to 30 seconds after login), and it takes 5-10 seconds to do the refresh, with 100% cpu load on the thread AppVclient.exe is running on. Also right after loging in when the shortcuts are blank they
    don't work until they get the proper icon. WHen everything is refreshed it works all fine though. It's just painfully slow at start.
    I don't understand this. I can reproduce this every single time. Without folder redirects I don't see the difference between roaming and local profile from AppV perspective, as the roaming profile is of course copied to the server and in that sense the server
    just works with a local copy anyway.
    Anyone encountered this, and how to troubleshoot, or better fix this?

    So is the fact that there is a 5-10 second delay during refresh actually an issue? What I mean by that is - are any users comparing the local profiles with roaming profiles experience, or complaining that the delay is there?
    Roaming profiles and Folder redirection are of course very simple to configure; however for the best user experience I recommend managing profiles with a real profile management solution.
    If you have MDOP, then you'll also have access to UE-V. You've mentioned your environment is RDS, which sadly doesn't get UE-V, even though you have App-V.
    Here are some resources on UE-V + App-V and what's required when managing App-V with roaming users:
    How To Use Microsoft User Experience Virtualization With App-V Applications
    Application Publishing and Client Interaction: Roaming registry and data
    Here's also some resources on App-V performance worth looking at:
    Performance Guidance for Application Virtualization 5.0
    App-V Performance Best Practices: New Project VRC White Paper
    Please remember to click "Mark as Answer" or "Vote as Helpful" on the post that answers your question (or click "Unmark as Answer" if a marked post does not actually
    answer your question). This can be beneficial to other community members reading the thread.
    This forum post is my own opinion and does not necessarily reflect the opinion or view of my employer, Microsoft, its employees, or other MVPs.
    Twitter:
    @stealthpuppy | Blog:
    stealthpuppy.com |
    The Definitive Guide to Delivering Microsoft Office with App-V

  • Page is not refreshing with the correct data.

    Hello experts,
    I have an unusual situation and I'm not sure why it is happening. We have 3 instances and the error is occurring in one of them.
    So here is the issue:
    1) I created a custom extended controller for a customer site form to check the character length of address lines 1 and 2.
    2) User creates a new contact under customer site. On the contact creation page, the contact information is entered and click Apply.
    After the contact has been created, the application directs you back to the customer site page.
    3) On the customer site page, the user clicks Apply again. The custom extended controller runs and then it takes you back to the customer site page.
    4) Now the page has some other address that is not in anyway related to the customer.
    5) I checked in the back end and the address is associated to hz_parties.party_id = -1.
    If I remove the custom controller the page refreshes with the correct address information. What I am baffled is that it is only happening in 1 of the 3 instances (all using Release 12.1.3).
    I already asked the dba to bounce middle tier/apache, cleared the cache and it is still having the same issue.
    Anyone have any idea why this is happening?

    Here's the custom controller code:
    package xbol.oracle.apps.ar.cusstd.acctSite.webui;
    import java.io.PrintStream;
    import oracle.apps.ar.cusstd.acctSite.webui.ArAcctSiteOverviewCO;
    import oracle.apps.fnd.framework.*;
    import oracle.apps.fnd.framework.webui.OADialogPage;
    import oracle.apps.fnd.framework.webui.OAPageContext;
    import oracle.apps.fnd.framework.webui.beans.OAWebBean;
    import oracle.jbo.Row;
    public class XXF5ArAcctSiteOverviewCO extends ArAcctSiteOverviewCO
    public void processRequest(OAPageContext oapagecontext, OAWebBean oawebbean)
    System.out.println("Running extended controller processRequest......");
    super.processRequest(oapagecontext, oawebbean);
    public void processFormRequest(OAPageContext oapagecontext, OAWebBean oawebbean)
    System.out.println("Running extended controller processFormRequest......");
    OAApplicationModule oaapplicationmodule = oapagecontext.getApplicationModule(oawebbean);
    String s = oapagecontext.getParameter("event");
    System.out.println((new StringBuilder()).append("Event: ").append(s).toString());
    System.out.println((new StringBuilder()).append("OkButton: ").append(oapagecontext.getParameter("OkButton")).toString());
    if(oapagecontext.getParameter("Save") != null || oapagecontext.getParameter("Apply") != null)
    System.out.println("Start of validation");
    OAApplicationModule AddressAM = (OAApplicationModule)oaapplicationmodule.findApplicationModule("HzPuiAddressAM");
    if(AddressAM == null)
    throw new OAException("Error: Stale Data - The requested page contains stale data. This error could hav" +
    "e been caused through the use of the browser's navigation buttons (the browser B" +
    "ack button, for example)."
    , (byte)0);
    System.out.println((new StringBuilder()).append("HzPuiAddressAM: ").append(AddressAM).toString());
    OAViewObject AddressVO = (OAViewObject)AddressAM.findViewObject("HzPuiLocationVO");
    System.out.println((new StringBuilder()).append("HzPuiLocationVO: ").append(AddressVO).toString());
    if(AddressVO == null)
    throw new OAException("Error: Stale Data - The requested page contains stale data. This error could hav" +
    "e been caused through the use of the browser's navigation buttons (the browser B" +
    "ack button, for example)."
    , (byte)0);
    Row AddressRow = AddressVO.getCurrentRow();
    System.out.println((new StringBuilder()).append("AddressRow1: ").append(AddressRow).toString());
    if(AddressRow == null)
    AddressRow = AddressVO.last();
    System.out.println((new StringBuilder()).append("AddressRow2: ").append(AddressRow).toString());
    String Address1 = (String)AddressRow.getAttribute("Address1");
    String Address2 = (String)AddressRow.getAttribute("Address2");
    System.out.println((new StringBuilder()).append("Address1: ").append(Address1).toString());
    System.out.println((new StringBuilder()).append("Address2: ").append(Address2).toString());
    int length1 = 0;
    if(Address1 != null)
    length1 = Address1.length();
    int length2 = 0;
    if(Address2 != null)
    length2 = Address2.length();
    System.out.println((new StringBuilder()).append("Address length1: ").append(length1).toString());
    System.out.println((new StringBuilder()).append("Address length2: ").append(length2).toString());
    if(length1 > 35 || length2 > 35)
    OAApplicationModule PurposeAM = (OAApplicationModule)oaapplicationmodule.findApplicationModule("HzPuiAccountSiteAM");
    OAViewObject PurposeVO = (OAViewObject)PurposeAM.findViewObject("HzPuiCustSiteUsesVO");
    int BPcount = PurposeVO.getRowCount();
    System.out.println((new StringBuilder()).append("Business Purpose Row Count: ").append(BPcount).toString());
    Row PurposeRow1 = PurposeVO.getFirstFilteredRow("SiteUseCode", "SHIP_TO");
    System.out.println((new StringBuilder()).append("Ship_to row: ").append(PurposeRow1).toString());
    System.out.println((new StringBuilder()).append("Length1: ").append(length1).append(" Length2: ").append(length2).append(" Ship_to row: ").append(PurposeRow1).toString());
    if(PurposeRow1 != null)
    System.out.println("Throwing exception.");
    System.out.println("Before SuperPFR2");
    super.processFormRequest(oapagecontext, oawebbean);
    System.out.println("After SuperPFR2");
    OAException ErrorMessage = new OAException("WARNING: Ship_To sites address lines 1 and/or 2 have more than 35 characters.", (byte)3);
    OADialogPage dialogPage = new OADialogPage((byte)1, ErrorMessage, null, "", null);
    dialogPage.setOkButtonItemName("OkButton");
    dialogPage.setOkButtonToPost(true);
    dialogPage.setPostToCallingPage(true);
    dialogPage.setOkButtonLabel("OK");
    oapagecontext.redirectToDialogPage(dialogPage);
    } else
    System.out.println("SuperPFR3");
    super.processFormRequest(oapagecontext, oawebbean);
    } else
    System.out.println("SuperPFR4");
    super.processFormRequest(oapagecontext, oawebbean);
    System.out.println("End of validation");
    } else
    System.out.println("SuperPFR5");
    super.processFormRequest(oapagecontext, oawebbean);
    public XXF5ArAcctSiteOverviewCO()
    }

  • Formated Search: Auto refresh with two conditions.

    Hi,
    I've created a Formated Search in one of my column.
    I defined my formated search as :
    - Auto refresh "When Exiting Altered Column" Item No.
    - Display Saved Values.
    Now how can I make it Auto refresh with two conditions?
    - Auto refresh "When Exiting Altered Column" Item No.
    And
    - Auto refresh "When Field Changes" Customers/Vendor Code.
    - Display Saved Values.
    Is there any way to make it work?
    Thanks In Advance.
    Bruce.

    Hi Bruce,
    You could try this trick.
    You need to execute SELECT1 in Col1 when Item No. column is altered or the Customer code is changed.
    Then, in the Item No. column asign a new Formatted Search which selects the Item No. column value (Its value) when the Customer code is changed.
    And in the Col1 asign a formatted search that acts when the Item No. column is altered.
    I think this should do the trick.
    Let us know if works.
    Regards,
    Ibai Peñ

  • Error in upgrading SharePoint Server 2013 with SP1 : "Task upgradebootstrap has failed with an unknown exception"

    I has successfully setup new Dev ENV of SarePoint server 2013 in VMware with 2 servers running om OS: win server 2008 R2 Ent SP1, AD + Central Admin Application Server.
    After that the configuration of SharePoint App and WorkFlow Manager completed as well and many projects run perfectly,
    And after installing SP1 of SharePoint server 2013, and running the SharePiont Configuration wizard to complete the configuration of the SharePoint Farm the Upgrade has fialed on Step2 with the following Error from the Log file:
    Task upgradebootstrap has failed with an unknown exception 
    01/04/2015 00:43:30  11  ERR                  Exception: Microsoft.SharePoint.Upgrade.SPUpgradeException: Exception of type 'Microsoft.SharePoint.Upgrade.SPUpgradeException' was thrown.
       at Microsoft.SharePoint.Upgrade.SPManager.BootStrap(Guid sessionId, SPUpgradeOperationFlags flags)
       at Microsoft.SharePoint.PostSetupConfiguration.UpgradeBootstrapTask.Run()
       at Microsoft.SharePoint.PostSetupConfiguration.TaskThread.ExecuteTask()
    Also after that I was not able to create like before a new site , and this creating end with error message as follows:
    Failed to call GetTypes on assembly Microsoft.Office.TranslationServices, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c. Method not found: 'Microsoft.Office.Web.Common.ProcessImageInfo.
    Is there any solution to my problem with SharePoint server 2013 SP1, this supposed not to cause any bug in stable environment.
    Basel Badr ,SharePoint Specialist ,MCAD ,MCTS.

    Hi Daniel,
    Thanks for replying on my post, actually I have downloaded the  kb2880552 sp1 for
    enterprise edition from the link 
    https://support.microsoft.com/kb/2880552 , and this has been experienced with me before since I had my Standalone Dev machine first installation, and the issue only occurred when the SP1 installed though.
    Anyway, I've tried to install CU Nov 2013 http://support.microsoft.com/kb/2889944
    but still facing the same issue,
    I run the Setup of SP2013 from the CD to repair the SharePoint and error message appears,
    The issue related to "Microsoft.Office.TranslationServices" is also related to running
    the repair successfully which leads to the same error message above.
    The Version of SP 2013 from the program file is : 15.0.4571.1502
    The Update snapshot is as below:
    Is there a problem with my sharepoint media file?
    Basel Badr ,SharePoint Specialist ,MCAD ,MCTS.

  • TS1609 My computer comes up with Service Apple Mobile Device failed to start verify you have sufficient access privileges dont know to resolve it

    My computer comes up with Service Apple Mobile Device failed to start verify you have sufficient access privileges dont know to resolve it

    These are the instructions I posted to another topic with this same issue.
    I had this same thing happen on 2 different laptops. I finally called Apple support and they walked me through the repair. Apparently there are compatability issues with Apple software update and Internet Explorer, so if that is your default browser, you will want to download Google Chrome, Firefox or some other web browser and set it as your default. You will still be able to use IE, if you don't uninstall it, but links from e-mail will open in your new default browser, unless you copy and paste the URL into the web address line.
    These are the step-by-step instructions that the tech support person walked me through. She said that it is important that you do these steps in this order.
    1. Go to your Control Panel and open Programs and Features.
    2. Find and uninstall iTunes from the list.
    3. Find and uninstall Apple Software Update.
    4. Find Apple Mobile Device Support and REPAIR this file. This is the problem child, so you must repair it first.
    5. After you have repaired it, uninstall it.
    6. If Apple Mobile Device Support is not removed from your program list, restart your computer and go back into the Control Panel and Programs an Features. If the file is still there, repeat Repair and then uninstall. It should now be removed from the list.
    7. Restart your computer.
    8. Go back into your Control Panel and Programs and Features and then find BONJOUR. Uninstall Bonjour.
    9. Find Apple Application Support and uninstall it.
    10. Restart your computer.
    11. Upon restart, you may receive an "AppleSyncNotifier.exe - System Error" if you have iCloud attached to your account. This is normal and will be fixed when you reinstall iTunes.
    12. Using Google Chrome (or Firefox or Safari) go to www.apple.com and click on iTunes and then find the button to download iTunes. It will now install properly and be usable.
    13. If for some reason you are not able/allowed to change your default browser to something other than IE, then you should uncheck the box to automatically update iTunes during the install process or you may end up having to redo this fix.
    Hope this helps everyone with this problem. I have now gone through this process with two of my laptops, both of them with successful results. If this does not work, I strongly urge you to contact Apple for additional assistance.

  • Saving from Safari as PDF results in an icon with 0 byte volume that fails to open as it is "damaged" Why and how to solve?

    saving from Safari as PDF results in an icon with 0 byte volume that fails to open as it is "damaged" Why and how to solve?

    Back up all data before making any changes. Please take each of the following steps until the problem is resolved.
    Step 1
    If Adobe Reader or Acrobat is installed, and the problem is just that you can't print PDF's displayed in Safari, you may be able to print by moving the cursor to the the bottom edge of the page, somewhere near the middle. A black toolbar may appear under the cursor. Click the printer icon.
    Step 2
    There should be a setting in its preferences of the Adobe application such as Display PDF in Browser. I don't use those applications myself, so I can't be more precise. Deselect that setting, if it's selected.
    Step 3
    If you get a message such as ""Adobe Reader blocked for this website," then from the Safari menu bar, select
    Safari ▹ Preferences... ▹ Security
    and check the box marked
    Allow Plug-ins
    Then click
    Manage Website Settings...
    and make any required changes to the security settings for the Adobe PDF plugin.
    Step 4
    Triple-click anywhere in the line of text below on this page to select it, the copy the selected text to the Clipboard by pressing the key combination command-C:
    /Library/Internet Plug-ins
    In the Finder, select
    Go ▹ Go to Folder
    from the menu bar, or press the key combination shift-command-G. Paste into the text box that opens (command-V), then press return.
    From the folder that opens, move to the Trash any items that have "Adobe" or “PDF” in the name. You may be prompted for your login password. Then quit and relaunch Safari.
    Step 5
    The "Silverlight" web plugin distributed by Microsoft can interfere with PDF display in Safari, so you may need to remove it, if it's present. The same goes for a plugin called "iGetter," and perhaps others — I don't have a complete list. Don't remove Silverlight if you use the "Netflix" video-streaming service.
    Step 6
    Do as in Step 4 with this line:
    ~/Library/Internet Plug-ins
    If you don’t like the results of this procedure, restore the items from the backup you made before you started. Relaunch Safari.

  • Jsf page not getting refreshed with updated values?

    Hi All,
    - managed-bean - session scope.
    - On a request, Even though, I am updating the bean's properties(values), my Jsf page is not getting refreshed with updated values as it is displaying the older values.
    Can anybody throw some light?
    Thanks in advance.
    - Sri

    Please try to give us more information, follow BalusC suggestion.
    For this moment I only can say you that the more common cause to this problem (in my expirence) is that you have problems with your conversion/validate phase.

  • Query to find out controls displayed as in UI for an applet,along with view

    Hi,
    I am looking for a query to find out list of all the controls as displayed in UI applet along with applet's view.
    Please note that in the query only mapped controls (those displayed in UI ) should come up.
    Regards,
    Kunal

    Hi,
    If the EUL is an apps mode (EBS) EUL then the eu_username column is the apps user id or apps resp id. If you want to show only the responsibilities and convert those ids to names then you need to use the EUL5_GET_APPS_USERRESP function like this:
    select ba_name, ba_developer_key, EUL5_GET_APPS_USERRESP(eu.eu_username, 'R') responsibility_name
    from eul5_bas ba
       , eul5_access_privs ap
       , eul5_eul_users eu
    where ba.ba_id = ap.gba_ba_id
    and ap.ap_type = 'GBA'
    and ap.ap_eu_id = eu.eu_id
    and eu.eu_role_flag=1
    order by 1,2,3Rod West

  • ORA-12008 in MV refresh with no other errors

    I have a scheduler job that refreshes multiple MV's. When one fails, it only shows
    ORA-12012: error on auto execute of job 1258189
    ORA-12008: error in materialized view refresh path
    No other errors show up either in the alert log or the resulting trace file. It will refresh fine if I perform the refresh manually after the error.
    How can I figure out what is causing the problem (i.e. get additional errors)? Is there some directive I can give to get more information?
    Solaris 10, Oracle 10.2.0.1

    Note:401971.1-Refresh Of MVIEW Via Database Job Fails ORA-12012 ORA-12008 ORA-942

  • ERROR: Cannot create authcontext with null org-Naming query failed  code:21

    I use OpenSSO Enterprise 8.0 Update 1 Patch1 Build 6.1(2009-June-9 12:56)
    I try to evaluate the Apache 2.2 web agent.
    It's been installed without errors, and both the OpenSSO and Apache server restarted.
    The agent profile's been created. Also, I use the default (OpenDS) configuration repository
    for OpenSSO, but an external (DSEE) user data directory.
    I think I did all the required steps with regards to both directories, since I don't see any error
    in the LDAP logs, each entry seems to be found as expected, the BIND operations are all
    successfull.
    Also, I use a sub-realm rather than the default top realm, and thus, I've modified the agent configuration
    (in the agent profile) so that the login URL is now ... /UI/Login?realm=myrealm
    When I try to access the Apache homepage, I get an error 500. The most recent OpenSSO server log file
    (...../opensso/debug/Authentication) contains the following message:
    ERROR: Cannot create authcontext with null org
    The most recent agent log file (....../apache22_agent/Agent_001/logs/debug/amAgent) has the following error:
    2009-07-07 17:08:11.992 Error 10513:80149a50 PolicyEngine: am_policy_evaluate: InternalException in Service::update_policy with error message:Naming query failed. and code:21
    I don't know what else I can do to debug this problem and find a solution. Any idea ?

    Thank you Shubba,
    With all available log details enabled, I now have the following messages on the agent side:
    2009-07-09 10:14:51.731MaxDebug 5613:80149a50 all: No value specified for key com.sun.identity.agents.config.profile.attribute.mapping, using default value .
    2009-07-09 10:14:51.731 Debug 5613:80149a50 NamingService: BaseService::doRequest(): Using server: http://portable.antibes.net:8080/opensso/namingservice.
    2009-07-09 10:14:51.731MaxDebug 5613:80149a50 NamingService:
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <RequestSet vers="1.0" svcid="com.iplanet.am.naming" reqid="10">
    <Request><![CDATA[                                                                                                                      
      <NamingRequest vers="3.0" reqid="2" sessid=""AQIC5wM2LY4SfcyaGFgc5h9Y7/kpf4f//ml82oVfNlbWxQE=@AAJTSQACMDE=#"">                             <GetNamingProfile>                                                                                                                         </GetNamingProfile>                                                                                                                        </NamingRequest>]]> </Request>
    </RequestSet>
    2009-07-09 10:14:51.712MaxDebug 5613:80149a50 NamingService: BaseService::sendRequest Request line: POST /opensso/namingservice HTTP/1.0
    2009-07-09 10:14:51.712 Debug 5613:80149a50 NamingService: BaseService::sendRequest Cookie and Headers =Host: portable.antibes.net
    2009-07-09 10:14:51.712 Debug 5613:80149a50 NamingService: BaseService::sendRequest Content-Length =Content-Length: 334
    2009-07-09 10:14:51.712 Debug 5613:80149a50 NamingService: BaseService::sendRequest Header Suffix =Accept: text/xml
    Content-Type: text/xml; charset=UTF-8
    2009-07-09 10:14:51.712MaxDebug 5613:80149a50 NamingService: BaseService::sendRequest(): Total chunks: 7.
    2009-07-09 10:14:51.712MaxDebug 5613:80149a50 NamingService: BaseService::sendRequest(): Sent 7 chunks.
    2009-07-09 10:14:51.728 Debug 5613:80149a50 NamingService: HTTP Status = 500 (Internal Server Error)
    2009-07-09 10:14:51.729MaxDebug 5613:80149a50 NamingService: Http::Response::readAndParse(): Reading headers.
    2009-07-09 10:14:51.729MaxDebug 5613:80149a50 NamingService: Server: Apache-Coyote/1.1
    2009-07-09 10:14:51.729MaxDebug 5613:80149a50 NamingService: Content-Type: text/html;charset=utf-8
    2009-07-09 10:14:51.729MaxDebug 5613:80149a50 NamingService: Date: Thu, 09 Jul 2009 08:14:51 GMT
    2009-07-09 10:14:51.729MaxDebug 5613:80149a50 NamingService: Connection: close
    2009-07-09 10:14:51.729MaxDebug 5613:80149a50 NamingService: Http::Response::readAndParse(): Reading body content of length: 13830487939496281954
    2009-07-09 10:14:51.729MaxDebug 5613:80149a50 all: Connection::waitForReply(): returns with status success.
    2009-07-09 10:14:51.729MaxDebug 5613:80149a50 NamingService: Http::Response::readAndParse(): Completed processing the response with status: success
    2009-07-09 10:14:51.729MaxDebug 5613:80149a50 NamingService: <html><head><title>Apache Tomcat/6.0.18 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 500 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Exception report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>The server encountered an internal error () that prevented it from fulfilling this request.</u></p><p><b>exception</b> <pre>javax.servlet.ServletException: AMSetupFilter.doFilter
    com.sun.identity.setup.AMSetupFilter.doFilter(AMSetupFilter.java:117)
    </pre></p><p><b>root cause</b> <pre>java.lang.NullPointerException
    com.iplanet.services.naming.service.NamingService.processRequest(NamingService.java:361)
    com.iplanet.services.naming.service.NamingService.process(NamingService.java:352)
    com.iplanet.services.comm.server.PLLRequestServlet.handleRequest(PLLRequestServlet.java:180)
    com.iplanet.services.comm.server.PLLRequestServlet.doPost(PLLRequestServlet.java:134)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:637)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
    com.sun.identity.setup.AMSetupFilter.doFilter(AMSetupFilter.java:91)
    </pre></p><p><b>note</b> <u>The full stack trace of the root cause is available in the Apache Tomcat/6.0.18 logs.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/6.0.18</h3></body></html>
    2009-07-09 10:14:51.729 Warning 5613:80149a50 NamingService: BaseService::doHttpPost() failed, HTTP error = 500
    2009-07-09 10:14:51.729 Debug 5613:80149a50 NamingService: NamingService()::getProfile() returning with error code HTTP error.
    2009-07-09 10:14:51.729 Error 5613:80149a50 PolicyEngine: am_policy_evaluate: InternalException in Service::update_policy with error message:Naming query failed. and code:21
    In my Tomcat server (OpenSSO server web container), I have the following errors:
    Jul 9, 2009 10:12:35 AM org.apache.catalina.startup.Catalina start
    INFO: Server startup in 22746 ms
    [Fatal Error] :2:46: Element type "NamingRequest" must be followed by either attribute specifications, ">" or "/>".
    java.lang.NullPointerException
    at com.iplanet.services.naming.service.NamingService.processRequest(NamingService.java:361)
    at com.iplanet.services.naming.service.NamingService.process(NamingService.java:352)
    at com.iplanet.services.comm.server.PLLRequestServlet.handleRequest(PLLRequestServlet.java:180)
    at ...
    It seems like the problem comes from the couple of closing square brackets in the NamingRequest tag:
    </NamingRequest>]]>
    I don't know where it comes from, so if you've an idea I'd enjoy .
    Cheers,

  • Error status code 400 with the description Message mapping failed

    Hi,
    I tried to build RFID outbound scenario using ECC 5.0, XI and AII 2.1.
    When I send IDOC message:AIDOPMSG.AIDOP01 from ecc 5.0 to XI(ouput message type is OperationalIn and message mapping is OperationalInTo), i get following error:
    <SAP:Code area="INTERNAL">HTTP_RESP_STATUS_CODE_NOT_OK</SAP:Code>
      <SAP:P1>400</SAP:P1>
      <SAP:P2>Message mapping failed</SAP:P2>
      <SAP:P3 />
      <SAP:P4 />
      <SAP:AdditionalText>Message mapping failed</SAP:AdditionalText>
      <SAP:ApplicationFaultMessage namespace="" />
      <SAP:Stack>HTTP response contains status code 400 with the description Message mapping failed Boundary SAP_57D7D47469E09543A1EA0002CBDA0492_END could not be found</SAP:Stack>
    I am using standard AUTO-ID 2.1 XI contents. If any of you have encountered such error message, then could you please help me understand the meaning and how to fix it.
    thanks in advance,
    Ashit

    hi Ashit,
    take a look at my weblog on how to test your mapping:
    /people/michal.krawczyk2/blog/2005/09/16/xi-how-to-test-your-mapping-in-real-life-scenarios
    maybe with this you'll be able to find out the error
    Regards,
    michal

  • Problem on Applet - Reloading with eixsting Components

    Hi All,
    I have developed one application for chatting purpose.. I have embeted with JSP. that application contains Login/logout based.. suppose if i try to login two windows in sample browser am getting previouse window applet components with current applet window.
    plz give me some tips..
    Thanks and regards

    hi
    Actually in my application it has 3 buttons.. if am try to login in same application in same browser. it will show 3x2 = 6 buttons.. how to remove the existing components.. am using single tone pattern..

  • Applet window with no warning string without signing, they did it, but how?

    I've searched the forum and the web and nobody seems to be able to get an applet window with no warning string without signing the applet or changing the security policy file.
    But running my applets under the Java plugin 1.3.1_03, I've observed that sometimes I get exactly such windows for tool tips or popup menus, while other times I still get the kind with the warning string. And no I am not talking about those that lies entire within another Java window so that a lightweight implementation could be used.
    Seeing a warning attached to the bottom of your tool tips or popup menus is certainly annoying,
    clearly Sun has been able to nail that problem, just not 100 percent.
    But I've been unable to figure out how they did it, does anybody have an idea?

    The bar may be annoying, but it's pretty necessary for
    unsigned, unsecure appletsI understand that, however, Sun seems to be able to work around that (sometimes) for windows that host tool tips and popup menus, and I would like to find out how.

Maybe you are looking for

  • Non Domain Servers and Workstations

    Hi, we are trying to deploy SCCM 2012 clients to non domain servers, and we are also in the process of trying to find out what the best way we can clean up machines from sccm that have not logged in 90days or more. From my understanding if I turn on

  • Record blocking in Oracle

    can we say that there is no record blocking in Oracle if two users from two session access the same block at the same time even if the select statment will occur just before a commit(like writing the select statment in a pre-insert trigger at the for

  • Activating 30-Day Trial

    I have just downloaded InDesign CS3 (v5.0) for Macintosh fromhttp://www.adobe.com/cfusion/tdrc/index.cfm?product=indesign&loc=en_us. I am on a Mac Mini Core Duo, 1.66 GHz with 2 GB RAM and 60 GB HD. After the installation of InDesign CS3, I launch th

  • Out of the blue my iPhone 5 gave me this message, "No SIM detected." I cannot call or text non iPhone users.

    OOut of the blue my iPhone 5 gave me this message, "No SIM detected."  I cannot call or text non iPhone users.

  • Inconsistent group call duration records

    Hi All I'm trying to determine how long a group call lasted for, on the skype that was a recipient of the group call (i.e. not the initiator) Last night, skype was party to a group call involving another telephone number:That's all there is - a group