Grant the privilege to access HTTP with httpuritype

Hi all

With SQL Developer and DB - 12 c, perfectly executed the following:

Insert in the values of service)

1

, httpuritype('__http://api.mercadopublico.cl/servicios/v1/publico/ordenesdecompra.xml?fecha=02032014&ticket=DF140AC7-B227-44C7-95DD-FEA0AF61C542').getxml)

);

but when I write a procedure like this:

create or replace PROCEDURE GET_TICKET AS

BEGIN

Insert in the values of service)

1

, httpuritype('__http://api.mercadopublico.cl/servicios/v1/publico/ordenesdecompra.xml?fecha=02032014&ticket=DF140AC7-B227-44C7-95DD-FEA0AF61C542').getxml)

);

END GET_TICKET;


gives this error:

Connect to the ccs_xml database.

ORA-29273: HTTP request failed

ORA-24247: network access denied by access control list (ACL)

ORA-06512: at "SYS." HTTPURITYPE", line 38

ORA-06512: at "SYS." HTTPURITYPE", line 108

ORA-06512: at "CCS_XML. GET_TICKET', line 3

ORA-06512: at line 2

Process is complete.

Disconnection from the ccs_xml database.

How do I grant the necessary privileges.

your help is highly appreciated

Best regards

Carlos

Yes, that's what I alluded to in your feed: How to import xml data from a site http with PL/SQL

If you're on 11g, you may also need to set an ACL for the request.

See this article for an overview of what you need to do, it applies to 11g and beyond:

ORACLE-BASE-fine-grained Access to Services network in Oracle Database 11g Release 1

Tags: Oracle Development

