Environment::CreateConnection(user,pass, constring);

I have this Error While trying To Complie OcciDesc.cpp
"Unhandled exception at 0x6061f26f in test_10g1.exe: 0xC0000005: Access violation reading location 0x00133000."
i 'm using VS++ 2005 and the libraries i'm using :
VC6\oraocci10.lib with Vc6\OraOcci10.dll
it failed also on using VC7 and VC71
Any Help
regards

Hello Again:
i have Oracle DataBase 10g
installed Instant Client 10.2.1:
Oraocci10.dll 528 K 2/28/2006
oraocci10.lib 861K 2/6/2006
OCI.dll 336 K 2/6/2006
Oci.lib 518K 2/6/2006
Path of the instant client was set in the environment.
include Path sequence is as the file appear in the above list.
NOTE: the Instant client SQLPLUS can connect to the Database when i double click it.
I use VStudio 2005 C++ =VC8
still when i try to connect the database from the program i have the following error
"the procedure entry point lxslen could not be located in the dynamic link library OCI.dll."
i dont know what i'm doibng wrong
Any Help

Similar Messages

  • Environment::createConnection throws unknown exception

    I just have such a simple code:
    Environment* env = Environment::createEnvironment();
         Connection* conn;
         try {
              conn = env->createConnection
    ("user", "passwd", "database");
         catch (SQLException exc)
              cout << exc.what();
              exit(0);
         catch (exception exc)
              cout << exc.what();
              exit(0);
         catch (...)
              cout << "Here I am!!!";
              exit(0);
         env->terminateConnection (conn);
    What kind of exception can be thrown from
    env->createConnection ("user", "passwd", "database");
    when it can't be catched by two previous handlers?
    I have compiled it under VC++ .NET 2003 and run
    under WinXP Professional with oracle 9.
    Thanks for advise a lot, ...

    OCCI libraries for developing applications with Visual C++ 7.0 (.NET 2002) are available in the 9.2.0.4 patchset. The default OCCI libraries work only with VC6.
    Oracle 10gR1 10.1.0.2 includes OCCI libraries for VC++ 7.0 and VC++ 7.1 (.NET 2003).
    The new libraries are installed under %ORACLE_HOME%\oci\lib\msvc\vc7 & %ORACLE_HOME%\oci\lib\msvc\vc71

  • How to let mmp_smtp support  virtual domain authentication by user/pass

    my mmp had configured 2 virtual domain ,one is mmp1.soft.com,other is mmp2.soft.com
    i can send mail by mmp use the user/pass format : mmp1user/pass , which is sotred in o=mmp1.soft.com,o=isp in ldap,and the format [email protected]/pass which is stored in o=mmp2.soft.com,o=isp in ldap,
    but i can't send mail use the format: mmp2user/pass.
    the pop is work fine.
    the following is my config file:
    more PopProxyAService.cfg
    default:LdapUrl "ldap://mmp1.soft.com:389/o=internet"
    default:LogDir /var/Sun/ims52/mmp-mail2/log
    default:LogLevel 10
    default:BindDN   "cn=Directory Manager"
    default:BindPass "soft"
    default:BacksidePort 8110
    default:ConnLimits 0.0.0.0|0.0.0.0:20
    default:VirtualDomainFile /var/Sun/ims52/mmp-mail2/vdmap.cfg
    default:DefaultDomain mmp1.oft.com
    default:SearchFormat (uid=%U)
    default:VirtualDomainDelim @
    default:CanonicalVirtualDomainDelim @
    default:AuthCacheTTL 1
    default:LdapCacheTTL 1
    default:HostedDomains yes
    more vdmap.cfg
    vdmap mmp2 192.192.192.192
    mmp2:DefaultDomain mmp2.soft.com
    mmp2:BindDN "cn=Directory Manager"
    mmp2:BindPass "oft"
    mmp2:LdapUrl "ldap://mmp2.soft.com:389/o=internet"
    more SmtpProxyAService.cfg
    default:LdapUrl "ldap://mmp1.soft.com:389/o=internet"
    default:LogDir /var/Sun/ims52/mmp-mail2/log
    default:LogLevel 10
    default:BindDN   "cn=Directory Manager"
    default:BindPass "soft"
    default:ConnLimits 0.0.0.0|0.0.0.0:20
    default:VirtualDomainFile /var/Sun/ims52/mmp-mail2/vdmapsmtp.cfg
    default:DefaultDomain mmp2.soft.com
    default:SmtpProxyPassword soft..ssl
    default:LdapCacheTTL 1
    default:SmtpRelays mmp1
    more vdmapsmtp.cfg
    vdmap mmp2 192.192.192.192
    mmp2:DefaultDomain mmp2.soft.com
    mmp2:BindDN "cn=Directory Manager"
    mmp2:BindPass "soft"
    mmp2:LdapUrl "ldap://mmp.soft.com:389/o=internet"
    mmp2:LdapCacheTTL 1
    mmp2:AuthCacheTTL 1
    mmp2:SearchFormat (uid=%s)what's the error with my configuration?
    Does the virtual domain is supproted by mmp_smtp,and does user can auth to smtp by user/pass ,but not by user@domain/pass ?
    thanks in advance!
    null

    ok,let's discuss with data.
    i want to migrate another domain "soft.com" to my current Messaging Server,
    i have created the new host domain : soft.com ,and the user "testmail" belongs to that domain.
    the following show the process of my login.
    220 ESMTP Messaging Multiplexor (iPlanet Messaging Server 5.2 (built Feb 21 2002)
    helo soft.com
    250 mail2
    auth login
    334 VXNlcm5hbWU6
    dGVzdG1haWw= (which is "testmail" after base64 decode)
    334 UGFzc3dvcmQ6
    cGFzczR0ZXN0bWFpbA== (which is "pass4testmail" after base64 decode)
    535 5.7.8 Bad username or password (Authentication failed).
    220 ESMTP Messaging Multiplexor (iPlanet Messaging Server 5.2 (built Feb 21 2002)
    helo soft.com
    250 mail2
    auth login
    334 VXNlcm5hbWU6
    dGVzdG1haWxAc29mdC5jb20=  (which is "[email protected]" after base64 decode)
    334 UGFzc3dvcmQ6
    cGFzczR0ZXN0bWFpbA== (which is "pass4testmail" after base64 decode)
    235 2.7.0 login authentication successful.
    mail from:[email protected]
    250 2.5.0 Address Ok.
    quit
    221 2.3.0 Bye received. Goodbye.becase i start the ssl connection for user to send and receive mail ,so i have to use mmp as smtp/pop/imap proxy. i don't want the user of domian "soft.com" need modify any of their mail client after the migration ,that means,the user of domain "soft.com" can login use "testmail",but not "[email protected]".
    i don't know whether i have described my question clearly,thanks for endure my lame english~ ! :)

  • Environment variables (user) created at OS level dont show up in BIDS 2008

    Environment variables (user) created at OS level don't show up in BIDS 2008.
    I had a variable ConfigLocation created and it is not showing up when I am trying to configure it in BIDS
    Is this a known issue or a bug?
    Now in BIDS it doesnt show up
    Mudassar

    Yes it shows up after restart of BIDS .
    But during design time this is a bug I hope Microsoft fixes this bug in the future releases
    Mudassar
    It's not really a bug. Visual Studio loads the environment variables when starting up.
    In future releases you use projects and parameters instead of environment variables, so the issue goes away ;)
    MCSE SQL Server 2012 - Please mark posts as answered where appropriate.

  • Error while Editing universe connection to SSO fromusing user/pass

    Hi guys,
    I created a universe on top of Bex Query using Universe Designer 4.0 (not information design tool 4.0)...i created a relational connection using SAP client as middleware.
    when i use my SAP credentials to connect to BW system the connection works fine i.e.Authentication Mode: "use specified user and password"
    But when i use SSO as the authentication mode, a huge error appears
    I am unable to copy paste the error here.
    DBD:Error Reading URI Found:.................
    Anyone has encountered this problem yet?
    Any Help is highly appreciated.
    Thanks in Advance,
    Sheikh Hassan Ayub

    Thank you for the quick reply  Surendra Chikine.
    Would you kindly elaborate your solution?
    In my case i am logging into Universe Designer using my ID, but for creating the connection i used a "back ground user/pass".
    So according to you:
    Delete the SAP or Active Directory (AD) user account that is failing to SSO. ---> delete my user id from CMC?
    Login to BIlaunchpad as the SAP or AD user to receate the account in the CMC ---> recreate my ID again in CMC?
    Retry the Test Connection in Universe Design Tool with the SSO option.--->and test the connection?
    Please elaborate your answer. That will be highly appreciated.
    Regards,
    Sheikh Hassan Ayub

  • Url iView: passing user/pass as get variables.  Launching in new window

    Hi,
    I pass username and password as get variables from a url iView, and want a page containing this iView to open in a new page using the "Launch in new window" property set to "Display in a separate window". 
    When previewing the iView or page it is on, it works fine.  But when launching it from the detailed navigation, this does not work.  A new window is opened, but the user is prompted for username and password.
    The page to display is an external site, and we have only got the url with user/pass to access it.
    Any ides on what can be wrong?
    Best Regards,
    Bjorn

    Hi,
    Using the url in IE works fine.  It seems to work everywhere but in the portal menu.
    I have the appintegrator in the back of my mind, and will start to have a look at it.  We are also considering a OSS message - this must be a bug in the system as far as I can see.
    Bjorn

  • Oracle 9i running forms and reports with user/pass

    Hi all!
    How can I hide the user name and password in the internet explorer as it is shown in the full path for the sake of security I need it and also how can I pass the user/pass from a form to report without showing in address bar of Internet Explorer.
    Regards
    Mayank Sharma

    Dear Mayank,
    You can use "CGICMD.dat" file. This file can be used to add key mappings.
    You add following lines at the end of this file.
    MYKEY: USERID=<user_name>/<password>@<connection_string> %*
    You need to restart your OC4J Instance to make above changes effective..
    Then, in your web.show_document url include "CMDKEY=MYKEY".
    This will definitely solve your problem.
    Regards,
    Manish Trivedi
    Ambuja Cement,
    India.
    [email protected]

  • How to Hide user & pass in PORTAL URL

    Hi Experts,
    I need a help on portal URL. We are using SSA (Spend Analytics) in Portal. One of the option in portal is that you can generate an E-mail Link of a report which goes to users.
    Link looks like this for end user (They receive it via E-Mail)
    http://Host:Port/irj/servlet/prt/portal/prtrootxapps.analytics.ds_par.inbounds?guid=CC1E61FF_7B3F_45CB_A3BE_B00F6BD487B7&objType=REPO&objId=0DA4575B_3C28_E6D8_66C5_04008115C625
    Users should be able to view this link as soon as they click on it. If a user is already logged into portal and copy and paste the link, it works fine. However, if a user is not logged in and copy and past this link to IE, It automatically changes URL to something else and shows user & password
    This is how it looks like. URL changes to the following link..
    http://HOST:PORT/irj/portal?j_user=XYZ_USER&j_password=XYZ_PASS&submit_logon=true
    So I'm not sure what is making portal to redirecting the link to (http://HOST:PORT/irj/portal?j_user=XYZ_USER&j_password=XYZ_PASS&submit_logon=true) when they enter generated link (http://Host:Port/irj/servlet/prt/portal/prtrootxapps.analytics.ds_par.inbounds?guid=CC1E61FF_7B3F_45CB_A3BE_B00F6BD487B7&objType=REPO&objId=0DA4575B_3C28_E6D8_66C5_04008115C625) and why is it showing user/pass and from where is it picking user & password.
    I kindly request all experts to please help me in this. I want to hide users/pass and make sure the link works fine without getting redirected it.
    Your help is much appreciated
    Thanks in Advance!!
    Afi

    i don't understand!
    i need to create a userid parameter on this configuration file frmweb.cfg
    [myconfig]
    userid=
    host=
    port=
    por example
    {myconfig]
    # System parameter: default base HTML file
    baseHTML=base.htm
    # System parameter: base HTML file for use with JInitiator client
    baseHTMLjinitiator=basejpi.htm
    # System parameter: base HTML file for use with Sun's Java Plug-In
    baseHTMLjpi=basejpi.htm
    # System parameter: delimiter for parameters in the base HTML files
    HTMLdelimiter=%
    userid= what can i write here?
    host = ??????????
    on this sistem too many user acces theses report
    and how can i call report to use this parameter?
    sorry because my english is not good
    saludos desde panama

  • HT201441 If the previous end-user passed away suddenly and did not leave the password word with anyone, how then can the device be wiped?

    My company issues iPads to certain staff for their line of work.  If the previous end-user passed away suddenly and did not leave their iCloud password word with anyone, how then can the device be wiped.  Currently we cannot turn off the iCloud, change the user, update the iOS, nor update our apps.  Can the local Apple Store assist in some way?

    I think Winston hit the nail.  I imagine the issue is you allowed the person to set up personal and private accounts on the device, not corporate controlled accounts.  As such, regardless of your ownership of the device, Apple will not release or change personal or private account-related information to you.
    Whether they would or not to a direct family member, I do not know, but I highly doubt they will (or legally can) do so to you as the employer for a personal account.
    I know such instances have come up in the past with things like company phones and such, both involving Apple as well as other companies.  The reported results in news articles were always that private information is private, and if companies want access or control, then they need to restrict employees use to only corporate provided accounts and services.

  • If the user passes show a button widget on results screen and if they fail show another

    I am trying to set up a quiz so that on the results screen if the user passes one button shows and if they fail another button shows ... I have an advanced action that hides them initially On Enter when the results screen loads. For some reason it is not working ... any suggestions?

    Will just add some links to blog posts that could help:
    You own version of the results slide: http://blog.lilybiri.com/intermediate-score-slides
    Shape buttons on question/score slide: http://blog.lilybiri.com/want-a-button-on-question-slide-in-captivate
    All about question/score slide: http://blog.lilybiri.com/question-question-slides-in-captivate
                                                     http://blog.lilybiri.com/question-question-slides-part-2
    Lilybiri

  • Scheduling to File System BO4.0 without user/pass

    Hello all,
    I have a great deal of reports that I need to schedule to a network drive, which is mapped on the server running BO. However, I don't want to enter in a user and password on each instance. Obviously if the password changed for the account I would be screwed. I was assuming that BO would attempt to use the local account, but I'm still being forced to enter in values. Is there a setting somewhere in the CMC that I need to change?, or is there a place for me to enter in a user/pass once that can be changed without having to change every instance? I am using Enterprise authentication for the CMC if that matters at all. I attempted to enter in the user/pass in the Job Server destination, but there are multiple directories I will be sending to.
    Thanks!

    Hi Mike,
    I would advise that you simply configure the Job Server Disk destination plugin with the drive details.
    This way when scheduling you can simply ensure that the:
    "Use Job Server Defaults" option is checked.
    This is done like this:
    To set your destination to file location
    1. In the "Folders" management area of the CMC, select an object.
    2. Click Actions > Schedule and access the "Destination" page.
    u2022 If you are scheduling a Crystal report or object package, click Destination.
    u2022 If you are scheduling a Desktop Intelligence document, click Formats and destination.
    u2022 If you are scheduling a Web Intelligence document, click Formats and Destinations.
    3. Select File location as the destination.
    u2022 If you are scheduling a Crystal report or object package, select File Location from the Destination list.
    u2022 If you are scheduling a Desktop Intelligence or Web Intelligence document, select File Location under "Output Format Details" and then click Destination Options and Settings.
    4. If you are scheduling a Desktop Intelligence or Web Intelligence document, select or deselect Use the Job Server's defaults.
    Note:
    You can change the default Job Server settings in the "Servers" management area of the CMC. For more information, see the
    BusinessObjects Enterprise Deployment and Configuration Guide.
    I hope this is a very helpful answer to you.
    If you have any questions please let me know.
    Kind regards,
    John

  • TS3276 My mail 4.5 doesn't recognize my user & pass anymore on my MacBook pro the same user & pass are recognized on my iPhone 4 & my iPad 2 but not my MacBook pro 10.6.8 any ideas...???

    I keep getting this annoying message
    when I know fo sure that the user & pass have been entered correctly & are being recognized by my iPhone 4 & my iPad2...
    It never been a problem but for the last couple of days...
    Has anyone have a clue of what's going on & how to fix it please...
    Thanks
    P-Y

    No ability to access Mail on MacBook since 20th.
    On Communities; there were a couple dozen similar problems, but only one post (that I saw; it takes a long time to sort through requests for help and then find help, it seems to me) that proposed solutions, which I tried with no result.
    Failed to get resolution using Apple Troubleshooting instructions.
    Used Chat & was told that I need to upgrade from 10.5.8 to Leopard (free to MobileMe account holders) & then spend $30 for Lion. The theory is that migrating from MobileMe to iCloud with my current OS is preventing mail from synching with MacBook. I don't know why this should suddenly be a problem. (No problems with Mail on iPhone3 or iPad2 or accessing through Safari/iCloud, true, but I migrated to iCloud four months ago.)
    So far, three+ hours spent on this issue.
    If anyone with this problem actually gets it fixed, I'd appreciated knowing before downlading Leopard & purchasing Lion....

  • Hiding workflow user/pass from ps -ef

    I would like to hide the workflow username/password when starting up the Workflow Background Engine. The following command was used:
    nohup $ORACLE_HOME/bin/wfbkg.csh <user>/<pass>@<sid> &
    but you can see the username and password when displaying processes on the server.
    I tried nohup $ORACLE_HOME/bin/wfbkg.csh < userpass
    where userpass contains the user/pass@sid. I also used the cat command, but neither worked.
    Has anyone else done this?
    TIA...

    This script is appropriate for some customers, I would recommend that you actually submit the Workflow Background Engine as a database job (using DBMS_JOB.SUBMIT), this way the process is run by the database and there is no need to worry about connection details.
    I would like to hide the workflow username/password when starting up the Workflow Background Engine. The following command was used:
    nohup $ORACLE_HOME/bin/wfbkg.csh <user>/<pass>@<sid> &
    but you can see the username and password when displaying processes on the server.
    I tried nohup $ORACLE_HOME/bin/wfbkg.csh < userpass
    where userpass contains the user/pass@sid. I also used the cat command, but neither worked.
    Has anyone else done this?
    TIA...

  • Log on user/pass for Oracle8i in SQL

    I try all the user/pass that use for Oracle8 is not work for Oracle8i.
    Please help.

    if you are using a IDoc or Proxy connection to SAP, check the destination. Run the authorization test 5 or more times to see if the user is getting locked or not.
    Also can you elaborate your scenario more?

  • User/pass prompts

    Hello,
    I'm seeing a bit of a strange issue with Outlook 2010 SP2 while connected to Exchange 2013 (all roles on the same box).
    When I open any application, for example Word and click "File" -> "Save & Send" -> "Send as Attachement" I'm getting prompted for User/Pass (outlook authentication window). If I put credentials in all is ok and the
    email with the attachment is created. However, when I migrate the mailbox back to Exchange 2007 there's no such prompts anymore.
    Would that be something that has any relation to RPC IIS directory authentication on Exchange 2013?
    It seems to be related to MAPI.
    Thank you. 
    Memento Mori

    Hi,
    Firstly, I’d like to explain, different from Exchange 2007, all Exchange 2013 Outlook clients use Outlook Anywhere connect with server.
    To understand more about the issue, I’d like to confirm if the credential prompts every time you open Outlook.
    If yes, let’s check the authentication method of Outlook Anywhere:
    Get-outlookanywhere |fl *method*
    If it only happens when you click the send as attachment in Word, I recommend you use network monitor to check the root cause.
    Additionally, here are references about the connection method: simple MAPI:
    http://msdn.microsoft.com/en-us/library/windows/desktop/dd296734(v=vs.85).aspx
    http://msdn.microsoft.com/en-us/library/windows/desktop/dd296726(v=vs.85).aspx
    Thanks,
    Angela Shi
    TechNet Community Support

Maybe you are looking for