Trace Issues

If I try a trace on a website which is allowed (say www.bbc.co.uk - News is allowed for all users/access policies) with a specific user whose group membership gets listed successfully and click trace, I get the following:
URL Check
Object Size: 243 bytes
MIME-Type: text/html
Policy Match
Decryption policy: None
Routing policy: Global Routing Policy
Access policy: Global Access Policy
Final Result
Request completed
Details: Transaction permitted
Trace session complete
However if I keep the user the same, but change the URL to something that is not permitted (say, www.sex.com - Adult is blocked for all access policies), I get this:
URL Check
Object Size: 187 bytes
MIME-Type: text/html
Policy Match
Decryption policy: None
Routing policy: Global Routing Policy
Access policy: Global Access Policy
Final Result
Request completed
Details: Transaction permitted
Trace session complete
If we change the IP to one that is in a specific access group, it is listed as blocked:
URL Check
URL Category: Adult/Sexually Explicit
WBRS Score: 3.0
Policy Match
Decryption policy: None
Routing policy: None
Access policy: Bypass_IP
Final Result
Request blocked
Details: Request blocked based on predefined URL category
Trace session complete
What's going on?! The website is actually blocked, but why doesn't the trace say so?

I believe i have had something similar,
For me it was having multiple groups returned as "Authorised Groups" and the workaround for me was to remove all the other groups that are returned except the one I want to test for (i.e. that matches the access policy) and it appears to work