Similar Questions

  • granting the privilege to the synonym?

    Hello gurus!

    I have the table in schema1.tabl1... .i m synonymous with creation in schema2 for schema1.tabl1... Now, schema2 I want to give select privilege on synonym to sechma3... I can do this?


    something similar to this

    Grant select on sechma2.tbl1 to schema3;

    When I do this I get an error saying insufficient privileges to tbl1... Any idea gurus?

    Thank you!!

    When you grant select on tabl1 to schema2, you must use the clause "WITH GRANT OPTION.
    Then Schema2 che grant select on tabl2 to other users.

    As schema1:

    grant select on tbl1 to schema2 with grant option;
    

    As schema2

    grant select on tbl1 to schema3 ;
    

    Max
    [My Italian blog Oracle | http://oracleitalia.wordpress.com/2010/02/07/aggiornare-una-tabella-con-listruzione-merge/]

  • grant the privilege on the SQL types to another schema

    I created two SQL types under the APP_OWNER scheme as follows:

    CREATE or REPLACE TYPE t_instr_info as an OBJECT
    (NUMBER IMNT_KY)

    CREATE or REPLACE TYPE t_tab_instr_info
    AS THE t_instr_info TABLE

    The privilege on these two types as follows:

    Grant execute on t_tab_instr_info to vprods_app2

    Grant execute on t_instr_info to vprods_app2

    The stored procedures must be developed in the scheme of the APP. In the scheme of the APP, I need to call this type to declare the array as follows:

    v_tab_output app_owner.t_tab_instr_info: = app_owner.t_tab_instr_info ();

    I get a PLS-00905: object owner.t_tab_instr_info is not valid

    I tried giving EVERYTHING instead of run, but the problem persists.

    Help, please. As a policy of all objects including tables, types etc. must be app_owner and the app schema privileges

    Thank you in advance.

    One thing I forgot to mention (since you do not explicitly specify how you are granting things) is that you need to issue DIRECT subsidies (as in my example above), you cannot compile the code if you have subsidies via a role (but you can execute anonymous blocks).

    This is an example

    create user APP_OWNER identified by APP_OWNER default tablespace users temporary tablespace temp;
    grant connect, resource, create role to APP_OWNER;
    
    create user APP_SCHEMA identified by APP_SCHEMA default tablespace users temporary tablespace temp;
    grant connect, resource to APP_SCHEMA;
    
    connect APP_OWNER/APP_OWNER@xe
    
    create role for_apps;
    
    CREATE OR REPLACE TYPE t_instr_info as OBJECT
    (IMNT_KY NUMBER);
    / 
    
    CREATE OR REPLACE TYPE t_tab_instr_info
    AS TABLE OF t_instr_info;
    / 
    
    grant execute on t_instr_info to for_apps;
    grant execute on t_tab_instr_info to for_apps;
    
    grant for_apps to app_schema;
    
    connect APP_SCHEMA/APP_SCHEMA@xe
    APP_SCHEMA_XE?create or replace procedure test
      2  as
      3     v_tab_output app_owner.t_tab_instr_info := app_owner.t_tab_instr_info();
      4  begin
      5     null;
      6  end;
      7  /
    
    Warning: Procedure created with compilation errors.
    
    Elapsed: 00:00:01.17
    APP_SCHEMA_XE?show err
    Errors for PROCEDURE TEST:
    
    LINE/COL ERROR
    -------- -----------------------------------------------------------------
    3/17     PL/SQL: Item ignored
    3/17     PLS-00201: identifier 'APP_OWNER.T_TAB_INSTR_INFO' must be
             declared
    
    APP_SCHEMA_XE?declare
      2     v_tab_output app_owner.t_tab_instr_info := app_owner.t_tab_instr_info();
      3  begin
      4     null;
      5  end;
      6  /
    
    PL/SQL procedure successfully completed.
    
    Elapsed: 00:00:01.17
    
  • How to grant the privilege to display the code of the package only

    Hello

    We do not have a privilege to run packages in the production database. Because of this we cannot see also package code.

    But we have to analyze the source code while solving the problem. Is it possible to see the package code with privilege run in PL/SQL developer tool.

    We use the tool developer Pl/SQL and database version 8i.

    [I know how to get boat with DBA_SOURCE code. Please suggest me another way.]

    Thank you
    Suri

    Create a procedure that fills a temporary table with the source code of a specified object will not be much help to anyone trying to navigate the schema using PL/SQL Developer, TOAD etc, especially if they have a requirement of the company to resolve the problems of production within a human lifetime.

    GRANT SELECT_CATALOG_ROLE TO name_of_support_role;
    

    and enable the option 'use DBA views if possible' in PL/SQL Developer Tools > preferences > Options.

  • Cannot grant the privilege on the column the user through role?

    Hello:

    From what I read in the docs I should be able to create a role that has privileges to UPDATE a column in a table and then assign this role to a user, that should be able to update the column in the table. I get "insufficient privileges" when I try which, although it works as advertised if I book directly to the user. I read the docs wrong?

    WATCH session:
    CREATE TABLE "GAFF"."FOO2" 
    
       (    "F1" NUMBER, 
    
        "F2" NUMBER, 
    
        "F3" VARCHAR2(50), 
    
        "F4" NUMBER, 
    
         CONSTRAINT "FOO2_PK" PRIMARY KEY ("F1")
    
    /
    
    
    
    create role foo2_u_f2;
    
    
    
    grant update (f2) on foo2 to foo2_u_f2 ;
    
    
    
    grant select on gaff.foo2 to play ;
    
    
    
    grant foo2_u_f2 to play ;
    GAME session:
    update gaff.foo2 set f2 = 1 where f1 = 1
    ORA-01031: insufficient privileges

    Probably foo2_u_f2 role is not a default role to the user's game. Initially, when the user is created the default role is set to ALL. Later, it can be changed to NONE or set of roles. Log in as a game and question:

    select * from session_roles
    /
    

    I bet that you won't see any foo2_u_f2. Then the question:

    select granted_role,default_role from user_role_privs
    /
    

    This will give you a list of the user default set roles. Another question, you can:

    set role foo2_u_f2
    /
    

    This will allow the role of foo2_u_f2 in the current session. Or you can identify you as privileged user and issue AMENDED the USER default ROLE..., foo2_u_f2.

    SY.

  • sec_error_invalid_key using https to the Firefox 33 access router

    33 Firefox has tightened its security settings. 33 FF on my Vista system now relates the sec_error_invalid_key trying to enter administration on my old Linksys WRT120N (version 1, latest firmware 1.2.11) router. Versions of Firefox, up and including 32 do not have this problem. 32 FF on my OS X not related the problem I don't have not upgraded FF here yet. IE on my Vista system also has the problem. Google Chrome is not the problem.

    A web article I found indicates that 33 FF now consider less than 2048 to be insecure key lengths, and it also provides is no longer the option to ignore this insecurity and still access the site (the router in this case) when he thinks https is not safe.

    My suggestion/request is that an update of the firmware should be provided for this router that includes a key of length over long which FF 33 will accept to be sure. (I would also like to see FF still accept the shorter keys, but this isn't a problem for the Linksys, well if you start to see this problem a lot of users, you can try to push FF to offer an option so that its users can accept the shorter keys).

    Thank you.

    -steve

    I heard that the FF 33 is problems with certificates Self sing who have most of the routers. This affects other secure sites, not only the Linksys routers configuration pages. If FF 33 can't stand low signatures, you can consider using another web browser for now. You can also change the router to access http to https to avoid this error on 33 FF (recommended for local access only).

  • [8i] grant of privileges on a service to a user

    My apologies if this is a stupid question, but I don't usually have to do...

    My normal username doesn't have privileges to perform a function that I need to use, so I logged in as SYSTEM and tried to grant the privilege of my normal username by using the following:
     GRANT EXECUTE ON SCHEMA.FUNCTION_NAME TO <username>;
    But he gave me an ORA-01031: insufficient privileges...

    If the SYSTEM does not have the privileges to grant that... so what should I do? I don't have the password for the user who owns the service, but I know that I can run the function with a different user name.

    user11033437 wrote:
    My apologies if this is a stupid question, but I don't usually have to do...

    My normal username doesn't have privileges to perform a function that I need to use, so I logged in as SYSTEM and tried to grant the privilege of my normal username by using the following:

     GRANT EXECUTE ON SCHEMA.FUNCTION_NAME TO ;
    

    But he gave me an ORA-01031: insufficient privileges...

    If the SYSTEM does not have the privileges to grant that... so what should I do? I don't have the password for the user who owns the service, but I know that I can run the function with a different user name.

    I'm sure that (but not certain) that you can grant permissions to others of the schema using sys/system up to version 9, so you would need to get the user that has the function to grant access.

    Why you do not have the password... or why you can't get it? There are ways to access the schema (assuming that you have access to the sys/system), but I'm not really a fan of support without a good reason :)

  • How to grant object privileges to a user?

    Hello

    I use the Data Modeler 4.0.3 and I'm trying to find out where I can assign object privileges to a user that you create in the physical model. I see a "Access Privileges" tab in the user properties window, but I don't see an 'object of privileges' a.

    Where you define the privileges of the object for a new user? For example, I would grant the privilege to execute on DBMS such as DBMS_LOCK, DBMS_ALERT, or packages. Is there a way I can do? Should I import from a database?

    Thank you

    Hello

    Double-click the user name that you want to grant privileges in the physical model (or right-click and select properties), then general tab on permissions. You must at least have the name of the package in the physical model in order to be able to grant privileges.

    Best regards

    Heli

  • How to give the privilege for the task to the role or named users

    I am for the first time using dbms_scheduler instead of dbms_job.

    We have a situation where multiple users have privilege to run and change / delete a created with dbms_scheduler job.

    The job is running and I'm able to administer as a creator/owner there but is not able to grant privileges to other users.

    I executed:

    -Grant create any job to < user

    -Grant manage scheduler < user >
    but without success.

    When reading the documentation is seems it should be possible to grant privilege on work using alter < user > my_job grant but I don't get that ORA-00990: missing or invalid privilege

    I tried to use dbms_scheduler.create_job.
    What do I have to use dbms_scheduler.create_program?
    With the help of 11.2.0.2.0 (linux)
    I missed something fundamental?

    Regards Niclas Eklund

    Hi Niclas,

    Yes, you can grant the privilege to alter on a job. As pointed Asy, maybe you just forgot the key word WE?

    That being said, the privilege of CREATING a TASK also allows you to edit any job. However, this privilege is very powerful, so you should be very careful before you give him.

  • Grant create session, grant no privilege to aquser-&gt; ORA-01031?

    Hello

    How can it be possible that despite all the privileges a user always generates ORA-01031: insufficient privileges?

    Grant create session, granted a privilege of aquser


    Dequeue messages with java->

    oracle.jms.AQjmsException: JMS-120: Homtningen Fron k÷n utf÷rdes inte
    at oracle.jms.AQjmsError.throwEx(AQjmsError.java:315)
    at oracle.jms.AQjmsConsumer.jdbcDequeue(AQjmsConsumer.java:1630)
    at oracle.jms.AQjmsConsumer.receiveFromAQ(AQjmsConsumer.java:1037)
    at oracle.jms.AQjmsConsumer.receiveFromAQ(AQjmsConsumer.java:962)
    at oracle.jms.AQjmsConsumer.receiveFromAQ(AQjmsConsumer.java:940)
    at oracle.jms.AQjmsConsumer.receive(AQjmsConsumer.java:792)
    at AQSub.AQReceiver (AQSub.java:188)
    at AQSub.eval (AQSub.java:130)
    at com.tibco.im.wf.Job.step(Job.java:986)
    at com.tibco.im.wf.Job.checkStep(Job.java:822)
    to com.tibco.im.wf.NewJobDispatcher$ JobCourier.runx (NewJobDispatcher.java:240)
    to com.tibco.im.wf.NewJobDispatcher$ JobCourier.run (NewJobDispatcher.java:207)
    Caused by: java.sql.SQLException: ORA-01031: otillrocklig beh÷righet

    at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:74)
    at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:131)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:204)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:455)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:406)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:399)
    at oracle.jdbc.driver.T4Caqdq.receive(T4Caqdq.java:431)
    at oracle.jdbc.driver.T4CConnection.doDequeue(T4CConnection.java:3369)
    at oracle.jdbc.driver.PhysicalConnection.dequeue(PhysicalConnection.java:9142)
    at oracle.jdbc.driver.PhysicalConnection.dequeue(PhysicalConnection.java:9189)
    at oracle.jms.AQjmsConsumer.jdbcDequeue(AQjmsConsumer.java:1305)
    ... more than 10

    GRANT CREATE SESSION, aq_user_role to my_aq_user_role.

    Well, have you seen this?

    4.2.1.2 the user role
    You should avoid granting AQ_USER_ROLE, because this role provides enough privileges to the queue or the print queue on the 8, 1-style queues or superiors.

    Since you have not provided no version information, it's a little hard to know if it is applicable to your case. However, this should be a case of applying logic/troubleshooting/debugging skills to determine what privileges are missing.

    Kind regards

    Mark

    EDIT: I realize that you have explicitly granted the privileges ENQUEUE_ANY and DEQUEUE_ANY, but have you followed the other suggestions EXECUTE, for example right on DBMS_AQ?

    Published by: Mark Williams on May 28, 2010 11:37

  • HTTPS access to the router does not work with Firefox 33.0

    HTTPS access to the router Linksys wrt610n has worked so that Firefox 32.0.3 the dd - wrt software of this router is self-signed certificate with the public key RSA = 512 bits (Yes, it's too short today). From Firefox 33.0 and whose 34, 35, 36-access https does not work. It is desirable to restore https behavior as in Firefox 32.0.3 (with warning and ability to do security exception). Please see the attachment with a https query result in different versions of Firefox.
    Thank you.

    Hello, make suggestions to the https://support.mozilla.org/en-US/questions/1038487 help in your case?

  • Cannot access the internal network of VPN with PIX 506th

    Hello

    I seem to have a problem with the configuration of my PIX. I ping the VPN client from the network in-house, but cannot cannot access all the resources of the vpn client. My running configuration is the following:

    Building configuration...

    : Saved

    :

    6.3 (5) PIX version

    interface ethernet0 car

    Auto interface ethernet1

    ethernet0 nameif outside security0

    nameif ethernet1 inside the security100

    activate the encrypted password of N/JZnmeC2l5j3YTN

    2KFQnbNIdI.2KYOU encrypted passwd

    hostname SwantonFw2

    domain name * *.com

    fixup protocol dns-length maximum 512

    fixup protocol ftp 21

    fixup protocol h323 h225 1720

    fixup protocol h323 ras 1718-1719

    fixup protocol http 80

    fixup protocol rsh 514

    fixup protocol rtsp 554

    fixup protocol sip 5060

    fixup protocol sip udp 5060

    fixup protocol 2000 skinny

    fixup protocol smtp 25

    fixup protocol sqlnet 1521

    fixup protocol tftp 69

    names of

    access-list outside_access_in allow icmp a whole

    allow_ping list access permit icmp any any echo response

    allow_ping list all permitted access all unreachable icmp

    access-list allow_ping allow icmp all once exceed

    the INSIDE-IN access list allow inside the interface tcp interface outside

    list access to the INSIDE-IN permit udp any any eq field

    list access to the INSIDE-IN permit tcp any any eq www

    list access to the INSIDE-IN permit tcp any any eq ftp

    list access to the INSIDE-IN permit icmp any any echo

    the INSIDE-IN permit tcp access list everything all https eq

    permit access ip 192.168.0.0 list inside_outbound_nat0_acl 255.255.255.0 192.168.240.0 255.255.255.0

    swanton_splitTunnelAcl ip access list allow a whole

    outside_cryptomap_dyn_20 ip access list allow any 192.168.240.0 255.255.255.0

    no pager

    Outside 1500 MTU

    Within 1500 MTU

    192.168.1.150 outside IP address 255.255.255.0

    IP address inside 192.168.0.35 255.255.255.0

    alarm action IP verification of information

    alarm action attack IP audit

    IP pool local VPN_Pool 192.168.240.1 - 192.168.240.254

    location of PDM 0.0.0.0 255.255.255.0 outside

    location of PDM 192.168.1.26 255.255.255.255 outside

    location of PDM 192.168.240.0 255.255.255.0 outside

    PDM logging 100 information

    history of PDM activate

    ARP timeout 14400

    Global 1 interface (outside)

    NAT (inside) 0-list of access inside_outbound_nat0_acl

    NAT (inside) 1 192.168.0.0 255.255.255.0 0 0

    Access-group outside_access_in in interface outside

    group-access INTERIOR-IN in the interface inside

    Route outside 0.0.0.0 0.0.0.0 192.168.1.1 1

    Timeout xlate 0:05:00

    Timeout conn 01:00 half-closed 0:10:00 udp 0: CPP 02:00 0:10:00 01:00 h225

    H323 timeout 0:05:00 mgcp 0: sip from 05:00 0:30:00 sip_media 0:02:00

    Sip timeout - disconnect 0:02:00 prompt Protocol sip-0: 03:00

    Timeout, uauth 0:05:00 absolute

    GANYMEDE + Protocol Ganymede + AAA-server

    AAA-server GANYMEDE + 3 max-failed-attempts

    AAA-server GANYMEDE + deadtime 10

    RADIUS Protocol RADIUS AAA server

    AAA-server RADIUS 3 max-failed-attempts

    AAA-RADIUS deadtime 10 Server

    AAA-server local LOCAL Protocol

    Enable http server

    http 192.168.0.0 255.255.255.0 inside

    No snmp server location

    No snmp Server contact

    SNMP-Server Community public

    No trap to activate snmp Server

    enable floodguard

    Permitted connection ipsec sysopt

    Crypto ipsec transform-set ESP-DES-MD5 esp - esp-md5-hmac

    Crypto ipsec transform-set ESP-DES-SHA esp - esp-sha-hmac

    Dynamic crypto map outside_dyn_map 20 match address outside_cryptomap_dyn_20

    Crypto-map dynamic outside_dyn_map 20 the transform-set ESP-DES-MD5 value

    map outside_map 65535-isakmp ipsec crypto dynamic outside_dyn_map

    client authentication card crypto outside_map LOCAL

    outside_map interface card crypto outside

    ISAKMP allows outside

    ISAKMP identity address

    part of pre authentication ISAKMP policy 20

    encryption of ISAKMP policy 20

    ISAKMP policy 20 md5 hash

    20 2 ISAKMP policy group

    ISAKMP duration strategy of life 20 86400

    Swanton vpngroup address pool VPN_Pool

    vpngroup swanton 192.168.1.1 dns server

    vpngroup swanton splitting swanton_splitTunnelAcl tunnel

    vpngroup idle 1800 swanton-time

    swanton vpngroup password *.

    Telnet timeout 5

    SSH timeout 5

    Console timeout 0

    dhcpd address 192.168.0.36 - 192.168.0.254 inside

    dhcpd dns 8.8.8.8 8.8.4.4

    dhcpd lease 3600

    dhcpd ping_timeout 750

    dhcpd outside auto_config

    dhcpd allow inside

    scott hwDnqhIenLiwIr9B of encrypted privilege 15 password username

    username password encrypted ET3skotcnISwb3MV privilege 2 norm

    username password tarmbrecht Zre8euXN6HxXaSdE encrypted privilege 2

    username, password jlillevik 9JMTvNZm3dLhQM/W encrypted privilege 2

    username privilege 15 encrypted password 49ikl05C8VE6k1jG ruralogic

    username bzeiter 1XjpdpkwnSENzfQ0 encrypted password privilege 2

    name of user mwalla encrypted password privilege 2 l5frk9obrNMGOiOD

    username heavyfab1 6.yy0ys7BifWsa9k encrypted password privilege 2

    username heavyfab3 6.yy0ys7BifWsa9k encrypted password privilege 2

    username heavyfab2 6.yy0ys7BifWsa9k encrypted password privilege 2

    username djet encrypted password privilege 2 wj13fSF4BPQzUzB8

    username, password cmorgan y/NeUfNKehh/Vzj6 encrypted privilege 2

    username password cmayfield Pe/felGx7VQ3I7ls encrypted privilege 2

    username privilege 2 encrypted password zQEQceRITRrO4wJa jeffg

    Terminal width 80

    Cryptochecksum:9005f35a85fa5fe31dab579bbb1428c8

    : end

    [OK]

    Any help will be greatly appreciated

    BJ,

    You try to access resources behind the inside interface network?

    IP address inside 192.168.0.35 255.255.255.0

    If so, please make the following changes:

    1 SWANTON_VPN_SPLIT permit access ip 192.168.0.0 list 255.255.255.0 192.168.240.0 255.255.255.0

    2-no vpngroup swanton splitting swanton_splitTunnelAcl tunnel

    Swanton vpngroup split tunnel SWANTON_VPN_SPLIT

    outside_cryptomap_dyn_20 3-no-list of ip access allowing any 192.168.240.0 255.255.255.0

    4 - isakmp nat-traversal 30

    Let me know how it goes.

    Portu.

    Please note all useful posts

  • Adobe Error 1303.  The installer has sufficient privileges to access this directory:

    Adobe Error 1303.  The installer has sufficient privileges to access this directory: C:\Programs Files (x 86) \Common Files\Adobe\ARM\1.0 when you try to update Adobe Reader 10.01 on a Windows 7, 64-bit machine.  What I found is that once I have let Adobe Updater download updates, the 1.0 folder is created under the ARM.  As long as I don't start the update, I can access this folder.  Once housing starts to update, if I try to access this folder I get an access denied message and the installation is defective with the 1303 error message.  I tried to make me the owner of the folder, try KB947821 running, turned off the firewall and close UAC, none of them running.  My guess is that there is a problem with the update itself changing the security.

    Someone has other ideas beyond to wait for the next update, that will hopefully work better than this one?

    Thank you!

    SMertz74

    Would it be possible for you to try my suggestions in the similar topic?

    http://forums.Adobe.com/message/3751776#3751776

  • Firefox is unable to access all the pages of an HTTPS site.

    We have a computer cannot access all the pages on a specific HTTPS site. I don't want to advertise the URL here. "" We can connect to the site and navagate to half pages, but the other half give ' (error code: sec_error_unknown_issuer). We have uninstalled FF and spilled the appdata. Renamed the cert db and he had to recreate. IE working on it from that computer to the website. All computers in the office can access the web site without any problems, some using ESR some with regular FF. This system uses the latest version of FF ESR, but we also tried the regular version. The only thing we haven't tried is disable the AV (Symantic). One thing I noticed, is that the URL of this web site are extremely long.

    Why the FF honors cert for some pages but not others. It also does us not add an exception.

    Thank you

     Mesept
    

    The first thing I checked was the cert chain, all certificates are valid. Time on computers is very good, the second thing I checked.

    As I said in a previous post, a few pages work, some do not which means that certificates are valid for certain pages, may not be a problem of cert, sometimes they work. Same site also works with IE and chrome on the same systems.

    Cannot ignore and accept the cert in he won't let me. Which is off and I don't know how to turn it on.

    In any case, I submitted a ticket for the owners of the website last week and now everything works.

    Thanks for the answers that I don't have a resolution, I guess that developers found a bug and fixed it.

  • System 32 error (0x00000020): "the process cannot access the file because it is being used by another process.". The operation to open the file will fail with error - 1032 (0xfffffbf8(JET_errFileAccessDenied))"

    Original title: svchost (1020)

    Event type: error
    Event source: ESENT
    Event category: general
    Event ID: 490
    Date: 2010-10-19
    Time: 14:51:34
    User: n/a
    Computer: ROB
    Description:
    Svchost (1020) an attempt to open the file "C:\WINDOWS\system32\CatRoot2\{127D0A1D-4EF2-11D1-8608-00C04FC295EE}\catdb" for read / write access failed with the error System 32 (0x00000020): "the process cannot access the file because it is being used by another process.".  The operation to open the file will fail with error - 1032 (0xfffffbf8(JET_errFileAccessDenied)).

    For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.

    Hi Robrw,

    1. when exactly you receive this error?

    2. don't you make changes to the computer before this problem?

    You can try to rename the catroot2 folder and check if it helps.

    Step 1:

    a. Click Start and in run type C:\windows\system32 and click ok

    b. find the Catroot2 folder. Right-click on Catroot2 and rename it to Catroot2.old

    If you are not able to do the normal mode, try to start in safe mode and rename

    Check out the link for more information on starting your computer in SafeMode below:

    http://support.Microsoft.com/kb/315222

    Step 2:

    If you are unable to access the catroot2 folder, and then try to change the permissions on the files and check if it helps.

    See the following article:

    How to capture a file or a folder in Windows XP

    http://support.Microsoft.com/kb/308421

    Step 3:

    You can also try to temporarily disable third-party security software and firewalls and check what is happening.

    Note: Activate the security software after the resolution of the problem.

    Hope this information is useful.

    Jeremy K
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

    If this post can help solve your problem, please click the 'Mark as answer' or 'Useful' at the top of this message. Marking a post as answer, or relatively useful, you help others find the answer more quickly.

Maybe you are looking for

  • Error message "system cooling fan does not ' (90 (b) start.

    My window common envy15 7 gives me this message on statup with warnings from the interntant cases or damage the system. The fan is indicated as 90 b

  • Where my forward and back arrows?

    When I first started using the phone, there where the keyboard back and forward arrows to move the cursor in the text. It was a great feature, but somewhere in the last month he went. Any help on how to get back them? IPhone 6 9.2.1

  • USB 6008 pull down resistance

    Hello I have a USB-6008 read a signal to 5V on one of DIO ports. The 5V is or the circuit is open. Since the 6008 traction has internal open ups resembles a true TTL signal. I think using a 850 Ohm pull down on the output line.  I think that should l

  • How to re - create "show the desktop" on the quick launch in windows vista toolbar?

    Yesterday, I used the "show desktop icon" to close all open windows and show me immediately my PC desktop.  Today, this icon has disappeared. The icon used to be on the section area of quick launch in my toolbar at the bottom of my screen.  I want to

  • Cannot get icons downloads folder

    Hello I connected my Blackberry Storm 1 to my computer to test both apps via the Eclipse debugger.  They went into the downloads folder.  I wanted to remove them. I used the menu/delete to remove them.  However, two generic icons remained with the na