JViewPorts Client not refreshed

hello,
I am sorry for my uncorrect format in the last try to
ask...I am afraid.
I please for some help in following problem...
Starting point:
JScrollPane scrollPane = new JScrollPane();
scrollPane.setPreferredSize(new Dimension(500,450));//viewClient has got a computed mathematical grafic
JComponent viewClient = myExternLibrary.getJComponent();
scrollPane.setViewportView(viewClient); Result:
There is a piece of the mathematical grafic(left,top piece) in the program window. It is all ok.
For example:
scrollPane:
|--------------|
|              |
|           ---|
|           \  |
|            \ |
|             \|
|              |
|<============>|
horizontal scrollbar
Problem:
If I have manipulated the visible area with
buttons,all has been ok.
But if I have manipulated with knob, the JViewPort has
refreshed incompletely.
for example:
I pull knob on the right and allways become(a picture). But b Picture is korrectly.
  (a picture)                 (b picture)
scrollPane:               
|--------------|           |--------------|
|              |           |           ###|
|        ------|           |        ---   |
|        \  \  |           |        \     |
|         \  \ |           |         \    |
|          \  \|           |          \   |
|              |           |           ###|
|<============>|           |<============>|
horizontal scrollbar
Thanks for any help!!
best regards,
Joana

Joana,
i had a similar problem with a chart i was drawing. i overcame it by doing my own double-buffering. but it would require that you have access to your drawing class.
here is what i did:  :
  chartPanel = new JPanel() {
    public void paint(Graphics g) {
      Image img = paintGraph(chartPanel.getWidth(), scroller.getViewport().getHeight());
      g.drawImage(img, 0, 0, Color.white, null);
  protected Image paintGraph(int width, int height) {
    if ((offscreen == null) || (width != offscreensize.width) || (height != offscreensize.height)) {
      offscreen = createImage(width, height);
      offscreensize = new Dimension(width, height);
      offgraphics = (Graphics2D)offscreen.getGraphics();
      try {
        offgraphics.setClip(0, 0, width, height);
        drawChart(offgraphics, width, height);
        drawSelectables(offgraphics, width, height);
      } catch (ArrayIndexOutOfBoundsException e) { /* we have no data */ }
    return offscreen;
  }drawChart() and drawSelectables() are the methods to draw the stuff you need.
thomas

Similar Messages

  • Client activity not refreshed in console

    We have SCCM R2 server.
    In SCCM console where I see all devices and by clicking each device I can see General information, Client Activity, endpoint Protection information.
    So question is why info under Client Activity is not refreshed - Hardware and Software scan?
    In client resource explorer I can see that hardware scan occurred almost 1 hour ago.  Is there any schedule when this information changes?
    In picture last hardware scan was in January because this computer was not in network from that time.

    That information is summarized every 4 hours (or so) IIRC.So just wait some time and refresh the console then.
    Torsten Meringer | http://www.mssccmfaq.de

  • Why??? Simple snapshot can not refresh automatically, but can refresh manually.

    Server 1 : Oracle 7.3.4 (as a Master site)
    Server 2 : Oracle 7.3.4 (as a Snopshot site)
    Client PC: SQL*Plus (Oracle 7.3.4 Client)
    Step 1: on Client PC, start 2 SQL*Plus dialog Windows,
    one(Window A) for <Server 1> , another(Window B) for <Server 2>;
    Step 2: on <Window A> do:
    SQL>connect scott/tiger@Server1
    SQL>CREATE SNAPSHOT LOG ON scott.dept ;
    SQL>select * from dept;
    DEPTNO DNAME LOC
    10 AAAAAA AAAAA
    20 BBBBBB AAAAA
    30 CCCCCC AAAAA
    Step 3: on <Window B> do:
    SQL>connect scott/tiger@Server2
    SQL>CREATE DATABASE LINK oracle USING 'Server1';
    SQL>CREATE SNAPSHOT all_dept REFRESH fast
    start with sysdate NEXT SYSDATE+1/(24*60)
    AS SELECT * FROM scott.dept@oracle;
    -- refresh interval: 1 minute
    SQL>select * from all_dept;
    DEPTNO DNAME LOC
    10 AAAAAA AAAAA
    20 BBBBBB AAAAA
    30 CCCCCC AAAAA
    Step 4: on <Window A> do:
    SQL>insert into dept values (50,'MMMMMM','NNNNN');
    SQL>commit;
    SQL>select * from dept;
    DEPTNO DNAME LOC
    10 AAAAAA AAAAA
    20 BBBBBB AAAAA
    30 CCCCCC AAAAA
    50 MMMMMM NNNNN
    <one or two minutes later ... ... >
    Step 5: on <Window B> do:
    SQL>select * from all_dept;
    DEPTNO DNAME LOC
    10 AAAAAA AAAAA
    20 BBBBBB AAAAA
    30 CCCCCC AAAAA
    conclusion: Simple snapshot can not refresh automatically ???????
    SQL>exec DBMS_SNAPSHOT.REFRESH( list => 'all_dept',method => 'F');
    SQL>select * from all_dept;
    DEPTNO DNAME LOC
    10 AAAAAA AAAAA
    20 BBBBBB AAAAA
    30 CCCCCC AAAAA
    50 MMMMMM NNNNN
    conclusion:Simple snapshot can refresh manually.
    How to solve this problem?????
    Thank you very much
    Zhang Ming-an

    When you are manually refreshing the snapshot as scott/tiger, and your database link was defined with a 'connect to/identified by ' clause, your login credentials will be scott/tiger. When the refresh happens from the job queue, it does not use those credentials, It uses some default set. What you should probably do is:
    1. create public database link Oracle using 'server1';
    2. as scott/tiger, create database link Oracle connect to scott identified by tiger;
    3. your automatic refresh should work now.

  • Advanced Table does not refresh after database level action

    Hi,
    I have a page which has an advanced table. I update the advanced table from the page do some validations, update some DB level columns(also part of advanced table) and see that the changes are saved to the DB but the advanced table does not show the updates done at the DB level.
    I tried clearing the VO Cache and re-executing the VO but still it does not refresh the Advanced table data.
    This is very critical requirement for the client, any inputs will be greatly appreciated.
    Thanks a lot in Advance.
    Here is the code snippet from my CO's processRequest:
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    OAAdvancedTableBean tblbean = (OAAdvancedTableBean)webBean.findChildRecursive("recasttable");
    if(tblbean!=null)
    tblbean.setRendered(true);
    OAApplicationModule tblam = (OAApplicationModule)am.findApplicationModule("RecastLineAM1");
    tblam.invokeMethod("initQuery");
    tblbean.getTableData();
    Here is my AM - initQuery() code:
    public void initQuery()
    //clearVOCaches("RecastLineEO",true);
    clearVOCaches(null,true);
    getRecastLineVO1().init();
    Here is the VO - init() code:
    public void init()
    System.out.println("****************************executing...");
    OADBTransaction tx = (OADBTransaction) getApplicationModule().getTransaction();
    if (tx.getTransientValue("RECAST_ID") !=null)
    Number recastId = (Number) tx.getTransientValue("RECAST_ID");
    System.out.println("recastId: "+ recastId);
    setWhereClause("RECAST_HDR_ID = :1");
    setWhereClauseParams(null); // Always reset
    setWhereClauseParam(0, recastId);
    executeQuery();
    }

    hi,
    This is how I am calling a DB package. the package does updates on the table. once done I am issueing a commit and requerying the data, however the vo is not getting refreshed.... Can someone point out what am I missing... why is the VO not getting refreshed....
    This is very critical...
    Thanks
    Srini
    public void validateRecast(String respKey)
    OADBTransaction tx = (OADBTransaction)getApplicationModule().getTransaction();
    Number recastId = (Number) tx.getTransientValue("RECAST_ID");
    System.out.println("*********************validateRecast().RecastId: " + recastId);
    OracleCallableStatement ocs = null;
    Connection conn = tx.getJdbcConnection();
    String strOut="", strErr="";
    Number respId = null;
    try
    respId = new Number(respKey);
    catch(Exception e)
    throw new OAException("Invalid Responsibility");
    String stmt = "BEGIN " +
    "GE_RECAST_UTILS_PKG.validate_recast(:1,:2,:3,:4); " +
    "END;";
    try
    ocs = (OracleCallableStatement)conn.prepareCall(stmt);
    ocs.setNUMBER(1,recastId);
    ocs.setNUMBER(2,respId);
    ocs.registerOutParameter(3,OracleTypes.VARCHAR);
    ocs.registerOutParameter(4,OracleTypes.VARCHAR);
    ocs.execute();
    strOut = ocs.getString(3);
    strErr = ocs.getString(4);
    ocs.close();
    System.out.println("Returned with: " + strOut);
    if(strOut.equalsIgnoreCase("ERROR"))
    //throw new OAException(strErr);
    tx.putTransientValue("ERROR",strErr);
    tx.commit();
    getApplicationModule().clearVOCaches("RecastLineEO",true);
    RecastLineVOImpl lineVo = (RecastLineVOImpl)getApplicationModule().findViewObject("RecastLineVO1");
    lineVo.init();
    System.out.println("===============RecastLnId: " +lineVo.first().getAttribute("RecastLnId"));
    System.out.println("===============Product Line: " +lineVo.first().getAttribute("ProductLine"));
    catch(SQLException e)
    tx.rollback();
    if(ocs!=null)
    try
    ocs.close();
    }catch(SQLException e1)
    throw OAException.wrapperException(e1);
    throw OAException.wrapperException(e);
    }

  • Edited Images Do Not Refresh

    When I edit an image in an external program (PS, Illustrator), Dreamweaver doesn't show the changes. It insists that no changes have been made. Refresh doesn't help, nor does using any of those idiotic internal image editing buttons in DW. (Half of them are greyed out most of the time anyway.)
    There's more information & frustration at this thread: http://forums.adobe.com/message/2181158#2181158 ... which was mysteriously marked "Answered".
    Here's  an example: I have a graphic in an HTML document, stored locally. I  edit the graphic and save it, but DW continues to use the older preview  image. I can see the updated image in Live View, but it actually reverts  back to the earlier image when I return to Design Mode! Madness! Why  would it do that? It also fails to update the preview image when I upload & use absolute URLs to identify the image.
    This was not an issue in CS3 IIRC. I think the addition of those image-editing tools in CS5 have screwed things up somehow, like DW has decided it is the only program on the machine.
    This is one of those things that stops workflow dead in its tracks.

    Also, the issue seems to happen only when working with absolute links
    --  I create a lot of HTML emails for clients, and I'm pretty certain 
    that's the only time I run into this issue. For the rest of my work 
    links are root-relative, and seem to update fine.
    This is why I said what I said because that's what I was afraid of.  I've been skeptical myself of DWs abilities at handling remote content in your specific situation, which unfortunately is very common.  What I would recommend doing is what I have done and submit a feature request to Adobe for future versions since they seem to be moving a bit quicker now after publishing the CS5.5 release to accomodate for HTML5 and CSS3.
    https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform
    Personally speaking my recommendation was an HTML email mode where the "browse" function could potentially work with remote connection (eg: FTP) and select the files creating absolute links as you go, and have the ability to turn on inline CSS writing permanently (unlike the current drop-down option in the Properties window).  That was just my suggestion, but the more suggestions people send to Adobe about this, the more likely it is to happen.
    And just as a final note based on what you describe it is a caching issue.  What is happening when working with remote images is that DW downloads a copy locally and then you see that.  Live View always refreshes since it runs against the server, and the Refresh button "should" re-download all images from the server to replace the cached versions, but that does not appear to be working.  You might also want to submit a separate bug report using that same form (there is an option saying Feature Request or Bug Report) so they are aware that the cache not refreshing as often as it should is being viewed as a bug.  From my experiences in working with HTML emails I tend to push people towards services like Mailchimp that allow me as a designer, to simply give them a ZIP file containing their work, they just upload and send.  No absolute linking is necessary since the images are hosted by the ESP so it allows me as a designer to work with all local files, zip and go.  There was another service that someone else mentioned on the forums that has a similar feature that I do apologize that I don't remember the name to because I have no experience with that service, but it's definitely something to consider if you are setting up an account with an ESP.  Unfortunately, there are also places like Constant Contact that has its own custom markup that you must use to even track links in an email, so believe me when I say I've seen both sides of the spectrum.

  • A statement is not refreshed as if Statement Caching was enabled

    Here is the c# code:
    OracleConnection conn = null;
    OracleCommand cmd;
    OracleDataReader reader = null;
    string tname;
    conn = new OracleConnection("Data Source=ora10gen;User ID=scott;Password=tiger;");
    conn.Open();
    cmd = conn.CreateCommand();
    cmd.CommandText = "drop table testblob";
    cmd.ExecuteNonQuery();
    cmd.CommandText = "create table testblob (idfld integer not null, col_bin clob)";
    cmd.ExecuteNonQuery();
    cmd.CommandText = "insert into testblob(idfld,col_bin) values(1,empty_clob())";
    cmd.ExecuteNonQuery();
    cmd.CommandText = "select col_bin, rowid from testblob";
    reader = cmd.ExecuteReader();
    reader.Read();
    //I get the type name is "clob"
    tname = reader.GetDataTypeName(0);
    reader.Close();
    //now I recreate the table and change column cob_bin type to blob
    cmd.CommandText = "drop table testblob";
    cmd.ExecuteNonQuery();
    cmd.CommandText = "create table testblob (idfld integer not null, col_bin blob null)";
    cmd.ExecuteNonQuery();
    cmd.CommandText = "insert into testblob(idfld,col_bin) values(1,empty_blob())";
    cmd.ExecuteNonQuery();
    cmd.CommandText = "select col_bin, rowid from testblob";
    reader = cmd.ExecuteReader();
    reader.Read();
    //after read(), I get an exception "ORA-00932: inconsistent datatypes: expected CLOB got BLOB"
    tname = reader.GetDataTypeName(0);
    reader.Close();
    //seems data type of col_bin is not refreshed in client.

    See the response to the following forum item:
    Oracle returning incorrect schema information ?
    Matthew Solnit Mar 19, 2005 1:28 AM by: IT Panther »
    If this is important to you there is some workaround code listed in previous item but this may not work in the future.....

  • Login Window: Screen does not refresh correctly after waking 10.7.2 iMac and MacBook.

    I have a client who brought to my attention that when we wakes his iMac and MacBook after the screen dims or sleeps at login screen, that sometimes the screen does not refresh correctly and you must use the cursor to basically "clear the screen."  I have witnessed this myself and elimiated all third party products and this still happens.  I am starting to believe that is is a bug in 10.7.2.  Has anyone witnessed this or have any suggestions on how to remedy?  Thank you.

    Thanks lynque.  It turns out I did need a keychain repair, but that didn't fix the problem.  I probably should have done this earlier, but I ended up unplugging all peripherals (2 firewire + 3 USB) then powered up without issue.
    So I shut down, plugged in one at a time, and ran into the problem again after plugging in an external hard drive (WD My Book Essential).  I repaired with disk utility, but the problem remained.
    I then rebuilt the partitions with Disk Warrior, and now everything seems to work....

  • Rich Client keeps refreshing docs when opening them

    Hello,
    I would like to ask a question about the refresh on open with Rich Client. Using FP2.10, I have Rich Client which keeps refreshing documents when opening them. This happens even if the 'refresh on open' option is unchecked. I would like to know if there is another option that is forcing the refresh of my webi doc when opened with WRC.
    this behavior I'm facing is systematic and does not depend on universe, document, objetc or whatsoever.
    It happens when I create a brand new doc using demo universe (eFashion for instance). I use a prompt in the query; then I save the document locally as a .WID file making sure that option 'refresh on open' is uncheck. However when I open this newly created document, the prompt dialog box shows up meanign that the doc was refreshed.
    This behavior is happening wiht only one machine. that' what made me think that it might be related to some configuration within that machine.
    Thanks in advane for any input you might have to resolve this issue.
    Best regads,
    Mohamed

    I have got a question with regards to this thread.
    I understand the new option that has been added u201CDisable Automatic Refresh on Open for all documentsu201D
    In this instancce all reports refresh when opened in WRC and not in Infoview?
    Is this right specific to WRC or Webi in Infoview as well?
    With BO administrator, the report does not refresh as u201CDisable Automatic Refresh on Open for all documentsu201D right is granted by default.
    However, with a non-admin user, the report will refresh.
    If the aforementioned right is  granted to the non-admin user then the auto-refreshes stops.
    Therefore, my query is:
    Is this functionality of refreshing all documents specific to WRC or does it also applies to Webi in Infoview?
    If specific to WRC then is it documented somewhere?
    Thanks
    Steph

  • Enforcement states for a deployment report status is not refresh..

    Enforcement states for a deployment report status is not refresh.
    We have deployed patches by software update and monitoring status by checking report
    Enforcement states for a deployment. We have observed status difference in report and in actual PC. Status of One PC is
    Downloaded update in report  but actually that patch was
    installed on PC.
    why this difference and what is the solution to solve this.

    Hi Garth - I don't recreate the SU group. I recreate the deployment from
    the SU group.
    The SU Group contains all deployed updates and the deployment is a "catch-up" and targets a collection of all clients on the particular platform ie. Server 2008 R2. It's a mandatory deployment and I've set it to report "all messages" as opposed to the default
    "success and failure".
    There's no particular SU that are showing ESU. It's the client that shows ESU via the report "Enforcement States for a Deploymennt", and it's only ever the clients that were "Pending System Restart" previously that change to "Enforcement State
    Unknown". The software centre on these clients all know they're pending restart, and if the pending restart is performed on the client it will then change to "Compliant", but it never changes from ESU while its real state is "Pending Restart".
    Hopefully that clarifies the scenario.
    Like I said, I have a workaround, but I'd like to eliminate this behaviour on all my SCCM 2012 instances which are all affected.

  • Internet Client Not talking to DMZ MP

    I am facing issues in communication of Internet Client to my MP sitting in DMZ.
    Scenario:
    Primary Site 2012
    MP, DP role installed Site system in DMZ domain joined.
    DMZ talking to DC, and site server, bidirectional.
    Installed MP and DP role, with Internet only client, created FQDN, and published FQDN to public DNS
    created certs following steps in http://www.systemcenterdudes.com/internet-based-client-management/.
    Tried installing client manually in domain, using switches ccmsetup.exe /usePKICert /NoCRLCheck CCMHOSTNAME="MP public FQDN" DNSSUFFIX="public DNS" SMSSITECODE=XXX 
    When moved the client to open internet, I see below error in locations services.log
    Attempting to retrieve site information from lookup MP(s) via HTTPS
    LocationServices 3/18/2015 4:28:41 PM
    2424 (0x0978)
    Failed to send site information Location Request Message to XXXXXXX
    LocationServices 3/18/2015 4:29:01 PM
    2424 (0x0978)
    Attempting to retrieve site information from lookup MP(s) via HTTP
    LocationServices 3/18/2015 4:29:01 PM
    2424 (0x0978)
    Failed to refresh security settings over MP with error 0x80004005.
    LocationServices 3/18/2015 4:29:01 PM
    2424 (0x0978)
    No security settings update detected. LocationServices
    3/18/2015 4:29:01 PM 2424 (0x0978)
    Using INF MP XXXXXXXXXXX as lookup MP. LocationServices
    3/18/2015 4:29:01 PM 2424 (0x0978)
    Attempting to retrieve site information from lookup MP(s) via HTTPS
    LocationServices 3/18/2015 4:29:01 PM
    2424 (0x0978)
    Failed to send site information Location Request Message to XXX
    LocationServices 3/18/2015 4:29:08 PM
    2424 (0x0978)
    Attempting to retrieve site information from lookup MP(s) via HTTP
    LocationServices 3/18/2015 4:29:08 PM
    2424 (0x0978)
    Failed to refresh Site Signing Certificate over MP with error 0x80004005.
    LocationServices 3/18/2015 4:29:08 PM
    2424 (0x0978)
    Refreshing Site Signing Certificate over HTTP
    LocationServices 3/18/2015 4:29:08 PM
    2424 (0x0978)
    [CCMHTTP] AsyncCallback(): -----------------------------------------------------------------
    LocationServices 3/18/2015 4:29:26 PM
    2424 (0x0978)
    [CCMHTTP] AsyncCallback(): WINHTTP_CALLBACK_STATUS_SECURE_FAILURE Encountered
    LocationServices 3/18/2015 4:29:26 PM
    2424 (0x0978)
    [CCMHTTP]                : dwStatusInformationLength is 4
    LocationServices
    3/18/2015 4:29:26 PM 2424 (0x0978)
    [CCMHTTP]                : *lpvStatusInformation is 0x10
    LocationServices
    3/18/2015 4:29:26 PM 2424 (0x0978)
    [CCMHTTP]            : WINHTTP_CALLBACK_STATUS_FLAG_CERT_CN_INVALID is set
    LocationServices
    3/18/2015 4:29:26 PM 2424 (0x0978)
    [CCMHTTP] AsyncCallback(): -----------------------------------------------------------------
    LocationServices 3/18/2015 4:29:26 PM
    2424 (0x0978)
    Raising event:
    instance of CCM_CcmHttp_Status
    ClientID = "GUID:8BD27970-C69F-483D-A7E5-0DC76DC7A836";
    DateTime = "20150318105926.499000+000";
    HostName = "XXXXXXXX";
    HRESULT = "0x80072f8f";
    ProcessID = 5868;
    StatusCode = 16;
    ThreadID = 2424;
    LocationServices
    3/18/2015 4:29:26 PM 2424 (0x0978)
    Failed to send request to /SMS_MP/.sms_aut?SITESIGNCERT at host XXX, error 0x2f8f
    LocationServices 3/18/2015 4:29:26 PM
    2424 (0x0978)
    [CCMHTTP] ERROR: URL=https://XXXXXXXX/SMS_MP/.sms_aut?SITESIGNCERT, Port=443, Options=480, Code=12175, Text=ERROR_WINHTTP_SECURE_FAILURE
    LocationServices 3/18/2015 4:29:26 PM
    2424 (0x0978)
    Successfully sent location services HTTPS failure message.
    LocationServices 3/18/2015 4:29:27 PM
    2424 (0x0978)
    Failed to refresh Site Signing Certificate over HTTP with error 0x80072f8f.
    LocationServices 3/18/2015 4:29:27 PM
    2424 (0x0978)
    Using INF MP XXXXXXXX as lookup MP. LocationServices
    3/18/2015 4:29:27 PM 2424 (0x0978)
    Attempting to retrieve default management points from lookup MP(s) via HTTPS
    LocationServices 3/18/2015 4:29:27 PM
    2424 (0x0978)
    LSGetManagementPointsForSiteFromManagementPoint: Client is on Internet, skipping Intranet MP list request.
    LocationServices 3/18/2015 4:29:27 PM
    2424 (0x0978)
    Unable to retrieve compatible MP(s) from AD
    LocationServices 3/18/2015 4:29:27 PM
    2424 (0x0978)
    LSGetManagementPointsForSite: Domain joined client is in Internet - INF MP will be used to get other INF MPs.
    LocationServices 3/18/2015 4:29:27 PM
    2424 (0x0978)
    LSUpdateInternetManagementPoints LocationServices
    3/18/2015 4:29:27 PM 2424 (0x0978)
    Current AD site of machine is XXXXX LocationServices
    3/18/2015 4:29:27 PM 2424 (0x0978)
    Failed to send management point list Location Request Message to XXXXX
    LocationServices 3/18/2015 4:29:34 PM
    2424 (0x0978)
    LSUpdateInternetManagementPoints: Failed to retrieve internet MPs from MP XXX with error 0x87d00231, retaining previous list.
    LocationServices 3/18/2015 4:29:34 PM
    2424 (0x0978)
    There is no AMP for site code XXXX Nulling existing entry in WMI
    LocationServices 3/18/2015 4:29:34 PM
    2424 (0x0978)
    Assigned MP changed from XXXXXXXX to <>.
    LocationServices 3/18/2015 4:29:34 PM
    2424 (0x0978)
    Persisted Default Management Point Locations locally
    LocationServices 3/18/2015 4:29:34 PM
    2424 (0x0978)
    [CCMHTTP] AsyncCallback(): -----------------------------------------------------------------
    LocationServices 3/18/2015 4:29:37 PM
    2432 (0x0980)
    [CCMHTTP] AsyncCallback(): WINHTTP_CALLBACK_STATUS_SECURE_FAILURE Encountered
    LocationServices 3/18/2015 4:29:41 PM
    2432 (0x0980)
    [CCMHTTP]                : dwStatusInformationLength is 4
    LocationServices
    3/18/2015 4:29:41 PM 2432 (0x0980)
    [CCMHTTP]                : *lpvStatusInformation is 0x10
    LocationServices
    3/18/2015 4:29:41 PM 2432 (0x0980)
    [CCMHTTP]            : WINHTTP_CALLBACK_STATUS_FLAG_CERT_CN_INVALID is set
    LocationServices
    3/18/2015 4:29:41 PM 2432 (0x0980)
    [CCMHTTP] AsyncCallback(): -----------------------------------------------------------------
    LocationServices 3/18/2015 4:29:41 PM
    2432 (0x0980)
    Raising event:
    instance of CCM_CcmHttp_Status
    ClientID = "GUID:8BD27970-C69F-483D-A7E5-0DC76DC7A836";
    DateTime = "20150318105941.428000+000";
    HostName = "XXXXXXXX";
    HRESULT = "0x80072f8f";
    ProcessID = 5868;
    StatusCode = 16;
    ThreadID = 2432;
    LocationServices
    3/18/2015 4:29:41 PM 2432 (0x0980)
    Failed to send request to /SMS_MP/.sms_aut?MPLIST2&XXXXX at host XXXXXXX, error 0x2f8f
    LocationServices 3/18/2015 4:29:41 PM
    2432 (0x0980)
    [CCMHTTP] ERROR: URL=https://XXXXXXXX/SMS_MP/.sms_aut?MPLIST2&XXXXX, Port=443, Options=480, Code=12175, Text=ERROR_WINHTTP_SECURE_FAILURE
    LocationServices 3/18/2015 4:29:41 PM
    2432 (0x0980)
    Successfully sent location services HTTPS failure message.
    LocationServices 3/18/2015 4:29:41 PM
    2432 (0x0980)
    Failed to send web service info Location Request Message
    LocationServices 3/18/2015 4:29:41 PM
    2424 (0x0978)
    Modassir Khan

    Hi,
    Here is a blog has a similar problem that a Certificate Revocation List was not configured. You could have a look to check if you missed anything.
    Certificate Revocation Lists and Your Config Manager Client
    Note:
    Microsoft provides third-party contact information to help you find technical support. This contact information may change without notice. Microsoft does not guarantee the accuracy of this third-party contact information.
    Best Regards,
    Joyce
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Standard iView not refreshing

    Has anyone come across this problem with the Org Unit Overview iview ?
    This i View is not showing updates unless I log off and then log back on to the Portal. The iView is set so there should be no caching (eg the cache level is NONE,  Allow Client -side caching is set to NO) 
    Going out of the transaction in the Portal and then back to the Org Overview is not enough even if the Explorer history and temp internet files are cleared.
    I'd appreciate any suggestions

    Hi Stefhen,
    I hope that you are again displaying the data from the same context. When you are updating the data, (update it first) commit your changes to back end then re query the data from back-end to get the updated one. Otherwise if you are going to display then it will show you the old data because you are not refreshing the data from back end.
    do check the process and try.
    Cheers....
    Satya

  • Workstation policies not refreshing...

    Hi,
    We have a number on workstations in one area of our university whose desktop policies do not refresh following build/rebuild.
    Workstations are members of a group and a policy package is associated with that group which deploys printers and makes some tweaks. The workstation can be rebooted any number of times but the policies don't appear. Run wmsched and click "Refresh" and there they are.
    Is there a means of forcing the workstation to refresh its policies (other than by manual intervention) or troubleshooting what might be going on?
    We're using Zenworks 7 and Windows XP SP2 and SP3 clients.
    Thanks in advance,
    Matt

    The only way I've ever been able to reliably refresh policy is with a reboot (workstation) or login (user). Some settings will update via the wmsched.exe tool, but not consistently.
    ~Todd
    Originally Posted by leekie
    Hi,
    We have a number on workstations in one area of our university whose desktop policies do not refresh following build/rebuild.
    Workstations are members of a group and a policy package is associated with that group which deploys printers and makes some tweaks. The workstation can be rebooted any number of times but the policies don't appear. Run wmsched and click "Refresh" and there they are.
    Is there a means of forcing the workstation to refresh its policies (other than by manual intervention) or troubleshooting what might be going on?
    We're using Zenworks 7 and Windows XP SP2 and SP3 clients.
    Thanks in advance,
    Matt

  • Facebook applicatio​n is not refreshing neews feed on Playbook 64GB

    Hi!
    I have just got a Playbook 64GB with the latest OS on it (it downloaded after full wipe). It comes with native facebook client.
    However, after signing I browsed it for 1 day approx, and then I started realizing it is not refreshing the neews feed at all. I tried to log out, and delete the app and then reainstalll from appworld, but the issue comes back again. It only keeps showing me 1 feed from one of my contacts and thats it. I pull down to refresh butbut nothing happens.
    Anyone got an idea how to fix this?
    Cheers,
    Breaker

    if you sell it, then you won't have this issue anymore
    but the picture issue is on facebook side (they did not renew all their security certificates, and they now are considered insecure by your BlackBerry tablet, the solution is to configure Facebook to not force usage of those deprecated certificates).
    The search box on top-right of this page is your true friend, and the public Knowledge Base too:

  • Can not refresh server manager Error:0x8007045b

    OS: Windows 2012 R2 Core
    Services: Hyper V
    I was trying to remote reboot and the session hung. No worries I decided I could just reboot the next morning. So I rebooted the next day but when I go into server manager I get
    an errror can not refresh server manager Error:0x8007045b. Did some research found suggestions to fix it using a DISM.exe /Online /Cleanup-image /Restorehealth.
    But then I get an error 1115 A system Shutdown is in progress. I attempt to fix this issue using pskill winlogon but the issue pursistest. I have restarted the server several times now. Not sure how to fix this.
    Thanks in advance,
    Jake

    Hi,
    In addition to the above information,
    Checkout the below thread for similar discussion,
    http://social.technet.microsoft.com/forums/windowsserver/en-US/a700e9f6-4491-4c70-8bd0-d9d3111e2f70/windows-reboot-error
    Regards,
    Gopi
    JiJi
    Technologies

  • Can not refresh page after save properly(When not saving master record)

    I am using jdeveloper 11g R2 (11.1.2.3) JSF Facelet
    In some use case I have Address as master table and Person as detail table
    For some business reason I need to don't save same addresses
    eg:
    If +1 Test St+ is in database already and new user coming and adding this address with new person
    I need to use the row in database not creating a new address
    I do saving in doDML method of Address with some hashing algorithm and it is fine
    My problem is that I can not refresh page after save properly
    User coming to page think Adding a new address and a new person but in fact no new
    address added because of business I describe above
    Any ideas how I can implement this?
    Appreciate that
    Regards
    Mohsen

    Hi,
    from your description it is not clear why the page doesn't refresh. It could be a problem in your implementation code - who knows. What if you perform the address check on a command button that actually submits the new address? If the check returns true (address exists) you would call row.refresh(forget new row); and re-query the view object so the address coming from the database is displayed. If you wanted to use the doDML then yuou need to be aware that doDML doesn't help removing the row the user created. It just ignores the database update but the entity is still around, which in my suggested solution wont be the case.
    Frank

Maybe you are looking for

  • Hiding the Personnel Change Requests in MSS

    Hi, In MSS, when the manager clicks on the workset "Create New Personnel Change Request"  --> All employees are listed , after selecting an employee --> select form displays all the delivered personnel change requests. We will not be using some of th

  • Hi all . how to configure periodic billing and mile stone billing ..

    hi gurus could someone please tell me the process of defining periodic billing and milestone billing for a customer or group of customers  and how do we show the deficit in the accounts .. how to do the config for the periodic and milestone billing .

  • Datasource fore the classification data

    Hi, I am not able to understand, in which ECC client i should be generating datasource for classification data? We have following landscape : For ECC -     Development Environment           100 - Config Client / Golden Master            110 - ABAP de

  • I cannot open my network preference

    Hi, I'm working on a Mac OS X 10.6.8, and when I try to open network preferences, it always shows system preferences and says "Loading Network..." on the top. I have this problem after playing with network locations: I deleted all network locations w

  • Cell shading and adding a graphic above/below a paragraph

    Hi all-- I'm creating a two-column, one-row table for examples. For the left column, I set up shading for 30% light gray. For the paragraph tag in that same column, I'm importing a frame, which contains the word "Example," from the Reference page. To