OCI client notification without a AQ queue

Hi Forum,
Well, put it in the simplest manner, I want to run a perl script when a Insert trigger occurs.
And I was wondering if it is possible that a OCI client be notified, when a trigger occurs, without using a AQ queue ?
I ask that because in Oracle Manuals we can find this:
An OCI application can:
* register interest in notifications in the AQ namespace and be notified when an enqueue occurs.
* register interest in subscriptions to database events and receive notifications when the events are triggered.
* manage registrations, such as disabling registrations temporarily or dropping the registrations entirely.
* post, or send, notifications to registered clients.
Hoping to hear from you soon, forum.
Pedro Campos Galvão
Edited by: user639404 on 20/Nov/2008 16:01

yes, you can.
follow the oracle documentation:
Oracle Call Interface Programmer's Guide -
9. OCI Programming Advanced Topics :: Database Change Notification.

Similar Messages

  • JVM Crash With Oracle OCI Client

    Hi
    My app is running on Windows 7 64 bit, Jboss 4.2, launched from Eclipse, and runs fine when I use the Oracle thin client (10g, 32bit). However when I try to use the OCI client, I get this:
    # A fatal error has been detected by the Java Runtime Environment:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x6d906f21, pid=4740, tid=5656
    # JRE version: 6.0_21-b07
    # Java VM: Java HotSpot(TM) Client VM (17.0-b17 interpreted mode windows-x86 )
    # Problematic frame:
    # V [jvm.dll+0x106f21]
    I'll post the contents of the log in another message because it's too long to fit here. Using the thin client is NOT an option unfortunately as the thin driver is missing some functionality that we need to use.
    I've installed the Oracle client in a folder that doesn't contain spaces, or parentheses (c:\oracle\.....) and the JDK is installed in a similar directory (c:\java\...)
    I've tried both 32bit and 64 bit versions of JDK1.6 and the Oracle 10g client. I have also tried mixed mode and interpreted mode JVM (Xint) with the same results.
    ojdbc14.jar is in my JBoss server's lib directory, and ocijdbc10.dll is in my path (c:\windows\system32).
    Anyone any ideas what's going wrong? Been trying to fix this for days now. Appreciate any help.
    Richard

    Sorted it (well, my colleague did anyway). We installed a fresh version (32 bit) JDK (6u21), the Oracle 10g (10.0.3) client (32 bit) and made sure that there were no other OCI DLLs anywhere. I had some in the JBoss bin directory which I had copied in earlier that morning and forgotten about. So, the only OCI DLLs I have now are in Oracle's installation directory. Once we removed those erroneous DLLs from the JBoss directory, the server made the connection successfully. I don't full understand why, because I was getting the error earlier without the erroneous DLLs being present too, so I think there was some additional interaction going on somewhere. One other thing that may have been important is the tnsnames.ora file I had. We found a post that said the tnsnames file generated by the installer, when it only has one entry in it, can include dodgy whitespace at the end which can cause problems. So, just to be on the safe side we added a second entry (to another DB) - maybe that was something to do with it.
    So, the Oracle 10g client and OCI driver DOES work on Windows 7 64 bit (at least for me anyway)

  • XMLType inputstream on OCI client

    Hi all, I have a problem using XMLType.createXML in java to create a XMLType to use as parameter in a stored procedure using OCI client (it works with thin client).
    my environment (sorry if I missed something!):
    Oracle db 11.1 on server, Java 1.6 and OCI client 11.1 on Windows on client.
    In my Eclipse project I included the following jars:
    \jdbc\lib\ojdbc6.jar
    \jlib\orai18n.jar
    \RDBMS\jlib\xdb.jar
    \LIB\xmlparserv2.jar
    the java code snippet for calling the stored procedure using the input stream:
    public String putgetXMLInputStream(File testFile) throws SQLException, FileNotFoundException, UnsupportedEncodingException
         // create the input stream from the file containing XML
         InputStream br = new BufferedInputStream(new FileInputStream(testFile));      
    // this statement was tested with no value for "kind" parameter and with these two value too
         // "oracle.xml.parser.XMLDocument.THICK"
         // "oracle.xml.parser.XMLDocument.THIN"
         XMLType xmlDoc = XMLType.createXML(connection, br);
         // set the statement
         CallableStatement cs;
         cs = connection.prepareCall("{?=call MYPACKAGE.TESTUPLOAD(?)}");
    cs.registerOutParameter(1, OracleTypes.VARCHAR);           
         cs.setObject(2, xmlDoc);
    // execute the statement
         cs.execute();
         // return the string
         return cs.getString(1);
    same code with string:
    public String putgetXMLString(File testFile) throws SQLException, FileNotFoundException, UnsupportedEncodingException, IOException
         StringBuilder contents = new StringBuilder();
         try {
         //use buffering, reading one line at a time
         //FileReader always assumes default encoding is OK!
         BufferedReader input = new BufferedReader(new FileReader(aFile));
         try {
              String line = null; //not declared within while loop
              * readLine is a bit quirky :
              * it returns the content of a line MINUS the newline.
              * it returns null only for the END of the stream.
              * it returns an empty String if two newlines appear in a row.
              while (( line = input.readLine()) != null){
              contents.append(line);
              contents.append(System.getProperty("line.separator"));
         } finally {
         input.close();
         XMLType xmlDoc = XMLType.createXML(connection, contents.toString());      
         // set the statement
         CallableStatement cs;
         cs = connection.prepareCall("{?=call MYPACKAGE.TESTUPLOAD(?)}");
    cs.registerOutParameter(1, OracleTypes.VARCHAR);           
         cs.setObject(2, xmlDoc);
    // execute the statement
         cs.execute();
         // return the string
         return cs.getString(1);
    the java code snippet for establish the database connection (I know that with java 1.6 the registerDriver is not
    required, I both tested with and without driver registering and it works in the same way):
    // connection string: comment as required
    // connection string for thin client
    // String connectionString = "jdbc:oracle:thin:@mydbserver:1521:mydb";
    // connection string for oci
    String connectionString = "jdbc:oracle:oci8:@mydbserver:1521:mydb";
    DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
    Connection conn =DriverManager.getConnection( connectionString, "john", "tiger");
    DatabaseMetaData meta = conn.getMetaData();
    System.out.println("Driver JDBC: " + meta.getDriverVersion());
    The PL/SQL called by java:
    FUNCTION TESTUPLOAD (pDoc IN XMLTYPE) RETURN VARCHAR2 IS
    msgout VARCHAR2(24000);
    doc DBMS_XMLDOM.DOMDocument;
    rootnode DBMS_XMLDOM.DOMNode;
    fchild DBMS_XMLDOM.DOMNode;
    attr1 VARCHAR2(20);
    ns VARCHAR2(200);
    BEGIN
    ns := 'xmlns="http://www.myweb.it/static/xml/def/0.6/ns1.html" xmlns:si="http://www.myweb.it/static/xml/def/0.6/si.html"';
    doc := DBMS_XMLDOM.newDOMDocument(pDoc);
    rootnode := dbms_xmldom.makeNode(doc);
    fchild := DBMS_XMLDOM.GETFIRSTCHILD(rootnode);
    -- dom text
    DBMS_XMLDOM.WRITETOBUFFER(rootnode, msgout);
    -- attribute value
    dbms_xslprocessor.valueOf(rootnode,'/DOC/@TYPENO',attr1, ns );
    -- node name of rootnode first child
    return '(' || attr2 || ' - ' || DBMS_XMLDOM.GETNODENAME(fchild) || ') ' || msgout;
    END TESTUPLOAD;
    Thus, the expected result is a returned varchar2 containing the value of the attribute as per XPath, the name of first child node
    and the whole text of dom.
    This work as expected connecting via OCI and Thin client if I create the XML starting from a string, and only with Thin client if
    I adopt the input stream approach. If I use the input stream with OCI client, no error message is displayed, and no value are provided
    for attribute or fchild name, but the dom text is returned.
    I made test with different charset encoding for the original file (UTF-8, ISO-8859-1, with endofline in windows and linux style).
    What I noticed is that in case of string and input stream with Thin client some kind of parsing occours: the returned text show some
    special characters (i.e. double quote) replaced by html entity and the charset encoding in <?xml tag replaced with ISO-8859-1, more over
    the returned xml is well indented.
    I'm sure that I'm missing something :-)
    Any hints?
    TIA
    GB
    Edited by: user12844059 on 7-mag-2010 6.54

    visit the javasoft.com (sun site) for tutorials and training on all of the technologies you mentioned.
    after understanding them, then review the oracle java roadmap found on technet.oracle.com --> technologies --> java to get an oracle perspective.
    then ask the oracle technology specific questions you have.

  • Memory leak using 10.2.0.3 OCI client on Solaris

    Hi,
    We are using OCI client libraries to connect our C++ program to the Oracle Database. The program does a lot of selects, inserts and SP calls.
    Oracle client and Oracle server both are 10.2.0.3.
    We have been observing a memory leak of 4M bytes in the C++ program every few minutes since last few days. On debugging through Purify, libumem, and Sun Studio 12, we finally managed to narrow down the problem to the Oracle client library OCI calls.
    The Sun Studio leak check shows the following -
    Leak #37, Instances = 157, Bytes Leaked = 655004
    kpummapg + 0x00000098
    kghgex + 0x00000648
    kghfnd + 0x000005BC
    kghalo + 0x00000A6C
    kghgex + 0x000003BC
    kghfnd + 0x000005BC
    kghalo + 0x00000A6C
    kghgex + 0x000003BC
    kghfnd + 0x000005BC
    kghalo + 0x00000A6C
    kpuhhalo + 0x00000558
    kpugdesc + 0x00000AD4
    kpugparm + 0x00000374
    COCIResultSet::InterpretData() + 0x000001B4
    COCIResultSet::COCIResultSet(COCIStatement*,OCIStmt*,OCIError*) + 0x000000A4
    COCIStatement::PrepareResult() + 0x00000190
    A select is executed, a resultset is fetched and the resultset is immeidately closed. The same piece of code has been running at various production systems without any problems. Most of the other sites are either 10.2.0.4 or 9i.
    On searching Metalink and various other forums, I found similar issues faced in 10.2.0.1.
    Could someone advise if there are any bugs corresponding to this which have been closed. Would upgrading to 10.2.0.4 solve the problem?
    Thanks.

    Hi,
    Apparently a similar issue is being discussed over here:
    Re: Memory Leak
    Hope it helps.
    Regards,
    Naveed.

  • Print report from client machine without showing in screen

    Hi guys!!
    I m using (forms10g+ 10gAS). I want to Print report from client machine without showing in the screen/monitor.
    Currently I m generating report in pdf format. From the pdf I m printing the document.
    But my requirements is to print directly to the printer without showing preview
    Thanks in advance
    Mokarem

    Maybe this will help:
    http://forums.oracle.com/forums/thread.jspa?messageID=1209371&#1209371
    Gary

  • Oracle 8.1.5 oci client to oracle 9i database

    Is is supported to use an Oracle 8.1.5 oci client to oracle 9i
    database? If not, will it work?

    Ok,
    so You can follow the migration path that I've indicated before:
    "To do that, the simplest way., is to install 10g r2 software on the Win 2003 machine. Create the DB and create the same accounts of the 8i version.
    On the 8i version, export all the schemas using "exp" utility, w/o using the DIRECT option.
    Copy the generated dump files onto the Win 2003 machine and import them using th "imp" utility,
    Analyze all the objects and that the migration is complete.
    You shouldn't find any problem porting structures and code from 8i to 10g R2
    No matters will occours, cause imp utility of 10g is backward compatible with 8i exp files
    Hop this helps
    Max

  • Does OCI client result cache and oracle UCP work together?

    I'm using Oracle 11.2.1.0. I've set up FCF and enabled OCI result cache on server side, so on client side, I'm using UCP for failover.
    this is my datasource configuration:
    <Resource name="jdbc/MyPool"
    auth="Container"
    factory="oracle.ucp.jdbc.PoolDataSourceImpl"
    type="oracle.ucp.jdbc.PoolDataSource"
    connectionFactoryClassName="oracle.jdbc.pool.OracleDataSource"
    url="jdbc:oracle:oci:@dbhost:1521/myDb"
    user="db_user"
    password="db_password"
    fastConnectionFailoverEnabled="true"
    onsConfiguration=""
    connectionPoolName="dbPool"
    initialPoolSize="5"
    minPoolSize="5"
    maxPoolSize="25"
    connectionWaitTimeout="10000"
    inactiveConnectionTimeout="120000"
    abandonConnectionTimeout="60"
    validateConnectionOnBorrow="true"
    sqlForValidateConnection="select user from dual"
    maxStatements="30"/>
    I've enabled OCI client result cache.
    I use /*+ result_cache */ in my query to take advantage of the result cache.
    so I execute the following scenario:
    i) select /*+ result_cache */ value from myTable where id=1; (this returns a result.)
    ii) update myTable to set a different value for id=1 record;
    iii) run select query again; (this should return a different result. oci result cache gets updated when table changes.)
    if I take out
    "sqlForValidateConnection" and/or "validateConnectionOnBorrow" (i.e. disable sql validation on borrow), the 2nd query after table update doesn't show the latest result. it's still showing the old query result.
    is this a bug? that UCP validation on borrow has an impact on OCI result cache function? this doesn't happen if using dbcp java connection pooling with OCI result cache.

    it turns out I ran the test against an oracle server that doesnt have FCF configured, nor ONS.
    once i switched to a correct oracle cluster, my test passed.

  • How to supply wallet location to OCI client for SSL connection other than sqlnet.ora

    I have a oracle 11g database server and I am connecting to it through OCI client in OBIEE Admin tool. This is working fine, but now the requirement is we need to connect to an SSL enabled database.
    For this I had to update the sqlnet.ora under $ORACLE_HOME/network/admin in OBIEE installation and specify the wallet location where I placed the wallet containing appropriate certificates.
    The above is working fine for me. But due to certain restrictions, we cannot create this sqlnet.ora. Is there a way we can pass this wallet location through some environment variables so that sqlnet.ora is not required?
    If we create a jdbc connection, we can specify the wallet location through jdbc connection properties. Is there any such equivalent for OCI based connection. I dont mind how we make the wallet location available to OCI client, so long as I dont have to create a sqlnet.ora.
    Any pointers is greatly appreciated

    Hi,
    sqlnet.ora file is required if you want to set the wallet location to another directory by using the WALLET_LOCATION parameter.
    If you do not want to use sqlnet.ora then you need to use the default wallet location.
    The wallet is placed, by default, in $ORACLE_BASE/admin/<global_db_name>/wallet.
    If this directory does not exist or ORACLE_BASE is not set, the default location is: $ORACLE_HOME/admin/<global_db_name>/wallet
    Regards,
    Ravi

  • Error with OCI Client.

    Hi,
    I have an server in which we use Tomcat as application server and apache as web server. and also we use Oracle instant client in the same server as an OCI client. We use instant client for connection pooling.
    And very frequently we are getting the below mentioned error. We suspect that this error is due to Oracle instant client.
    The version of Oracle Instant client is 10.2.0.4-1 and Hardware RAM capacity is 4 GB and we have allocated 1280 MB RAM for Tomcat application.
    ERROR_
    kgefec: fatal error 0
    OCI-21503: program terminated by fatal error
    OCI-04030: out of process memory when trying to allocate 1036 bytes (koh dur heap d,kadaih image)
    Errors in file :
    OCI-21503: program terminated by fatal error
    OCI-04030: out of process memory when trying to allocate 1036 bytes (koh dur heap d,kadaih image)
    java.sql.SQLException: OCI-21503: program terminated by fatal error
    OCI-04030: out of process memory when trying to allocate 1036 bytes (koh dur heap d,kadaih image)
    Please suggest us with a better solution for this issue.
    Regards,
    Potri Raaja.M.

    That error means that Oracle is not allowed to allocate the memory by the operating system.
    This is not a bug of Oracle; the problem must be somewhere else.
    - How much memory has the process allocated when it produces this error?
    - Did you set the per-process memory limits of the operating system high enough?
    - Did you start the Java Virtual Machine with a sufficient maximal stack size?
    If the problem only occurs after a longer runtime, you might also consider the
    possibility that your code has a memory leak.
    Yours,
    Laurenz Albe

  • How to remove appstore update badge notifications without iTunes, Cydia app etc?

    Hi there, very simple Q - How to remove appstore update badge notifications without iTunes, Cydia app and other melarchy?

    That's right

  • Oracle 10g OCI Client Certification

    we are in process of 10g RAC Certification and Customer Aksed
    Would it be correct to assume that the Oracle RAC 10g Certification will include the 10g OCI client certification? I believe this will be necessary for an application to connect to the cluster.
    Can any one help to answer this?

    as far as I know, clients connect to rac db the same way they did against a single instance

  • 10g OCI client certification

    we are in process of 10g RAC Certification and Customer Aksed
    Would it be correct to assume that the Oracle RAC 10g Certification will include the 10g OCI client certification? I believe this will be necessary for an application to connect to the cluster.
    Can any one help to answer this? and how we can do 10g OCI client certification?

    I'm not sure what you're asking...
    Assuming you need to have the 10g client installed on the middle tier (if your middle tier is a J2EE application server, those folks will probably want to use Oracle's Type 4 (thin) JDBC drivers, which don't require the 10g client), yes, you can install just the 10g client. Depending on the operating system, there may be a separate client-only download or you may have to download the entire database and choose to do a client-only install.
    Justin

  • Access Oracle 9i from a Client Application without Oracle Client Install.

    Is it possible to access an Oracle Database from a Client Application without having an oracle Client Installation ?
    I want to write a program that connect to an Oracle Server. I use Borland C++. But my Programs only works with having the Client Oracle Software installed on the Client. Is there any way to realise this ?

    The way that 99% of the people that want to do this manage is to write Java code that connects to the database via JDBC, using Oracle's thin JDBC driver.
    If you absolutely have to use C++, you can purchase thin ODBC drivers from third parties (DataDirect for example) that will connect to the database without the Oracle client. I'm not aware of any thin, free ODBC drivers.
    Justin

  • Configuring oracle OCI  client for RAC 10.2.0.1

    hi,
    can any one give the links for doc for
    configuraing oracle OCI client for RAC
    regards
    krishna

    Download from below:
    http://www.oracle.com/technology/tech/dotnet/ode/index.html
    Refer:
    Note:374820.1 - How to Install the Oracle Database Extensions for .NET (ODE.NET) from metalink.

  • Client Notification Issue

    Hoping someone can point me in the right direction here.
    Infrastructure:
    SCCM 2012 R2 CU1:
    Single Primary Site Server (Server 2012 R2 Update), With MP Role
    Remote SQL 2012 Server (Server 2012 R2 Update)
    Second Standalone MP (Server 2012 R2 Update)
    HTTPS with PKI Certificate deployed for DP and MP roles
    We have been testing client rollout to pilot machine over the past couple of weeks and everything (appears) to be working fine.  OSD, Application deployments, etc. all working as expected.
    The default ports for Client communication are select (80/443 and 10123)
    Client Notification is not working however.  I can go through the motions to create a "Download Machine Policy" notification, but the policy doesn't make it to the machine and all status messages for the notification stay at "unknown".
    *Side note, the online tests to keep the client active appears to be working fine.
    The BGBSetup logs show successful installation for both servers.
    I get lots of messages similar to this in the BGBServer.log (on both MP's):
    ERROR: Client ID is not 41 length. 8478e00c-d07b-4d93-b0f4-e01f4c78cc3b
    SMS_NOTIFICATION_SERVER 6/27/2014 1:50:02 PM
    4000 (0x0FA0)
    ERROR: Client ID is not 41 length. 8478e00c-d07b-4d93-b0f4-e01f4c78cc3b
    SMS_NOTIFICATION_SERVER 6/27/2014 1:50:02 PM
    4000 (0x0FA0)
    ERROR: Client ID is not 41 length. 8478e00c-d07b-4d93-b0f4-e01f4c78cc3b
    SMS_NOTIFICATION_SERVER 6/27/2014 1:50:02 PM
    4000 (0x0FA0)
    ERROR: The message body is invalid. <BgbSignInMessage TimeStamp="2014-06-27T18:50:02Z"><ClientType>SCCM</ClientType><ClientVersion>5.00.7958.1203</ClientVersion><ClientID>8478e00c-d07b-4d93-b0f4-e01f4c78cc3b</ClientID></BgbSignInMessage>
    SMS_NOTIFICATION_SERVER 6/27/2014 1:50:02 PM
    4000 (0x0FA0)
    ERROR: The message body is invalid. <BgbSignInMessage TimeStamp="2014-06-27T18:50:02Z"><ClientType>SCCM</ClientType><ClientVersion>5.00.7958.1203</ClientVersion><ClientID>8478e00c-d07b-4d93-b0f4-e01f4c78cc3b</ClientID></BgbSignInMessage>
    SMS_NOTIFICATION_SERVER 6/27/2014 1:50:02 PM
    4000 (0x0FA0)
    ERROR: The message body is invalid. <BgbSignInMessage TimeStamp="2014-06-27T18:50:02Z"><ClientType>SCCM</ClientType><ClientVersion>5.00.7958.1203</ClientVersion><ClientID>8478e00c-d07b-4d93-b0f4-e01f4c78cc3b</ClientID></BgbSignInMessage>
    SMS_NOTIFICATION_SERVER 6/27/2014 1:50:02 PM
    4000 (0x0FA0)
    Failed to process SignIn message from client [::ffff:10.100.122.71]:56195.
    SMS_NOTIFICATION_SERVER 6/27/2014 1:50:02 PM
    4000 (0x0FA0)
    Failed to process SignIn message from client [::ffff:10.100.122.71]:56195.
    SMS_NOTIFICATION_SERVER 6/27/2014 1:50:02 PM
    4000 (0x0FA0)
    Failed to process SignIn message from client [::ffff:10.100.122.71]:56195.
    SMS_NOTIFICATION_SERVER 6/27/2014 1:50:02 PM
    4000 (0x0FA0)
    BGBmgr.log shows no errors:
    Begin to handle file Bgbi1v41.BOS SMS_NOTIFICATION_MANAGER
    6/27/2014 2:00:26 PM 6892 (0x1AEC)
    Begin to process file C:\Program Files\Microsoft Configuration Manager\inboxes\bgb.box\Bgbi1v41.BOS
    SMS_NOTIFICATION_MANAGER 6/27/2014 2:00:26 PM
    6892 (0x1AEC)
    Server Name: MP.DOMAIN.COM, Version: 704
    SMS_NOTIFICATION_MANAGER 6/27/2014 2:00:26 PM
    6892 (0x1AEC)
    No records need to be BCPed SMS_NOTIFICATION_MANAGER
    6/27/2014 2:00:26 PM 6892 (0x1AEC)
    Successfully processed file C:\Program Files\Microsoft Configuration Manager\inboxes\bgb.box\Bgbi1v41.BOS
    SMS_NOTIFICATION_MANAGER 6/27/2014 2:00:26 PM
    6892 (0x1AEC)
    Successfully processed file Bgbi1v41.BOS, clean it.
    SMS_NOTIFICATION_MANAGER 6/27/2014 2:00:26 PM
    6892 (0x1AEC)
    BgbManager is waiting for file and registry change notification or timeout after 60 seconds
    SMS_NOTIFICATION_MANAGER 6/27/2014 2:00:26 PM
    6892 (0x1AEC)
    CcmNotificationAgent.log on a client:
    Access point is MP.DOMAIN.COM. (SSLEnabled = 0)
    BgbAgent 6/27/2014 12:52:29 PM
    5544 (0x15A8)
    CRL Checking is Enabled. BgbAgent
    6/27/2014 12:52:29 PM 5544 (0x15A8)
    Both TCP and http are enabled, let's try TCP connection first.
    BgbAgent 6/27/2014 12:52:29 PM
    5544 (0x15A8)
    Connecting to server with IP: 10.32.8.135 Port: 10123 
    BgbAgent
    6/27/2014 12:52:29 PM 5544 (0x15A8)
    Handshake was successful
    BgbAgent
    6/27/2014 12:52:29 PM 5544 (0x15A8)
    Pass verification on server certificate.
    BgbAgent 6/27/2014 12:52:29 PM
    5544 (0x15A8)
    Update the timeout to 900 second(s)
    BgbAgent 6/27/2014 12:52:29 PM
    5544 (0x15A8)
    Receive signin confirmation message from server, client is signed in.
    BgbAgent 6/27/2014 12:52:31 PM
    5544 (0x15A8)
    Successfully sent keep-alive message.
    BgbAgent 6/27/2014 1:07:32 PM
    5544 (0x15A8)
    Successfully sent keep-alive message.
    BgbAgent 6/27/2014 1:22:33 PM
    5544 (0x15A8)
    IIS log shows 200's across the board. 
    Any ideas on where to look next?

    You can check to see if Firewall is the issue.
    You can also use the following log files to help you  troubleshoot client notification problems. 
    Component
    Log
    Notification Manager
    <smssiteserver setup dir>\logs\bgbmgr.log
    Notification Server
    <mp setup dir>\logs\BGBServer.log
    <sms_ccm dir or client setup dir>\logs\BgbHttpProxy.log
    For installation issues:
    <mp setup dir>\logs\BgbSetup.log
    <mp setup dir>\logs\bgbisapiMSI.log
    Notification Agent
    <client setup dir>\logs\CcmNotificationAgent.log
    Refer to the blog posted by Yvette...
    http://blogs.technet.com/b/configmgrteam/archive/2012/09/27/fast-channel-for-system-management.aspx
    Krishna Santosh Maadasu Please remember to click “Mark as Answer” on the post that helps you, and 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.

Maybe you are looking for

  • Macbook pro- OSX lion 10.7.2 fan noise

    I just bought a macbook pro laptop, upgraded it to the Lion version, it is now 10.7.2, with processor of 2.7 GHz intel core i7, memory of 8GB, 1333 MHz DDR3. Whenever I am on a program like imovie, safari, iphoto, charging my smartpen...etc.... the f

  • Advice on Retina Display buy after unhappiness with 13" MBP

    i am hoping to buy a new retina display macbook pro soon and would like to only get a 13" sized model but i was extremely unhappy with the performance of my 2009 13" which will be out of applecare warranty in about two months. is there any way to get

  • How to show the pdf from the iPad in the new iBooks on the Mac Book Pro?

    I have several books in PDF format on my iPad 4 but for some reason they persistently REFUSE to appear in the iBooks on my Mac book Pro (haven't checked the iPhones). The new iBooks brags that we can ontinue reading our books where we left from one d

  • Sales order block for delivery

    How to put delivery block to existing open sales order for particular sold to party(customer). Is there  any table or TCode where we can put multiple sales order to put this block. Dont tell VD05 bcos that will apply only to new sales order not to ex

  • Problem when showing MS power point files on browser.

    Hi      I wrote the code in JSP to show MS power point files on browser. And I logged session for security as follow. <%@ page language = "java" import="javax.servlet.*, java.util.*, java.io.*" %> <%      String filename = request.getParameter("fileN