Difference between reverse proxy plugin and java web proxy server

Hello
Can anyone please let me know what exactly is the difference between the reverse proxy plugin available with java system web server and the
java web proxy server.
Thanks
Manik Gupta.

The features are very closely related. The most notable and obvious difference is that The Web Proxy Server reverse proxy makes use of a content cache, while the reverse proxy of the Web Server does not cache results.
Message was edited by:
JoeMcCabe

Similar Messages

  • Difference between ALBPM6.0 studio and ALBPM6.0 Enterprise server

    Difference between ALBPM6.0 studio and ALBPM6.0 Enterprise server.Can anyone help on this.
    Thanks in advance.

    Studio is the integrated development and test environment. As such, it's intended for designing processes, creating the UI for the screenflows, creating the objects and introspecting services that you want to tie into the process. Studio has a runtime engine that can be used by a single developer for testing purposes. It runs a little database called Derby and a Tomcat Web Server - again so the work done by a single developer can be tested on the developer's machine at runtime.
    Enterprise on the other hand is the production environment. Unlike Studio, it does not have the capability to develop projects. It is the runtime environment where many end users can concurrently run their instances on an industrial strength engine. It can run on a standalone JVM or an application server.
    Studio is for development. Enterprise if for Dev/QA/production environments where many users need to hit the engine and many instances need to run concurrently.

  • Difference between m.getFrom()[0] and m.getHeader["From"] - server lavabit

    I have differences between this fields. Why aren't they the same?
    Lavabit is single server where this methods does not return the same results. But if my client should be universal, I have to find all (I don't think it is possible) differences...
    -------------------------------------- DEBUG CODES -----------------------------
    debug code m.getFrom()
    m.getFrom size = 1
    ia.getAddress() [email protected]
    ia.getPersonal() null
    [email protected] adding [email protected] code m.getHeader("From")[0]
    stringggg aol <[email protected]>------------------------------------------ JAVA CODES ----------------------------------------------
    java code m.getFrom()
    if(m.getFrom() != null) {
                ArrayList<String> list = new ArrayList<String>();
                log.debug("m.getFrom size = "+m.getFrom().length);
                for(Address a : m.getFrom()) {
                    InternetAddress ia = (InternetAddress)a;
                    log.debug("ia.getAddress() "+ia.getAddress());
                    log.debug("ia.getPersonal() "+ia.getPersonal());
                    String temp = MimeUtility.decodeText(a.toString());
                    if(temp != null && temp.trim().length() > 0) {
                        log.debug(a.toString()+" adding "+temp);
    }java code m.getHeader("From")
    if(m.getHeader("From") != null) {
                for(String s : m.getHeader("From")) {
                    log.debug("stringggg "+s);
    }

    yes, of course I'm using Imap
    here you have debug code.
    09:22:58,575 DEBUG :1110 - ===============================getFrom()===================================================
    09:22:58,575 DEBUG :1111 -
    09:22:58,576 DEBUG :1111 -
    09:22:58,576 DEBUG :1111 -
    09:22:58,577 DEBUG :1111 -
    09:22:58,577 DEBUG :1111 -
    09:22:58,577 DEBUG :1111 -
    09:22:58,578 DEBUG :1111 -
    09:22:58,578 DEBUG :1112 - Calling getFrom() method
    A11 FETCH 5 (ENVELOPE INTERNALDATE RFC822.SIZE)
    * 5 FETCH (
    RFC822.SIZE
    1107
    INTERNALDATE
    "12-Apr-2010 02:22:11 -0500"
    ENVELOPE
    ("Mon, 12 Apr 2010 03:22:06 -0400" "subject" ((NIL NIL "login" "aol.pl")) ((NIL NIL "login" "aol.pl")) ((NIL NIL "login" "aol.pl")) ((NIL NIL "login" "lavabit.com")) NIL NIL NIL "<11618885.0.1271056927131.JavaMail.domain@domain>")
    A11 OK Fetch complete.
    09:22:58,949 DEBUG :1113 -
    09:22:58,949 DEBUG :1113 -
    09:22:58,950 DEBUG :1113 -
    09:22:58,950 DEBUG :1113 -
    09:22:58,950 DEBUG :1113 -
    09:22:58,951 DEBUG :1113 -
    09:22:58,951 DEBUG :1113 -
    09:22:58,952 DEBUG :1114 - ==================================================================================
    09:22:58,952 DEBUG :1116 - ===============================getHeader()===================================================
    09:22:58,952 DEBUG :1117 -
    09:22:58,953 DEBUG :1117 -
    09:22:58,953 DEBUG :1117 -
    09:22:58,953 DEBUG :1117 -
    09:22:58,954 DEBUG :1117 -
    09:22:58,954 DEBUG :1117 -
    09:22:58,954 DEBUG :1117 -
    09:22:58,578 DEBUG :1118 - Calling getHeader("From") method
    A12 FETCH 5 (BODY.PEEK[HEADER.FIELDS (From)])
    * 5 FETCH (
    BODY[HEADER.FIELDS (From)]
    {33}
    From: aol <[email protected]>
    A12 OK Fetch complete.
    09:22:59,324 DEBUG :1119 -
    09:22:59,324 DEBUG :1119 -
    09:22:59,324 DEBUG :1119 -
    09:22:59,325 DEBUG :1119 -
    09:22:59,325 DEBUG :1119 -
    09:22:59,325 DEBUG :1119 -
    09:22:59,326 DEBUG :1119 -
    09:22:59,326 DEBUG :1120 - ==================================================================================is it possible that header is not parsed correctly ? or there are missing information?

  • Difference between PAC reutrn "DIRECT" and Firefox' "no proxy for"?

    I'm trying to run a local IPython Notebook [1] in Firefox with a proxy-auto-config (PAC). It opens under http://localhost:8888/ I get an error message just as stated in [2] about a websocket connection failing (also when changing to http://127.0.0.1:8888/). Changing the advanced network properties to manual proxy settings with "no proxy for localhost, 127.0.0.1", the error disappears. I think that means Firefox tries to use a proxy for localhost when the PAC file is the active setting. I looked into the file and found
    function FindProxyForURL(url, host)
    if (shExpMatch(url, "http*://localhost/*")) return "DIRECT";
    if (shExpMatch(url, "http*://localhost:*/*")) return "DIRECT";
    if (shExpMatch(url, "http*://127.*.*.*/*")) return "DIRECT";
    So, if I understand this correctly, Firefox shouldn't be using a proxy for localhost, but I get a different behavior than if I use the manual setting ignoring localhost and 127.0.0.1 -- why is that? There is no other mention of localhost in the PAC file. The user of stackoverflow in [2] has noticed the same problem.
    I also tried in safe mode, no difference.
    [1] http://ipython.org/notebook.html
    [2] http://stackoverflow.com/questions/19245200/ipython-notebook-websocket-connection-failed
    Using Firefox ESR 31.5.3 with Windows 7

    Hi crunth ,
    It might be helpful to direct this to the right audience:
    If you can reproduce it, please file a bug in bugzilla.mozilla.org under ESR and talk to the mailing list listed:
    *[https://www.mozilla.org/en-US/firefox/31.3.0/releasenotes/]

  • Whats the difference between adobe flashplayer plugin,activex and adobe flashplayer?

    whats the difference between adobe flashplayer plugin,activex and adobe flashplayer?

    How does Flash Player differ on various browsers?

  • Difference between Abstract portal Component and JSPDyn page.

    Hi Experts,
    What is the difference between Abstract portal Component and JSPDyn page.
    Thanks,
    Jay.

    Hi,
    The PDK provides two methods for creating a portal component:
    Abstract Portal Component
    The Abstract Portal Component class offers a lean method for writing HTML commands to the Web client as well as for basic event handling. It is an implementation of the IPortalComponent, which is the central abstraction of the Portal Component API.
    DynPage
    The Page Processor Component, which extends the Abstract Portal Component, returns a DynPage. It provides more sophisticated event handling. Controls that produce events (such as buttons and checkboxes) have an event attribute that contains the name of the event handling method. This event handling method is invoked by the DynPage when it occurs.
    The JSPDynPage is an implementation of the DynPage and allows the use of the DynPage in combination with JSP (Java Server Pages).
    The PDK documentation and examples focus on the DynPage. Easier event handling and the separatation of content development (JSP) from application development (Java) make the DynPage a better choice for components with interaction and changing content.
    For more details, Refer thes thread,
    https://fortress.wa.gov/dop/portal/irj/portalapps/com.sap.portal.pdk.basic.portalcomponentimplementation/docs/jspdynpage.html
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f0b3e9d5-b2af-2a10-20ba-9f6ce6b1a27f
    Hop it helps..
    GS
    Edited by: Sathishkumar GS on Apr 14, 2008 2:07 PM

  • Difference between XI 3.0 and XI 7.0

    What is the Difference between XI 3.0 and XI 7.0?
    ( functionality & architecture wise)

    Hi,
    There is no new features added in PI7.0, if u have working on XI 3.0, PI7.0 Older versions the features same..
    But PI7.1 there is new changes u can find below.....
    Integarte SAP & Non-SAP Legacy system
    PI 7.1 is based on open, web service enabled standards and
    Integrate all SAP and non-SAP, A2A, B2B, BPM, service enabling and BAM
    Highlight of enhancement in PI7.1
    1) Enterprise Service repository (ESR) contains the design Registry
    2) Includes significant high-volume message processing is supported by message processed in a single
    Service call
    3) Also importantly support for asynchronous messaging based Reliable Messaging (WS-RM) for both
    Brokered communication between two systems will be supported in this release.
    4) Provide Service Registry benefits based on UDDI 3.0
    Enterprise Service Repository
    In PI7.1 ES Repository is at the heart of Enterprise SOA
    ES Repository is really the master data repository of service objects for Enterprise SOA
    It contains the definition & process of services
    In ES Repository has two parts, one is the ES Repository and the other being the Services Registry
    ES Repository (ESR) is really the master data repository of service objects for Enterprise SOA
    Besides service definition the ES Repository also provides you with a central point for finding and
    Managing service metadata from different sources, including application deployments - this is
    Where the Services Registry comes in. The Services Registry is the UDDI part of the ESR which
    Enables service consumers to find services
    The SAP XI Integration Repository used by process integration has become the basis of the central Enterprise Service Repository: powering Enterprise SOA and Service Enablement.
    Objects in the ES Repository include:
    Global Data Types (CCTS based)
    Process Component Models
    Executable Integration Processes (BPEL)
    Integration Scenarios
    Service Interfaces (Enterprise Services)
    Interface Mappings
    Enterprise Services built in the ES Repository
    Enterprise Services includes:
    Are built using a consistent enterprise model based on: GDTs, Process Components, and Business Objects.
    Are based on open standards.
    Are mapped to the Service Interface object in the ES Repository.
    Global Data Types - Building blocks for Service Interfaces
    Defined in the ES Repository
    Defined company-wide based on open standards (ISO 15000-5, UN/CEFACT CCTS)
    Reusable semantic building blocks for service interfaces and message types
    Process Component Models
    Drill down from high-level models to service interfaces and operations
    Process component architecture models enable SOA governance
    Process components expose on enterprise services, which are based on service operations
    Web Services Reliable Messaging (WS-RM)
    Asynchronous messaging (EO, EOIO) based on open WS standard
    Support Business Activity Monitoring (BAM)
    Embedded Event Infrastructure: Collecting, pre-filtering and publication of events across SAP and non-SAP systems.
    Event handling: cast the local event to an event proxy to send out event messages to event Consumers.
    Transaction SWF_BAM for event filtering via filter rules and event handling.
    Enhancement for Mapping
    Re-usable user defined functions.
    Look-up function reads multiple fields.
    Synchronous DB RFC lookups: Use graphical function to model look-ups.
    Specify mapping parameters at configuration time.
    Principle Propagation based on SAML
    This feature uses the WS-RM protocol.
    The implementation of this feature is based on the open standard SAML and can
    be used with backend systems that support the SAML technology.
    Forward user context from sender to receiver.
    Authorization check in receiving system based on original user.
    Support BAM Milestone Modeling (BPEL)
    Sub-Process Calls: Integration Process Call,
    User Interaction: User Decisions (initially not part of this project, but will be covered as well to draw the complete picture),
    Alert Categories
    Enhancements for Process Automation
    Human interaction:
    Integration paradigm (design/ configuration).
    Generic user decision.
    Language dependent texts for end-user display, enriched with variables.
    WS-BPEL 2.0 adoption: Preview and implementation BPEL4People, BPEL-SPE Simple user defined functions can be configured directly in the process.
    reward points if helpful...
    PrasHanT

  • Difference between 1.0.1 and 1.0.1_1

    What the difference between 1.0.1 and 1.0.1_1 webstart releases?
    Thx,
    Max

    From http://java.sun.com/products/javawebstart/docs/relnotes.html:
    Fixed bug 4465033: In the locales DE, IT, FR, SV, and JA, Java Web Start 1.0.1 will hang when attempting to display the security dialog for signed applications or applets. This bug has been fixed in Java Web Start 1.0.1_01.
    /Fredrik

  • Issue with Sun Java Web Proxy Server

    I am using Sun Java Web Proxy Server to test my webservice in https mode.(SSL mode).When i test the webservice in http mode,its working fine,but when I test it in SSL mode ,it is giving the following error:
    Unable to tunnel through localhost:8082. Proxy returns "HTTP/1.1 403 Proxy denies fulfilling the request"
    When I am requesting the webservice using the following parameters:
    a)-Dcom.yodlee.soap.services.url=https://localhost:1080/yodsoap/services
    b)-Dyodlee.sdk.https.proxyHost=localhost
    c)-Dyodlee.sdk.https.proxyPort=8082
    d)-Dcom.yodlee.soap.client.http11Enabled=1
    this parameters is used to set the client http connection to HTTP1.1 by setting the HTTP_TRANSPORT_VERSION.
    Detailed error message is as follows:
    Caused by: java.io.IOException: Unable to tunnel through localhost:8082. Proxy returns "HTTP/1.1 403 Proxy denies fulfilling the request"
         at org.apache.axis.AxisFault.makeFault(AxisFault.java:129)
         at org.apache.axis.transport.http.HTTPSender.invoke(HTTPSender.java:131)
         at org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:71)
         at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:150)
         at org.apache.axis.SimpleChain.invoke(SimpleChain.java:120)
         at org.apache.axis.client.AxisClient.invoke(AxisClient.java:180)
         at org.apache.axis.client.Call.invokeEngine(Call.java:2492)
         at org.apache.axis.client.Call.invoke(Call.java:2481)
         at org.apache.axis.client.Call.invoke(Call.java:2176)
         at org.apache.axis.client.Call.invoke(Call.java:2099)
         at org.apache.axis.client.Call.invoke(Call.java:1622)
         at com.yodlee.soap.core.login.CobrandLoginSoapBindingStub.loginCobrand(CobrandLoginSoapBindingStub.java:225)
         at com.yodlee.soap.core.login.CobrandLoginSoapClientProxy.loginCobrand(CobrandLoginSoapClientProxy.java:119)
         ... 1 more
    Caused by: java.io.IOException: Unable to tunnel through localhost:8082. Proxy returns "HTTP/1.1 403 Proxy denies fulfilling the request"
         at org.apache.axis.components.net.JSSESocketFactory.create(JSSESocketFactory.java:197)
         at org.apache.axis.transport.http.HTTPSender.getSocket(HTTPSender.java:157)
         at org.apache.axis.transport.http.HTTPSender.invoke(HTTPSender.java:114)
         ... 12 more
    This error message shows that its not able to get the socket connection to the server.Can anyone tell me the reason of it.
    If you need any more info do let me know.
    Regards,
    Somendra

    First of all, is there a reason why you are using jRockit?
    Since the issue appeared after upgrading the windows, the issue would potentially be in the interaction between JVM and OS.
    Also, there were some issues related to memory leak that were fixed in AS 8.2.
    May be you should try with a Sun JVM and AS 8.2.

  • Sun Java Web Proxy Server 4.0.12 is supports Websense Web Security

    Hello All,
    I am using Sun Java Web Proxy 4.0.12 server and installed in RedHat Linux 5.0 OS and I can found software for Websense Web Security aoftware to protect my users and filter the traffic.
    How can I integrate with Websense Web Security
    Thanks & looking forward hear from you guys
    Ifthekhar Javed
    Riyadh.

    We have migrated several reverse and acl proxy from 3.6 to 4.0.6 and have hit a few issues. If anyone has encountered these we would appriate input.
    First, we thought we had caching disabled in the GUI but the server.xml still have it set to "true" in the FILECAHE entry. Will changing the entry to "false" totally disable chaching?
    When we started the migrated proxy instances the server hit memory issues with swap being eaten up very quickly.
    Second issue is MaxProcs in the magnus.conf. In 3.6 MaxProcs set the number of processes to start and it now for determening the number of processors in the server for threading. We are currently on a server with 6 processors. Should MaxProcs be set to six?
    We will be migrating to Solaris 10 and then to a T2000 so we assume the setting will have to change for each of those migigrations.
    The third issue is, has anyone run 3.6 on Solaris 10 and then migrated to 4.0 later? Sun site shows 3.6 not tested on Solaris 10 but I am sure some one has tried it.

  • Difference between ISA 5.0 and ISA 7.0

    Dear ISA gurus,
      Can you please tell me what is the difference between ISA 5.0 and 7.0. Are there any changes in the ISA architechture. Is there any change in ISA Java API. Appreciate your pointers here.
    Thanks!
    Surya.

    Hi
    The ISA/ E-Commerce architecture remains the same , however we do have some functional enhancements.
    Enhancements in SAP CRM 2007
    1. The Web Catalog Management application has been replaced by the
    Catalog Management work centerthat is available with the WebChannel Manager role in SAP CRM
    The programming interface SAPTREX API replaces the SRET APIinterface that was used in SAP
    CRM 5.0
    2. New business process Sales Order Processing B2C for Service Providers in
    CRM Web Channel. This process covers:Selling of packages, rate plans,
    incentives, and enabling productsCollecting technical data Automatic contract creation for rate plan items
    prices)
    Management
    3.Dynamic field control for orders Search for items in orders,quotations, and order templates.
    4. Enhancements of the B2C Webshop UI: Catalog navigation, Webshop header, mini shopping basket,
    shopping basket, scale price display Verification word for integration with Interaction Center
    5. Additional way to display products in product catalog via block view
      Paging through list of (special and personalized) offers on Web shop home page
      Display of number of pages in catalog area browsing.
    Warm Regards,
    Sumit

  • Difference between SAP Access Control and IDM

    Hi Expert,
    I have one question What is the difference between SAP Access Control and SAP Identity Management ?

    Ali,
    That's a good question, but a tough one.
    While both applications can do most of what the other can do, it's a matter of specialization in my opinion.
    Access Control is all about managing and controlling access to SAP system roles and has the ability to report on role conflicts for compliance and reporting purposes. (I'm sure I'm leaving a lot out, but maybe a GRC / AC expert can fill in more details)
    SAP IDM is about managing the user life cycle with regards to landscape and enterprise systems. It will handle the creation, update and ultimately the removal (or de-provisioning) of users in SAP ABAP, SAP JAVA, LDAP, JDBC, and API based applications.  It will also do Role Management through a web based UI (User management is web based as well). and as of the latest Service pack for SAP IDM 7.2, it will do attestation (limited certification) as well. It is a definite upgrade to CUA as it will work with a greater variety of systems, include workflows and approvals.
    GRC will do some provisioning, but it's somewhat limited, as is IDM's compliance abilities.
    The applications are designed to work together, however it does not have a great track record and the integration is typically heavily modified to work as desired.
    If you have specific questions, feel free to post / DM.  Obviously I am more knowledgeable about IDM, but I'll be happy to help you in any way possible.
    Regards,
    Matt

  • What are differences between the target tablespace and the source tablespac

    The IMPDP command create so manay errors. But the EXAMPLE tablespace is transported to the target database successfully. It seems that the transported tablespace is no difference with the source tablespace.
    Why create so many errors?
    How to avoid these errors?
    What are differences between the target tablespace and the source tablespace?
    Is this datapump action really successfull?
    Thw following is the log output:
    [oracle@hostp ~]$ impdp system/oracle dumpfile=user_dir:demo02.dmp tablespaces=example remap_tablespace=example:example
    Import: Release 10.2.0.1.0 - Production on Sunday, 28 September, 2008 18:08:31
    Copyright (c) 2003, 2005, Oracle. All rights reserved.
    Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    Master table "SYSTEM"."SYS_IMPORT_TABLESPACE_01" successfully loaded/unloaded
    Starting "SYSTEM"."SYS_IMPORT_TABLESPACE_01": system/******** dumpfile=user_dir:demo02.dmp tablespaces=example remap_tablespace=example:example
    Processing object type TABLE_EXPORT/TABLE/TABLE
    ORA-39117: Type needed to create table is not included in this operation. Failing sql is:
    CREATE TABLE "OE"."CUSTOMERS" ("CUSTOMER_ID" NUMBER(6,0), "CUST_FIRST_NAME" VARCHAR2(20) CONSTRAINT "CUST_FNAME_NN" NOT NULL ENABLE, "CUST_LAST_NAME" VARCHAR2(20) CONSTRAINT "CUST_LNAME_NN" NOT NULL ENABLE, "CUST_ADDRESS" "OE"."CUST_ADDRESS_TYP" , "PHONE_NUMBERS" "OE"."PHONE_LIST_TYP" , "NLS_LANGUAGE" VARCHAR2(3), "NLS_TERRITORY" VARCHAR2(30), "CREDIT_LIMIT" NUMBER(9,2), "CUST_EMAIL" VARCHAR2(30), "ACCOUNT_MGR_ID" NU
    ORA-39117: Type needed to create table is not included in this operation. Failing sql is:
    ORA-39117: Type needed to create table is not included in this operation. Failing sql is:
    CREATE TABLE "IX"."ORDERS_QUEUETABLE" ("Q_NAME" VARCHAR2(30), "MSGID" RAW(16), "CORRID" VARCHAR2(128), "PRIORITY" NUMBER, "STATE" NUMBER, "DELAY" TIMESTAMP (6), "EXPIRATION" NUMBER, "TIME_MANAGER_INFO" TIMESTAMP (6), "LOCAL_ORDER_NO" NUMBER, "CHAIN_NO" NUMBER, "CSCN" NUMBER, "DSCN" NUMBER, "ENQ_TIME" TIMESTAMP (6), "ENQ_UID" VARCHAR2(30), "ENQ_TID" VARCHAR2(30), "DEQ_TIME" TIMESTAMP (6), "DEQ_UID" VARCHAR2(30), "DEQ_
    Processing object type TABLE_EXPORT/TABLE/TABLE_DATA
    . . imported "SH"."CUSTOMERS" 9.850 MB 55500 rows
    . . imported "SH"."SUPPLEMENTARY_DEMOGRAPHICS" 695.9 KB 4500 rows
    . . imported "OE"."PRODUCT_DESCRIPTIONS" 2.379 MB 8640 rows
    . . imported "SH"."SALES":"SALES_Q4_2001" 2.257 MB 69749 rows
    . . imported "SH"."SALES":"SALES_Q1_1999" 2.070 MB 64186 rows
    . . imported "SH"."SALES":"SALES_Q3_2001" 2.129 MB 65769 rows
    . . imported "SH"."SALES":"SALES_Q1_2000" 2.011 MB 62197 rows
    . . imported "SH"."SALES":"SALES_Q1_2001" 1.964 MB 60608 rows
    . . imported "SH"."SALES":"SALES_Q2_2001" 2.050 MB 63292 rows
    . . imported "SH"."SALES":"SALES_Q3_1999" 2.166 MB 67138 rows
    Processing object type TABLE_EXPORT/TABLE/GRANT/OWNER_GRANT/OBJECT_GRANT
    ORA-39083: Object type OBJECT_GRANT failed to create with error:
    ORA-01917: user or role 'USER1' does not exist
    Failing sql is:
    GRANT SELECT ON "HR"."REGIONS" TO "USER1"
    ORA-39083: Object type OBJECT_GRANT failed to create with error:
    ORA-01917: user or role 'EXAM_03' does not exist
    Failing sql is:
    GRANT SELECT ON "HR"."REGIONS" TO "EXAM_03"
    ORA-39083: Object type OBJECT_GRANT failed to create with error:
    ORA-01917: user or role 'USER1' does not exist
    Failing sql is:
    GRANT SELECT ON "HR"."COUNTRIES" TO "USER1"
    ORA-39083: Object type OBJECT_GRANT failed to create with error:
    ORA-01917: user or role 'EXAM_03' does not exist
    Failing sql is:
    GRANT SELECT ON "HR"."COUNTRIES" TO "EXAM_03"
    ORA-39083: Object type OBJECT_GRANT failed to create with error:
    ORA-01917: user or role 'USER1' does not exist
    Failing sql is:
    GRANT SELECT ON "HR"."LOCATIONS" TO "USER1"
    ORA-39083: Object type OBJECT_GRANT failed to create with error:
    ORA-01917: user or role 'EXAM_03' does not exist
    Failing sql is:
    GRANT SELECT ON "HR"."LOCATIONS" TO "EXAM_03"
    ORA-39083: Object type OBJECT_GRANT failed to create with error:
    ORA-01917: user or role 'USER1' does not exist
    Failing sql is:
    GRANT SELECT ON "HR"."DEPARTMENTS" TO "USER1"
    ORA-39083: Object type OBJECT_GRANT failed to create with error:
    ORA-01917: user or role 'EXAM_03' does not exist
    Failing sql is:
    GRANT SELECT ON "HR"."DEPARTMENTS" TO "EXAM_03"
    ORA-39083: Object type OBJECT_GRANT failed to create with error:
    ORA-01917: user or role 'USER1' does not exist
    Failing sql is:
    GRANT SELECT ON "HR"."JOBS" TO "USER1"
    ORA-39083: Object type OBJECT_GRANT failed to create with error:
    ORA-01917: user or role 'EXAM_03' does not exist
    Failing sql is:
    GRANT SELECT ON "HR"."JOBS" TO "EXAM_03"
    ORA-39083: Object type OBJECT_GRANT failed to create with error:
    ORA-01917: user or role 'USER1' does not exist
    Failing sql is:
    GRANT SELECT ON "HR"."EMPLOYEES" TO "USER1"
    ORA-39083: Object type OBJECT_GRANT failed to create with error:
    ORA-01917: user or role 'EXAM_03' does not exist
    Failing sql is:
    GRANT SELECT ON "HR"."EMPLOYEES" TO "EXAM_03"
    ORA-39083: Object type OBJECT_GRANT failed to create with error:
    ORA-01917: user or role 'USER1' does not exist
    Failing sql is:
    GRANT SELECT ON "HR"."JOB_HISTORY" TO "USER1"
    ORA-39083: Object type OBJECT_GRANT failed to create with error:
    ORA-01917: user or role 'EXAM_03' does not exist
    Failing sql is:
    GRANT SELECT ON "HR"."JOB_HISTORY" TO "EXAM_03"
    ORA-39112: Dependent object type OBJECT_GRANT:"OE" skipped, base object type TABLE:"OE"."CUSTOMERS" creation failed
    ORA-39112: Dependent object type OBJECT_GRANT:"OE" skipped, base object type TABLE:"OE"."CUSTOMERS" creation failed
    Processing object type TABLE_EXPORT/TABLE/INDEX/INDEX
    ORA-39112: Dependent object type INDEX:"OE"."CUSTOMERS_PK" skipped, base object type TABLE:"OE"."CUSTOMERS" creation failed
    ORA-39112: Dependent object type INDEX:"OE"."CUST_ACCOUNT_MANAGER_IX" skipped, base object type TABLE:"OE"."CUSTOMERS" creation failed
    ORA-39112: Dependent object type INDEX:"OE"."CUST_LNAME_IX" skipped, base object type TABLE:"OE"."CUSTOMERS" creation failed
    ORA-39112: Dependent object type INDEX:"OE"."CUST_EMAIL_IX" skipped, base object type TABLE:"OE"."CUSTOMERS" creation failed
    ORA-39112: Dependent object type INDEX:"PM"."PRINTMEDIA_PK" skipped, base object type TABLE:"PM"."PRINT_MEDIA" creation failed
    Processing object type TABLE_EXPORT/TABLE/CONSTRAINT/CONSTRAINT
    ORA-39112: Dependent object type CONSTRAINT:"OE"."CUSTOMER_CREDIT_LIMIT_MAX" skipped, base object type TABLE:"OE"."CUSTOMERS" creation failed
    ORA-39112: Dependent object type CONSTRAINT:"OE"."CUSTOMER_ID_MIN" skipped, base object type TABLE:"OE"."CUSTOMERS" creation failed
    ORA-39112: Dependent object type CONSTRAINT:"OE"."CUSTOMERS_PK" skipped, base object type TABLE:"OE"."CUSTOMERS" creation failed
    ORA-39112: Dependent object type CONSTRAINT:"PM"."PRINTMEDIA__PK" skipped, base object type TABLE:"PM"."PRINT_MEDIA" creation failed
    ORA-39112: Dependent object type CONSTRAINT:"IX"."SYS_C005192" skipped, base object type TABLE:"IX"."ORDERS_QUEUETABLE" creation failed
    Processing object type TABLE_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS
    ORA-39112: Dependent object type INDEX_STATISTICS skipped, base object type INDEX:"OE"."CUSTOMERS_PK" creation failed
    ORA-39112: Dependent object type INDEX_STATISTICS skipped, base object type INDEX:"OE"."CUST_ACCOUNT_MANAGER_IX" creation failed
    ORA-39112: Dependent object type INDEX_STATISTICS skipped, base object type INDEX:"OE"."CUST_LNAME_IX" creation failed
    ORA-39112: Dependent object type INDEX_STATISTICS skipped, base object type INDEX:"OE"."CUST_EMAIL_IX" creation failed
    ORA-39112: Dependent object type INDEX_STATISTICS skipped, base object type INDEX:"PM"."PRINTMEDIA_PK" creation failed
    Processing object type TABLE_EXPORT/TABLE/COMMENT
    ORA-39112: Dependent object type COMMENT skipped, base object type TABLE:"OE"."CUSTOMERS" creation failed
    ORA-39112: Dependent object type COMMENT skipped, base object type TABLE:"OE"."CUSTOMERS" creation failed
    ORA-39112: Dependent object type COMMENT skipped, base object type TABLE:"OE"."CUSTOMERS" creation failed
    ORA-39112: Dependent object type COMMENT skipped, base object type TABLE:"OE"."CUSTOMERS" creation failed
    ORA-39112: Dependent object type COMMENT skipped, base object type TABLE:"OE"."CUSTOMERS" creation failed
    ORA-39112: Dependent object type COMMENT skipped, base object type TABLE:"OE"."CUSTOMERS" creation failed
    ORA-39112: Dependent object type COMMENT skipped, base object type TABLE:"OE"."CUSTOMERS" creation failed
    ORA-39112: Dependent object type COMMENT skipped, base object type TABLE:"OE"."CUSTOMERS" creation failed
    ORA-39112: Dependent object type COMMENT skipped, base object type TABLE:"OE"."CUSTOMERS" creation failed
    Processing object type TABLE_EXPORT/TABLE/CONSTRAINT/REF_CONSTRAINT
    ORA-39112: Dependent object type REF_CONSTRAINT:"OE"."CUSTOMERS_ACCOUNT_MANAGER_FK" skipped, base object type TABLE:"OE"."CUSTOMERS" creation failed
    ORA-39083: Object type REF_CONSTRAINT failed to create with error:
    ORA-00942: table or view does not exist
    Failing sql is:
    ALTER TABLE "OE"."ORDERS" ADD CONSTRAINT "ORDERS_CUSTOMER_ID_FK" FOREIGN KEY ("CUSTOMER_ID") REFERENCES "OE"."CUSTOMERS" ("CUSTOMER_ID") ON DELETE SET NULL ENABLE
    ORA-39112: Dependent object type REF_CONSTRAINT:"PM"."PRINTMEDIA_FK" skipped, base object type TABLE:"PM"."PRINT_MEDIA" creation failed
    Processing object type TABLE_EXPORT/TABLE/TRIGGER
    ORA-39082: Object type TRIGGER:"HR"."SECURE_EMPLOYEES" created with compilation warnings
    ORA-39082: Object type TRIGGER:"HR"."SECURE_EMPLOYEES" created with compilation warnings
    ORA-39082: Object type TRIGGER:"HR"."UPDATE_JOB_HISTORY" created with compilation warnings
    ORA-39082: Object type TRIGGER:"HR"."UPDATE_JOB_HISTORY" created with compilation warnings
    Processing object type TABLE_EXPORT/TABLE/INDEX/FUNCTIONAL_AND_BITMAP/INDEX
    ORA-39112: Dependent object type INDEX:"OE"."CUST_UPPER_NAME_IX" skipped, base object type TABLE:"OE"."CUSTOMERS" creation failed
    Processing object type TABLE_EXPORT/TABLE/INDEX/STATISTICS/FUNCTIONAL_AND_BITMAP/INDEX_STATISTICS
    ORA-39112: Dependent object type INDEX_STATISTICS skipped, base object type INDEX:"OE"."CUST_UPPER_NAME_IX" creation failed
    Processing object type TABLE_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS
    ORA-39112: Dependent object type TABLE_STATISTICS skipped, base object type TABLE:"OE"."CUSTOMERS" creation failed
    ORA-39112: Dependent object type TABLE_STATISTICS skipped, base object type TABLE:"PM"."PRINT_MEDIA" creation failed
    ORA-39112: Dependent object type TABLE_STATISTICS skipped, base object type TABLE:"PM"."PRINT_MEDIA" creation failed
    ORA-39112: Dependent object type TABLE_STATISTICS skipped, base object type TABLE:"IX"."ORDERS_QUEUETABLE" creation failed
    Processing object type TABLE_EXPORT/TABLE/INDEX/DOMAIN_INDEX/INDEX
    Processing object type TABLE_EXPORT/TABLE/POST_INSTANCE/PROCACT_INSTANCE
    ORA-39112: Dependent object type PROCACT_INSTANCE skipped, base object type TABLE:"IX"."ORDERS_QUEUETABLE" creation failed
    ORA-39083: Object type PROCACT_INSTANCE failed to create with error:
    ORA-01403: no data found
    ORA-01403: no data found
    Failing sql is:
    BEGIN
    SYS.DBMS_AQ_IMP_INTERNAL.IMPORT_SIGNATURE_TABLE('AQ$_ORDERS_QUEUETABLE_G');COMMIT; END;
    Processing object type TABLE_EXPORT/TABLE/POST_INSTANCE/PROCDEPOBJ
    ORA-39112: Dependent object type PROCDEPOBJ:"IX"."AQ$_ORDERS_QUEUETABLE_V" skipped, base object type TABLE:"IX"."ORDERS_QUEUETABLE" creation failed
    ORA-39112: Dependent object type PROCDEPOBJ:"IX"."ORDERS_QUEUE_N" skipped, base object type TABLE:"IX"."ORDERS_QUEUETABLE" creation failed
    ORA-39112: Dependent object type PROCDEPOBJ:"IX"."ORDERS_QUEUE_R" skipped, base object type TABLE:"IX"."ORDERS_QUEUETABLE" creation failed
    ORA-39112: Dependent object type PROCDEPOBJ:"IX"."AQ$_ORDERS_QUEUETABLE_E" skipped, base object type TABLE:"IX"."ORDERS_QUEUETABLE" creation failed
    ORA-39112: Dependent object type PROCDEPOBJ:"IX"."ORDERS_QUEUE" skipped, base object type TABLE:"IX"."ORDERS_QUEUETABLE" creation failed
    Job "SYSTEM"."SYS_IMPORT_TABLESPACE_01" completed with 63 error(s) at 18:09:14

    Short of trying to then reverse-engineer the objects that are in the dump file (I believe Data Pump export files contain some XML representations of DDL in addition to various binary bits, making it potentially possible to try to scan the dump file for the object definitions), I would tend to assume that the export didn't include those type definitions.
    Since it looks like you're trying to set up the sample schemas, is there a reason that you wouldn't just run the sample schema setup scripts on the destination database? Why are you using Data Pump in the first place?
    Justin

  • Sun Java Web Proxy Server Routing to another Proxy Server

    hello every body
    i have installed Sun java web proxy server and we are get internet services from anotyher proxy server.
    how route SOCKS (Ports) to another proxy server)
    I mean 8080 web browsing is ok but my socks applicaiton like outlook is not working. how to Route my Sun Java Web proxy Server Socks Server to another Proxy Server.
    Please reply
    best regards
    Aamir Mughal
    [email protected]

    Dear ahmad@bzu,
    I suspect that your download is corrupted. Check the file size ( for me it shows up 89,328KB(and the installation went smooth). So a possible solution should be to download again and try the installation.

  • Difference  between XI 3.0 and PI 7.0

    Hi,
    What is difference  between XI 3.0 and PI 7.0
    Is this way we check version:
    System-- Staus -- Component Information --
    PI_BASIS -- 2005_1_700
    So the above system is PI 7.0 -- right?
    Regards

    Hi Rick,
    PI 7.0 works on WEBDYNPRO....They are basically the same technically but when SAP launched Netweaver 2004s , to bring all objects of Netweaver 2004s in Synch with the WAS version, XI was renamed to Process Integration (PI 7.0) .
    A comparison of the service packs in 2004 and 2004s;
    in 2004 - in 2004s
    SP12 & < - SP04
    SP13 + 14 - SP05
    SP15 - SP06
    SP16 - SP07
    SP17 - SP08
    SP18 - SP09
    XI3.0 is based on WAS(web application server)6.40 - NW2004
    PI7.0 is based on WAS(web application server)7.0 - NW2004's
    http://help.sap.com/saphelp_nw2004s/helpdata/en/d6/369142f195675ee10000000a155106/frameset.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/43/fb4cd3207c7063e10000000a1553f6/frameset.htm
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f36ce30f-0e01-0010-a89b-c158d07c44ff
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/ec19c05d-0501-0010-09a2-b6db51b5318d
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/5441afe5-0601-0010-dba5-dc5f9d5caa9d
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/c50cddbb-0601-0010-92a7-f2a40ca68e6d
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f027dde5-e16e-2910-97a4-f231046429f2
    Refer these threads as well:
    PI 7.0 and XI 3.0
    http adaptor on which factors we will use
    Diff between XI and PI
    Diff between XI and PI
    http adaptor on which factors we will use
    differences between xi 3.0 and pi 7.0
    Difference/ changes from XI 3.0 to PI 7.0
    give me main advantages of XI-7.0 TO XI-3.0
    XI 7.0 vs Xi 3.0
    XI/PI
    XI vs. PI
    XI 3.0 vs. PI (XI 7.0)
    Difference/ changes from XI 3.0 to PI 7.0
    moving from XI 3.0 to PI 7
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/xi/xi%2band%2bpi%2bglossary
    Regards,
    Vinod.

Maybe you are looking for

  • All music (eg itunes library) on an external hard drive

    hello... i was thinking...i have an imac....and three ipods...and eventually i will buy a ipod video (i now have two nanos--my kids actually--and a ipod photo60gig) ....i was considering having all of my music (itunes library) on an external HD ...so

  • Password protected PDF says it is downloaded but is not

    I am attempted to download a password protected PDF file using the newest version of Firefox and Adobe. Firefox says a file has been downloaded but the file is not seen in the download file or the download tab in Firefox. Any ideas what the problem i

  • Internet connection through WRT54GS

    I am moving my linksys router WRT54GS from my desktop with XP to my desktop with vista.  It will not allow me to access internet once I have connected my router.  I have entered cd and done 4 times, so I know it is connected correctly.  Any advice?

  • Slideshow on Elements 8

    I cannot get Slideshow to operate on Elements 8. I select three photos as a trial and as soon as I click on Create and then Slideshow , Elements closes down completely. has anyone else had this problem? Any ideas? Thank you.

  • Reader extensions option

    We recently purchased Livecycle ES4 and was wondering how to the set the pdf with reader extensions, there dont seem to be an option available of which It was readily available in our copy of Acrobat 9. Any help is appreciated