Configuring custom process with 10g Release 2 (10.1.2)

A Metalink note kindly informed me that I could use OPMN to start and stop Interconnect hub and adapter processes. The hyperlink sent me to the OPMN documentation and that's where the fun started!
So far I have only tried to add the repository as an ias-component and this is how the section of the opmn.xml file looks.
<ias-component id="HUBDEV3" status="enabled" id-matching="true">
<process-type id="HUBDEV3-repository" module-id="CUSTOM">
<environment>
<variable id="CLASSPATH" value="/du01/OAI/oracleas1/integration/interconnect/lib/oai.jar"/>
<variable id="CLASSPATH" value="/du01/OAI/oracleas1/jdk/jre/lib/i18n.jar" append="true"/>
<variable id="CLASSPATH" value="/du01/OAI/oracleas1/jdbc/lib/classes12.jar" append="true"/>
<variable id="CLASSPATH" value="/du01/OAI/oracleas1/jdbc/lib/nls_charset12.jar" append="true"/>
<variable id="CLASSPATH" value="/du01/OAI/oracleas1/jlib/oraclepki.jar" append="true"/>
<variable id="CLASSPATH" value="/du01/OAI/oracleas1/jlib/ojpse.jar" append="true"/>
<variable id="PATH" value="/du01/OAI/oracleas1/jdk/jre/bin" append="true"/>
<variable id="LD_LIBRARY_PATH" value="/du01/OAI/oracleas1/lib32" append="true"/>
</environment>
<process-set id="repo" numprocs="1">
<module-data>
<category id="start-parameters">
<data id="java-parameters" value="-server -Drepo=InterConnectRepository -DORBdisableLocator=true -mx512m -ms8m oracle.aob.repository.Repomain"/>
<data id="jar-file" value="/du01/OAI/oracleas1/integration/interconnect/lib/oai.jar"/>
</category>
<category id="stop-parameters">
<data id="java-parameters" value="-server -Drepo=InterConnectRepository -DORBdisableLocator=true -mx512m -ms8m oracle.aob.repository.Repomain -shutdown"/>
<data id="jar-file" value="/du01/OAI/oracleas1/integration/interconnect/lib/oai.jar"/>
</category>
</module-data>
<start timeout="600"/>
<stop timeout="120"/>
</process-set>
</process-type>
</ias-component>
This parses okay and when I call opmnctl status I get the following:
$ opmnctl status
Processes in Instance: hubASDEV3.xxxxxxxxxx
------------------------------------------------+---------
ias-component | process-type | pid | status
------------------------------------------------+---------
LogLoader | logloaderd | N/A | Down
DSA | DSA | N/A | Down
HTTP_Server | HTTP_Server | 27533 | Alive
dcm-daemon | dcm-daemon | 217 | Alive
OC4J | home | 27534 | Alive
OC4J | jacada | 27535 | Alive
HUBDEV3 | HUBDEV3-repository | N/A | Down
I tried opmnctl startproc ias-component=HUBDEV3 & opmnctl startproc process-type=HUBDEV3-repository but both retun the following message:
opmn id=crm-drtest:6200
no enabled components for this request
Can anyone advice on where and why I'm going wrong?
Sometimes you wish you'd never seen the hint in the first place!!