Similar Messages

  • Simple question (Trace issue) Access of undefined property

    Having a strange issue with my new Flash Builder and the trace command. Anyone seen this before and why?
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
       xmlns:s="library://ns.adobe.com/flex/spark"
       xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600">
         <fx:Declarations>
               <!-- Place non-visual elements (e.g., services, value objects) here -->
         </fx:Declarations>
    <fx:Script>
         <![CDATA[
              var myString:String = "Help";
              trace(myString);
              //Error 1120: Access of undefined property myString.
         ]]>
    </fx:Script>
    </s:Application>

    your trace command isn't in a function
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"          
                   xmlns:s="library://ns.adobe.com/flex/spark"          
                   xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600" applicationComplete="doThis()">
        <fx:Declarations>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
        </fx:Declarations>
        <fx:Script>
            <![CDATA[
                private var myString:String = "Help";
                private function doThis():void
                    trace(myString);
            ]]>
        </fx:Script>
    </s:Application>

  • TKPROF / Trace Issue

    Hi,
    We are using Oracle Apps 11.5.10 ; Database 10 g
    In Oracle Apps; When we switch on trace (using Help --> Diagnostice --> Trace - Trace with Binds and waits ); Trace is getting generated successfully at unix box.
    After switch off trace; connected to unix box and issued tkprof
    Syntax:
    tkprof <generated_trace_file> MYFILE sys=no explain=<apps>/<appspwd> sort=exeela,prsela,fchela
    My Questions/ Issues are:
    1. In the genreated tkprof file (MYFILE) ; I could see all select statement; But in the select statements ; few details are appearing as :B1 , :B2 (Example: SELECT CATEGORY, SEVERITY, FND_LOG_SEVERITY
    FROM FND_NEW_MESSAGES WHERE MESSAGE_NAME = :B1 AND APPLICATION_ID = :B2); Is it way i can also see actual values instead of :B1 and :B2 ?
    2. Also in my tkprof generated file (MYFILE); I have some ORA error; this error is at many places;
    Here is the error details
    ----------------------------- error details --------------------------------------
    Optimizer goal: ALL_ROWS
    Parsing user id: 173 (APPS) (recursive depth: 2)
    unable to set optimizer goal
    ORA-01986: OPTIMIZER_GOAL is obsolete
    parse error offset: 33
    --------------------------- error details ---------------------------------------------------
    3. I am using tkprof and trace in wrong manner ? Do i need to do any database settings to get correct results of my tkprof results? Is i am using different version of tkprof?
    FYI ; few details on tkprof
    -------------------- tkprof details -----------------------------------------------
    TKPROF: Release 8.0.6.3.0 - Production on Wed Jan 23 21:18:31 2008
    (c) Copyright 1999 Oracle Corporation. All rights reserved.
    $
    $ which tkprof
    ~/806/bin/tkprof
    ------------------------------ tkprof details ---------------------------------------------
    Please help this is kind of priority.
    Thanks!!

    Suppose you see the following SQL in the tkprof output:
    SELECT DISTINCT SR_CATEGORY_ID
    FROM
    MSC_ITEM_CATEGORIES WHERE CATEGORY_SET_ID = :b1 AND CATEGORY_NAME = :b2
    call count cpu elapsed disk query current rows
    Parse 2 0.00 0.75 0 0 0 0
    Execute 2 0.02 1.93 0 0 0 0
    Fetch 3 0.00 0.00 0 27 0 2
    total 7 0.03 2.68 0 27 0 2
    Misses in library cache during parse: 1
    Misses in library cache during execute: 1
    Optimizer mode: ALL_ROWS
    Parsing user id: 47 (APPS)
    Rows Row Source Operation
    1 HASH UNIQUE (cr=13 pr=0 pw=0 time=325 us)
    14 PARTITION RANGE ALL PARTITION: 1 2 (cr=13 pr=0 pw=0 time=251 us)
    14 TABLE ACCESS BY LOCAL INDEX ROWID MSC_ITEM_CATEGORIES PARTITION: 1 2 (cr=13 pr=0 pw=0 time=229 us)
    14 INDEX RANGE SCAN MSC_ITEM_CATEGORIES_N4 PARTITION: 1 2 (cr=3 pr=0 pw=0 time=42 us)(object id 382162)
    Rows Execution Plan
    0 SELECT STATEMENT MODE: ALL_ROWS
    1 HASH (UNIQUE)
    14 PARTITION RANGE (ALL) PARTITION: START=1 STOP=2
    14 TABLE ACCESS MODE: ANALYZED (BY LOCAL INDEX ROWID) OF
    'MSC_ITEM_CATEGORIES' (TABLE) PARTITION: START=1 STOP=2
    14 INDEX MODE: ANALYZED (RANGE SCAN) OF
    'MSC_ITEM_CATEGORIES_N4' (INDEX) PARTITION: START=1 STOP=2
    Elapsed times include waiting on following events:
    Event waited on Times Max. Wait Total Waited
    ---------------------------------------- Waited ---------- ------------
    SQL*Net message to client 9 0.00 0.00
    SQL*Net message from client 9 0.02 0.04
    latch: library cache 1 0.00 0.00
    If you want to find the bind variables, you need to find the SQL statement in the raw trace file. I would search on 'MSC_ITEM_CATEGORIES'
    You see PARSING IN CURSOR #99 in the example below. The BIND #99 are listed below as well. The first one is 2 and the second is 'COMPUTER.DESKTOP'
    PARSING IN CURSOR #99 len=111 dep=0 uid=47 oct=3 lid=47 tim=1138043781487272 hv=62812132 ad='650d6fec'
    SELECT DISTINCT SR_CATEGORY_ID FROM MSC_ITEM_CATEGORIES WHERE CATEGORY_SET_ID = :b1 AND CATEGORY_NAME = :b2
    END OF STMT
    PARSE #99:c=4001,e=752066,p=0,cr=0,cu=0,mis=1,r=0,dep=0,og=1,tim=1138043781487264
    WAIT #99: nam='SQL*Net message to client' ela= 2 driver id=1952673792 #bytes=1 p3=0 obj#=49254 tim=1138043781488132
    WAIT #99: nam='SQL*Net message from client' ela= 197 driver id=1952673792 #bytes=1 p3=0 obj#=49254 tim=1138043781488367
    WAIT #99: nam='latch: library cache' ela= 1185 address=1866426996 number=214 tries=1 obj#=49254 tim=1138043781741163
    BINDS #99:
    kkscoacd
    Bind#0
    oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
    oacflg=01 fl2=1000000 frm=00 csi=00 siz=56 off=0
    kxsbbbfp=b6d0d710 bln=22 avl=02 flg=05
    value=2
    Bind#1
    oacdty=01 mxl=32(16) mxlc=00 mal=00 scl=00 pre=00
    oacflg=21 fl2=1000010 frm=01 csi=871 siz=0 off=24
    kxsbbbfp=b6d0d728 bln=32 avl=16 flg=01
    value="COMPUTER.DESKTOP"
    Then run the following SQL in sqlplus or sql developer:
    SQL> SELECT DISTINCT SR_CATEGORY_ID
    2 FROM MSC_ITEM_CATEGORIES
    3 WHERE CATEGORY_SET_ID = 2
    4 AND CATEGORY_NAME = 'COMPUTER.DESKTOP';
    SR_CATEGORY_ID
    1373

  • Layer Auto-trace issue in AE CC 2014

    Hello,
    There seems to be a bug in the CC 2014 auto-trace layer command.  When I execute the command the new traced layer does not appear in the comp above the original layer as it did in AE CC previously.  Is there a new method?  I also notice that the project and effects panels are no longer displayed side by side in CC 2014.  I must switch between work-spaces in order to see the effects window on a given layer, then switch back to standard workspace to see the project panel.
    Any help or education on these matters would be appreciated.
    Thanks,
    JB

    Nothing changed regarding the default workspaces. I think that you may be mis-remembering the previous versions.
    Also, regarding Auto-trace, nothing has changed. There is an option in the Auto-trace dialog box to apply the masks to a new layer. The default for that is off. After Effects remembers and uses the last setting, so if you set this on once, it stays on for subsequent uses. You probably changed it once in a previous version and forgot that you did so.

  • Hi Shanky , pls help out regading Profiler Trace issue ?

    Hi Shanky,
    Pls help out . Regadng Profiler Trace .
    Thanks
    Vijay

    select id,path,status from sys.tarces
    which is given o/p for path "NULL" value
    The NULL path indicates a rowset (Profiler) trace rather than a server-side trace.  The status 1 means the trace is currently running.  You can run sp_who2 to identify the host(s) running the trace.  The Program Name will start with "SQL Server
    Profiler".
    Note that traces are at the server-level rather than the database level from SQL Server perspective.  Each trace may contain filters so that only events for specific databases are included.
    Dan Guzman, SQL Server MVP, http://www.dbdelta.com

  • Auto trace issues

    when i used auto trace tool it is not showing the tracing of the pic

    After Effects Auto Trace does not work like the Auto Trace In Illustrator. There is a preview but there's a bug in the preview of you are running a HR (Retina for Mac) display that causes the preview to be 1/4 size and in the upper right corner. Your layer either needs an alpha channel or some contrast. This is what CC looks like on my MBP R with preview on:
    As long as you have not hidden the preview in your Composition Panel Settings you should be able to see the preview and if the Mask Path visibility is turned on (third icon on the bottom right) you should see the mask paths with they are created.

  • That old chestnut: *** Security Sandbox Violation *** clogging the debug trace

    Hi,
    I am attempting to debug a project for Flash Mobile and getting very irritated by *** Security Sandbox Violation *** warnings whenever I move, touch or interact with the application in any way whatsoever. These typically fire two or three _PAGES_ of warnings for a simple drag operation... Because there are so many of these warnings, the debug trace is effectively redundant and useless unless I actively insert a manual break point immediately after the traces I want to view - fine for a comms operation, not so useful when attempting to debug coordinates for a drag operation.
    The cause, obviously, is that I have loaded external content for display in a SWFLoader component...
    Because I am in AIR for mobile, I cannot access Security to allow the domain and crossdomain from the content provider is ignored or not loaded.
    I have found a number of references to this ranging from very recent to several years ago, such as this one which indicates a) the trace is a bug and b) something was being done about it: http://forums.adobe.com/thread/576999
    I cannot find any reference to a fix ever being implemented and the trace issue is driving me nuts.
    Please, please, please can somebody direct me to a workaround to hide this? I've tried all kinds of disabling for mouse events, keyboard events, mouse children etc.
    Thanks,
    Overwhelmed-in-the-traces of Dublin

    Is it bad form to bump?
    G

  • Reg:: MS-Sqlserver 2008 r2 Trace logs

    Hi Techys,
    I have a query regarding sql server trace logs,
    I'm using SqlServer 2008 r2 version for sharepoint 2010 installation, But I'm toomuch struggled with SqlServer trace logs, due to these logs my system drive always filling and my sharepoint site is not allowing for browsing. If I delete the trace logs, the
    system drive will have some free space and sharepoint site is running very smothly.
    So, I want to stop my tracelogs in sqlserver. Please guide the very best solution.
    Many Thanks,
    Madhu

    Give a command to list all traceids:
    SELECT * FROM sys.fn_trace_getinfo(NULL)
    for each tracing you want to disable (except for default trace which need to be configured through sp_configure) execute (here is a sample for traceid=3):
    exec sp_trace_setstatus 3,0
    If you need to disable a default trace, issue the commands:
    EXEC sp_configure 'show advanced options', 1;
    GO
    RECONFIGURE;
    GO
    EXEC sp_configure 'default trace enabled', 0;
    GO
    RECONFIGURE;
    GO
    EXEC sp_configure 'show advanced options', 0;
    GO
    RECONFIGURE;
    GO

  • SubTemplate call is failing with XML-22002 error

    Hi,
    I am using Oracle BI Publisher 10.1.3.4 in WebLogic Server 10.3.6.0.
    Subtemplate reference is used in some reports. Whn we click on view of such report, below error is shown.
                   "The report cannot be rendered because of an error, please contact the administrator."
    The patch 9017232 is also installed.
    The detailed error log is below:
    [111413_123806333][oracle.apps.xdo.common.xml.XSLTWrapper][ERROR] XSL error:
    <Line 3, Column 71>: XML-22002: (Fatal Error) Error while processing include XSL file (xdoxsl:///FCReports/HeaderFooter_LandScape.xsb).
    <Line 78, Column 312>: XML-22008: (Error) Namespace prefix 'ref' used but not declared.
    @Line 3 ==> <xsl:import href="xdoxsl:///FCReports/HeaderFooter_LandScape.xsb"/>
    [111413_123806337][oracle.apps.xdo.template.FOProcessor][EXCEPTION] java.lang.reflect.InvocationTargetException
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java.lang.reflect.Method.invoke(Method.java:597)
        at oracle.apps.xdo.common.xml.XSLT10gR1.invokeNewXSLStylesheet(Unknown Source)
        at oracle.apps.xdo.common.xml.XSLT10gR1.transform(Unknown Source)
        at oracle.apps.xdo.common.xml.XSLT10gR1.transform(Unknown Source)
        at oracle.apps.xdo.common.xml.XSLTWrapper.transform(Unknown Source)
        at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(Unknown Source)
        at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(Unknown Source)
        at oracle.apps.xdo.template.FOProcessor.createFO(Unknown Source)
        at oracle.apps.xdo.template.FOProcessor.generate(Unknown Source)
        at oracle.apps.xdo.servlet.RTFCoreProcessor.transform(RTFCoreProcessor.java:91)
        at oracle.apps.xdo.servlet.CoreProcessor.process(CoreProcessor.java:276)
        at oracle.apps.xdo.servlet.CoreProcessor.generateDocument(CoreProcessor.java:82)
        at oracle.apps.xdo.servlet.ReportImpl.renderBodyHTTP(ReportImpl.java:554)
        at oracle.apps.xdo.servlet.ReportImpl.renderReportBodyHTTP(ReportImpl.java:257)
        at oracle.apps.xdo.servlet.XDOServlet.writeReport(XDOServlet.java:270)
        at oracle.apps.xdo.servlet.XDOServlet.writeReport(XDOServlet.java:250)
        at oracle.apps.xdo.servlet.XDOServlet.doGet(XDOServlet.java:178)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:707)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
        at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
        at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
        at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301)
        at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
        at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
        at oracle.apps.xdo.servlet.security.SecurityFilter.doFilter(SecurityFilter.java:97)
        at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
        at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3730)
        at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3696)
        at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
        at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
        at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2273)
        at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179)
        at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1490)
        at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
        at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    Caused by: oracle.xdo.parser.v2.XPathException: Namespace prefix 'ref' used but not declared.
        at oracle.xdo.parser.v2.XSLProcessor.reportException(XSLProcessor.java:806)
        at oracle.xdo.parser.v2.XSLProcessor.newXSLStylesheet(XSLProcessor.java:614)
        ... 38 more
    Syntax used in Report is
    <?import:xdoxsl:///Reports/HeaderFooter_LandScape.xsb?loc=en_US><?call@inlines:Header?><?with-param:PM_REPORT_NAME;string('Customer details report')?><?end call?>
    XDO.CFG file contents
    <config version="1.0.0" xmlns="http://xmlns.oracle.com/oxp/config/">
       <properties>
          <property name="bursting-multithreading-on">false</property>
          <property name="xdk-secure-io-mode">false</property>
       <property name="xslt-scalable">true</property></properties>
    </config>
    Please suggest whether this issue is with BI report setup.
    Thanks in Advance.
    Regards,
    Bala.

    Hi Surya,
    Would you let us know from where you are calling web service and for what?
    And if possible provide error log as screenshot or txt file. So that it will be easy to trace issue.
    For gland your issue, go through below posts
    Not able to execute MII Transaction as web service
    Error calling BLS Transaction as Web service
    Problem in generating wsdl ?
    Create MII transaction & MII Web Service and consume them in ABAP
    Regards,
    Praveen Reddy

  • Incoming email Settings is not working

    I have configured Incoming Email Settings by using msdn link
    http://technet.microsoft.com/en-us/library/cc262947(v=office.15).aspx#ConfigureDropFolderPerms .I cannot recieve emails in my document library ,mailroot/drop folder is empty.I am not able to trace issue.Please suggest

    Hi Refer thhe links
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/3d27cfd7-d4cd-4fb8-9899-d30bc7764a27/incoming-email-settings-not-working
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/3d27cfd7-d4cd-4fb8-9899-d30bc7764a27/incoming-email-settings-not-working?forum=sharepointadminprevious
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/c0e39e97-9113-4de8-9b72-137c594a4dfe/incoming-email-settings?forum=sharepointgeneralprevious
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/c3beaade-056b-48d2-8063-f4dabe60ff70/cant-get-incoming-email-settings-to-work?forum=sharepointadminlegacy
    Please remember to click 'Mark as Answer' on the answer if it helps you

  • Web Service attachement is returned in response body

    Dears,
    I have the following problem:
    I created a web service that return attachement. When I tested the web service from SOAP UI utility, I found that the webservice return the attachement in both ways, as inline in the responce body and as an attachement to the responce but without adding the href to responce body.
    Please advise how I can add the href and remove the attachement from responce body.
    Regards,
    fadi

    Hi Surya,
    Would you let us know from where you are calling web service and for what?
    And if possible provide error log as screenshot or txt file. So that it will be easy to trace issue.
    For gland your issue, go through below posts
    Not able to execute MII Transaction as web service
    Error calling BLS Transaction as Web service
    Problem in generating wsdl ?
    Create MII transaction & MII Web Service and consume them in ABAP
    Regards,
    Praveen Reddy

  • Can we Debug an AuditReport for a pissed off customer HUGE BUG IN IDM AUDIT

    Daily and Weekly Audit Reports return java.lang.NullPointer exception Error message.
    Unsurprisingly the customer is unimpressed.
    I find it impossible to find any documented method to trace what is happening once we fill in the form and start the AuditLog task.
    The customer goes to Admin page, pushes the "Run" button next to Todays Activity and he gets the NullPointer error. WTF.
    THIS IS A MASSIVE ERROR IN IDM. HOW CAN A IDM SYSTEM WRITE DATA TO AN AUDIT LOG WHICH IT CANNOT THEN READ???
    If there was a way, ANY WAY, to find out what is the bad "object" causing this Nullpointerexception on an AuditLog I would be happy to hear.
    User reports are no problem as we can readily write our own WorkFlows which exit gracefully on unexpected events. But AuditLogs are what customer relies on.
    GF

    Its a tease. Your link shows...
    "You can trace the following methods to troubleshoot issues with Identity Auditor:
    com.sun.idm.auditor.policy to trace issues with Audit Scans.
    com.sun.idm.auditor.accessreview to trace issues with Access Reviews.
    com.sun.idm.auditor.report to trace issues with Audit Reports.
    com.sun.idm.auditor.view to trace issues with Auditor Views.
    To Enable Tracing:
    1.Open a browser and log in to the Administrator interface.
    2.Select Configure -> Servers.
    3.When the Configure Servers page displays, click the server name in the Server column to edit the settings.
    4.On the Edit Server Settings page, click the Scheduler tab.
    5.Select the Tracing Enabled box to activate Scheduler debug tracing and write the results to stdout.
    6.Save your changes."
    It states tracing Auditor yet goes on to explain how to set up Scheduler debug tracing.
    My Question really is how do you set up tracing on com.sun.idm.auditor.report to trace issues with Audit Reports, someone must have done this.

  • Imac's Display Changes Colors

    Hi, I have an Imac G3/600mhz/CDRW/256mb/Snow. The Imac's display will change between different color hues varying from red to blue and yellow to green. When I smack the side of the computer it goes back to normal colors and then it will mess up again a couple minutes later. What could the problem be, could it be a simple loose connection, the pram battery, or something more serious. Any help with this issue would be greatly appreciated.
    Thanks,Aaron

    Hi,
    will it overwrite the first update I did and take its place?
    Basically it will include all the updates since 10.6 base version of Snow Leopard.
    Sometimes doing this corrects hard to trace issues (and is less destructive than removing the SystemPreferences.plist in this case that holds loads of info)
    Somewhat considered by some as Old Fashioned Repairing Permission with Disk Utility may help (Applications/Utilities > Disk Utility, Highlight the drive/Boot Vol and First Aid tab.
    After doing both of those I would consider a PRAM reset.
    Shut down the computer.
    Restart it holding down APPLE(or ⌘ )ALT(⌥)+PR Keys until you have heard three Start Up Bongs.
    This resets some of the settings the computer has.
    (System Volume output and such that can easily be reset)
    10:39 PM Monday; April 5, 2010
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"

  • ISight not working for non-Apple apps under particular user account

    I noticed that my iSight built into Macbook Pro 15" is not working anymore for non-Apple apps (Skype and Webex at least) and working for Facetime and Messages Beta under same account.
    I tried to test it using different account on OS X with Skype and it is working great!
    I'm using 10.7.3.
    Any advice?

    Hi,
    I take it that in System Information the camera is listed under USB items ?
    Your speps say OS x 10.7.2
    Have you updated to OS X 10.7.3 ?
    If you have I would start with that by doing a COMBO Version (Not using Software Update)
    This will be everything that has been updated since OS X 107 came out and may catch those hard to trace issues.
    Using the FInder > Go Menu > Hold the ALT key and Select the Library that appears > then navigate to Preferences.
    In here find the Skype .plist.
    Open it with Quick Look.
    Can you capture that (Apple/CMD ( or ⌘) + Shift + 4 together (Also tap space bar at the end to get the Window) ) ? and post it here.
    I don't use Skype and don't have the .plist to see if it lists the camera.
    If it does it might pay to delete the.plist and force Skype to re-***** the hardware.  (It also depends how much of your other settings are in there)
    In the meantime if you go to the Skype Preferences can you see a Preview of the camera ?
    Can you turn Off access to the camera and turn it On again in Skype ?
    Skype does use Flash Player to do the Video.
    Is Webex a browser led thing that uses Flash ?
    If it looks like it is a Flash Issue do you have the GoogleTalk Video Plugin installed (there is a standalone and it is part of Chrome) ?
    9:08 PM      Saturday; February 18, 2012
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Lion 10.7.3)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Error in ST05 - trace record pair error block. How to resolve/tackle issue?

    Hello,
    Someone approached me last week in asking me how to resolve an issue in ST05. Basically I used the transaction to filter "inclusive VBPA".
    The error is ....
    Internal error - trace record pair error block 8 link no. 0
    Message no. 0S 026
    Diagnosis
        Each SQL statement is described by two SQL trace records that have the
        same link number. In this case, there are at least three records with the
        same link number.
        The system outputs the number of the block in which the third SQL trace
        record was found, as well as the link number of the records.
    System response
        Program processing continues after the message is displayed. The system
        processes all of the trace records. You should assume, however, that the
        SQL trace in this case is not displayed correctly.
    Procedure
    You cannot correct this error yourself. If you can reproduce the error,
    contact the SAP Hotline.
    SQL trace list editing terminated after 6 errors
    While using the trace I am executing the program that selects VBPA once and, I am assuming, as it goes through the BAPI BAPI_SALESORDER_CHANGE used to unblock a delivery block. I am guessing the problem or source is from the BAPI but do you guys have other insights in what is causing this issue?
    Thanks again, hope to hear from you soon, and good day.

    Our ERP LIVE Production around 11am all users encountered cannot generate print record from the submit new request. see below errorFor production issues, please log a SR.
    ORA-00060: Deadlock detected. More info in file /u/oracle/PROD/db/tech_st/11.1.0/admin/PROD_tailindb/diag/rdbms/prod/PROD/trace/PROD_ora_4026.trc.
    ORA-00060: Deadlock detected. More info in file /u/oracle/PROD/db/tech_st/11.1.0/admin/PROD_tailindb/diag/rdbms/prod/PROD/trace/PROD_ora_4026.trc.
    ORA-00060: Deadlock detected. More info in file /u/oracle/PROD/db/tech_st/11.1.0/admin/PROD_tailindb/diag/rdbms/prod/PROD/trace/PROD_ora_4026.trc.Please see these docs.
    OERR: ORA 60 "deadlock detected while waiting for resource" [ID 18251.1]
    What to do with "ORA-60 Deadlock Detected" Errors [ID 62365.1]
    Thanks,
    Hussein

