Can not use repository administration tool

Hello,
I'm a newby at Oracle Designer and I have a problem create a repository for Oracle Designer.
On my computer I have installed the following software:
x Java SDK & JRE 6
x Oracle Database 10g R2
x Oracle Designer 10.
While I'm installing Oracle Designer the OUI says that it can't find Java JRE but the installation completes.
If I want to use Designer with the hr-schema it says I have to create a repository for the user hr.
If I want to open the repository administration tool nothing happens nothing. If I want to open the repository command line tool it says that it can't find ORACLE_HOME but I have set the environment variable ORACLE_HOME to the database home c:\oracle\product\10.2.0\db_1.
I presume that I have to install the complet Developer Suite. Is this correct or does anybody know the answer?
Please Help me!
Thanks to everybody.

Yes you have to install the complete Developer suite for Windows. Then you will need to install a repository on an existing database.
Here are some quick instructions on doing that:
After you install the IDS 10G in a new oracle home on the Client windows PC you will find the intall manual under:
start - programs- Oracle Developer Suite - Designer documentation - Repository instalation Guide
The following are the step I use to build a new repository
You will need to set paths and names as you desire for your local PCs and repostiory.
-- Step 1
Log on as SYS
This is so you can get the path name of your datafiles:
select file_name, tablespace_name from dba_data_files;
-- D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\TEMP_65.DBF
create tablespace constant_grow_indexes
datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\constant_grow_indexes_01.dbf'
size 4000k
default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
create tablespace constant_grow_TABLES
datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\constant_grow_tables_01.dbf'
size 15000k
default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
create tablespace dependency_indexes
datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\dependency_indexes_01.dbf'
size 5600k
default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
create tablespace dependency_tables
datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\dependency_tables_01.dbf'
size 9000k
default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
create tablespace diagram_indexes
datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\diagram_indexes_01.dbf'
size 1000k
default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
create tablespace diagram_tables
datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\diagram_tables_01.dbf'
size 2000k
default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
create tablespace lob_data
datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\lob_data_01.dbf'
size 1200k
default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
create tablespace rapid_grow_indexes
datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\rapid_grow_indexes_01.dbf'
size 250000k
default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
create tablespace rapid_grow_tables
datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\rapid_grow_tables_01.dbf'
size 500000k
default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
create tablespace system_meta_indexes
datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\system_meta_indexes_01.dbf'
size 20000k
default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
create tablespace system_meta_tables
datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\system_meta_tables_01.dbf'
size 30000k
default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
create tablespace temporary_indexes
datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\temporary_indexes_01.dbf'
size 5000k
default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
create tablespace temporary_tables
datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\temporary_tables_01.dbf'
size 9000k
default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
create tablespace version_indexes
datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\version_indexes_01.dbf'
size 9000k
default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
create tablespace version_tables
datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\version_tables_01.dbf'
size 12000k
default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
-- Step 2
Make sure you ave plenty of space in your system tablespace
select tablespace_name, sum(bytes)/1024/1024 from dba_free_space
group by tablespace_name;
alter tablespace system add datafile
'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\system03.dbf' size 140m;
-- Step 3
As SYS
create user owner identified by owner default tablespace users
temporary tablespace temp;
Run this file as SYS
@ D:\Designer_Home\IDS10_1_2\repadm61\UTL\CKROROLE.SQL
GRANT EXECUTE ON DBMS_LOCK TO owner;
GRANT EXECUTE ON DBMS_PIPE TO owner;
GRANT CREATE TABLE TO owner;
GRANT CREATE VIEW TO owner;
GRANT CREATE PROCEDURE TO owner;
GRANT CREATE SYNONYM TO owner;
GRANT CREATE SEQUENCE TO owner;
GRANT SELECT ON v_$nls_parameters TO owner WITH GRANT OPTION;
GRANT SELECT on sys.V_$PARAMETER TO owner;
GRANT SELECT ON dba_rollback_segs TO owner;
GRANT SELECT ON dba_segments TO owner;
GRANT CREATE ANY SYNONYM TO owner;
GRANT DROP ANY SYNONYM TO owner;
GRANT CREATE PUBLIC SYNONYM TO owner;
GRANT DROP PUBLIC SYNONYM TO owner;
GRANT ck_oracle_repos_owner to owner;
GRANT CONNECT, RESOURCE TO owner;
GRANT dba TO owner;
(If you want Row Level Security (RLS) on)
GRANT execute on dbms_rls to owner;
-- Step 4 Adding a user
create user user65 identified by user65 default tablespace users
temporary tablespace temp;
GRANT CONNECT, RESOURCE TO user65;
GRANT CKR_OWNER TO USER65;
GRANT CREATE TABLE TO user65;
GRANT CREATE VIEW TO user65;
GRANT CREATE PROCEDURE TO user65;
GRANT CREATE SYNONYM TO user65;
GRANT CREATE SEQUENCE TO user65;
GRANT SELECT ON dba_rollback_segs TO user65;
GRANT SELECT ON dba_segments TO user65;
GRANT CKR_OWNER TO USER65;
GRANT EXECUTE ON SDD_ACC_PRIV_LIST TO USER65;
GRANT EXECUTE ON SDD_SYS_PRIV_LIST TO USER65;
GRANT SELECT ON SDD_DEPENDENCY_TYPES TO USER65;
GRANT SELECT ON I$RM_ELEMENT_TYPES TO USER65;
GRANT SELECT ON SDD_GLOBAL_NAMES TO USER65;
GRANT EXECUTE ON JR_UTIL TO USER65;
GRANT EXECUTE ON JR_SYSTEM_UTIL TO USER65;
GRANT EXECUTE ON CKMIGFUN TO USER65;
-- Step 5
The following are the recommended minimum settings.
optimizer_mode = Choose
compatible = 9.0.0 # for an Oracle9i database
compatible = 8.1.7 # for an Oracle8i database
max_enabled_roles = 30
sort_area_size = 262144
sort_area_retained_size = 65536
hash_area_size = 1048576
optimizer_index_caching = 50
optimizer_index_cost_adj = 25
shared_pool_size = 32000000
db_block_buffers # comment out on an Oracle9i database
db_block_buffers = 2000 # on an Oracle8i database
open_cursors = 3000
processes = 100
db_file_multiblock_read_count=16 # for a 4K Oracle block size
db_file_multiblock_read_count=32 # for a 2K Oracle block size
db_file_multiblock_read_count=8 # for a 8K Oracle block size
Step 5b - (Oracle 9i or 10.2 DB) Install Oracle 9i or 10.2 Import and Export Utilities
Before installing Designer Repository on an Oracle 9i or 10.2 database, you need to set up the installation workstation to use the Oracle 9i or 10.2 import and export utilities. To do so, perform the following steps at the workstation from which you will be running the repository installation:
From the Oracle 9i or 10.2 installation media, install the Oracle 9i or 10.2 import and export utilities in a dedicated Oracle home.
In the Windows Registry, locate the key named:
HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\KEY_HomeName\REPOS61
where HOMEn is the home number of the home installed into for a multiple Oracle home environment, but is not present where the default Oracle home is being used.
Change the value of the EXECUTE_IMPORT and EXECUTE_EXPORT variables to point to the new Oracle home. Thus, if the new Oracle home is d:\des_9i, the settings would be:
d:\des_9i\bin\exp.exe
d:\des_9i\bin\imp.exe
-- Step 6
Log on to the Repository Admin Utility of Designer
start - programs- Oracle Developer Suite - Designer - Repository Admin Utility
Install Repository button
Make sure both check boxes are checked(one is grayed out) Next
Select the proper tablespace for the seletced box
Start the install.
Hope this helps.
Michael.