Well, I now have a working solution.
The section from the opmn.xml file now reads (the major changes in bold):
<ias-component id="HUBDEV3" status="enabled" id-matching="true">
<process-type id="HUBDEV3-repo" module-id="CUSTOM" working-dir="/du01/OAI/oracleas1/integration/interconnect/repository">
<environment>
<variable id="JAVA_HOME" value=""/>
<variable id="THREADS_FLAG" value="native"/>
<variable id="PATH" value="/du01/OAI/oracleas1/jdk/jre/bin" append="true"/>
<variable id="LD_LIBRARY_PATH" value="/du01/OAI/oracleas1/lib32" append="true"/>
</environment>
<process-set id="repo" numprocs="1">
<module-data>
<category id="start-parameters">
<data id="start-executable" value="/du01/OAI/oracleas1/jdk/jre/bin/java"/>
<data id="start-args" value="-server -Drepo=InterConnectRepository -DORBdisableLocator=true -mx512m -ms8m -classpath /du01/OAI/oracleas1/integration/interconnect/lib/oai.jar:/du01/OAI/oracleas1/jdk/jre/lib/i18n.jar:/du01/OAI/oracleas1/jdbc/lib/classes12.jar:/du01/OAI/oracleas1/jdbc/lib/nls_charset12.jar:/du01/OAI/oracleas1/jlib/oraclepki.jar:/du01/OAI/oracleas1/jlib/ojpse.jar oracle.aob.repository.Repomain"/>
</category>
<category id="stop-parameters">
<data id="stop-executable" value="/du01/OAI/oracleas1/jdk/jre/bin/java"/>
<data id="stop-args" value="-classpath /du01/OAI/oracleas1/integration/interconnect/lib/oai.jar:/du01/OAI/oracleas1/jdk/jre/lib/i18n.jar:/du01/OAI/oracleas1/jdbc/lib/classes12.jar:/du01/OAI/oracleas1/jdbc/lib/nls_charset12.jar:/du01/OAI/oracleas1/jlib/oraclepki.jar:/du01/OAI/oracleas1/jlib/ojpse.jar oracle.aob.repository.Repomain -shutdown"/>
</category>
</module-data>
<start timeout="600"/>
<stop timeout="120"/>
</process-set>
</process-type>
<process-type id="HUBDEV3-adapters" module-id="CUSTOM" working-dir="/du01/OAI/oracleas1/integration/interconnect/adapters/CRMAPPS">
<environment>
<variable id="JAVA_HOME" value=""/>
<variable id="THREADS_FLAG" value="native"/>
<variable id="PATH" value="/du01/OAI/oracleas1/jdk/jre/bin" append="true"/>
<variable id="LD_LIBRARY_PATH" value="/du01/OAI/oracleas1/lib32" append="true"/>
</environment>
<process-set id="crmapps" numprocs="1">
<environment>
<variable id="LANG" value="en_US"/>
</environment>
<module-data>
<category id="start-parameters">
<data id="start-executable" value="/du01/OAI/oracleas1/jdk/jre/bin/java"/>
<data id="start-args" value="-server -Dadapter=CRMAPPS -DORBdisableLocator=true -ms8m -mx512m -classpath :/du01/OAI/oracleas1/integration/interconnect/lib/oai.jar:/du01/OAI/oracleas1/jdk/jre/lib/i18n.jar:/du01/OAI/oracleas1/jdbc/lib/classes12.jar:/du01/OAI/oracleas1/jdbc/lib/nls_charset12.jar:/du01/OAI/oracleas1/rdbms/jlib/aqapi.jar:/du01/OAI/oracleas1/rdbms/jlib/jmscommon.jar:/du01/OAI/oracleas1/lib/xmlparserv2.jar:/du01/OAI/oracleas1/jlib/oraclepki.jar:/du01/OAI/oracleas1/jlib/ojpse.jar:/du01/OAI/oracleas1/jdk/jre/lib/ext/mail.jar:/du01/OAI/oracleas1/jdk/jre/lib/ext/activation.jar:/du01/OAI/oracleas1/integration/interconnect/lib/UserDefinedTransforms.jar: oracle.oai.agent.service.AgentService"/>
</category>
<category id="stop-parameters">
<data id="stop-executable" value="/du01/OAI/oracleas1/jdk/jre/bin/java"/>
<data id="stop-args" value="-mx64m -classpath /du01/OAI/oracleas1/integration/interconnect/lib/oai.jar oracle.oai.agent.proxy.ShutdownAgent persistence/Agent.ior"/>
</category>
</module-data>
<start timeout="600"/>
<stop timeout="120"/>
</process-set>
</process-type>
</ias-component>
Once I added the working-dir attribute to the process-type tag, things began to fall into place. working-dir is set to the directory location of the repository start script and I repeated the same for the crmapps adapter. My biggest clue came when I added the crmapps adapter to the opmn.xml and when I tried to start it, the log file indicated that it couldn't find the adapter.ini file. The rest came naturally after that breakthrough.
It needs a bit of rejigging but so far, results are good.
Message was edited by:
Devious Scully

