URGENT: configuring EBCC

Hi,
I have installed portal 7.0 on a server and create a domain. I'm now trying to
install EBCC on my laptop and connect to the domain located on the server and
it's impossible to synchronise. I have tried everything said in the docs but does
not work. Do I need to open the eaprj file from the share directory on the server
with my EBCC or is there another way. thank you for any answer

"Ambrose" <[email protected]> wrote in
news:[email protected]:
>
Hi,
I have installed portal 7.0 on a server and create a domain. I'm now
trying to install EBCC on my laptop and connect to the domain located
on the server and it's impossible to synchronise. I have tried
everything said in the docs but does not work. Do I need to open the
eaprj file from the share directory on the server with my EBCC or is
there another way. thank you for any answer
yes, you should open your eaprj file and sync it on your EBCC. Did you
check your connection setting? i think your weblogic domain is on a
different machine than your laptop. What was the error?

Similar Messages

  • URGENT - Configuring "wsrmapp" under SALT to execute on a Linux Box

    Hi
    I am new to Tuxedo and need URGENT help in configuring the wsrmapp to execute on my system. I get the below error when I build the app.
    1. What values are to be provided to MAKE, MAKEFILE in the setenv.sh file?
    2. I have not built atmi/bankapp and directly using this program. Is this fine or bankapp has to be built first?
    3. Will this app create WSDL's of the bankapp services? I need to call this app from a BPEL process and hence would like to know if this is feasible.
    Also, please help me resolve the below build errors.
    [orafusion@BG4BORACAPSRV1W wsrmapp]$ ant all
    Buildfile: build.xml
    Trying to override old definition of datatype clientgen
    init:
    buildtux:
    [exec] make: makefile: No such file or directory
    [exec] make: *** No rule to make target `makefile'. Stop.
    [exec]
    [exec] CMDTUX_CAT:1800: WARN: Server RESTART set to Y and MAXGEN set < 2 on server entry TMMETADATA
    [exec] CMDTUX_CAT:883: ERROR: tmloadcf cannot run on an active node
    [exec] Parsing configuration "/u02/app/oracle/Middleware/Tuxedo1/tuxedo11gR1/TestSamples/samples/salt/wsrmapp/work/tux/gwws.dep" (08-04-2010 09:03:51:845)
    [exec] Parse succeed (08-04-2010 09:03:51:886)
    [exec]
    [exec] tmadmin - Copyright (c) 1996-2010 Oracle.
    [exec] Portions * Copyright 1986-1997 RSA Data Security, Inc.
    [exec] All Rights Reserved.
    [exec] Distributed under license by Oracle.
    [exec] Tuxedo is a registered trademark.
    [exec]
    [exec] >
    [exec] TMADMIN_CAT:512: ERROR: Cannot create device /u02/app/oracle/Middleware/Tuxedo1/tuxedo11gR1/TestSamples/samples/salt/wsrmapp/work/tux/bankdl1, start 0, size 2560 on /u02/app/oracle/Middleware/Tuxedo1/tuxedo11gR1/TestSamples/samples/salt/wsrmapp/work/tux/bankdl1
    [exec] >
    [exec] >
    [exec] echo on
    [exec] create database bankdb with ( DEVNAME='/u02/app/oracle/Middleware/Tuxedo1/tuxedo11gR1/TestSamples/samples/salt/wsrmapp/work/tux/bankdl1',
    [exec] IPCKEY=80953, LOGBLOCKING=0, MAXDEV=1,
    [exec] NBLKTBL=200, NBLOCKS=2048, NBUF=70, NFIELDS=80,
    [exec] NFILES=20, NFLDNAMES=60, NFREEPART=40, NLCKTBL=200,
    [exec] NLINKS=80, NPREDS=10, NPROCTBL=20, NSKEYS=20,
    [exec] NSWAP=50, NTABLES=20, NTRANTBL=20, PERM='0666',
    [exec] STATISTICS='n'
    [exec] )\g
    [exec] sql: Operation 'LIBSQL_CAT:45: create database': fs error
    [exec] sql: LIBDUX_CAT:13: illegal database name--not found or not unique
    [exec]
    [exec]
    [exec] create table BRANCH (
    [exec] BRANCH_ID integer not null,
    [exec] BALANCE real,
    [exec] LAST_ACCT integer,
    [exec] LAST_TELLER integer,
    [exec] PHONE char(14),
    [exec] ADDRESS char(60),
    [exec] primary key(BRANCH_ID)
    [exec] ) with (
    [exec] FILETYPE='hash', ICF='PI', FIELDED='FML',
    [exec] BLOCKLEN=1024, DBLKS=8, OVBLKS=2
    [exec] )\g
    [exec] sql: Operation 'create table': rm error
    [exec] sql: LIBDUX_CAT:454: invalid file name or file identifier
    [exec]
    [exec]
    [exec] create table ACCOUNT (
    [exec] ACCOUNT_ID integer not null,
    [exec] BRANCH_ID integer not null,
    [exec] SSN char(12) not null,
    [exec] BALANCE real,
    [exec] ACCT_TYPE character,
    [exec] LAST_NAME char(20),
    [exec] FIRST_NAME char(20),
    [exec] MID_INIT character,
    [exec] PHONE char(14),
    [exec] ADDRESS char(60),
    [exec] primary key (ACCOUNT_ID)
    [exec] ) with (
    [exec] FILETYPE='hash', ICF='ST', FIELDED='FML',
    [exec] BLOCKLEN=1024, DBLKS=100, OVBLKS=25
    [exec] )\g
    [exec] sql: Operation 'create table': rm error
    [exec] sql: LIBDUX_CAT:454: invalid file name or file identifier
    [exec]
    [exec]
    [exec] create table TELLER (
    [exec] TELLER_ID integer not null,
    [exec] BRANCH_ID integer not null,
    [exec] BALANCE real,
    [exec] LAST_NAME char(20),
    [exec] FIRST_NAME char(20),
    [exec] MID_INIT character,
    [exec] primary key (TELLER_ID)
    [exec] ) with (
    [exec] FILETYPE='hash', ICF='ST', FIELDED='FML',
    [exec] BLOCKLEN=1024, DBLKS=8, OVBLKS=2
    [exec] )\g
    [exec] sql: Operation 'create table': rm error
    [exec] sql: LIBDUX_CAT:454: invalid file name or file identifier
    [exec]
    [exec]
    [exec] create table HISTORY (
    [exec] ACCOUNT_ID integer not null,
    [exec] TELLER_ID integer not null,
    [exec] BRANCH_ID integer not null,
    [exec] AMOUNT real
    [exec] ) with (
    [exec] FILETYPE='heap', ICF='ST', FIELDED='FML',
    [exec] BLOCKLEN=1024, DBLKS=800, OVBLKS=10
    [exec] )\g
    [exec] sql: Operation 'create table': rm error
    [exec] sql: LIBDUX_CAT:454: invalid file name or file identifier
    [exec]
    [exec]
    [exec] create index ANAMEIDX on ACCOUNT (LAST_NAME, FIRST_NAME, MID_INIT)
    [exec] with (
    [exec] BLOCKLEN=1024, DBLKS=0, FILETYPE='BTREE',
    [exec] ICF='ST', LINKNAME='name_acct', LINKTYPE='indx',
    [exec] MULTIREC='n', OVBLKS=30, SPARSE='n'
    [exec] )\g
    [exec] sql: Operation 'create index (index file)': rm error
    [exec] sql: LIBDUX_CAT:454: invalid file name or file identifier
    [exec]
    [exec]
    [exec] create index TNAMEIDX on TELLER (LAST_NAME, FIRST_NAME, MID_INIT)
    [exec] with (
    [exec] BLOCKLEN=1024, DBLKS=0, FILETYPE='BTREE',
    [exec] ICF='ST', LINKNAME='name_tell', LINKTYPE='indx',
    [exec] MULTIREC='n', OVBLKS=5, SPARSE='n'
    [exec] )\g
    [exec] sql: Operation 'create index (index file)': rm error
    [exec] sql: LIBDUX_CAT:454: invalid file name or file identifier
    [exec]
    [exec]
    [exec] \q
    [exec] crbankdb.sh successful.
    [exec] tmadmin - Copyright (c) 1996-2010 Oracle.
    [exec] Portions * Copyright 1986-1997 RSA Data Security, Inc.
    [exec] All Rights Reserved.
    [exec] Distributed under license by Oracle.
    [exec] Tuxedo is a registered trademark.
    [exec]
    [exec] > Echo now on.
    [exec]
    [exec] TMADMIN_CAT:512: ERROR: Cannot create device /u02/app/oracle/Middleware/Tuxedo1/tuxedo11gR1/TestSamples/samples/salt/wsrmapp/work/tux/TLOG, start 0, size 500 on /u02/app/oracle/Middleware/Tuxedo1/tuxedo11gR1/TestSamples/samples/salt/wsrmapp/work/tux/TLOG
    [exec] > crdl -b 500 -z /u02/app/oracle/Middleware/Tuxedo1/tuxedo11gR1/TestSamples/samples/salt/wsrmapp/work/tux/TLOG
    [exec]
    [exec] > q
    [exec] crtlog.sh successful.
    [exec] CMDTUX_CAT:6725: ERROR: Repository file /u02/app/oracle/Middleware/Tuxedo1/tuxedo11gR1/TestSamples/samples/salt/wsrmapp/work/tux/bankapp.repos is locked by another program
    BUILD FAILED
    /u02/app/oracle/Middleware/Tuxedo1/tuxedo11gR1/TestSamples/samples/salt/wsrmapp/build.xml:116: exec returned: 1
    Total time: 3 seconds

    Hi,
    SHM mode is also called shared memory mode, i.e., all communication occurs via shared memory mechanism, primarily IPC queues. MP stands for multiple processor mode meaning Tuxedo running on multiple host machines, i.e., a cluster style deployment. The difference is solely administrative, i.e., no application change is required. For testing purposes you can run Tuxedo in MP mode even on a single machine. If you download the Virtual Machine I referenced, you can see this in the brokerapp domain.
    Regards,
    Todd Little
    Oracle Tuxedo Chief Architect

  • Urgent: Configuring LDAP or Active Directory on Windows XP

    I tried authenticating user against infromation stored in Database tables dont know whats the problem its not working, I followed all the required steps for that but not succeed. So I decided to validate the user against LDAP or Active directory. Can anyone tell me how to configure LDAP or Active Directory in Windows XP.
    Please help me out as only one day remained for to submit my project, everything is done except the login page.
    And I dont think I may get even grade C if there is no security for the application. Please help me out in configuring Active Directory or LDAP and ASAP please.

    Yea I agree with you the custom table is easiest way then AD but I was working on the problem from almost a week now and I don't have much time to sort out things with that anymore.
    Help me in configuring AD on Windows XP Professional with SP2, as I'm running out of time.
    the below link is the detailed steps I followed for Custom Authentication:
    Urgent: Custom Database Authentication
    Please help me out for Configuring AD.

  • Urgent: Configuring Database Polling Interval from BPEL Console

    Hi All
    Could we change the "Polling Interval" of a DB Adapter in a BPEL Process directly from the BPEL Console?
    thanks
    --debashis                                                                                                                                                                                                                                                                                   

    Yes did
    In bpel.xml
    <activationAgents>
    <activationAgent className="oracle.tip.adapter.fw.agent.jca.JCAActivationAgent" partnerLink="DbAd">
    <property name="portType">DbAd_ptt</property>
    *<property name="PollingInterval">10</property>*
    </activationAgent>
    </activationAgents>
    U can update the PollinInterval from DeploymentDescriptor of the process.

  • URGENT! Configuring WNA and keytab problems

    Hi, I've configured OAS10g integration with AD successfully and able to map the users successfully from AD to OID. The external authentication plugin is working as well. However, I am having problems configuring WNA and getting the following erros in the OC4J_SECURITY logfile:
    08/01/06 13:18:44 Getting creds for HTTP/[email protected]...
    08/01/06 13:18:44 Debug is true storeKey true useTicketCache false useKeyTab true doNotPrompt true ticketCache is null KeyTab is /san/oas10g/oracle/product/10gas_infra/j2ee/OC4J_SECURITY/config/oraprda01.keytab refreshKrb5Config is false principal is HTTP/oraprda01.mpx.biz tryFirstPass is false useFirstPass is false storePass is false clearPass is false
    principal's key obtained from the keytab
    08/01/06 13:18:44 principal is HTTP/[email protected]
    08/01/06 13:18:44 [Krb5LoginModule] authentication failed
    Pre-authentication information was invalid (24)
    08/01/06 13:18:44 KerberosAuthenticator: GSSException raised in constructor - No valid credentials provided (Mechanism level: Attempt to obtain new ACCEPT credentials failed!)
    08/01/06 13:18:44 GSSException: No valid credentials provided (Mechanism level: Attempt to obtain new ACCEPT credentials failed!)
    08/01/06 13:18:44 at sun.security.jgss.krb5.Krb5AcceptCredential.getKeyFromSubject(Krb5AcceptCredential.java:189)
    08/01/06 13:18:44 at sun.security.jgss.krb5.Krb5AcceptCredential.getInstance(Krb5AcceptCredential.java:80)
    08/01/06 13:18:44 at sun.security.jgss.krb5.Krb5MechFactory.getCredentialElement(Krb5MechFactory.java:75)
    08/01/06 13:18:44 at sun.security.jgss.GSSManagerImpl.getCredentialElement(GSSManagerImpl.java:149)
    08/01/06 13:18:44 at sun.security.jgss.GSSCredentialImpl.add(GSSCredentialImpl.java:334)
    08/01/06 13:18:44 at sun.security.jgss.GSSCredentialImpl.<init>(GSSCredentialImpl.java:44)
    08/01/06 13:18:44 at sun.security.jgss.GSSManagerImpl.createCredential(GSSManagerImpl.java:102)
    08/01/06 13:18:44 at oracle.security.jazn.oc4j.KerberosAuthenticator.<init>(Unknown Source)
    08/01/06 13:18:44 at oracle.security.jazn.oc4j.RealmUserManager.getHttpAuthenticator(Unknown Source)
    08/01/06 13:18:44 at oracle.security.jazn.oc4j.FilterUserManager.getHttpAuthenticator(Unknown Source)
    08/01/06 13:18:44 at com.evermind.server.http.HttpApplication.initAuthenticator(HttpApplication.java:5371)
    08/01/06 13:18:44 at com.evermind.server.http.HttpApplication.initDynamic(HttpApplication.java:980)
    08/01/06 13:18:44 at com.evermind.server.http.HttpApplication.<init>(HttpApplication.java:549)
    08/01/06 13:18:44 at com.evermind.server.Application.getHttpApplication(Application.java:890)
    08/01/06 13:18:44 at com.evermind.server.http.HttpServer.getHttpApplication(HttpServer.java:707)
    08/01/06 13:18:44 at com.evermind.server.http.HttpSite.initApplications(HttpSite.java:625)
    08/01/06 13:18:44 at com.evermind.server.http.HttpSite.setConfig(HttpSite.java:278)
    08/01/06 13:18:44 at com.evermind.server.http.HttpServer.setSites(HttpServer.java:278)
    08/01/06 13:18:44 at com.evermind.server.http.HttpServer.setConfig(HttpServer.java:179)
    08/01/06 13:18:44 at com.evermind.server.ApplicationServer.initializeHttp(ApplicationServer.java:2394)
    08/01/06 13:18:44 at com.evermind.server.ApplicationServer.setConfig(ApplicationServer.java:1551)
    08/01/06 13:18:44 at com.evermind.server.ApplicationServerLauncher.run(ApplicationServerLauncher.java:92)
    08/01/06 13:18:44 at java.lang.Thread.run(Thread.java:534)
    08/01/06 13:18:44 Caused by: javax.security.auth.login.LoginException: Pre-authentication information was invalid (24)
    08/01/06 13:18:44 at com.sun.security.auth.module.Krb5LoginModule.attemptAuthentication(Krb5LoginModule.java:585)
    08/01/06 13:18:44 at com.sun.security.auth.module.Krb5LoginModule.login(Krb5LoginModule.java:475)
    08/01/06 13:18:44 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    08/01/06 13:18:44 at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    08/01/06 13:18:44 at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    08/01/06 13:18:44 at java.lang.reflect.Method.invoke(Method.java:324)
    08/01/06 13:18:44 at javax.security.auth.login.LoginContext.invoke(LoginContext.java:675)
    08/01/06 13:18:44 at javax.security.auth.login.LoginContext.access$000(LoginContext.java:129)
    08/01/06 13:18:44 at javax.security.auth.login.LoginContext$4.run(LoginContext.java:610)
    08/01/06 13:18:44 at java.security.AccessController.doPrivileged(Native Method)
    08/01/06 13:18:44 at javax.security.auth.login.LoginContext.invokeModule(LoginContext.java:607)
    08/01/06 13:18:44 at javax.security.auth.login.LoginContext.login(LoginContext.java:534)
    08/01/06 13:18:44 at sun.security.jgss.LoginUtility.run(LoginUtility.java:57)
    Our setup is such that the SSO hostname is oraprda01.mpx.biz but the AD/KDC realm is AD.MULTIPLEX.BIZ. I found http://www.oracle.com/technology/obe/obe_as_10g/im/wna/wna.htm and we have more or less the same situation so it should work but it doesn't. I've already got this working in the test environment but the SSO hostname there is gfradev01.ad.multiplex.biz. Note that it has the same domain name as the AD realm.
    Doing a kinit without using the keytab file works for HTTP/[email protected] but when I use the keytab file, I get the pre-authentication error.
    Can anyone advice as to how we can make this work? Are there extra setups which need to be done on the AD server which Oracle did not document?
    Thank you very much,
    Abigail

    If urgent, contact Support.
    Is the account option ‘Do not require kerberos preauthentication’ checked (see MicroSoft KB 832572)
    In addition: metalink Note: 466288.1
    Message was edited on 1-feb-2008 by: Frank van Bortel

  • Configuring nwdi in my landscap .............. urgent friends

    hi friends                           urgent ......................
    advance thank for your valuable time
    i our organation we are planning to install nwdi for ep 7.0. i am very new to nwdi.
    i would like to know how to configur the nwdi in my land scape step-by-step with post-intallation ativies
    end - to - end
    1. i would like to know what are the pre-requisties i have to follow
    2. what are the postinstallation i have to do .
    3. how can i give access to my develper user
    4. how to configure the entire nwdi in my landscap
    plz help me (thank in advance )
    thank for spending time reading my issue.
    raja

    Hi there,
    NWDI Installation and configuration is bit complex and there are lot of steps involved in it.
    Follow this [link|http://help.sap.com/saphelp_nw70/helpdata/en/63/7a4d40eae76f13e10000000a1550b0/frameset.htm] and you will get all required info. Let me know if you don't get something from this.
    Thanks
    Shobhan

  • Regarding DMS configuration - urgent help

    Hi,
    I need urgent help with the below scenario.
    I created one document,attached a drawing,now i want to submit to a higher level authority using workflow who can approve/reject.how do i do this.
    Also i would like to create  two vaults Vault A and Vault B ,user A has read/write to vault A and user B has read/write to only Vault B ,but user C has read.write to both vaults.
    Please let me know how do i create users,configure vaults and give permissions.
    thanks
    prasad suresh

    first u have to create  status for approval
    i give u one example of it
    first u have to create different stauts  for approval process
    for this u have to configure in SPRO with the relevant document type
    and give the  proper authorization in PFCG to relavant user , who create the doc and who chek and who released the doc
    read this carefully , i made this kind of approval process in my project
    1 --- "CR"   means "Create"  by document Creater
    2 --- "Ch"   "Checked" by X authority    /  if any mistake found then  "R1"    "Rework"  by X authority
    3 ---  "Re"   " Released" by Y authority / if any mistake found then "R2"    "Rework"  by Y authority
    think that there is three  stage for approval of any drawing
    first stage  -
    document creat   (Draft Man Creat Drawing and attached )
                              at that time document status is "Cr" after creating doc , that DIR info is sent to higher
                              authority using document distribution functionality
    second stage----- document checker (Receive document from Draft Man in SAP Inbox)
                               he chek that drawing (DIR) . if there is not any other mistake than it again
                              follow the cycle of document distribution to his higher authority. this time
                                document status updated from " Cr "  to " Ch" means from "creat" to "checked "
                                if any mistake found than he change status "Cr"  to "R1" means
                                create to rework  and send it back to drafts man
                                 and drafts man again modify drawing and modify status "R1" to "Cr"
                                 and send it to higher authority
    third stage -
        document aprover  (Receive document from document checker in SAP Inbox)
                               he chek that drawing (DIR) . if there is not any other mistake than he update
                                document status  from  " Ch" to "Re"  means from  "checked " to "Released"
                                if any mistake found than he change status "ch"  to "R2" means
                                checked  to rework  and send it back to drafts man
                                 and drafts man again modify drawing and modify status "R2" to "Cr"
                                 and send it to higher authority
    and in second question , pls tell me clear what u wana do
    vaults means what ?
    is it Repository or what ?
    give me idea by some example

  • Urgent: Newly configured system doesn't show up in Maintenance Optimizer

    Dear Experts,
    please, I need a quick aid on the following issue:
    I have just installed a brand new Java system with usage type Development Infrastructure.
    As the system urgently requires installing the latest SPS available, I defined it in our Solution
    Manager 7.1 SP10. I have installed the diagnostics agent, then I assigned it to the system,
    I made the entire managed system configuration and everything is fine! Just when I started
    the MOPZ, in order to calculate the stack, I found out, that the system isn't displayed anywhere!!
    In the first step of the managed system configuration, I have created a new logical component
    Z_NWDI. Reviewing transaction SMSY, I saw that this logical component is not assigned to the
    solution, so I assume that this might be the problem. But I didn't find a way how to make this
    logical component a part of our solution! I have checked all the setup in LMDB, and it all seems
    to be perfect, I compared things for which I wasn't sure, with another Java system, which is
    shown in MOPZ.
    Many thanks for your help!

    Hi Symon,
    Great.
    check the whether SLD is having proper details.
    how you link the system using solution manager SLD or any other SLD. if you use other SLD also please update teh CR content.
    After the successful updation in SLD,
    https://help.sap.com/saphelp_sm71_sp05/helpdata/en/f6/a41e0402664451b9c4640ff4513527/cont
    transaction SE38 and run the report RLMDB_SYNC_TECHNICAL_SYSTEM
    .( it will delete the old data and re-synchronize from the SLD )
    and select the below option and execute it. so it will delete and re-create the latest details.
    once issue is solved. please close this thread.
    Rg,
    Karthik

  • Urgent- FDM configuration issue.

    Hi Experts,
    I am very new to FDM. We have installed FDM but got the below error when we configure webserver components
    *" make sure internet information server is installed and ASP.NET applications are allowed.*
    *The following error occured: cannot create ActiveX component."*
    Please let me know your valuable inputs...it is very urgent.

    Please review KM Document 1161892.1. This is a windows 2008 server which requires that IIS6 metabase be installed along with the Application Server Role. This document outlines the exact components and process to install them.

  • Need Urgent Help Regarding Adobe Configuration

    Hi,
    I have been configured Adobs, i have been installed ADS,ACf... everything is perfect.
    But when i exceute my application, i m getting below error.
    kindly put some light on it. Its urgent....
    500   Internal Server Error
    Web Dynpro Container/SAP J2EE Engine/6.40
    Failed to process request. Please contact your system administrator.
    [Hide]
    Error Summary
    While processing the current request, an exception occured which could not be handled by the application or the framework.
    If the information contained on this page doesn't help you to find and correct the cause of the problem, please contact your system administrator. To facilitate analysis of the problem, keep a copy of this error page. Hint: Most browsers allow to select all content, copy it and then paste it into an empty document (e.g. email or simple text file).
    Root Cause
    The initial exception that caused the request to fail, was:
       com.sap.tc.webdynpro.pdfobject.core.PDFObjectRuntimeException: Processing exception during a "UsageRights" operation. Request start time: Tue Mar 11 19:37:23 IST 2008 com.adobe.ProcessingError: Credential login error while applying usage rights to PDF: C:\WINDOWS\Temp\adobewa_J2E_13496050\DM5449164447389649768.dir\DM3764139759016281423.tmp Specific error information: $$$/PDF/PDFCredentialLoginFailure2=error while logging into credential ^0 GeneralError: Operation failed. SecurityHandler.login:-1: The Digital ID specified is unknown. General error information: IDL:com/adobe/document/pdf/CredentialLoginFailure:1.0 Exception Stack Trace: com.adobe.ProcessingError: Credential login error while applying usage rights to PDF: C:\WINDOWS\Temp\adobewa_J2E_13496050\DM5449164447389649768.dir\DM3764139759016281423.tmp Specific error information: $$$/PDF/PDFCredentialLoginFailure2=error while logging into credential ^0 GeneralError: Operation failed. SecurityHandler.login:-1: The Digital ID specified is unknown. General error information: IDL:com/adobe/document/pdf/CredentialLoginFailure:1.0 at com.adobe.ads.request.UsageRights.execute(Unknown Source) at com.adobe.BaseADSRequest.doWork(Unknown Source) at com.adobe.AdobeDocumentServicesWorker.execute(Unknown Source) at com.adobe.AdobeDocumentServicesEJB.processRequest(Unknown Source) at com.adobe.AdobeDocumentServicesEJB.rpData(Unknown Source) at com.adobe.AdobeDocumentServicesLocalLocalObjectImpl0.rpData(AdobeDocumentServicesLocalLocalObjectImpl0.java:120) 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:324) at com.sap.engine.services.webservices.runtime.EJBImplementationContainer.invokeMethod(EJBImplementationContainer.java:126) at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:157) at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:79) at com.sap.engine.services.webservices.runtime.servlet.ServletDispatcherImpl.doPost(ServletDispatcherImpl.java:92) at SoapServlet.doPost(SoapServlet.java:51) at javax.servlet.http.HttpServlet.service(HttpServlet.java:760) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:390) at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264) at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347) at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325) at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887) at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241) at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92) at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148) at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33) at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41) at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37) at java.security.AccessController.doPrivileged(Native Method) at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100) at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170) Caused by: com.adobe.document.pdf.CredentialLoginFailure: IDL:com/adobe/document/pdf/CredentialLoginFailure:1.0 at com.adobe.document.pdf.CredentialLoginFailureHelper.read(CredentialLoginFailureHelper.java:67) at com.adobe.document.pdf._PDFDocumentStub.setUsageRights(_PDFDocumentStub.java:284) at com.adobe.EJB_PDFAgent.setUsageRights(Unknown Source) ... 31 more
        at com.sap.tc.webdynpro.pdfobject.core.PDFObject.doSoapCall(PDFObject.java:374)
        at com.sap.tc.webdynpro.pdfobject.core.PDFObject.render(PDFObject.java:3710)
        at com.sap.tc.webdynpro.clientserver.adobe.pdfdocument.base.core.PDFDocumentRenderHandler.handle(PDFDocumentRenderHandler.java:139)
        at com.sap.tc.webdynpro.clientserver.adobe.pdfdocument.base.core.PDFDocumentProcessor.process(PDFDocumentProcessor.java:52)
        at com.sap.tc.webdynpro.clientserver.adobe.pdfdocument.base.core.PDFDocumentInteractiveFormHandlingContext.execute(PDFDocumentInteractiveFormHandlingContext.java:98)
        ... 31 more
    See full exception chain for details.
    System Environment
    Client
    Web Dynpro Client Type     HTML Client
    User agent     Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1)
    Version     null
    DOM version     null
    Client Type     msie6
    Client Type Profile     ie6
    ActiveX     enabled
    Cookies     enabled
    Frames     enabled
    Java Applets     enabled
    JavaScript     enabled
    Tables     enabled
    VB Script     enabled
    Server
    Web Dynpro Runtime     Vendor: SAP, build ID: 7.0009.20060804145649.0000 (release=645_VAL_REL, buildtime=2006-08-05:15:08:24[UTC], changelist=413534, host=pwdfm101), build date: Mon Mar 10 16:04:58 IST 2008
    J2EE Engine     No information available
    Java VM     Java HotSpot(TM) Server VM, version:1.4.2_09-b05, vendor: Sun Microsystems Inc.
    Operating system     Windows XP, version: 5.1, architecture: x86
    Session & Other
    Session Locale     en_US
    Time of Failure     Tue Mar 11 19:37:44 IST 2008 (Java Time: 1205244464171)
    Web Dynpro Code Generation Infos
    local/TutWD_OnlineInteractiveForm
    SapDictionaryGenerationCore     6.4015.00.0000.20050816175946.0000 (release=630_SP_REL, buildtime=2005-10-18:21:32:04[UTC], changelist=363484, host=PWDFM067.wdf.sap.corp)
    SapDictionaryGenerationTemplates     (unknown)
    SapGenerationFrameworkCore     6.4015.00.0000.20050816182950.0000 (release=630_SP_REL, buildtime=2005-10-18:21:25:55[UTC], changelist=363586, host=PWDFM067.wdf.sap.corp)
    SapIdeWebDynproCheckLayer     6.4015.00.0000.20051004171749.0000 (release=630_SP_REL, buildtime=2005-10-18:21:39:50[UTC], changelist=370226, host=PWDFM067.wdf.sap.corp)
    SapMetamodelCommon     6.4015.00.0000.20050614174642.0000 (release=630_SP_REL, buildtime=2005-10-18:21:26:39[UTC], changelist=353586, host=PWDFM067.wdf.sap.corp)
    SapMetamodelCore     6.4015.00.0000.20050614174642.0000 (release=630_SP_REL, buildtime=2005-10-18:21:26:32[UTC], changelist=353586, host=PWDFM067.wdf.sap.corp)
    SapMetamodelDictionary     6.4015.00.0000.20050517181523.0000 (release=630_SP_REL, buildtime=2005-10-18:21:29:35[UTC], changelist=347688, host=PWDFM067.wdf.sap.corp)
    SapMetamodelWebDynpro     6.4015.00.0000.20050816183746.0000 (release=630_SP_REL, buildtime=2005-10-18:21:36:24[UTC], changelist=363604, host=PWDFM067.wdf.sap.corp)
    SapWebDynproGenerationCTemplates     6.4015.00.0000.20051018175352.0000 (release=630_SP_REL, buildtime=2005-10-18:21:56:02[UTC], changelist=372496, host=PWDFM067)
    SapWebDynproGenerationCore     6.4015.00.0000.20051004171749.0000 (release=630_SP_REL, buildtime=2005-10-18:21:40:18[UTC], changelist=370226, host=PWDFM067.wdf.sap.corp)
    SapWebDynproGenerationTemplates     6.4015.00.0000.20051018175352.0000 (release=630_SP_REL, buildtime=2005-10-18:21:56:02[UTC], changelist=372496, host=PWDFM067)
    sap.com/tcwddispwda
    No information available     null
    sap.com/tcwdcorecomp
    No information available     null
    Detailed Error Information
    Detailed Exception Chain
    com.sap.tc.webdynpro.clientserver.adobe.pdfdocument.base.core.PDFDocumentRuntimeException: Failed to  UPDATEDATAINPDF
         at com.sap.tc.webdynpro.clientserver.uielib.adobe.impl.InteractiveForm.afterHandleActionEvent(InteractiveForm.java:396)
         at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.afterApplicationModification(ClientApplication.java:1132)
         at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.afterApplicationModification(ClientComponent.java:887)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.doRespond(WindowPhaseModel.java:573)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequest(WindowPhaseModel.java:152)
         at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.processRequest(WebDynproWindow.java:335)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:143)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:299)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingStandalone(ClientSession.java:711)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:665)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:232)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:152)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doGet(DispatcherServlet.java:46)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:390)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Caused by: com.sap.tc.webdynpro.clientserver.adobe.pdfdocument.base.core.PDFDocumentRuntimeException: PDFDocument Processor failed to process Render Request.
         at com.sap.tc.webdynpro.clientserver.adobe.pdfdocument.base.core.PDFDocumentProcessor.process(PDFDocumentProcessor.java:55)
         at com.sap.tc.webdynpro.clientserver.adobe.pdfdocument.base.core.PDFDocumentInteractiveFormHandlingContext.execute(PDFDocumentInteractiveFormHandlingContext.java:98)
         at com.sap.tc.webdynpro.clientserver.adobe.pdfdocument.base.core.PDFDocumentInteractiveFormHandlingContext.execute(PDFDocumentInteractiveFormHandlingContext.java:121)
         at com.sap.tc.webdynpro.clientserver.uielib.adobe.impl.InteractiveForm.afterHandleActionEvent(InteractiveForm.java:341)
         ... 29 more
    Caused by: com.sap.tc.webdynpro.pdfobject.core.PDFObjectRuntimeException:
    Processing exception during a "UsageRights" operation.
    Request start time: Tue Mar 11 19:37:23 IST 2008
    com.adobe.ProcessingError: Credential login error while applying usage rights to PDF: C:\WINDOWS\Temp\adobewa_J2E_13496050\DM5449164447389649768.dir\DM3764139759016281423.tmp
    Specific error information:
    $$$/PDF/PDFCredentialLoginFailure2=error while logging into credential ^0
    GeneralError: Operation failed.
    SecurityHandler.login:-1:
    The Digital ID specified is unknown.
    General error information:
    IDL:com/adobe/document/pdf/CredentialLoginFailure:1.0
    Exception Stack Trace:
    com.adobe.ProcessingError: Credential login error while applying usage rights to PDF: C:\WINDOWS\Temp\adobewa_J2E_13496050\DM5449164447389649768.dir\DM3764139759016281423.tmp
    Specific error information:
    $$$/PDF/PDFCredentialLoginFailure2=error while logging into credential ^0
    GeneralError: Operation failed.
    SecurityHandler.login:-1:
    The Digital ID specified is unknown.
    General error information:
    IDL:com/adobe/document/pdf/CredentialLoginFailure:1.0
         at com.adobe.ads.request.UsageRights.execute(Unknown Source)
         at com.adobe.BaseADSRequest.doWork(Unknown Source)
         at com.adobe.AdobeDocumentServicesWorker.execute(Unknown Source)
         at com.adobe.AdobeDocumentServicesEJB.processRequest(Unknown Source)
         at com.adobe.AdobeDocumentServicesEJB.rpData(Unknown Source)
         at com.adobe.AdobeDocumentServicesLocalLocalObjectImpl0.rpData(AdobeDocumentServicesLocalLocalObjectImpl0.java:120)
         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:324)
         at com.sap.engine.services.webservices.runtime.EJBImplementationContainer.invokeMethod(EJBImplementationContainer.java:126)
         at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:157)
         at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:79)
         at com.sap.engine.services.webservices.runtime.servlet.ServletDispatcherImpl.doPost(ServletDispatcherImpl.java:92)
         at SoapServlet.doPost(SoapServlet.java:51)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:390)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Caused by: com.adobe.document.pdf.CredentialLoginFailure: IDL:com/adobe/document/pdf/CredentialLoginFailure:1.0
         at com.adobe.document.pdf.CredentialLoginFailureHelper.read(CredentialLoginFailureHelper.java:67)
         at com.adobe.document.pdf._PDFDocumentStub.setUsageRights(_PDFDocumentStub.java:284)
         at com.adobe.EJB_PDFAgent.setUsageRights(Unknown Source)
         ... 31 more
         at com.sap.tc.webdynpro.pdfobject.core.PDFObject.doSoapCall(PDFObject.java:387)
         at com.sap.tc.webdynpro.pdfobject.core.PDFObject.render(PDFObject.java:3710)
         at com.sap.tc.webdynpro.clientserver.adobe.pdfdocument.base.core.PDFDocumentRenderHandler.handle(PDFDocumentRenderHandler.java:139)
         at com.sap.tc.webdynpro.clientserver.adobe.pdfdocument.base.core.PDFDocumentProcessor.process(PDFDocumentProcessor.java:52)
         ... 32 more
    Caused by: com.sap.tc.webdynpro.pdfobject.core.PDFObjectRuntimeException:
    Processing exception during a "UsageRights" operation.
    Request start time: Tue Mar 11 19:37:23 IST 2008
    com.adobe.ProcessingError: Credential login error while applying usage rights to PDF: C:\WINDOWS\Temp\adobewa_J2E_13496050\DM5449164447389649768.dir\DM3764139759016281423.tmp
    Specific error information:
    $$$/PDF/PDFCredentialLoginFailure2=error while logging into credential ^0
    GeneralError: Operation failed.
    SecurityHandler.login:-1:
    The Digital ID specified is unknown.
    General error information:
    IDL:com/adobe/document/pdf/CredentialLoginFailure:1.0
    Exception Stack Trace:
    com.adobe.ProcessingError: Credential login error while applying usage rights to PDF: C:\WINDOWS\Temp\adobewa_J2E_13496050\DM5449164447389649768.dir\DM3764139759016281423.tmp
    Specific error information:
    $$$/PDF/PDFCredentialLoginFailure2=error while logging into credential ^0
    GeneralError: Operation failed.
    SecurityHandler.login:-1:
    The Digital ID specified is unknown.
    General error information:
    IDL:com/adobe/document/pdf/CredentialLoginFailure:1.0
         at com.adobe.ads.request.UsageRights.execute(Unknown Source)
         at com.adobe.BaseADSRequest.doWork(Unknown Source)
         at com.adobe.AdobeDocumentServicesWorker.execute(Unknown Source)
         at com.adobe.AdobeDocumentServicesEJB.processRequest(Unknown Source)
         at com.adobe.AdobeDocumentServicesEJB.rpData(Unknown Source)
         at com.adobe.AdobeDocumentServicesLocalLocalObjectImpl0.rpData(AdobeDocumentServicesLocalLocalObjectImpl0.java:120)
         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:324)
         at com.sap.engine.services.webservices.runtime.EJBImplementationContainer.invokeMethod(EJBImplementationContainer.java:126)
         at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:157)
         at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:79)
         at com.sap.engine.services.webservices.runtime.servlet.ServletDispatcherImpl.doPost(ServletDispatcherImpl.java:92)
         at SoapServlet.doPost(SoapServlet.java:51)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:390)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Caused by: com.adobe.document.pdf.CredentialLoginFailure: IDL:com/adobe/document/pdf/CredentialLoginFailure:1.0
         at com.adobe.document.pdf.CredentialLoginFailureHelper.read(CredentialLoginFailureHelper.java:67)
         at com.adobe.document.pdf._PDFDocumentStub.setUsageRights(_PDFDocumentStub.java:284)
         at com.adobe.EJB_PDFAgent.setUsageRights(Unknown Source)
         ... 31 more
         at com.sap.tc.webdynpro.pdfobject.core.PDFObject.doSoapCall(PDFObject.java:374)
         ... 35 more
    Thanks in Advance,
    Amarnath

    Hi,
    I have the same problem.
    I installed on my notebook the Trail Versions of:
    SAP NetWeaver Application Server 7.00/Java AS 7.00
    SAP NetWeaver Developer Studio Version: 7.0.14
    Acrobat Reader 7.0.9
    Internet explorer 7.0.5730.13
    "ACF and actual credential
    I downloaded the latest credential file and configured it like in the guide. But if i run my dynpro application with an interactive Form UI, i still get this Exception:
    com.sap.tc.webdynpro.pdfobject.core.PDFObjectRuntimeException: Processing exception during a "UsageRights" operation. Request start time: Thu Mar 27 11:54:12 CET 2008 com.adobe.ProcessingException: Credential login error while applying usage rights to PDF: C:\usr\sap\J2E\tmp\adobewa_J2E_9974850\DM-8684076772818111858.dir\DM-7911804062774021804.tmp Specific error information: error while logging into credential ^0 GeneralError: Operation failed. SecurityHandler.login:-1: The digital ID specified is unknown. Exception Stack Trace: com.adobe.ProcessingException: Credential login error while applying usage rights to PDF: C:\usr\sap\J2E\tmp\adobewa_J2E_9974850\DM-8684076772818111858.dir\DM-7911804062774021804.tmp Specific error information: error while logging into credential ^0 GeneralError: Operation failed. SecurityHandler.login:-1: The digital ID specified is unknown. at com.adobe.ads.operation.UsageRights.execute(Unknown Source) at com.adobe.ads.operation.ADSOperation.doWork(Unknown Source) at com.adobe.ads.operation.CachableOperation.doWork(Unknown Source) at com.adobe.ads.request.Request.processOperations(Unknown Source) at com.adobe.ads.request.Request.process(Unknown Source) at com.adobe.AdobeDocumentServicesEJB.processRequest(Unknown Source) at com.adobe.AdobeDocumentServicesEJB.rpData(Unknown Source) at com.adobe.AdobeDocumentServicesLocalLocalObjectImpl0_0.rpData(AdobeDocumentServicesLocalLocalObjectImpl0_0.java:120) 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:324) at com.sap.engine.services.webservices.runtime.EJBImplementationContainer.invokeMethod(EJBImplementationContainer.java:126) at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:157) at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:79) at com.sap.engine.services.webservices.runtime.servlet.ServletDispatcherImpl.doPost(ServletDispatcherImpl.java:92) at SoapServlet.doPost(SoapServlet.java:51) at javax.servlet.http.HttpServlet.service(HttpServlet.java:760) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401) at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266) at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386) at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364) at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039) at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265) at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95) at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175) at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33) at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41) at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37) at java.security.AccessController.doPrivileged(Native Method) at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102) at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172) Caused by: com.adobe.document.pdf.CredentialLoginFailure: IDL:com/adobe/document/pdf/CredentialLoginFailure:1.0 at com.adobe.document.pdf.CredentialLoginFailureHelper.read(CredentialLoginFailureHelper.java:67) at com.adobe.document.pdf._PDFDocumentStub.setUsageRights(_PDFDocumentStub.java:284) at com.adobe.ads.remote.EJB_PDFAgent.setUsageRights(Unknown Source) ... 33 more
    Whats the problem with the credential ? im trying to find a solution for this problem since 2 days.

  • CC-Configuration(adapter)-Most Urgent

    HI all,
    In ComplianceCalibrator, configuration tab after clicking the last option SAP Adapter, the diamond shaped button should change from gray to green.So Sod violations can be checked .But after clicking on SAP Adapter its showing the following error.
    "java.lang.NullPointerException".
    Kindly do the needful,its most urgent issue
    Thanks & Regards

    Hi Karunakar,
    Following is the complete procedure:
    System ID:                         System ID (User Defined)
    System Name:                   Host Name
    System Type:                     SAP
    Connection Type:                Adaptive RFC
    JCO Destination:                 Name of the JCO connection created by you
    System ID:                         System ID (User Defined)
    SAP Gateway:                   sapgw00
    Report Name:                     Name of the Report defined by you in R/3
    Outbound Connection:          Select the check box
    Unicode System:                Select the check box
    Then check, it should come. Kindly let me know if you have any more queries.
    Regards,
    Faisal

  • RuntimeException only for one model in configurator-Urgent

    I created a custom web page in OAF to launch Configurator. It was working fine untill this morning , when another co-worker made some changes and published one particular model.
    My application fails to launch that model where as all the models work fine.
    This model launched fine from Quoting/OM and Config Dev.
    Error from the logs is :
    [Sep 17, 2008 1:07:13 PM
    CDT]:1221674833273:Thread[Thread-27248,10,main]:6616:1985801979:s1v1280:10.122.84.1:8101:16010:STATEMENT:[fnd.framework.webui.OAPageBean]:CZInitString=<initi
    alize><param name="database_id">szzzzzzz_macp</param><param name="icx_session_ticket">0DA897D89B5B9415C7975C52278BFF45</param><param
    name="calling_application_id">601</param><param name="responsibility_id">24742</param><param name="ui_def_id">0</param><param
    name="terminate_id">null</param><param name="ui_type">JRAD</param><param name="init_was_saved">true</param></initialize>
    [Sep 17, 2008 1:07:18 PM
    CDT]:1221674838221:Thread[Thread-27248,10,main]:6616:1985801979:s1v1280:10.122.84.1:8101:16010:EXCEPTION:[cz.service.ConfiguratorServiceLocal.From
    processMessage()]:[null_475db5b_b0 # 16171] Cannot find the text with persistent id 33125520 in source ui 23080
    java.lang.RuntimeException: Cannot find the text with persistent id 33125520 in source ui 23080
         at oracle.apps.cz.dio.ui.UiController.getTextByPersistentID(UiController.java:779)-----------
    I saw a few notes on metalink and found some scripts for debugging, but I have no idea what sense to make out of it.
    SELECT * FROM cz.cz_db_logs WHERE message_id='353320'
    - no result
    SELECT model_id,publication_id from cz_model_publications where export_status = 'ERR'
    --no result
    SELECT intl_text_id, persistent_intl_text_id,text_str,ui_def_id FROM cz_intl_texts where persistent_intl_Text_id = 33125520;
    2 rows
    33136901    33125520 . . . . . . .Rewind(s) upgraded to 3HP. . . . . . . 239347
    33125520    33125520 . . . . . . .Rewind(s) upgraded to 3HP. . . . . . . 23080
    select model_id,ui_def_id,intl_text_id,creation_date from cz_intl_texts where persistent_intl_text_id = 33125520
    2 rows
    2409785 239347 33136901 9/17/2008 9:53:29 AM
    21400 23080 33125520 9/17/2008 9:09:28 AM
    SELECT intl_text_id, text_str, persistent_intl_text_id, seeded_flag, ui_def_id, model_id FROM cz_intl_texts where ui_def_id = 23080 AND deleted_flag = 0;
    -- 8 rows
    SELECT * from cz_model_publications WHERE object_type = 'UIT' ;
    24 rowsPlease help, its urgent.
    Thanks

    I investigated more and here are my findings:
    we have 2 publications in production published for different set of applications,
    pub1 is published for applications : asn, qot ,oem
    pub2 is published for applications : mac(custom application) --this was created for changes in future and has effectivityset for future.
    It seems while launching , it picks the ui for pub2 and I want it for pub1
    My query is :
    select distinct
         rep.name name ,
         pub.ui_def_id,
         pub.publication_id
    from cz_model_publications pub,CZ_UI_DEFS defs,CZ_REPOS_TREE_V rep,CZ_PB_CLIENT_APPS apps
    where pub.ui_def_id=defs.ui_def_id
    and apps.publication_id=pub.publication_id
    and rep.object_id=defs.devl_project_id
    and pub.publication_mode='p'
    and rep.object_type='PRJ'
    and pub.organization_id = '101'
    and pub.deleted_flag = 0
    and pub.disabled_flag = 0
    and apps.fnd_application_id=880 --this is available for quoting UI
    order by rep.name
    Can anyone plz help me on this .
    I will appreciate it
    Thanks

  • MSI MS 7100 K8N Neo 4 Diamond need bios configuration help very urgent

    Hello every body i need very urgent help,
    i need help on above mainboard bios conf. i will attach two seperate hdd (120 GB sata II) and i will setup W2003 standart 32bit ed.
    if possible i won't use any raid configurations, but i need speed
    how should i conf. bios and which controller shouşd i use silicon or nvidia or how and wich has to be used.
    corecction about my configuration
    Mainboard   MSI MS 7100 K8N Neo 4 Diamond (NF4 SLI,GLAN,SATA)
    CPU      AMD Athlon 64 X2 3800+ (2.0GHz,1024K Cache,S939) BOX
    Ram      CORSAIR Value Select DDR400 1024MB Kit (2x512MB)
    Hdd      SAMSUNG 120GB 7200RPM 8MB SATAII     (2x120GB)
    Graphic Card         SAPPHIRE 256MB ATI Radeon X1600 PRO (PCI-E) AVIVO
    Case                      ENLIGHT 7247 400W

    Hello !!
    The Bios configuration depends on many factors.....but we do not know anything about your configuration. ( CPU, RAM, Powersupply.....)
    If you need HDD Speed, RAID 0 will be a good Option and you should consider it.
    Both Controllers, Silicon Image & nvidia, have the same speed. But i think you can not attach Optical drives to the Silicon Image Controller. ( if someone has other experiance please post )
    Good Luck
    Greetz MurdoK

  • Urgent help required for network configuration

    sir
    i have a mixed scenario right now.
    I have only three computer on home network.
    1.vista accer travelmate 4720 laptop loaded with vista sp1 ultimate
    2.normal pc : Core2 duo with XFX ATI REDION graphics card and this pc is loaded with OEL 5.3.x linux but this pc has 2 NICs(eth 0,eth 1) I have connected both with a switch and the switch is connected to a modem for internet.can I use one NIC as private and another NIC as public to access internet?
    3. normal pc : P4 HT and its loaded with win xp sp2 having eth 0
    how to set my network.
    I have connected each NIC with a D-Link switch.And the D-Link switch is connected with DataOne Nokia Siemens network c2110 modem.
    But problems are that
    1) each time i can connect only one PC at a time.
    2)OEL 5.3.x is not connected to the specified modem ever....by [adsl seup|http://forums.oracle.com/forums/thread.jspa?threadID=832112&tstart=0] command.should i configure it during installation?is there any easy shell scriot avilable to do this stuff?
    please help as soon as you can.......
    regards
    Edited by: mango_boy on Sep 7, 2009 4:44 AM

    ifconfig output:
    eth1      Link encap:Ethernet  HWaddr FE:FF:FF:FF:FF:FF 
              inet6 addr: fe80::fcff:ffff:feff:ffff/64 Scope:Link
              UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
              RX packets:1 errors:0 dropped:0 overruns:0 frame:0
              TX packets:38 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000
              RX bytes:243 (243.0 b)  TX bytes:9406 (9.1 KiB)
              Interrupt:16 Base address:0xec00
    lo        Link encap:Local Loopback 
              inet addr:127.0.0.1  Mask:255.0.0.0
              inet6 addr: ::1/128 Scope:Host
              UP LOOPBACK RUNNING  MTU:16436  Metric:1
              RX packets:3779 errors:0 dropped:0 overruns:0 frame:0
              TX packets:3779 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:0
              RX bytes:6124500 (5.8 MiB)  TX bytes:6124500 (5.8 MiB)
    virbr0    Link encap:Ethernet  HWaddr 00:00:00:00:00:00 
              inet addr:192.168.122.1  Bcast:192.168.122.255  Mask:255.255.255.0
              inet6 addr: fe80::200:ff:fe00:0/64 Scope:Link
              UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
              RX packets:0 errors:0 dropped:0 overruns:0 frame:0
              TX packets:28 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:0
              RX bytes:0 (0.0 b)  TX bytes:8360 (8.1 KiB)
    xenbr0    Link encap:Ethernet  HWaddr 00:00:00:00:00:00 
              UP BROADCAST RUNNING NOARP  MTU:1500  Metric:1
              RX packets:0 errors:0 dropped:0 overruns:0 frame:0
              TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:0
              RX bytes:0 (0.0 b)  TX bytes:0 (0.0 b)adsl-setup output
    [root@localhost ~]# adsl-setup
    Welcome to the ADSL client setup.  First, I will run some checks on
    your system to make sure the PPPoE client is installed properly...
    LOGIN NAME
    Enter your Login Name (default root): kris_9929
    INTERFACE
    Enter the Ethernet interface connected to the ADSL modem
    For Solaris, this is likely to be something like /dev/hme0.
    For Linux, it will be ethX, where 'X' is a number.
    (default eth0): eth1
    Do you want the link to come up on demand, or stay up continuously?
    If you want it to come up on demand, enter the idle time in seconds
    after which the link should be dropped.  If you want the link to
    stay up permanently, enter 'no' (two letters, lower-case.)
    NOTE: Demand-activated links do not interact well with dynamic IP
    addresses.  You may have some problems with demand-activated links.
    Enter the demand value (default no):
    DNS
    Please enter the IP address of your ISP's primary DNS server.
    If your ISP claims that 'the server will provide dynamic DNS addresses',
    enter 'server' (all lower-case) here.
    If you just press enter, I will assume you know what you are
    doing and not modify your DNS setup.
    Enter the DNS information here: server
    PASSWORD
    Please enter your Password:
    Please re-enter your Password:
    USERCTRL
    Please enter 'yes' (three letters, lower-case.) if you want to allow
    normal user to start or stop DSL connection (default yes): yes
    FIREWALLING
    Please choose the firewall rules to use.  Note that these rules are
    very basic.  You are strongly encouraged to use a more sophisticated
    firewall setup; however, these will provide basic security.  If you
    are running any servers on your machine, you must choose 'NONE' and
    set up firewalling yourself.  Otherwise, the firewall rules will deny
    access to all standard servers like Web, e-mail, ftp, etc.  If you
    are using SSH, the rules will block outgoing SSH connections which
    allocate a privileged source port.
    The firewall choices are:
    0 - NONE: This script will not set any firewall rules.  You are responsible
              for ensuring the security of your machine.  You are STRONGLY
              recommended to use some kind of firewall rules.
    1 - STANDALONE: Appropriate for a basic stand-alone web-surfing workstation
    2 - MASQUERADE: Appropriate for a machine acting as an Internet gateway
                    for a LAN
    Choose a type of firewall (0-2): 1
    Start this connection at boot time
    Do you want to start this connection at boot time?
    Please enter no or yes (default no):no
    ** Summary of what you entered **
    Ethernet Interface: eth1
    User name:          xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
    Activate-on-demand: No
    DNS addresses:      Supplied by ISP's server
    Firewalling:        STANDALONE
    User Control:       yes
    Accept these settings and adjust configuration files (y/n)? y
    Adjusting /etc/sysconfig/network-scripts/ifcfg-ppp0
    Adjusting /etc/ppp/chap-secrets and /etc/ppp/pap-secrets
      (But first backing it up to /etc/ppp/chap-secrets.bak)
      (But first backing it up to /etc/ppp/pap-secrets.bak)
    Congratulations, it should be all set up!
    Type '/sbin/ifup ppp0' to bring up your xDSL link and '/sbin/ifdown ppp0'
    to bring it down.
    Type '/sbin/adsl-status /etc/sysconfig/network-scripts/ifcfg-ppp0'
    to see the link status.Edited by: mango_boy on Sep 7, 2009 9:02 AM
    added adsl setup output
    Edited by: mango_boy on Sep 7, 2009 9:15 AM

  • Urgent help required for configuring forms server 6.0

    Hi every one/anyone
    i will really appreciate if i can get your attention and a little
    bit of your help in configuration of Developer Server.
    i have similar kind of a problem i hopeany one can shed some
    light on it as well.
    I am using
    Pentium III 450 MHZ 256 MB Ram
    NT server 4.0 with Service pack 3.
    Oracle 8.1.5
    IIS 4 or OAS 4.0.7
    Developer 6.0 down loaded from OTN.
    Internet Explorer 5.
    I have failed to run forms 6.0 on the web, i have tried all the
    option
    JDK supplied with the Developer 6.0 Software on DOS prompt.
    Jinitiator 1.1.7.11
    When i run forms from the Designer they work But When i try them
    to run form the browser Every thing works the status bar
    of the Internet Explorer 5 says applet initialized but the forms
    do not show up. when i press the refresh button of the browser
    the status bar show applet running and a forms window appear's
    but with out showing the form. I have checked from the Java
    Console it shows the same error on and again with or without
    jinitiator. I have almost tried every setting.
    Oracle JInitiator version 1.1.7.11
    Using JRE version 1.1.7.11o
    User home directory = E:\WINNT\Profiles\Administrator
    Proxy Configuration: Manual Configuration
    Proxy:
    Proxy Overrides: <local>
    Opening http://an.ma/web/oracle/forms/engine/Main.class no proxy
    Opening http://an.ma/web/oracle/ewt/lwAWT/BufferedApplet.class
    Opening http://an.ma/web/oracle/ewt/popup/PopupApplet.class
    Opening http://an.ma/web/oracle/ewt/popup/PopupOwner.class
    Opening http://an.ma/web/oracle/ewt/event/tracking/MouseGrabPr
    ovider.class
    Opening http://an.ma/web/oracle/ewt/help/HelpCapable.class
    Opening http://an.ma/web/oracle/ewt/lwAWT/ImmediatePainter.class
    Opening http://an.ma/web/oracle/ewt/lwAWT/DoubleBufferer.class
    Opening http://an.ma/web/oracle/ewt/lwAWT/VirtualComponent.class
    Opening http://an.ma/web/oracle/ewt/lwAWT/FocusRoot.class
    Opening http://an.ma/web/oracle/ewt/lwAWT/KeyProcessor.class
    Opening http://an.ma/web/oracle/forms/test/Test.class
    Opening http://an.ma/web/oracle/ewt/painter/PaintContext.class
    Opening http://an.ma/web/oracle/ewt/lwAWT/LWComponent.class
    Opening http://an.ma/web/oracle/forms/ui/mdi/MDIContainer.class
    Opening http://an.ma/web/oracle/ewt/lwAWT/lwMenu/LWMenuBar.class
    Opening
    http://an.ma/web/oracle/ewt/lwAWT/lwMenu/BaseMIContainer.class
    Opening
    http://an.ma/web/oracle/ewt/lwAWT/lwMenu/LWMenuItemContainer.clas
    s
    Opening http://an.ma/web/oracle/ewt/lwAWT/lwMenu/LWMenu.class
    Opening http://an.ma/web/oracle/ewt/lwAWT/lwMenu/LWMenuItem.class
    Opening
    http://an.ma/web/oracle/ewt/lwAWT/AbstractPainterComponent.class
    Opening
    http://an.ma/web/oracle/ewt/lwAWT/lwMenu/LWMenuInvoker.class
    Opening
    http://an.ma/web/oracle/ewt/lwAWT/lwMenu/LWPopupMenu.class
    Opening
    http://an.ma/web/oracle/ewt/lwAWT/lwMenu/LWMenuSeparator.class
    Opening http://an.ma/web/oracle/ewt/lwAWT/lwWindow/Desktop.class
    Opening http://an.ma/web/oracle/forms/ui/mdi/MDIWindowMenu.class
    Opening
    http://an.ma/web/oracle/ewt/lwAWT/lwMenu/LWPopupMenuListener.clas
    s
    Opening http://an.ma/web/oracle/ewt/popup/PopupFrame.class
    Opening http://an.ma/web/oracle/ewt/lwAWT/BufferedFrame.class
    Opening http://an.ma/web/oracle/ewt/painter/Painter.class
    Opening http://an.ma/web/oracle/ewt/popup/PopupHandler.class
    Opening http://an.ma/web/oracle/ewt/UIManager.class
    Opening
    http://an.ma/web/oracle/ewt/UIManager$LookAndFeelInfo.class
    Opening http://an.ma/web/oracle/ewt/LookAndFeel.class
    Opening
    http://an.ma/web/oracle/bali/share/collection/StringKey.class
    Opening http://an.ma/web/oracle/ewt/laf/oracle/OracleLookAndFe
    el.class
    Opening http://an.ma/web/oracle/ewt/laf/basic/BasicLookAndFeel
    .class
    Opening http://an.ma/web/oracle/ewt/painter/BorderPainter.clas s
    Opening http://an.ma/web/oracle/ewt/ColorScheme.class
    Opening http://an.ma/web/oracle/ewt/laf/oracle/OracleColorSche
    me.class
    Opening http://an.ma/web/oracle/ewt/UIDefaults.class
    Opening http://an.ma/web/oracle/ewt/HashTableDefaults.class no
    proxy
    Opening http://an.ma/web/oracle/ewt/MultiUIDefaults.class no
    proxy
    Opening http://an.ma/web/oracle/ewt/laf/basic/ColorizingFilter
    .class
    Opening http://an.ma/web/oracle/ewt/lwAWT/VComponentPaintConte
    xt.class
    Opening http://an.ma/web/oracle/ewt/painter/ImagePainter.class
    Opening http://an.ma/web/oracle/ewt/painter/AbstractPainter.cl
    ass
    Opening http://an.ma/web/oracle/ewt/laf/basic/PerComponentUIIn
    stantiator.class
    Opening http://an.ma/web/oracle/ewt/UIInstantiator.class no
    proxy
    Opening http://an.ma/web/oracle/ewt/plaf/StatusBarUI.class no
    proxy
    Opening http://an.ma/web/oracle/ewt/plaf/ComponentUI.class no
    proxy
    Opening http://an.ma/web/oracle/ewt/laf/oracle/OracleStatusBar
    Painter.class
    Opening http://an.ma/web/oracle/ewt/painter/AbstractBorderPain
    ter.class
    Opening http://an.ma/web/oracle/ewt/painter/AbstractWrappingPa
    inter.class
    Opening http://an.ma/web/oracle/ewt/painter/NullPainter.class
    Opening http://an.ma/web/oracle/ewt/laf/oracle/OracleUIUtils.c
    lass
    Opening http://an.ma/web/oracle/ewt/graphics/ImageSet.class no
    proxy
    Opening http://an.ma/web/oracle/ewt/lwAWT/DoubleBuffer.class
    Opening http://an.ma/web/oracle/ewt/plaf/TextUI.class
    Opening http://an.ma/web/oracle/ewt/laf/oracle/OracleInsetBord
    erPainter.class
    Opening http://an.ma/web/oracle/ewt/painter/FixedBorderPainter
    .class
    Opening http://an.ma/web/oracle/ewt/util/ImmInsets.class no
    proxy
    Opening http://an.ma/web/oracle/ewt/plaf/ToolBarUI.class no
    proxy
    Opening http://an.ma/web/oracle/ewt/laf/oracle/OracleToolBarPa
    inter.class
    Opening http://an.ma/web/oracle/ewt/laf/oracle/ScrollBoxBorder
    Painter.class
    Opening http://an.ma/web/oracle/ewt/laf/oracle/DisabledBGPaint
    er.class
    Opening http://an.ma/web/oracle/ewt/painter/ColorChange.class
    Opening http://an.ma/web/oracle/ewt/painter/FilledRectPainter.
    class
    Opening http://an.ma/web/oracle/ewt/painter/FGBGColorChange.cl
    ass
    Opening http://an.ma/web/oracle/ewt/laf/oracle/OracleRoundedPa
    inter.class
    Opening http://an.ma/web/oracle/ewt/graphics/SynthesizingImage
    Set.class
    Opening http://an.ma/web/oracle/ewt/graphics/NullImageFilter.c
    lass
    Opening http://an.ma/web/oracle/ewt/painter/ImageSetPainter.cl
    ass
    Opening http://an.ma/web/oracle/ewt/painter/TextPainter.class
    Opening http://an.ma/web/oracle/ewt/painter/TruncatingTextPain
    ter.class
    Opening http://an.ma/web/oracle/ewt/laf/basic/DisablingPainter
    .class
    Opening http://an.ma/web/oracle/ewt/laf/basic/StringInstantiat
    or.class
    Opening http://an.ma/web/oracle/ewt/UIDefaults$DeferredValue.c
    lass
    Opening http://an.ma/web/oracle/ewt/laf/basic/SingletonUIInsta
    ntiator.class
    Opening http://an.ma/web/oracle/ewt/lwAWT/SharedPainter.class
    Opening http://an.ma/web/javax/swing/JInternalFrame.class no
    proxy
    Opening http://an.ma/web/oracle/ewt/util/LocaleUtils.class no
    proxy
    Opening http://an.ma/web/oracle/ewt/util/WindowUtils.class no
    proxy
    Opening http://an.ma/web/oracle/ewt/util/WindowUtils$ActiveWin
    dowTracker.class
    Opening http://an.ma/web/oracle/forms/engine/MainBeanInfo.clas s
    Opening http://an.ma/web/sun/beans/infos/MainBeanInfo.class no
    proxy
    Opening http://an.ma/web/oracle/ewt/lwAWT/BufferedAppletBeanIn
    fo.class
    Opening http://an.ma/web/sun/beans/infos/BufferedAppletBeanInf
    o.class
    Opening http://an.ma/web/oracle/ewt/popup/PopupAppletBeanInfo.
    class
    Opening http://an.ma/web/sun/beans/infos/PopupAppletBeanInfo.c
    lass
    Opening http://an.ma/web/oracle/ewt/help/HelpProvider.class no
    proxy
    Opening http://an.ma/web/oracle/ewt/event/AnyEventListener.cla
    ss
    Opening http://an.ma/web/oracle/forms/ui/FormMouseGrabProvider
    .class
    Opening http://an.ma/web/oracle/ewt/event/tracking/GlassMouseG
    rabProvider.class
    Opening http://an.ma/web/oracle/ewt/lwAWT/lwWindow/DesktopCont
    ainer.class
    Opening http://an.ma/web/oracle/forms/engine/Runform.class no
    proxy
    Opening http://an.ma/web/oracle/forms/engine/MessageHandler.cl
    ass
    Opening http://an.ma/web/oracle/forms/registry/MessageManager.
    class
    Opening http://an.ma/web/oracle/ewt/lwAWT/lwWindow/LWWindow.cl
    ass
    Opening http://an.ma/web/oracle/ewt/event/tracking/KeyFilterPr
    ovider.class
    Opening http://an.ma/web/oracle/ewt/lwAWT/lwWindow/DesktopEven
    t.class
    Opening http://an.ma/web/oracle/ewt/event/EwtEvent.class no
    proxy
    Opening http://an.ma/web/oracle/ewt/EwtComponent.class
    Opening http://an.ma/web/oracle/ewt/scrolling/Scrollable.class
    Opening http://an.ma/web/oracle/ewt/dnd/Autoscroll.class no
    proxy
    Opening http://an.ma/web/oracle/ewt/event/tracking/GlassMouseG
    rabProvider$Proxy.class
    Opening http://an.ma/web/oracle/ewt/laf/generic/GenericLookAnd
    Feel.class
    Opening http://an.ma/web/oracle/ewt/laf/generic/SystemColorSch
    eme.class
    Opening http://an.ma/web/oracle/ewt/laf/generic/FixedColorSche
    me.class
    Opening http://an.ma/web/oracle/forms/engine/icons/splash.gif
    Opening http://an.ma/web/oracle/ewt/graphics/ImageUtils.class
    Opening http://an.ma/web/oracle/ewt/graphics/ImageLoader.class
    Opening http://an.ma/web/oracle/forms/engine/Splashscreen.clas s
    Opening http://an.ma/web/oracle/ewt/lwAWT/LWComponent$PaintCtx
    t.class
    Opening http://an.ma/web/oracle/ewt/laf/generic/GenericInsetBo
    rderPainter.class
    Opening http://an.ma/web/oracle/ewt/laf/generic/GenericRectang
    lePainter.class
    Opening http://an.ma/web/oracle/ewt/laf/generic/GenericDesktop
    UI.class
    Opening http://an.ma/web/oracle/ewt/laf/basic/BasicComponentUI
    .class
    Opening http://an.ma/web/oracle/ewt/laf/basic/AbstractComponen
    tUI.class
    Opening http://an.ma/web/oracle/ewt/plaf/DesktopUI.class no
    proxy
    Opening http://an.ma/web/oracle/ewt/lwAWT/lwWindow/WindowManag
    er.class
    Opening http://an.ma/web/oracle/ewt/lwAWT/lwWindow/laf/BaseWin
    dowManager.class
    Opening http://an.ma/web/oracle/ewt/lwAWT/lwWindow/DesktopList
    ener.class
    Opening http://an.ma/web/oracle/ewt/lwAWT/lwWindow/laf/MouseWi
    ndowActivater.class
    Opening http://an.ma/web/oracle/ewt/lwAWT/lwWindow/laf/KeyWind
    owActivater.class
    Opening http://an.ma/web/oracle/ewt/lwAWT/lwWindow/ModalStyle.
    class
    Opening http://an.ma/web/oracle/ewt/lwAWT/lwWindow/LWWindow$Fo
    cusTransferComp.class
    Opening http://an.ma/web/oracle/ewt/event/tracking/TrackingUti
    ls.class
    Opening http://an.ma/web/oracle/ewt/lwAWT/lwWindow/DesktopCont
    ainer$WindowEnum.class
    Opening http://an.ma/web/oracle/ewt/event/ListenerManager.clas s
    Opening http://an.ma/web/oracle/ewt/lwAWT/lwWindow/DesktopLayo
    ut.class
    Opening http://an.ma/web/oracle/ewt/laf/generic/GenericCompone
    ntUI.class
    Opening http://an.ma/web/oracle/ewt/scrolling/ScrollableExcept
    ion.class
    Opening http://an.ma/web/oracle/forms/ui/mdi/ActivationTracker
    .class
    Opening http://an.ma/web/oracle/ewt/lwAWT/lwMenu/ScrollableAda
    pter.class
    Opening http://an.ma/web/oracle/ewt/scrolling/arrowBox/ArrowBo
    x.class
    Opening http://an.ma/web/oracle/ewt/laf/generic/GenericMenuBar
    UI.class
    Opening http://an.ma/web/oracle/ewt/plaf/MenuBarUI.class no
    proxy
    Opening http://an.ma/web/oracle/ewt/lwAWT/lwMenu/laf/MenuBarCo
    ntroller.class
    Opening http://an.ma/web/oracle/ewt/lwAWT/lwMenu/PreferredRowL
    ayout.class
    Opening http://an.ma/web/oracle/ewt/lwAWT/lwMenu/BaseMIContain
    er$AddLsnr.class
    Opening http://an.ma/web/oracle/ewt/lwAWT/lwMenu/LWPopupMenuEv
    ent.class
    Opening http://an.ma/web/oracle/ewt/popup/NoPopupOwnerExceptio
    n.class
    Opening http://an.ma/web/oracle/ewt/laf/generic/GenericPopupMe
    nuUI.class
    Opening http://an.ma/web/oracle/ewt/plaf/PopupMenuUI.class no
    proxy
    Opening http://an.ma/web/oracle/ewt/lwAWT/lwMenu/laf/PopupMenu
    Controller.class
    Opening http://an.ma/web/oracle/ewt/lwAWT/lwMenu/PreferredColu
    mnLayout.class
    Opening http://an.ma/web/oracle/forms/engine/RunformBundle_en_
    US.class
    Opening http://an.ma/web/oracle/forms/engine/RunformBundle.cla
    ss
    Opening http://an.ma/web/oracle/forms/engine/RunformBundle_en.
    class
    Opening http://an.ma/web/oracle/ewt/laf/generic/GenericMenuIte
    mUI.class
    Opening http://an.ma/web/oracle/ewt/plaf/MenuItemUI.class no
    proxy
    Opening http://an.ma/web/oracle/ewt/lwAWT/lwMenu/laf/MenuItemC
    ontroller.class
    Opening http://an.ma/web/oracle/ewt/painter/AndOrStatePainterS
    witcher.class
    Opening http://an.ma/web/oracle/ewt/painter/AbstractPainterSwi
    tcher.class
    Opening http://an.ma/web/oracle/ewt/painter/DirectionalBorderP
    ainter.class
    Opening http://an.ma/web/oracle/ewt/lwAWT/lwMenu/laf/KeyStroke
    Painter.class
    Opening http://an.ma/web/oracle/ewt/lwAWT/lwMenu/laf/MenuItemP
    ainter.class
    Opening http://an.ma/web/oracle/ewt/lwAWT/lwMenu/laf/MenuSelCo
    lorChange.class
    Opening http://an.ma/web/oracle/ewt/laf/generic/GenericSelecti
    onPainter.class
    Opening http://an.ma/web/oracle/ewt/lwAWT/lwMenu/laf/MenuSelTe
    xtColorChange.class
    Opening http://an.ma/web/oracle/ewt/lwAWT/lwMenu/DragRedispatc
    her.class
    Opening http://an.ma/web/oracle/ewt/laf/generic/GenericMenuSep
    aratorUI.class
    Opening http://an.ma/web/oracle/ewt/plaf/MenuSeparatorUI.class
    Opening http://an.ma/web/oracle/ewt/lwAWT/lwMenu/LWCheckboxMen
    uItem.class
    Opening http://an.ma/web/oracle/ewt/thread/Task.class
    Opening http://an.ma/web/oracle/ewt/laf/generic/GenericMenuUI.
    class
    Opening http://an.ma/web/oracle/ewt/plaf/MenuUI.class
    Opening http://an.ma/web/oracle/ewt/lwAWT/lwMenu/laf/SubmenuIc
    on.class
    Opening http://an.ma/web/oracle/ewt/painter/PainterJoiner.clas s
    Opening http://an.ma/web/oracle/forms/engine/icons/bgnd.gif no
    proxy
    Opening http://an.ma/web/oracle/ewt/painter/FixedImagePainter.
    class
    Opening http://an.ma/web/oracle/ewt/lwAWT/lwMenu/laf/HorzMenuC
    ontroller.class
    Opening http://an.ma/web/oracle/ewt/lwAWT/lwMenu/LWMenuBar$Acc
    elFilter.class
    Opening http://an.ma/web/oracle/ewt/event/tracking/GlassMouseG
    rabProvider$Disp.class
    Opening http://an.ma/web/oracle/forms/handler/UICommon.class
    Opening http://an.ma/web/oracle/forms/handler/IHandler.class
    Opening http://an.ma/web/oracle/forms/api/IObject.class no
    proxy
    Opening http://an.ma/web/oracle/forms/handler/FormWindow.class
    Opening http://an.ma/web/oracle/forms/engine/RunformException.
    class
    Opening http://an.ma/web/oracle/forms/net/Connection.class no
    proxy
    Opening http://an.ma/web/oracle/forms/engine/MessageHandler2.c
    lass
    Opening http://an.ma/web/oracle/forms/engine/FlushQueue.class
    Opening http://an.ma/web/oracle/ewt/util/ClipboardProxy.class
    Opening http://an.ma/web/oracle/forms/engine/Registry.class no
    proxy
    Opening http://an.ma/web/oracle/forms/registry/Registry.dat no
    proxy
    Opening http://an.ma/web/oracle/forms/registry/default.dat no
    proxy
    Opening http://an.ma/web/oracle/forms/net/SocketConnection.cla
    ss
    Opening http://an.ma/web/oracle/forms/net/EncryptedOutputStrea
    m.class
    Opening http://an.ma/web/oracle/forms/net/EncryptedInputStream
    .class
    Opening http://an.ma/web/oracle/forms/net/StreamMessageReader.
    class
    Opening http://an.ma/web/oracle/forms/net/StreamMessageWriter.
    class
    Opening http://an.ma/web/oracle/forms/engine/Message.class no
    proxy
    Opening http://an.ma/web/oracle/forms/engine/TerminalMessage.c
    lass
    Opening http://an.ma/web/oracle/forms/engine/IndexTag.class no
    proxy
    Opening http://an.ma/web/oracle/forms/net/SingleAccessorQueue.
    class
    Opening http://an.ma/web/oracle/forms/engine/DeleteMask.class
    Opening http://an.ma/web/oracle/forms/engine/FontEntry.class
    Forms Applet version is : 4
    Opening http://an.ma/web/oracle/forms/engine/DeferredMessage.c
    lass
    when i press refresh on the ie5 then it says applet started
    creates a window inside the browser with borders
    but does now show any thing expect a few more lines in the
    console window as following
    Opening http://an.ma/web/oracle/ewt/util/StringUtils.class
    Opening http://an.ma/web/oracle/ewt/lwAWT/BufferedPanel.class
    Opening http://an.ma/web/oracle/ewt/popup/PopupPanel.class
    Opening
    http://an.ma/web/oracle/ewt/lwAWT/WaitingDoubleBuffer.class
    Opening
    http://an.ma/web/oracle/ewt/lwAWT/BalkingDoubleBuffer.class
    Opening http://an.ma/web/oracle/ewt/graphics/GraphicUtils.class
    Opening http://an.ma/web/oracle/ewt/util/ComponentUtils.class
    Opening
    http://an.ma/web/oracle/ewt/layout/DirectionalLayout.class
    I hope any one can help me. I have been trying to run this thing
    for almost 2 months.
    bye
    null

    I had the same problem for the longest time... The problem is
    the "SplashScreen" it hangs everything up...
    My solution was add this line to your html:
    <param name="splashScreen" value="no">
    Good luck,
    Let me know if that works..
    Jeff.
    mobeen (guest) wrote:
    : Hi every one/anyone
    : i will really appreciate if i can get your attention and a
    little
    : bit of your help in configuration of Developer Server.
    : i have similar kind of a problem i hopeany one can shed some
    : light on it as well.
    : I am using
    : Pentium III 450 MHZ 256 MB Ram
    : NT server 4.0 with Service pack 3.
    : Oracle 8.1.5
    : IIS 4 or OAS 4.0.7
    : Developer 6.0 down loaded from OTN.
    : Internet Explorer 5.
    : I have failed to run forms 6.0 on the web, i have tried all
    the
    : option
    : JDK supplied with the Developer 6.0 Software on DOS prompt.
    : Jinitiator 1.1.7.11
    : When i run forms from the Designer they work But When i try
    them
    : to run form the browser Every thing works the status bar
    : of the Internet Explorer 5 says applet initialized but the
    forms
    : do not show up. when i press the refresh button of the browser
    : the status bar show applet running and a forms window appear's
    : but with out showing the form. I have checked from the Java
    : Console it shows the same error on and again with or without
    : jinitiator. I have almost tried every setting.
    : Oracle JInitiator version 1.1.7.11
    : Using JRE version 1.1.7.11o
    : User home directory = E:\WINNT\Profiles\Administrator
    : Proxy Configuration: Manual Configuration
    : Proxy:
    : Proxy Overrides: <local>
    : I hope any one can help me. I have been trying to run this
    thing
    : for almost 2 months.
    : bye
    null

Maybe you are looking for

  • Print report to POS printer

    Hi all, from my Form(6i) user opens report in PDF and after that they print it on POS printer(Epson). But problem is that paper printed have A4 format height, so how can I set up so that paper can be printed shorter? All the time users cutting rest o

  • How do i use itunes on two PC's

    I have just purchased a new PC for home use, but my original itunes is on my work PC now every time i try to use my ipod with my home PC it asks me if i want to clear all songs on my ipod and relist new songs from this PC. How can i keep the tunes on

  • How do I get a pop-up that wants me to enter an apple id for an old email

    I have a pop-up that will not let me do anything. I am asked to enter the Apple ID password for an old email. I have since changed to a new email and have a new password that works on my computer and has been updated.

  • MS Project Professional 2010 Re-installation

    Hi MS Technical Support, I have had my computer re-booted and subsequently lost MS Project from it.  Unfortunately this particular computer does not have a CD drive, and so it is not as simple as inserting the disk and re-installing it. I have contac

  • How do I re-size the Lr window?

    I'm new to Lightroom - transitioning over from Aperture. I'm running Yosemite on an older (early 2008) 24" iMac. How do I re-size the Lr window? At present it seems to be locked at full size. Note that this is NOT Full Screen, which I can still toggl