Similar Messages

  • Can not use all the tools in my drawing markups any ideas on getting them to work?

    Can not use all the tools in my drawing markups any ideas on getting them to work?

    Hi tonys60181,
    Could you please let me know what version of Adobe Acrobat are you using.
    What all drawing tools are you unable to access?
    Is this issue specific to one PDF file or all?
    What exactly happens when you try to use any drawing markup?
    Please let me know.
    Regards,
    Anubha

  • Hi. I can not use "direct selection tool".

    Hi. I can not use "direct selection tools". When i click the direct selection tool, mouse like on image.
    I use illustrator cs 6

    Thanks Monika, i am noob

  • Photoshop cs6 error "could not use the type tool because the target channel is hidden.  happens when im typing in photoshop, go to another layer and then come back. can't alter text at that point

    photoshop cs6 error "could not use the type tool because the target channel is hidden.  happens when im typing in photoshop, go to another layer and then come back. can't alter text at that point.  i really need to get thsi figured out. thank you.

    You may have answered my question. I AM using the 64bit version of Illustrator CS6. I had no idea there were bugs in it that affected paths copied and pasted from Illustrator to Photoshop.
    A bit more about what I'm trying to accomplish... I'm trying to follow Deke's tutorial (http://www.deke.com/content/dekes-techniques-018-creating-a-3d-pie-chart) which is already difficult since so much has changed between CS5.5 and 6, but then on top of that, I keep getting errors!
    So I created the pie chart exactly as he shows and copied and pasted into Photoshop exactly as he does. Before submitting this post, though, I tried drawing just two very simple triangle shapes, copying them both and pasting them into Photoshop as a shape layer. The shapes weren't overlapping, but they were a part of the same shape layer just like the pie chart tutorial.
    Thanks for your help. If there is anything else I should try before just giving up because of the 64bit bugs, please let me know.

  • Why does my tool box move up so I can not use it?

    WHY DOES MY TOOL BOX ALL OF A SUDDEN TODAY MOVE UP SO i CAN NOT SEE IT OR USE IT? ALSO i CAN NOT SEE MY BOTTOM TOOL BOX EITHER. WHAT CAN i DO TO CHANGE IT BACK OR DO YOU HAVE TO?

    Hit '''F11''', as you might have enabled the Full Screen mode.

  • How can I use the versionning tool to make a coherent solution to export

    how can I use the versionning tool to make a coherent solution to export all objects used in my project to other db schema for testing as well as for implementation .
    I want to know proper steps to Import/export objects.
    while I am exporting my Master repository and work repository then again importing the all , no problem comes all the physical logical schema mapping and mapping between interfaces retains but
    while I am trying to export and import one or two packages on the ease of testing then I am getting so many mismatches manually I am setting all why so?
    required ur suggestion
    Palash Chatterjee

    kelly-bot wrote:
    Thanks for the tip, but like I said, I dont want to always have to use the arrow keys. Is it not possible to actually DRAG one pixel at a time? I recently upgraded to CC from CS3 and I keep running into things that feel like a downgrade. Super disappointed.
    Our posts overlapped there.  Are you saying you could reliably drag one pixel with CS3? 
    What other issues are you having?  Things like the Crop tool can feel strange at first, but I promise you you'll never want to use Classic mode once you get used to it.

  • Photoshop Elements 8. "Could not use Clone Stamp Tool because of a program error."  Please help.

    Photoshop Elements 8.  "Could not use Clone Stamp Tool because of a program error."  Please help.

    Try this:
    Open your picture file
    Access the clone stamp tool
    Hold down the ALT key on the keyboard and left click on the area from which you wish to clone, then release the ALT key, and click to place the pixels at the destination
    TIPS:
    It is a good idea to open a blank layer at the top in the layers palette, and do the cloning on this layer. Be sure that "sample all layers" at the top is checked. You can change the layer opacity if necessary
    Use the bracket keys next to the letter p on the keyboard to increase & decrease the size of the cursor
    Let us know  how you make out with the error message now.

  • Can not access sample & admin tools after configuring Oracle8.1.7

    Hi all,
    I am using WLS6.1(sp2) and WLPortal4.0(sp1).
    I changed the default database(i.e. Cloudscape) to Oracle by following the doc
    http://edocs.bea.com/wlp/docs40/deploygd/oraclnew.htm
    But, after setting up the Oracle8.1.7, when i try to access the sample stock portal
    from the homepage, i am getting the following exception
    PortalPersistenceManager: portal 'portal/stockportal' not found
    <Feb 20, 2002 12:33:19 PM EST> <Error> <HTTP> <[WebAppServletContext(1467076,stockportal,/stockportal)]
    Servlet failed with S
    ervletException
    javax.servlet.ServletException: Received a null Portal object from the PortalManager.
    at com.bea.portal.appflow.servlets.internal.PortalWebflowServlet.setupPortalRequest(PortalWebflowServlet.java:194)
    at com.bea.portal.appflow.servlets.internal.PortalWebflowServlet.doGet(PortalWebflowServlet.java:99)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:265)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:200)
    at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:241)
    at weblogic.servlet.jsp.PageContextImpl.forward(PageContextImpl.java:112)
    at jsp_servlet.__index._jspService(__index.java:92)
    at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:265)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:200)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:2495)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2204)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    even i can not access the admin tools.....i get the follwing error when i try
    to access the portalTools/index.jsp
    <Feb 20, 2002 12:38:18 PM EST> <Warning> <Webflow> <Webflow could not resolve
    a destination given: appname [tools], namespace
    [admin_main], origin [begin], event [defaultEvent] with request id [3121877];
    Attempting to load Configuration-error-page.>
    <Feb 20, 2002 12:38:18 PM EST> <Error> <Webflow> <Error while parsing uri /portalTools/application,
    path null, query string n
    amespace=admin_main - Webflow XML does not exist, is not loaded properly, or you
    do not have a configuration-error-page defin
    ed.
    Exception[com.bea.p13n.appflow.exception.ConfigurationException: The configuration-error-page
    node was not found in the webfl
    ow xml file. for webapp [tools], namespace [admin_main]. While trying to display
    CONFIGURATION ERROR: [Exception[com.bea.p13n
    .appflow.exception.ConfigurationException: Bad Namespace - namespace [admin_main]
    is not available for webflow execution. Mak
    e sure the [admin_main.wf] file is deployed in webapp [tools].]],]
    at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.processConfigurationError(WebflowExecutorImpl.java:786)
    at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.processWebflowRequest(WebflowExecutorImpl.java:484)
    at com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.processWebflowRequest(WebflowExecutorImpl.java:419)
    at com.bea.p13n.appflow.webflow.servlets.internal.WebflowServlet.doGet(WebflowServlet.java:132)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:265)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:200)
    at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:241)
    at weblogic.servlet.jsp.PageContextImpl.forward(PageContextImpl.java:112)
    at jsp_servlet.__index._jspService(__index.java:92)
    at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:265)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:200)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:2495)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2204)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    >
    Am i missing any step here???
    can anybody help me????
    thanks
    Vijay

    oops...i missed step5.
    it is working now after doing the sync.
    thanks
    Vijay
    "Daniel Selman" <[email protected]> wrote:
    Did you sync the applications and load the sample data?
    Sincerely,
    Daniel Selman
    "vijay bujula" <[email protected]> wrote in message
    news:[email protected]...
    Hi all,
    I am using WLS6.1(sp2) and WLPortal4.0(sp1).
    I changed the default database(i.e. Cloudscape) to Oracle by followingthe
    doc
    http://edocs.bea.com/wlp/docs40/deploygd/oraclnew.htm
    But, after setting up the Oracle8.1.7, when i try to access the samplestock portal
    from the homepage, i am getting the following exception
    PortalPersistenceManager: portal 'portal/stockportal' not found
    <Feb 20, 2002 12:33:19 PM EST> <Error> <HTTP><[WebAppServletContext(1467076,stockportal,/stockportal)]
    Servlet failed with S
    ervletException
    javax.servlet.ServletException: Received a null Portal object fromthe
    PortalManager.
    atcom.bea.portal.appflow.servlets.internal.PortalWebflowServlet.setupPortalReq
    uest(PortalWebflowServlet.java:194)
    atcom.bea.portal.appflow.servlets.internal.PortalWebflowServlet.doGet(PortalWe
    bflowServlet.java:99)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    atweblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
    :265)
    atweblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
    :200)
    atweblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImp
    l.java:241)
    atweblogic.servlet.jsp.PageContextImpl.forward(PageContextImpl.java:112)
    at jsp_servlet.__index._jspService(__index.java:92)
    at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
    atweblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
    :265)
    atweblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
    :200)
    atweblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletCo
    ntext.java:2495)
    atweblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java
    :2204)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    even i can not access the admin tools.....i get the follwing errorwhen i
    try
    to access the portalTools/index.jsp
    <Feb 20, 2002 12:38:18 PM EST> <Warning> <Webflow> <Webflow could notresolve
    a destination given: appname [tools], namespace
    [admin_main], origin [begin], event [defaultEvent] with request id[3121877];
    Attempting to load Configuration-error-page.>
    <Feb 20, 2002 12:38:18 PM EST> <Error> <Webflow> <Error while parsinguri
    /portalTools/application,
    path null, query string n
    amespace=admin_main - Webflow XML does not exist, is not loaded properly,or you
    do not have a configuration-error-page defin
    ed.
    Exception[com.bea.p13n.appflow.exception.ConfigurationException: The
    configuration-error-page>> node was not found in the webfl>> ow xml file. for webapp [tools, namespace [admin_main]. While tryingto
    display
    CONFIGURATION ERROR: [Exception[com.bea.p13n
    appflow.exception.ConfigurationException: Bad Namespace - namespace[admin_main]
    is not available for webflow execution. Mak
    e sure the [admin_main.wf] file is deployed in webapp [tools].]],]
    atcom.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.processConfigurati
    onError(WebflowExecutorImpl.java:786)
    atcom.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.processWebflowRequ
    est(WebflowExecutorImpl.java:484)
    atcom.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.processWebflowRequ
    est(WebflowExecutorImpl.java:419)
    atcom.bea.p13n.appflow.webflow.servlets.internal.WebflowServlet.doGet(WebflowS
    ervlet.java:132)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    atweblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
    :265)
    atweblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
    :200)
    atweblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImp
    l.java:241)
    atweblogic.servlet.jsp.PageContextImpl.forward(PageContextImpl.java:112)
    at jsp_servlet.__index._jspService(__index.java:92)
    at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
    atweblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
    :265)
    atweblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
    :200)
    atweblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletCo
    ntext.java:2495)
    atweblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java
    :2204)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    >
    Am i missing any step here???
    can anybody help me????
    thanks
    Vijay

  • Can not use previous password in ISE 1.1.2 patch-5

    this is my password-policy:
    password-policy
      lower-case-required
      upper-case-required
      digit-required
      no-username
      disable-cisco-passwords
      min-password-length 6
      password-lock-retry-count 5
    I also entered the followings:
    conf t
      password-policy
      no password-locked-enabled
      no no-previous-password
    my initial "admin" account has the password of "Checkpoint1234".  It locked me out after 5 attempts from the webUI.  Fine, I CLI into the box and reset
    the password, when I tried to reset the password for "admin" to "Checkpoint1234", it tells me that I can NOT use a previous password.
    How do I disable this option altogether?  In other words, I want to use previous password. 
    By the way, in the webUI password-policy, you have to set the "Password History" between 1 and 10.  WTF!!!
    Thanks in advance.

    Admin account for the web UI seems to be locked out. So it needs to be reset from CLI.
    An incorrect password for your administrator user ID entered enough times to disable the administrator password. The minimum and default number is five. The Cisco ISE user interface “locks you out” of the system and suspends the credentials for that administrator ID until you have an opportunity to reset the password that is associated with that administrator ID. It does not affect the CLI password for the specified administrator ID
    Step 1    Access the direct-console CLI and enter the following command:
    admin# application reset-passwd ise
    Step 2    Specify a new password that is different from the previous two passwords that were used for this administrator ID:
    Enter new password:
    Confirm new password:
    Password reset successfully
    If you only want to use the previous password, you should change the password policy first. After you have successfully reset the administrator password, the credentials become immediately active in the Cisco ISE and you can log in with the new password without having to reboot your system.
    Review the section "Password Negated Due to Administrator Lockout" at the folowing location:
    http://www.cisco.com/en/US/docs/security/ise/1.1.1/installation_guide/ise_postins.html

  • Can not take a screenshot with Maverick and track pad.  can not use apple chat to talk with a tech.  there are other issues also like I used to be able to go back a page with the delete button.  No Maverick PDF to instruct on how to use Maverick

    Can not take a screenshot with Maverick and track pad.  can not use apple chat to talk with a tech.  there are other issues also like I used to be able to go back a page with the delete button.  No Maverick PDF to instruct on how to use Maverick
    THE use of the apple support is a mess also.
    I want to be able to use my MAC fully and easily like I used to with Snow Leopard. 
    What is wrong with this maverick OS?

    The only people who can possibly assist you with this is Apple Customer Relations, call your local Apple contact number and ask for Customer Relations then explain your situation clearly and politely (be firm but don't rant).
    You might want to investiage what the local laws are regarding defective goods and 'fit for use' definitions on warranties etc. Consumer Protection can be a useful tool to use or bargain with if needed ...

  • Could not use the move tool because no layers are selected.

    This problem started a few days ago. I like to hold down the "Shift" key when moving a layer (either text or image) to keep the horizontal spacing locked. It was never a problem but a dialog box is now popping up with the following note: Could not use the move tool because no layers are selected.
    There's no problem if I'm not holding the "Shift" key but I can't keep the layer from moving up or down. I could just use the arrow key but sometimes I need to move the layer quite a distance.
    Also, I'm noticing that if I don't have the cursor directly on the type/image layer, regardless of whether the "Shift" key is selected, a rectangle similar to when the "Rectangular Marquee Tool" is used appears and the layer I had selected is no longer selected.
    Any ideas as to why this might be happening? Thanks for the help.

    Sorry about that. I'm using Photoshop CS4. There are no layer masks and I'm working over a solid white background (although it's happening in all my files, some of which have multiple layers).
    I'm mainly designing DVD sleeves, posters, invites, etc. The layers contain images, live text, vector smart objects, etc. and the problem is happening with all layers, regardless of what it is (text or image).
    When I have the mouse directly over whatever it is I want to move and hold the shift key I get the "Could not use..." dialog box. When the mouse is NOT over the image/text, but I have the correct layer selected, I get the "Rectangular Marquee Tool" look, a "dashed" rectangular box wherever I've moved the mouse.
    Hope the info is helpful and thanks for responding...

  • Could not use color replacement tool because it only works in full color mode: Elements 11

    I have a PSD file open and I added a new layer via the copy command.  I have added a Layer Mask to the new layer and I'm trying to use the Brush Tool with black forground to cover part of the new layer.  I'm following an online tutorial step by step, but when I try to use the Brush Tool I get "could not use color replacement tool because it only works in full color mode".  The Image>Mode is set to RGB.  I'm stuck!

    First, show the tools optiond in the bottom of the screen (shortcut F4)
    Now look at which of the three options you can select, brush, impressionist brush or replacement tool. I suspect you have to select the brush.
    Edit:
    The reason of the message is that when you are painting on a mask you are in greyscale mode for the mask. For instance, if you paste a coloured layer into a mask, it will be converted to greyscale.

  • Hello, I can not use my text field in PS cc. I can drag a text box, but when I write something in, I can't see the letters!

    Hello, I can not use my text field in PS cc. I can drag a text box, but when I write something in, I can't see the letters!

    Opacity at 100?
    Does the cursor move as you type?
    Reset the tool by right clicking here to see if that is the remedy.

  • Satellite P200D-134 - can not use the Toshiba DVD player

    I have the Satellite P200D-134 and can not use the Toshiba DVD player.
    It displays an error message.
    "Required modules missing for this application"
    In Vista it worked everything fine.
    Now I upgraded Windows 7 Ultimate and all Toshiba programs are gone.
    And I can not use the Software HD DVD player or other Software from Toshiba.
    What should I do?
    Does anyone have any advice? Is there any help?
    Please write back in German or English.
    Thank you!
    Rob

    Hi
    Did you install the VAP (value added package)?
    If not do that!!!
    Furthermore I recommend installing the DVD Player Update Check Tool which can be found on the Toshiba European driver page.
    With this tool, you can check your notebook, if your DVD-Player needs a Upgrade and if yes, it gives you the download link for the needed upgrade version.
    By the way: If you cannot find the DVD Player for Win 7 in P200D section then you can download this from the P500 section!

  • I can not use the patch command. The icon does not show up on th comand bar.

    I can not use the patch command. The icon does not show up on th comand bar

    Hello there!
    Compared to other versions, in CS6 the patch tool is in a different location:
    If this doesn't help you, what version of Photoshop are you using?
    Please post back with any other questions,
    Janelle

Maybe you are looking for

  • Key mapping for JOptionPane

    My problem is pretty simple. When presented with a YES_NO_CANCEL option, I want the escape key to trigger the CANCEL operation. I've tried numerous methods including creating my own JOptionPane, adding/removing KeyListeners, etc., but I can't seem to

  • How do I tell what Plug-Ins are installed on Safari?

    The Settings > Safari menu on the iPhone has a switch to turn Plug-Ins on and off, but is no link on the menu to display which Plug-Ins are installed. Is there another way to view/manage Safari Plug-Ins on the iPhone?

  • Bad ICS software and thoughts.

    Hi my name is Yazan.Xperia Ray I am a student , 15 years old , living in Amman , Jordan and i have always been waiting for the newset updates for my Xperia Ray I am very dissapointed in the latest android update 4.0.4 . What's bad : 1-Call log / Cont

  • ComboBox paddingTop

    Hey, I'm trying to add paddingTop to my combobox but apparently that style doesn't exist anymore. Why would they remove paddingTop and paddingBottom but keep paddingLeft and paddingRight?? Does anyone have any advice on how to extend this component t

  • How to use example of directory 'JTA'

              Hi, I want to know how to use the example of the directory 'JTA'           uinder the directory of 'JTA' under tthe directory $WL/samples/example/jta           in order to test the JTA serveice of webloig server ( Futhermore,           Can