Similar Messages

  • Re-instantiate Primary Database with 10g Release 1

    How do you re-instiate the primary database with 10g Release 1. I am investigating how the failover process works and have successfully failed over to a standby.
    I now want to re-instantiate the Primary... I know in Release 2 there is a DGMGRL command to re-instantiate... but there is no such command in Release 1 as far as I can see.

    See 10.3 Using Flashback Database After a Failover - http://download-west.oracle.com/docs/cd/B14117_01/server.101/b10823/scenarios.htm#1017193 but it requires that you had flashback database enabled BEFORE you failed over. Also, there are a couple of Alerts out there for early versions of 10.1 and this procedure in the event you did a failover where there was data loss. See Note 388516.1 ALERT: Flashing Back a Primary Database into a Physical Standby May Fail and Note 376340.1 ALERT: Reinstating old primary database as a logical standby database after a Data Guard "No Data Loss" Failover for more information.
    The Broker did not have that capability in 10.1 so you have to use the manual method. You will have to remove the failed primary from your Broker configuration first, reinstate it and then add it back in.
    If you did not have flashback database enabled on the Primary before you did the fail over then you must rebuild the old primary as a new standby with a complete new backup from the new primary.
    Larry

  • Installing and configuring PHP for ORACLE 10g Release 1

    Hello Lads,
    Please can anybody help me finish PHP install...
    I have got this error when executing the following command..
    #make install
    Here is the error:
    /usr/local/php-5.1.4/sapi/cli/php: error while loading shared libraries: libclntsh.so.10.1: cannot open shared object file: No such file or directory
    Thanks!

    I answered in your other thread... the one without the I in the title :)
    nstalling and configuring PHP for ORACLE 10g Release 1

  • How to configure quality process with batch management.

    Dear Friends,
                we have a scenario,our client receive goods with 101movement type  into quality inspection stock.
    once stock is passed quality check stock,then we will take into unrestricted stock with 321 movement type.
    failed in quality test will  be rejected.please give me suggestion how to map the scenario.while i am testing
    the process in my sandbox,its asking batch number.its not allowing me to post unrestricted stock with 321
    movement type.how to make batch as optional in this scenario?if batch is mainted for the material,how to
    configure the process.we are not using QM module.
    please suggest me.
    Regards,
    Varun

    In Batch management config in Logistic general, Check for the movement type 101 & 321 whether batch creation has been activated to Manual, Automatic, or no creation. In your case it looks like for mvt 321 batch creation is set to manual & for 101 no creation.
    if batch creation is set to manual, enter a manual batch no & proceed.
    But to cross verify wheter 101 has generated batch or not please check the stocks in MMBE.
    Hope this helps.
    Regards
    Mithun

  • Remove configuration custom STS with old web application using powershell ?

    HI
    i configured a custom sts with sharepoint 2010 web application using following commands,
    $cert = New-Object System.Security.Cryptography.X509Certificates.X509Certificate2("c:\signing.cer")
    $map1 = New-SPClaimTypeMapping -IncomingClaimType "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/emailaddress" -IncomingClaimTypeDisplayName "EmailAddress" –SameAsIncoming
    $map2=New-SPClaimTypeMapping -IncomingClaimType "http://schemas.microsoft.com/ws/2008/06/identity/claims/role" -IncomingClaimTypeDisplayName "Role" –SameAsIncoming
    $realm=”http://claimauthweb/_trust/default.aspx”
    $ap=New-SPTrustedIdentityTokenIssuer -Name "SimplePassiveSTS" -Description "A simple Asp.Net STS on DevBox." –Realm $realm -ClaimsMappings $map1,$map2 -ImportTrustCertificate $cert -SignInUrl "https://devbox/SimpleSTS/default.aspx" -IdentifierClaim $map1.InputClaimType
    after that i create the new web application with claimauthweb and selected trusted identity provider. 
    but when i create again new web application with different name and ip , after when i login to new web application using custom
    sts it redirects to sts login page and after it goes to claimauthweb application not the new web application.
    so here how i unregister with old web application and again register sts with new web applicatio?
    adil

    I believe if you want to run this you will need to remove the provider from all Web Applications in CA. Then you should be able to run Remove-SPTrustedIdentityTokenIssuer.
    If this is helpful please mark it so. Also if this solved your problem mark as answer.

  • Writing Custom Process with JHeadstart

    can anybody help me in writing custom process in jheadstart-bc4j.
    i want to manipulate the data from the database using my custom process in jheadstart
    eg if i want to search for a specific data or save or update data through jsp in a web service in Oracle9iAS (OC4J)
    any documentation will be really helpful

    The Member Feedback forum is for suggestions and feedback for OTN Developer Services. This forum is not monitored by Oracle support or product teams and so Oracle product and technology related questions will not be answered. We recommend that you post this thread to the Oracle Technology Network (OTN) > Products > Developer Suite > JHeadstart forum.

  • OEM 10g... with 10g Release 2

    Has anyone tried 10g Release2??
    When i try to access OEM(Database Control), it gives me an error like:
    java.lang.Exception: Exception in sending Request :: null
    and the database instance's status is "pending".
    I've stacked for 2 days.
    Does anyone have the same problem or any idea?
    (I already tried recreating Management Repository which didnt work...)
    Thank you.
    Yoshi

    Topic 3) No, this is not correct, because dbconsole needs also an agent. This agent is an integrated part of dbconsole, it is started when dbconsole is started. In Grid Control the agent is a separate process, it has even its own ORACLE_HOME. That's the output I see on one of my machines:
    C:\oraprog\emctl status agent
    Oracle Enterprise Manager 10g Database Control Release 10.2.0.1.0
    Copyright (c) 1996, 2005 Oracle Corporation. All rights reserved.
    Agent Version : 10.1.0.4.1
    OMS Version : 10.1.0.4.0
    Protocol Version : 10.1.0.2.0
    Agent Home : C:\oracle\server\127.0.0.1_ORACLE
    Agent binaries : C:\oracle\server
    Agent Process ID : 212
    Agent Process ID : 212
    Agent URL : http://127.0.0.1:3938/emd/main
    Started at : 2005-10-16 11:49:43
    Started by user : SYSTEM
    Last Reload : 2005-10-16 11:49:43
    Last successful upload : 2005-10-16 11:53:45
    Total Megabytes of XML files uploaded so far : 0.31
    Number of XML files pending upload : 3
    Size of XML files pending upload(MB) : 0.04
    Available disk space on upload filesystem : 77.68%
    Agent is Running and Ready
    What could be wrong, if 'Agent is not running' is returned?
    1) It's simply true for whatever reason (but there should be error messages)
    2) ORACLE_HOME setting is wrong (PATH variable doesn't start with ORACLE_HOME\bin, where emctl is located). If this is the case, the agent is running, only the output is wrong.
    You should examine, if there are errors in the log files. On my machine these are located in
    C:\oracle\server\127.0.0.1_ORACLE\sysman\log .
    You have to replace C:\oracle\server\127.0.0.1 with your own values.
    Good luck
    Werner

  • FRM-40112 error with 10g Release 2 Forms

    How do I get around the FRM-40112 error (attempted go-item to non-enabled item) in 10g? I want to present a column but not have the user modify it. This is an update/insert form. I can make it not keyboard navigable but the user can use the mouse to get to it and change it if it is enabled. I want to fix this instead of using the FORMS_REJECT_GO_DISABLED_ITEM environment parameter.
    Thanks,
    Dave

    Yeah, the UPDATE_ALLOWED=FALSE works, but there is one column that is changed programmatically by the form and shown to the user. I need it not ENABLED but UPDATE_ALLOWED = TRUE. I may have to go with FORMS_REJECT_GO_DISABLED_ITEM=FALSE and revisit in the next release. It looks to me like this a catch-22.

  • Configuration tool issue with new release

            With this new release - September 2013 - We have found that when doing find products (as opposed to enter sku) the option to add seems to work -  it gives a message that its added. But when returning to config the SKU has not been added.  Its a bit anyoying as you then have to re-enter the SKU to add the product. - Several staff have observed this at our site..   Others ?

    Hello Hsummons,
    Thank you for brining this to our attention and we sincerely apologize for inconvenince this might cause.
    Please be informed that in order for us to process your request with the steps to take on this concern. We are requesting that you may open a case with us or you may us at CCW Support 1-800-553-6387 options 2 and 3 or you may email us at [email protected] or [email protected]
    With this, we may be able to assist you with the CCW Tool. Again, we aplogize for the inconevenience.
    Thanks,
    Jen
    CCW Support Team

  • Best Java 1.06 version to use with 10g release 3 of Forms.

    Were migrating to lthe atest version of Forms 10.1.2.3. As a result, were updating our java runtime from 1.05_12 to 1.06.
    The question is what version of java 1.06 have users found most stability? Trying 1.06_7 so far have been positive (i.e don't lose forms cursor ).
    At the very least, we'll probably try 1.06_7 but has anyone had success ( or problems ) running newer versions. Version 12 for 1.06 just came out and an Oracle enginner told me that he thought version 12 appeared to fix a bunch of issues though himself or Oracle have actually not certified?
    Thanks

    Hi Hruser,
    As far as i'm aware SAP JCO 2.1.7 is compatible with 4.6C...
    Read this thread,
    Re: JCo Connector  (jco.jar) version 2.1.8 certified for use against R/3 4.6c ?
    Regards
    Juan
    Please reward with points if helpful

  • How to Uninstall Oracle 10G release 1

    I'm a newbie in Oracle DB.
    I've been assigned to a new task to assist DBA teams to migration SQL server to Oracle server. I got a new PC which pre-installed 2 Oracles version (9i & 10G), the 9i is OK but the 10G DID NOT work properly and I'd liked to replace 10G release 1 with 10G release 2 (for testing purpose).
    I did followed the instruction how to remove the 10G release 1 using the OUI, but the process ran forever ... ( see screenshot --> http://img137.imageshack.us/img137/5555/oui10g1qb8.jpg )
    I'm also know that I can delete Oracle thru Regedit, but in some Reg. keys do not show the Oracle version (I want to keep the Oracle 9i).
    Could someone please enlight me how to uninstall Oracle 10G ?
    PC's info:
    OS : Windows XP Prof.
    1GB RAM
    50GB free space
    All the Oracle services have been disable before Uninstall.
    Thanks Advance.
    DTH.

    Thanks Marcio ...
    I'm current process the step by step to remove 10G release 1, if I've problem then I'll let you know
    Thanks again.
    DTH.

  • Hanging with Oracle 10g release 2 on Windows XP !!!

    Hi,
    I am trying to Install Oracle 10g release 2(10.2.0.1.0) on Windows XP Professional(SP2).
    Existing environment:
    1. Java(SDK & Runtime Environment) 6 update 1.
    2. Configured Eclipse.
    The installed procedure:
    1. Downloaded "10201_database_win32.zip" from Oracle website.
    2. Unzip it and run setup.exe
    3. It gives an error like below :
    "javaw.exe - Entry Point Not Found"
    "The procedure entry point longjmp could not be located in the dynnamik link library orauts.dll."
    Installation completed(forcefully) without the below.
    1. Oracle Net Configuration Assistant (Failed)
    2. Oracle Database Configuration Assistant (Failed).
    and in services: "No Oracle process exist".
    I tried the below:
    A. Change the environment variables (remove ORACLE_HOME/ORACLE_SID etc)
    B. 2 to 5 times un-install oracle(including registry, directory etc) and install.
    C. Uninstall Java SDK & Runtime Env. Then install Oracle.
    D. Installing Personal edition, Enterprise edition etc etc.
    E. Checked the orauts.dll in 3 places(i. BIN ii. out/bin iii. oui/lib/win32
    F. Copied the orauts.dll to system32 directory.
    What ever I do the above appers all the time and installation is incomplete.
    Due to this problem I couldn't move further, please do help me in solving this.
    Thanks a lot in advance.

    Hey Guys,
    I am Srinivas Here who had been trying to install Oracle Database 10G on Windows X86 on Windows XP Professional.
    If you have Win-XP Professional as your Operating System. Do not download the oracle Database using windows - XP Professional because XP will block certain installation files while downloading. In your machine install Windows 2000 or any other Windows version as a dual boot. First the download Database Zip files using your other version of Windows Operating system and then when you Unzip the files it will create a folder called Database and all the files will be present in it.If you want to store the same to cd for having to install the 10G Rel 2 database through CD then copy the contents of the unzipped database folder and store only the contents of the database folder and write them to CD's. Please see to it that while writing on cd's do not copy the folder itself .
    After this, restart the system and get into windows XP Professional (Your XP Professional should be with Service Pack 2 in order to install 10G Database on windows XP - The Basic requirements for Oracle Database 10G on Windows X86).
    I request you to check the software and hardware requirements from oracle Documents before you install the Oracle Database 10G on Windows x86 as well as Oracle Database 10G on Linux X86 or any other operating systems.
    Finally, After you run the Oracle Universal installer in the last you will get messages for all products installed Success and finally it will ask the password for DBA and open the password management and give the password and reenter password and on the left you will have to unlock the items you would like to use.
    In the last it will give you various URL links for Isqlplus, DBA, Enterprise Manager and a log report stored into oracle directory stored in your C:\Program files\Oracle folders. The correct link will be given at the end and you will have to watch the installation carefully.You can find DBCA and other options working. Try login in to Oracle through Command prompt, Sqlplus prompt availabe in Start ->Programs->Orahome10G->application Development-sqlplus as well as login through isqlplus link- Before this you should login at the command prompt as SYSDBA. YOU CAN SEE THAT YOUR DATABASE IS NOW WORKING IN WINDOWS XP PROFESSIONAL.
    THANKS IN ADVANCE TO ALL FORUM MEMBERS WHO GAVE ME IDEA AND SUPPORT
    REGARDS,
    SRINIVAS

  • Experts VS Process Flows on OWB 10g Release 2 (Paris)

    I was looking at the the new features list for OWB 10g Release 2 (Paris), and I notices the new feature called Experts. Does anyone have any insight into when an Expert would be used instead of a Process Flow? It doesn't look like Process Flows are going away, so I was trying to get a grasp of the use for Experts.
    From Here:
    http://www.oracle.com/technology/products/warehouse/htdocs/owb10gr2%20new%20features.htm
    Experts. Experts are solutions that enable advanced users to design solutions that simplify routine or complex tasks that end users perform in Warehouse Builder. You can design these solutions in the Expert Editor which resembles the Process Flow Editor and shares many of the same commands and navigational tools.

    Hi,
    Just to start with the Experts capabilities, they can be used for designing schema objects.......I tried with an expert for sampling the source files, creating External Tables on top of it....validating and deploying..........itz very interesting to work with.........I am unable to see the practical use of this for end users.....
    where as we all know, the PF can only be for executing the deployed objects.....
    Mahesh

  • Customer consignment with intercompany process

    Hello,
    Has anybody worked on Customer consignment with intercompany process. If yes, what are the main points to be taken into or configured for this process ?
    regds

    Hello Intercompany Gurús
    I would like to know in case posible, the drawbacks of the folloing situation:
    We have 2 plants, 1 selling plant (Plant1)in company code and 1 shipping plant (Plant2) in anothr company code working inside interconmpay +  consignment process, plant 2 ships directly to cutomer consignment of plant 1´s customer (no phisical recepction in plant 1)
    Customer place a Consignment fill up order in plant 1
    Plant 1 place a PO for qtys needd to plant 2 as the consignment fill up order is intrcompany as well so PO is generated
    Plant 2 generates a New Consignment Fill Up order with sold to as plant 1 and ship to customer consignment door
    Plant 2 makes PGI and place stock in cutomer consignment line (ship to) and plant1 (sold to)
    Plant 2 generates an intercompany invoice to plant 1
    Customer will invoice to plant 1 base on consumption
    So no reception is needed in plant 1
    Is it posible this scenario?
    Thanks and regards

  • Configuration assistant error with Oracle 10g 10.2.02 with Solaris 10 6/06

    Hi all,
    As anyone seen this a fix for this error?
    I have installed Solaris 10 6/06 x86 on VMWare 5.2 which works fine.
    When I attempt to install Oracle 10g 10.2.02 for Solaris x86 (released in Sept 06), the install goes fine until I get to the configuration assistant stage.
    The first Net based configuration assistant fails with a Java exception which seems to be related to a Sig 11 in the libc library.
    This looks like an error fixed by a patch mentioned in the release notes but the patch does not seem to be available for this version of Solaris.
    Any comments would be greatly appreciated...
    Regards
    Anthony

    Hi all,
    Just to update this.
    I have deselected the create database option part of the install and Oracle installs OK!
    The problem is in the create database phase which I have manually done when I use the dbca program.
    When I get to the create database operation of the the dbca wizard, I get a the following error "ORA-00600, internal error code, arguments [kelntf-ldminit, [146],[1],[],[],[],[],[]"
    Any offers?

Maybe you are looking for

  • Please help - Brand new 8831 conf phone won't boot

    Not sure how to troubleshoot these new phones, but when I power the phone via wall power (power cube) or 48v POE, the phone LEDs stay on for a second or two then go out, and then the phone does nothing.  No display or additional blinking lights - not

  • Missing Reports Inbox/Favorites

    First off, I apologize if I've posted this in the wrong forum. Please move it to a more appropriate forum if needed. I have a user that for some unknown reason has lost the reports contained in his Inbox and Favorites. Two questions; 1.) Are reports

  • Exporting an avi out of premiere cs4 from a tiff sequence (1024 x 576)

    Hi i would be so greatful if someone could inform me of the correct setting becouse at the moment the avi i export seems to not be wide enough. I have a tiff sequence renderd out from after effects at 1024 x 576 and set to square pixels. i am require

  • Mac Book Pro Price Drop

    Who thinks that when the 17" mac book pro comes out, the curent 15.4" will go down in price. I know that no one really knows, but what do you think? If it is now $2299 (Canadian Dollars), what would you guess it would come down to? Personally I don't

  • Recover deleted sms from Nokia N70 PLEAsE

    Is there any way to recover a deleted sms from a Nokia N70 i´ve heard of third party software to undelete sms that are removed, but is that possible at all? the sms was saved in phone memory > in my folders not in inbox is that any hill way 2 recover