Wallet

Hi Everyone,
I am using 11g R 2, jsut created walled (Standard) using OWM (Wallet Manager) edited the sqlnet.ora file with the location of the wallet directory and when trying to open the wallet in sqlplus I get the following error
SQL> alter system set encryption wallet open identified by "password";
alter system set encryption wallet open identified by "password"
ERROR at line 1:
ORA-28367: wallet does not exist
Any help guys I am trying to set TDE.....

Does the wallet directory exist ?
Please post your sqlnet.ora
# Set the parameter in sqlnet.ora, if not set already to specify the location of the wallet:
ENCRYPTION_WALLET_LOCATION=
(SOURCE=
(METHOD=FILE)
(METHOD_DATA=
(DIRECTORY= /opt/oracle/orawall)
The directory /opt/oracle/orawall should already exist; if not then you should create it.
# Create the wallet:
alter system set encryption key authenticated by "mypass"

Similar Messages

  • Unable to import the user certificate into the Oracle Wallet Manager

    Hi,
    I am configuring the External Authentication plugin using the password filters.
    i am using the version 10.1.0.5.0 version of Oracle Wallet manager
    inorder to do that i am enabling the SSL mode.
    to enable the SSL mode i followed the some steps in OWM and OCA admin and user console.
    when i approved a certificate as admin and importing to the Oracle Wallet Manager, i got an error that
    User Certificate Installation failed.
    Possible errors:
    - Input was not a valid certificate
    - No matching certificate request found
    - CA certificate needed for certificate chain not found.
    Please install it first
    can anyone help me how to resolve this problem.

    hi,
    thanks for your reply pramod
    I tried to import the two certificate files(rootca.crt and server.crt). but i am got the same error.
    what may be the problem.

  • Wallet - without SSO File

    Hello
    I'd create a oracle wallet and i can connect without a password to the database. But now I'd delete the sso-file because I'll open the wallet with the statment "alter system.....". But I can't connect now als sys or system user. (Connect / as sysdba). I get always the message: "TNS: Wallet open failed".
    What's wrong?
    Thanks....
    roger
    Edited by: Street on 13.04.2012 01:45

    Hi Roger,
    you moust change sqlnet.ora. Disable wallet lines.
    FJH
    Sorry I did not read exactly. Above reply is invalid.
    FJH
    Edited by: user8684352 on 17.04.2012 04:49

  • How to print out wallet size photos on 6510 e-all-in-one series photosmart printer

    want to print out wallet size photos (size 3 and a half x 2 and a half).  I have windows XP and my printer is the photosmart 6510 e-all-in-one series

    You will have to change the settings in the photo editing software and put 2 wallets on a 4x6 or 9 wallets on a full page.  The photo tray will not take paper smaller than 4x6.
    SandyBob
    If I have solved your issue, please feel free to provide kudos and make sure you mark this thread as solution provided!
    Although I work for HP, my posts and replies are my own opinion and not those of HP
    1-800-474-6836

  • Error reading 'ods' passwd from wallet!!!!!

    I did:
    c:\>oidmon connect=hahldap start
    (No errors).
    C:\>oidctl connect=hahldap server=oidldapd host=192.168.1.100 instance=1 start
    gsluwpwaGetWalletPasswd: Opening 2 file failed with error 11005
    [gslusw]:Error reading 'ods' passwd from wallet
    [gsdsiConnect]:Error reading 'ods' passwd from wallet
    Could not connect to the Database.
    What could be the reason??? I am running on WinXP Is it the problem?
    Installation went fine for both Metadata repository and for the Oracle Internet Directory.
    Note: I couldn't find the service OracleDirectoryService_xxx at all, does that mean the installation is incorrect?
    thanks.

    Any resolution here :
    My listener is up
    My DB is up and accessible, but when issuing the following command I get following error .
    Any chance you can offer some advice ?
    oidmon start
    2006/03/01:12:58:32 * gsluwpwaGetWalletPasswd: Opening 3 file failed with error 11005
    2006/03/01:12:58:32 * [gslusw]:Error reading 'ods' passwd from wallet
    2006/03/01:12:58:32 * [gsdsiConnect]:Error reading 'ods' passwd from wallet
    2006/03/01:12:58:32 * [oidmon]: Unable to connect to database,
    will retry again after 20 sec
    Im on Unix

  • Issues with using utl_http with Oracle Wallet

    Hello Everyone,
    We are experimenting with Oracle wallet and utl_http and are attempting to do an https transfer and we are facing some problems. I will appreciate your help greatly if you can advise on what could be wrong. We are on db version 10.2.0.1 and Unix HP-UX. The intention ping an https url and get a simple 200 response. Future development would include get/post XML documents from that url and other interesting stuff. I understand that utl_http with Oracle wallet can be used for this purpose.
    The wallet has been created and the ewallet.p12 exists. We downloaded the SSL certificate from the url's website and uploaded into the wallet.
    Everything works if I put in a url with plain http. However, it does not work with an HTTP*S* url.
    With HTTPS when I run the below code I get the following error. Again, greatly appreciate your time and help because this is the first time we are using Oracle wallet manager and do not know where to go from here.
    ORA-29273: HTTP request failed
    ORA-06512: at "SYS.UTL_HTTP", line 1029
    ORA-29268: HTTP client error
    declare
    url varchar2(225);
    req utl_http.req;
    resp utl_http.resp;
    my_proxy BOOLEAN;
    name varchar2(2000);
    value varchar2(2000);
    V_proxy VARCHAR2(2000);
    v_n_proxy varchar2(2000);
    v_msg varchar2(100);
    v_len PLS_INTEGER := 1000;
    BEGIN
    -- Turn off checking of status code.
    utl_http.set_response_error_check(FALSE);
    --Set proxy server
    utl_http.set_proxy('my-proxy');
    utl_http.set_wallet('file:<full Unix path to the wallet on DB server>','wallet998');
    req := utl_http.begin_request('https://service.ariba.com/service/transaction/cxml.asp');
    --Set proxy authentication
    utl_http.set_authentication(req, 'myproxyid', 'myproxypswd','Basic',TRUE); -- Use HTTP Basic
    resp := utl_http.get_response(req);
    FOR i IN 1..utl_http.get_header_count(resp) LOOP
    utl_http.get_header(resp, i, name, value);
    dbms_output.put_line(name || ': ' || value);
    END LOOP;
    utl_http.end_response(resp);
    exception
    when others then
    dbms_output.put_line(sqlerrm);
    END;

    I tried this using plsql ...
    declare
    SOAP_URL constant varchar2(1000) := 'http://125.21.166.27/cordys/com.eibus.web.soap.Gateway.wcp?organization=o=WIPRO,cn=cordys,o=itgi.co.in';
    request      UTL_HTTP.req;
    begin
    dbms_output.put_line('Begin Request');
    request := UTL_HTTP.begin_request(SOAP_URL,'POST',UTL_HTTP.HTTP_VERSION_1_1);
    dbms_output.put_line('After Request');
    exception
    when others then
       dbms_output.put_line('Error : '||sqlerrm);
    end;The output was ...
    Begin Request
    Error : ORA-29273: HTTP request failed
    ORA-06512: at "SYS.UTL_HTTP", line 1029
    ORA-12535: TNS:operation timed outIt seems to be an issue with the webservice, plz check if its available & allowing requests.

  • ORA-28374: typed master key not found in wallet (no ORACLE.SECURITY.TS.ENCR

    Good afternoon! I have a problem with creating a wallet for TDE.
    Oracle Version 11.2.0.2.0.
    SQLNET.ORA is :
    NAMES.DIRECTORY_PATH= (TNSNAMES, EZCONNECT)
    ADR_BASE = /app/oracle
    # TO SWITCH OFF ORACLE ADR FEATURE
    # DIAG_ADR_ENABLED=off
    DIAG_SIGHANDLER_ENABLED=FALSE
    DIAG_RESTRICTED=TRUE
    TRACE_LEVEL_SERVER=admin
    TRACE_LEVEL_CLIENT=admin
    TRACE_DIRECTORY_SERVER=/app/oracle/product/11.2.0/db_1/network/log
    TRACE_DIRECTORY_CLIENT=/app/oracle/product/11.2.0/db_1/network/log
    TRACE_FILE_CLIENT=cli
    TRACE_FILE_SERVER=srv
    TRACE_UNIQUE_CLIENT=off
    SQLNET.EXPIRE_TIME = 10
    SQLNET.INBOUND_CONNECT_TIMEOUT = 20
    SQLNET.ENCRYPTION_SERVER = REQUESTED
    SQLNET.ENCRYPTION_CLIENT = REQUESTED
    SQLNET.CRYPTO_SEED = 'KakdlkLAKMXM0000sdsdsadadeffdmsdmdkmdv'
    SQLNET.ENCRYPTION_TYPES_SERVER= (AES256,RC4_256,3DES112,DES)
    SQLNET.CRYPTO_CHECKSUM_SERVER = REQUESTED
    SQLNET.CRYPTO_CHECKSUM_TYPES_SERVER = (SHA1,MD5)
    ENCRYPTION_WALLET_LOCATION =
    (SOURCE=
    (METHOD=file)
    (METHOD_DATA=
    (DIRECTORY=/app/oracle/admin/orcl/wallet)
    I've creted wallet by command :
    alter system set encryption key identified by "sdsdsdsds";
    After that i can close and reopen this wallet , it's ok. But i can't create crypted tablaspace :
    CREATE TABLESPACE RMD DATAFILE '/oradata/orcl/TDE.dbf' SIZE 600M
    AUTOEXTEND ON NEXT 100M MAXSIZE 2000M
    EXTENT MANAGEMENT LOCAL UNIFORM SIZE 64K ENCRYPTION USING 'AES256' DEFAULT STORAGE (ENCRYPT);
    i've got an error ORA-28374: typed master key not found in wallet
    My wallet looks like :
    Requested Certificates:
    Subject: CN=oracle
    User Certificates:
    Oracle Secret Store entries:
    ORACLE.SECURITY.DB.ENCRYPTION.ASSSDSeFDX08Evy6Mco2yhXsAsdsdsdsdsdefdfdfdfddfddfdfdfAAAA
    ORACLE.SECURITY.DB.ENCRYPTION.MASTERKEY
    Trusted Certificates:
    As i uderstood there should be also entry like ORACLE.SECURITY.TS.ENCRYPTION. But why this didn't created into wallet by command : alter system set encryption key identified by "sdsdsdsds" ?
    Thanks!
    Edited by: user5819915 on 13-Jan-2012 03:25

    Hi there,
    first, "SQLNET.CRYPTO_SEED = 'KakdlkLAKMXM0000sdsdsadadeffdmsdmdkmdv" is no longer needed, the DB creates a seed itself and ignores this string.
    Then, on to TDE ...: These things happen if you had a wallet before, and that wallet was deleted; now if you create a new wallet, the TS MK is missing. Looks like you didn't encrypt any data yet. You might see if you get https://updates.oracle.com/download/8682102.html for your DB version; apply the patch, decrypt all data, cycle through all log files and then create a new wallet. That might work, but I can't promise.
    Peter

  • The data does not encrypt using Wallet!

    Hi All,
    I've created a wallet to encrypt/decrypt the data, but when I change any column to be ecrypted by this command:
    alter table accounts modify (ssn encrypt); --accounts is the table containing ssn column to be ecrypted.
    and then inserting data on it, the data does not appear in encrypted format it appears in it's truth format!
    how to make the data ecrypted?

    Dev. Musbah wrote:
    Hi All,
    I've created a wallet to encrypt/decrypt the data, but when I change any column to be ecrypted by this command:
    alter table accounts modify (ssn encrypt); --accounts is the table containing ssn column to be ecrypted.
    and then inserting data on it, the data does not appear in encrypted format it appears in it's truth format!
    how to make the data ecrypted?Did you go back and read that what does TDE(transparent data encryption) actually does? It does NOT make your column look encrypted but makes the physically stored data in teh datafile as encrypted which otherwise can be reverse engineered by someone and can be read. In your case, whatever is happening is the right thing.
    For your unmentioned version, here is the link for the same,
    http://download.oracle.com/docs/cd/E11882_01/network.112/e10746/asotrans.htm#ASOAG10137
    HTH
    Aman....

  • How can I switch from auto_login wallet to password-protected encryption wallet in 12c  ?

    How can I switch from auto_login wallet to password-protected encryption wallet in 12c
    --Now the autologin wallet is in effect
    SQL> select * from v$encryption_wallet
      2  ;
    WRL_TYPE
    WRL_PARAMETER
    STATUS       WALLET_TYPE    WALLET_OR FULLY_BAC
        CON_ID
    FILE
    /acfs3/wallet
    OPEN       AUTOLOGIN    SINGLE    NO
      0
    --I need to export the keys and it informs me to use password-based keystore
    SQL> ADMINISTER KEY MANAGEMENT export KEYS with secret tde_1234 to '/home/oracle/dumpdir/orapdba.wallet' IDENTIFIED BY "tde_1234";
    ADMINISTER KEY MANAGEMENT export KEYS with secret tde_1234 to '/home/oracle/dumpdir/orapdba.wallet' IDENTIFIED BY "tde_1234"
    ERROR at line 1:
    ORA-28417: password-based keystore is not open
    --So I try to close the autologin keystore and open the password-based keystore, but the autologin keystore cannot be closed
    SQL>  administer key management set keystore close;
    administer key management set keystore close
    ERROR at line 1:
    ORA-28365: wallet is not open
    SQL> administer key management set keystore open identified by "tde_1234";
    administer key management set keystore open identified by "tde_1234"
    ERROR at line 1:
    ORA-28354: Encryption wallet, auto login wallet, or HSM is already open
    So My question is
    How to switch from auto_login keystore to password-protected keystore ?

    Remove the cwallet.sso file and check the wallet status in v$encryption_wallet.
    If it is not opened, try to open it with administer key statement.
    Check the status again.

  • Open wallet failed error when running DBCA

    Hi,
    running 9i on AIX 5.3
    By starting dbca, get the Error Message 'Open wallet failed'
    The dbca GUI comes up and runs fine.
    Anyway in case anyone has the problem please let me know...
    The wallet entry is in the sqlnet.ora
    WALLET_LOCATION =
    (SOURCE =
    (METHOD = FILE)
    (METHOD_DATA =
    (DIRECTORY =/ora01/admin/DB_01/wallet)
    Thanks in advance

    See Note:369562.1 ERROR: Open Wallet Failed when starting NETMANAGER/NET CONFIGURATION, it states that the message can be ignored (the Note mentions DBCA too).
    HTH
    Enrique

  • ORA-28759 when trying to open wallet

    Hello,
    I have a problem when I try to do a https request via utl_http.
    Database version is
    SYS@tcp_iig9_test> select * from v$version;
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
    PL/SQL Release 11.2.0.1.0 - Production
    CORE    11.2.0.1.0      Production
    TNS for 32-bit Windows: Version 11.2.0.1.0 - Production
    NLSRTL Version 11.2.0.1.0 - ProductionThe database is running on a Windows Server 2008 32 bit Standard SP2.
    I create a simple wallet using orapki on the database server the following way
    c:\> orapki wallet create -wallet wallet-client -auto_loginthe wallet is created successfully, I have the ewallet.e12 file and a cwallet.sso file in the wallet-client directory:
    C:\wallet-client>dir
    Volume in drive C is System
    Volume Serial Number is 5C03-B54D
    Directory of C:\wallet-client
    10/11/2010  01:58 AM    <DIR>          .
    10/11/2010  01:58 AM    <DIR>          ..
    10/11/2010  01:58 AM             3,589 cwallet.sso
    10/11/2010  01:58 AM             3,512 ewallet.p12
                   2 File(s)          7,101 bytes
                   2 Dir(s)     475,807,744 bytes freeJust to be sure I opened the wallet with the wallet manager successfully.
    after that I want to do a request with the following code:
    SYS@tcp_iig9_test> r
      1  declare
      2  vReq varchar2(2000);
      3  begin
      4  utl_http.set_wallet('file:c:\wallet-client', '<pwd>');
      5  vReq := utl_http.request('https://supporthtml.oracle.com');
      6* end;
    declare
    ERROR at line 1:
    ORA-29273: HTTP request failed
    ORA-06512: at "SYS.UTL_HTTP", line 1722
    ORA-28759: failure to open file
    ORA-06512: at line 5Note that I do not care if the certificate chain is OK at this time (the root certificate of the oracle support portal would be from verisign which is in the wallet btw.).
    same thing happens if I pass the path to the wallet directly to utl_http.request :
    SYS@tcp_iig9_test> r
      1  declare
      2    vReq varchar2(2000);
      3  begin
      4    vReq := utl_http.request('https://supporthtml.oracle.com', null, 'file:c:/wallet-client', '<pwd>');
      5* end;
    declare
    ERROR at line 1:
    ORA-29273: HTTP request failed
    ORA-06512: at "SYS.UTL_HTTP", line 1722
    ORA-28759: failure to open file
    ORA-06512: at line 4To add: I created ACL's like here:
    http://www.morganslibrary.org/reference/dbms_network_acl_admin.html
    and after the ACL's where created correctly I ended up with the above error.
    To exclude this has anything to do with Network ACL's I tested the whole stuff with the sys user (as seen above) - the error persists.
    When searching the documentation for ORA-28759 I get here: http://download.oracle.com/docs/cd/B28359_01/network.111/b28530/asossl.htm#ASOAG9698
    Which begs the question: what has this to do with SQL*Net SSL authentication? Anyway; I added the WALLET_PATH to my sqlnet.ora on the server just to be sure:
    WALLET_LOCATION =
    (SOURCE=(METHOD=FILE)(METHOD_DATA=(DIRECTORY=c:\wallet-info)))which resulted in exactly the same behaviour (yes I did bounce the listener and the oracle service just to be sure)...
    A google search came back with the same advice: add the correct WALLET_LOCATION to your sqlnet.ora for version 10.2.x. Just to add: I tested the same thing on 10.2.0.4 WITHOUT adding WALLET_LOCATION to the sqlnet.ora successfully, so I am really wondering what I am missing here.
    Yes, I do have read / write privilages to the directory (to test I wrote a file using utl_file ), yes I am darn sure I passed the correct password for the wallet, and yes I am darn sure the wallet is correct (as said I opened it successfully using wallet manager).
    Did anyone encounter a similar issue?
    cheers

    Found the solution: as noted in the 11gR2 documentation for set_wallet (http://download.oracle.com/docs/cd/E11882_01/appdev.112/e16760/u_http.htm#i998681): If the wallet is auto-login enabled, the password may be omitted and should be set to NULL. The password passed to utl_http.request should (well, moreover a must ) be set to null when auto-login is enabled, after that it works...This is different to 10gR2...Yeah well, if you can read, you'll be in the lead...
    It get's funny though if you open the wallet with wallet manager (this fancy GUI bloatware I used to check if I entered the password correct in the first place). Once the wallet is opened and saved with Wallet Manager the error is back wheter I pass a password or not.
    cheers

  • How do I convert Wallet.class to a CAP file?

    I was trying to convert one of the sample files( Wallet.class) to a CAP file but it didn't work.
    Please help!!!

    Please be more specific. Describe what you did in detail, provide outputs of your actions etc. Otherwise noone can help you.
    Somebody save the world..

  • Is this the start... Verizon is blocking Google Wallet which is very nice, and you probably don't know they are creating their own Verizon Wallet

    I have been with this company for over 10 years and frankly I always overlooked one thing wasn't to keen on and that was some of the services Verizon offered on their website which many of the account related services they have as apps so you can view from your phone are good and useful.  I have been an Android user since the first Moto Droid to the Incredible and Inc2, then I though I was gonna go iphone, until I was able to use one for a month.  Don't get me wrong it wasn't bad it was my brothers 4G on another network when he upgraded to the 4GS.  Anyway no real problems other than Android just has more to offer so I went with the Nexus Galaxy and stayed with Verizon, after I was flipping a coin to go to Sprint.  Anyway the reason I am leaving Verizon is due to their attempt to create apps to try to compete with googles apps and Verizon charges...  you can find most for free from the droid market(which is the Play store now) such as Navigation.  The free Google Nav is awesome, I also have google voice(free)  so I get text messages emailed to me and vmails emailed and texted to me as well as being able to listen straight from phone by pushing play by the missed call.  Verizon continutes to create these apps that also cost money and aren't near as good.  I actually feel bad for the people who think the VZ nav is in fact the google nav.  Now they are blocking a new service of Google's called Google Wallet.  It's free and really cool, but Verizon blocks you from installing it or using it and Verizon is spending over a 100,000,000 dollars to create their own Wallet APP  that i'm sure won't be free.  So it's not that one app as to why I am leaving, its a number of things that as an experienced user and add the fact that  I work in the tech industry, in sales that I Verizon taking advantage of customers, and I don't work that way or like it.   Okay you go buy a verizon phone, it will have the VZ Nav right there on the home screen, however there will be no google Nav, and for newbies they usually think this is the navigation everyone talks about.  You have to go download the Google Maps which is a turn by turn navigation always up to date and is awesome.  I watch my kid driving down the road at all times for free.   My point is now that their blocking Google Wallet because they are creating there own wallet, which won't be as good, and probably cost money to even spend money meaning they will charge for it.  What is the next brilliant thing that Google comes out with  that you can intergrate into your Google services.    So what is the point of trying to compete with Google on apps, I mean the Verizon wallet?  Why it makes no sense.  Why block an app thus not giving you the luxery.  They have their reasons of course such as security, and other reasons that it could cause problems but, hey if you dare to spend the outrageous amount of money to activate your hostspot to connect your computer wirelessly in a park.  75% of the people who do this are going to be on an unsecured network that anyone can connect to even with security turned on.  So they say there worried about security on the wallet app, because someone may cold get access to your small amount that most people keep on the google wallet but the wireless hotspot is putting much more that money out there. it's putting personal things and files on your computer out there.  I just dont' get why they can't provide their songs and ring tones and apps that allow you to see you data usage and leave the apps for the Google market.  For you who don't know please download google maps and you will have an awesome navivation.  Also google talk, voice, chat, and there apps on the google market for free such as a punch clock for time.  I saw one for over $14 on the verison app store.  So stick to what you are good at ,and don't block apps that other companies aren't blocking including at&T now, and they were in on the $100,000,000 to create this app along with Tmoblie and Verizon.  I use an android because of the capapbilites that google gives you, and the apps that they offer for free or no money.  Go look in the Verizon apps and see how much you will pay.  Most that cost money come preinstalled on your phone so all you have to do is use it and you start getting charged.  This is a 3 year decision making.  I don't like that people can easily get charged for services without even knowing just because the app was installed and they used it once.  Just stay with what your good at and let the android users rightly use the google apps.  After all Google Saved your business if you really want to think about it.  If you didn't have the android OS, how many sales would you be getting?  Where would your company be.  This app was developed by Google which means it ties into everything else such as making online payments with the google card.  Blocking APPS developed by the developer of the Operating System that single handedly changed  the game, and has Made  you as a company far better off than you would have ever been had they not developed android.  Not a good Idea.  Bite the hand that feeds you.

    I have been with this company for over 10 years and frankly I always overlooked one thing wasn't to keen on and that was some of the services Verizon offered on their website which many of the account related services they have as apps so you can view from your phone are good and useful.  I have been an Android user since the first Moto Droid to the Incredible and Inc2, then I though I was gonna go iphone, until I was able to use one for a month.  Don't get me wrong it wasn't bad it was my brothers 4G on another network when he upgraded to the 4GS.  Anyway no real problems other than Android just has more to offer so I went with the Nexus Galaxy and stayed with Verizon, after I was flipping a coin to go to Sprint.  Anyway the reason I am leaving Verizon is due to their attempt to create apps to try to compete with googles apps and Verizon charges...  you can find most for free from the droid market(which is the Play store now) such as Navigation.  The free Google Nav is awesome, I also have google voice(free)  so I get text messages emailed to me and vmails emailed and texted to me as well as being able to listen straight from phone by pushing play by the missed call.  Verizon continutes to create these apps that also cost money and aren't near as good.  I actually feel bad for the people who think the VZ nav is in fact the google nav.  Now they are blocking a new service of Google's called Google Wallet.  It's free and really cool, but Verizon blocks you from installing it or using it and Verizon is spending over a 100,000,000 dollars to create their own Wallet APP  that i'm sure won't be free.  So it's not that one app as to why I am leaving, its a number of things that as an experienced user and add the fact that  I work in the tech industry, in sales that I Verizon taking advantage of customers, and I don't work that way or like it.   Okay you go buy a verizon phone, it will have the VZ Nav right there on the home screen, however there will be no google Nav, and for newbies they usually think this is the navigation everyone talks about.  You have to go download the Google Maps which is a turn by turn navigation always up to date and is awesome.  I watch my kid driving down the road at all times for free.   My point is now that their blocking Google Wallet because they are creating there own wallet, which won't be as good, and probably cost money to even spend money meaning they will charge for it.  What is the next brilliant thing that Google comes out with  that you can intergrate into your Google services.    So what is the point of trying to compete with Google on apps, I mean the Verizon wallet?  Why it makes no sense.  Why block an app thus not giving you the luxery.  They have their reasons of course such as security, and other reasons that it could cause problems but, hey if you dare to spend the outrageous amount of money to activate your hostspot to connect your computer wirelessly in a park.  75% of the people who do this are going to be on an unsecured network that anyone can connect to even with security turned on.  So they say there worried about security on the wallet app, because someone may cold get access to your small amount that most people keep on the google wallet but the wireless hotspot is putting much more that money out there. it's putting personal things and files on your computer out there.  I just dont' get why they can't provide their songs and ring tones and apps that allow you to see you data usage and leave the apps for the Google market.  For you who don't know please download google maps and you will have an awesome navivation.  Also google talk, voice, chat, and there apps on the google market for free such as a punch clock for time.  I saw one for over $14 on the verison app store.  So stick to what you are good at ,and don't block apps that other companies aren't blocking including at&T now, and they were in on the $100,000,000 to create this app along with Tmoblie and Verizon.  I use an android because of the capapbilites that google gives you, and the apps that they offer for free or no money.  Go look in the Verizon apps and see how much you will pay.  Most that cost money come preinstalled on your phone so all you have to do is use it and you start getting charged.  This is a 3 year decision making.  I don't like that people can easily get charged for services without even knowing just because the app was installed and they used it once.  Just stay with what your good at and let the android users rightly use the google apps.  After all Google Saved your business if you really want to think about it.  If you didn't have the android OS, how many sales would you be getting?  Where would your company be.  This app was developed by Google which means it ties into everything else such as making online payments with the google card.  Blocking APPS developed by the developer of the Operating System that single handedly changed  the game, and has Made  you as a company far better off than you would have ever been had they not developed android.  Not a good Idea.  Bite the hand that feeds you.

  • How to use one wallet for both infrastructure & midtier installations?

    I have a 10.1.2.0.2 Portal installation that also includes the metadata repository & other infrastructure components on the same server. I need to configure SSL throughout Portal and I have 1 server certificate that I installed in Oracle Wallet Manager in the infrastructure home. Can I use this same certificate for the midtier without installing it in the midtier Wallet Manager?
    Thanks,
    Denise

    From one Directory Server (ds1) generate CSR with the name ds.example.com in the request. Once you get the signed cert import it into the same server you generated CSR with. Then from ds1.example.com :
    scp -p <slapd install/instance path>/alias/* <account>@ds2.example.com:<slapd install/instance path>/alias/
    to copy the contents of the alias path to the same location on the other Directory Server. Make sure file permissions are the same.

  • TDE Wallets & Multiple Databases on same Host

    The Oracle TDE Best Practices (doc ID 130696) states this:
    Multiple databases on the same host
    If there are multiple Oracle Databases installed on the same server, they
    must access their own individual TDE wallet. Sharing the same wallet between independent instances is not supported
    and can potentially lead to the loss of encrypted data.
    If the databases share the same ORACLE_HOME, they also share the same
    sqlnet.ora file in $TNS_ADMIN . In order to access their individual wallet, the
    DIRECTORY entry for the ENCRYPTION_WALLET_LOCATION
    needs to point each database to its own wallet location:
    DIRECTORY= /etc/ORACLE/WALLETS/$ORACLE_UNQNAME
    The names of the subdirectories under /etc/ORACLE/WALLETS/ reflect
    the ORACLE_UNQNAME names of the individual databases.
    If the databases do not share the same ORACLE_HOME, they will also have their individual sqlnet.ora
    files that have to point to the individual subdirectories.
    What is the correct sqlnet.ora syntax to do this?  I currently have what is below but it doesn't seem to be correct:
    ENCRYPTION_WALLET_LOCATION =
      (SOURCE = (METHOD = FILE)
      (METHOD_DATA =
      (DIRECTORY = /local/oracle/admin/wallet/DB#1)
      (DIRECTORY = /local/oracle/admin/wallet/DB#2)

    Hi,
    You can check this :Setting ENCRYPTION_WALLET_LOCATION For Wallets Of Multiple Instances Sharing The Same Oracle Home (Doc ID 1504783.1)
    i haven't done this for multiple database, but as per Doc you can use the syntex like
    ENCRYPTION_WALLET_LOCATION =
      (SOURCE = (METHOD = FILE)
      (METHOD_DATA =
      (DIRECTORY = /local/oracle/admin/wallet/$ORACLE_UNQNAME)
    Whenever you set the Environmnet with
    export $ORACLE_UNQNAME=DB#1 
    it will choose the file from respective directory like  /local/oracle/admin/wallet/DB#1
    HTH

  • Oracle TDE - Can multiple databases use the same Oracle wallet?

    Oracle Advanced Security Transparent Data Encryption
    I will have 2 or more databases running under the same Oracle 11.2 home. According to Oracle's documentation, it is preferred to reference the wallet via the sqlnet.ora file. That's fine. My question is if I want to use encryption in each of those databases, then I have no choice but to use the shared wallet then, correct.
    I need to confirm that I have not missed something.
    From Oracle's documentation:
    Specifying a Wallet Location for Transparent Data Encryption
    If you wish to use a wallet specifically for TDE, then you must specify a wallet location in the sqlnet.ora file by using the ENCRYPTION_WALLET_LOCATION parameter.
    Oracle recommends that you use the ENCRYPTION_WALLET_LOCATION parameter to specify a wallet location for TDE.
    http://docs.oracle.com/cd/E18283_01/network.112/e10746/asoappa.htm#i634447
    Oracle Advanced Security Transparent Data Encryption
    ENCRYPTION_WALLET_LOCATION = (SOURCE =
    (METHOD = FILE)
    (METHOD_DATA =
    (DIRECTORY =
    /etc/ORACLE/WALLETS/oracle)))
    thanks!

    Do not do this, follow this http://www.youtube.com/watch?v=Z9odSZxdoGU instead!
    Best, Peter

Maybe you are looking for

  • BCM 4313 wireless can't connect, ethernet works only in live CD

    Hi! I'm finding it impossible to get Arch working due to internet problems, and I've spent a while trying to figure out how to solve them and got nowhere. My laptop has Broadcom 4313 wireless. Using wifi-menu, I can see a bunch of wireless networks,

  • Free alternative to adobe indesign for macbook air

    I have experience in using adobe indesign however I have just brought a MacBook air and my copy of indesign is on my windows machine! is there a free alternative to indesign that anyone can recommend or someway of me getting it from a windows to a ma

  • Ora-01401 value too large for the column

    I am running several sql statements in one transaction in oracle 8.1.7 for redhat linux 7.3. I got the error message ORA-01401 which is the values inserted is too large for the column at the last sql statement. But I copied and pasted the same sql st

  • Serialize DOM between two ejb's performance

    Hi, I am working with XML in a ejb container and I used JDOM Document (org.jdom.Document) to send the xml document between two ejb's, I picked JDOM because the Document implements the Serilizable interface. Then I did some performance tests on sendin

  • Battery Error after Power Manager Update

    ThinkPad T520, Win7 Pro 64.  TVSU updates Power Manager to V. 6.38. Immediately on reboot notification area shows 0% power and a message stating that a battery error has occurred. The battery LED is now blinking orange and the battery will not charge