Maybe you are looking for

  • T440s Fingerprint Manager Pro Driver no longer working

    Hi all, I just recently updated the Fingerprint Manager Pro Driver to the latest version 8.01.35. Now during the installation, an error pops up saying the "the plugin version does not match with the version of omnipass" however the installation still

  • Issue in CAT2 transaction layout of table control need to be changed .Urge

    Hi experts . I am working in SAP upgrade project from 4.6 c to ECC . I have an issue in CAT2 where after entering the WBS element and the Personnel number . The screen shows as Send function /Sendr func area / Sender grant .. I need to have  Receiver

  • Video formats and optimum settings for both Mac and Windows XP

    Now this is a strange one: I create a Windows Media (WMV) file and it plays great on the Mac (I have Flip4Mac installed also). However, it doesn't play on Windows XP in MSIE -- but the QuickTime (.M4V file) does. I do have QuickTime installed on the

  • Some bugs related to artwork

    Hi, I was unable to find corresponding bug/recommendation form on Apple's site, so I decided to write here (please, correct me if I wrong, I am new here). I found that it is impossible to drag-and-drop artwork files (in particular jpeg) into artwork

  • Cost allocation flexfield

    hi after reading payroll UG, i am a bit confused about cost allocation flexfield for payroll, assignment, element link, org,element entry. can i consider this flexfield as a T ledger, the first popup field is for Debit, the second one is for Credit p