Getting an vierd error from client

Hi,
When connecting to DB from the client we are getting this error:
Attempted to read or write protected memory. This is often an indication that other memory is corrupt.
at Oracle.DataAccess.Client.OpsCon.AllocValCtx(OpoConValCtx*& pOpoConValCtx)
at Oracle.DataAccess.Client.OracleConnection.Open()
at LibraryServices.Lt.WebApp.Login.DoLogin()
Attempted to read or write protected memory. This is often an indication that other memory is corrupt.
at Oracle.DataAccess.Client.OpsCon.AddRef(IntPtr pOpsConCtx)
at Oracle.DataAccess.Client.OracleCommand.CheckConStatus()
at Oracle.DataAccess.Client.OracleCommand.ExecuteReader(Boolean requery, Boolean fillRequest, CommandBehavior behavior)
at Oracle.DataAccess.Client.OracleCommand.ExecuteReader()
at LibraryServices.Lt.WebApp.Login.DoLogin()
Thanks

Hi,
We have installed different version of odp.net into a different directory other than oracle_home of client. Then without uninstalling again we have installed odp.net into the directory in oracle_home.
That's when the problem started. Is there anything we can do it normal?
Thanks
Edited by: user604101 on Oct 8, 2008 10:59 AM

Similar Messages

  • HT1349 iTunes will not start on my PC. I get a runtime error from the Visual C== runtime library when iTunesHelper.exe is started. The message states the application attempted to load the library incorrectly. How is the problem to be resolved?

    iTunes will not start on my PC. I get a runtime error from the Visual C++ runtime library when iTunesHelper.exe is started. The message states the application attempted to load the library incorrectly. How is the problem to be resolved?

    Click here and follow the instructions.
    (99035)

  • Getting an odd error from a powerpivot timer job, not sure what it means

    Hi Everyone,
    so I am getting this funky error from the PowerPivot Management Dashboard Processing Timer Job:
    The table with ID of '05fa319f-dd29-40d1-b359-417b4d285fa2', Name of
    'DataSources' referenced by the 'Sandbox' cube, does not exist. An error
    occurred when loading the Sandbox cube, from the file, '\\?\C:\Program
    Files\Microsoft SQL
    Server\MSAS10_50.POWERPIVOT\OLAP\Backup\Sandboxes\PowerPivotServiceApplication\8e750a98-850d-4915-bb13-7645fc53adef.11.db\Sandbox.88.cub.xml'.
    Anyone have any idea what this means or how to fix it?
    Best regards, Mike

    Hi,
    According to your post, my understanding is that you got the funky error from the PowerPivot Management Dashboard Processing Timer Job.
    The error means that there is no such file which exists on that location. If the PowerPivot was removed but the target application remained, it was trying to refresh on schedule and was failing.
    In general we can disable the setting to disallow users to use their own credentials by following below steps:
    1. Central Admin->Application Management->Manage Service Applications
    2. Click the PowerPivot service application name. The PowerPivot Management Dashboard appears.
    3. In Actions click Configure service application settings to open the PowerPivot Service Application Settings
    4. In the Data Refresh section clear the “Allow users to enter custom Windows credentials” checkbox.
    For more information, you can refer to:
    PowerPivot – Error while loading sandbox cube
    Thanks,
    Linda Li                
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Linda Li
    TechNet Community Support

  • Error getting application exception message from client EJB 3

    Hi, somebody nkow what is the error?
    I have this simple session bean deploy in a jboss 4.0.5 GA application server
    My interface:
    package server.ejb.usuarios;
    import javax.ejb.Remote;
    @Remote
    public interface Prueba {
         public void getError() throws Exception;
    }My Session bean implementation:
    package server.ejb.usuarios;
    import javax.ejb.Stateless;
    import server.ejb.usuarios.Prueba;
    public @Stateless class PruebaBean implements Prueba {
         public void getError() throws Exception {
              throw new Exception("Mensaje de error");
    }Simple, i can deploy this bean on my application server, now i have this client code:
    package clientold;
    import java.util.Properties;
    import javax.naming.Context;
    import javax.naming.InitialContext;
    import javax.naming.NamingException;
    import server.ejb.usuarios.Prueba;
    public class MainPruebaError {
          * @param args
         public static void main(String[] args) {
              Context ctx;
              try {
                   ctx = getInitialContext();
                   Prueba pruebaSession = (Prueba) ctx.lookup("PruebaBean/remote");
                   pruebaSession.getError();
              } catch (NamingException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
              } catch(Exception e){
                   System.out.println("Get error from server: " + e.getMessage());
                   e.printStackTrace();
         private static Context getInitialContext() throws NamingException {
              Properties prop = new Properties();
              prop.setProperty("java.naming.factory.initial",
                        "org.jnp.interfaces.NamingContextFactory");
              prop.setProperty("java.naming.provider.url", "127.0.0.1:1099");
              prop.setProperty("java.naming.factory.url.pkgs", "org.jboss.naming");
              return (new InitialContext(prop));
    }and my client catch the exception but i can�t get the correct exception message. I need pass custom message from my server to my clients and wrap it in a exception, but when i run this example got the next output:
    Get error from server: [Ljava.lang.StackTraceElement;
    java.lang.ClassNotFoundException: [Ljava.lang.StackTraceElement;
         at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
         at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:276)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
         at org.jboss.remoting.loading.RemotingClassLoader.loadClass(RemotingClassLoader.java:50)
         at org.jboss.remoting.loading.ObjectInputStreamWithClassLoader.resolveClass(ObjectInputStreamWithClassLoader.java:139)
         at java.io.ObjectInputStream.readNonProxyDesc(ObjectInputStream.java:1575)
         at java.io.ObjectInputStream.readClassDesc(ObjectInputStream.java:1496)
         at java.io.ObjectInputStream.readArray(ObjectInputStream.java:1624)
         at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1323)
         at java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:1945)
         at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1869)
         at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1753)
         at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1329)
         at java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:1945)
         at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1869)
         at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1753)
         at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1329)
         at java.io.ObjectInputStream.readObject(ObjectInputStream.java:351)
         at org.jboss.remoting.serialization.impl.java.JavaSerializationManager.receiveObject(JavaSerializationManager.java:128)
         at org.jboss.remoting.marshal.serializable.SerializableUnMarshaller.read(SerializableUnMarshaller.java:66)
         at org.jboss.remoting.transport.socket.SocketClientInvoker.transport(SocketClientInvoker.java:279)
         at org.jboss.remoting.RemoteClientInvoker.invoke(RemoteClientInvoker.java:143)
         at org.jboss.remoting.Client.invoke(Client.java:525)
         at org.jboss.remoting.Client.invoke(Client.java:488)
         at org.jboss.aspects.remoting.InvokeRemoteInterceptor.invoke(InvokeRemoteInterceptor.java:41)
         at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:88)
         at org.jboss.aspects.tx.ClientTxPropagationInterceptor.invoke(ClientTxPropagationInterceptor.java:46)
         at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:88)
         at org.jboss.aspects.security.SecurityClientInterceptor.invoke(SecurityClientInterceptor.java:40)
         at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:88)
         at org.jboss.ejb3.remoting.IsLocalInterceptor.invoke(IsLocalInterceptor.java:77)
         at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:88)
         at org.jboss.ejb3.stateless.StatelessRemoteProxy.invoke(StatelessRemoteProxy.java:102)
         at $Proxy0.getError(Unknown Source)
         at clientold.MainPruebaError.main(MainPruebaError.java:21)What is the problem??, i must see on the output
    Get error from server: Mensaje de errorbut i have :
    Get error from server: [Ljava.lang.StackTraceElement;why???, is only a simple application exception and don,t work, somebody can help me??
    i have tried to use an interceptor class for get the exceptions and work, but without interceptor, dont work
    thanks

    I can resolve this problem change the JDK version used to develop my clint application and to run the jboss application server.
    Current, in JBoss 4.0.5, the JDK requirement is JDK 5, and i was using JDK 6.

  • ORA-12541: TNS:no listener error from client mechine

    We have oracle 11g server from onsite and I am trying to connect from offshore client.But I am getting error
    From SQL plus i am getting the error,
    ORA-12541: TNS:no listener
    and from SQL Developer I am getting the error,
    IO Error:The network adapter could not establish the connection
    I am able to Telnet the host with proper port.Onsite peoples able to connect the database from any client using the same TNS names configration I am using.
    What are the possibilities to get this errors ?
    Please guide me on this.

    sadasivam wrote:
    Hi
    Thanks for reply.I checked with onsite DBA for listener and it is up.If you have an on-site DBA why aren't you working with him to solve the problem?
    Since you assert that other client machines are able to connect to the database, the issue must be with your own setup. I strongly suspect your tnsnames has a bad entry. Please compare it to the same file from a working client. Also, show us the contents of your tnsnames.ora file.
    >
    I dont have access of disable the firewall in my clent mechine.I will get it done by network team and post you the status.

  • End-of-communication channel error from client

    In my server oracle(oracle9i enterprices edition) is working fine but from client side i'm getting the following error
    *end-of-communication channel error
    But my network is working fine
    anyone can you give me the solution for this problem....?
    Message was edited by:
    user497084

    checkout TNSPING <service name> from cmd prompt
    Microsoft Windows XP [Version 5.1.2600]
    (C) Copyright 1985-2001 Microsoft Corp.
    C:\Documents and Settings\NJi>tnsping issl
    TNS Ping Utility for 32-bit Windows: Version 2.3.2.1.0 - Production on 25-OCT-06
    14:36:06
    Copyright , 1996(c) Oracle Corporation 1995. All rights reserved.
    Attempting to contact (ADDRESS=(COMMUNITY=tcp.world)(PROTOCOL=TCP)(Host=198.1.2.
    15)(Port=1521))
    OK (100 msec)

  • I suddenly started getting hard disk error from a fictitious recovery software how do i get rid

    I suddenly started getting hard disk error on my compaq laptop and some software called file recovery start running scans showing all sorts of errors and hiding all my files. I've lost all my icons can't see any files in explorer and upon looking into this found that this may be a fictitious software that has gotten installed on my laptop while browsing through some web sites. all was fine and the problem started while I was in the middle of brwoing some websites.
    I am trying to unhidew files but I can't get to my control panel as it does not seem to be there.
    Can someone please help. When I looked this i found a website telling descrbing everything that is happeniing on my screen and telling me that this is a fictitious software and gave me various options to resolve but I'm not sure if I should trust this site or not.
    Please help. Its my old mum's laptop and she really needs my help on this.
    Many thanks
    Rekha

    Try to download MalwareBytes and do a scan/cleaning with it:
    http://download.cnet.com/Malwarebytes-Anti-Malware/3000-8022_4-10804572.html?part=dl-10804572&subj=d...
    ******Clicking the Thumbs-Up button is a way to say -Thanks!.******
    **Click Accept as Solution on a Reply that solves your issue to help others**

  • Getting a syntax error from mx.transitions.Tween with flash CS4

    Hello all!
    I am getting an import error with the following libraries:
    import mx.transitions.Tween;
    import mx.transitions.easing.*;
    The errors are like this one:
    Definition fl.transitions:Tween could not be found
    I am using it as part of my .fla where for sorme reason it does not work but it works fine in the original archive. I guess it is a problem with the action script version becouse the original template use as2 and I am using as3.
    Does anyone know which are the equivalent libraries in as3???
    May I import does libraries directly in as3?
    Thanks in advance for your help

    in as3, you should use:
    import fl.transitions.Tween;
    import fl.transitions.easing.*;
    NOT
    import mx.transitions.Tween;
    import mx.transitions.easing.*;
    (see the difference?)

  • 802.1x errors from client in WLAN with WPA2 and PSK

    Hello,
    I have been doing a client troubleshooting and I have got some errors that does not have so much sense for me:
    1)
    Time :03/15/2011 14:49:54 CET Severity :ERROR Controller IP :10.x.x.x Message :802.1x authentication message received, static dynamic wep supported.
    2)
    Time :03/15/2011 14:49:54 CET Severity :INFO Controller IP :10.x.x.x Message :Association request received from a client has an invalid RSN IE.(One reason could be mismatch in WPA2 algorithm).
    The WLAN is configured with WPA2 with AES and PSK, and during the troubleshooting several roamings have happened.
    Do you have any idea why they can be produced?
    I attach the complete log.
    Thank you in advanced.

    Sounds like the clients are doing WPA with TKIP for the message number 2 for example ?

  • Getting the log files from client using java program

    hi
    this is lalita...and i am doing a project in networking.... i am new to socket programming....i have established the socket connection between the client and server...with this site members' help....now i have to get the log files of the client system from the server.... via the created socket....i need it by tomorrow...i.e apr 12th ....as i have to show it to my guide...
    i just need a core java program that will get the log information of the client from the server......
    Can anybody please help me in this regard..... it would be of great help to me and my group....
    Anxiously awaiting for the replies....
    Thanking you and regards...
    Lalita.

    Simple.
    Server is listening on a specific port for the connection from the clients.
    Connect the client with the server on the above mentioned port.
    Open the streams on both side for the connection and run in separate thread.
    Define a protocol for communication between client and server.
    e.g after connection with the server the server send a text message to the client (send log) now the client first should the log file name and size to the sever and then send the file. the server should save the file.
    then disconnect the client or want to get another file or for other tasks define the other commands

  • How to Get a transformation Error from a previous step in cc BPM

    Hello gurus!
    I have an important situation, in a BPM step I make a SendSync Call, if there is an error, it goes to the exception branch, and then I do a transformation step (to assign some values to an Idoc) and then I send the Idoc to an R3 system to inform the error.
    Sometimes, for example in the sync call throws this error: (that can be seen in the abap monitor)
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?><!-- Inbound Message --> <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="1"><SAP:Category>XIAdapterFramework</SAP:Category><SAP:Code area="MESSAGE">GENERAL</SAP:Code><SAP:P1/><SAP:P2/><SAP:P3/><SAP:P4/><SAP:AdditionalText>com.sap.engine.interfaces.messaging.api.exception.MessagingException: java.net.UnknownHostException: safcc.pfc.gov.tt</SAP:AdditionalText><SAP:Stack/><SAP:Retry>M</SAP:Retry></SAP:Error>
    My need is to get the error message,and to map it in an idoc field (with an UDF in the transformation exception branch for example), the error is exactly in this part of the result:
    <SAP:AdditionalText>com.sap.engine.interfaces.messaging.api.exception.MessagingException: java.net.UnknownHostException: safcc.pfc.gov.tt</SAP:AdditionalText>
    Is there any way to achieve this?
    Thanks in advance !
      Juan.

    You wont be able to get the error details....just an indication that an error has occured can be obtained (the exception branch)...no error text can be extracted.
    Regards,
    Abhishek.

  • How to get the specific error from the result of sectrustevaluate()

    I am using SectrustEvaluate(trust,result) function to test the server certificate against the root ca installed in keychain.
    Result of server certificate validation in case if comes as recoverable faliure how may i know what was the reason which causing it to recoverable failure.
    I want to throw the specific error to UI to know why server certificate evaluation failed.
    No API's available in ios , Some API's are there available in MAC.
    Please Advise.

    If you are on iOS I think you are out of luck.  See red text under kSecTrustResultRecoverableTrustFailure.
    https://developer.apple.com/library/ios/documentation/Security/Reference/certifk eytrustservices/Reference/reference.html#//apple_ref/c/func/SecTrustEvaluate
    The way you handle this depends on the OS.
    In iOS, you should typically refuse the certificate. However, if you are performing signature validation and you know when the message was originally received, you should check again using that date to see if the message was valid when you originally received it.
    In OS X, you can call the SecTrustGetTrustResult function to get more information about the results of the trust evaluation, or the SecTrustGetCssmResult function to get information about the evaluation in a form that can be passed to CSSM functions.

  • Getting following deployment error from Web Dynpro. Please help.

    Feb 17, 2009 3:13:36 PM /userOut/deploy (com.sap.ide.eclipse.sdm.threading.DeployThreadManager) [Thread[Deploy Thread,5,main]] ERROR:
    [016]Deployment aborted
    Settings
    SDM host : tpepqa
    SDM port : 50018
    URL to deploy : file:/C:/DOCUME1/DIPESH1/LOCALS~1/Temp/temp514457433364913160Welcome.ear
    Result
    => deployment aborted : file:/C:/DOCUME1/DIPESH1/LOCALS~1/Temp/temp514457433364913160Welcome.ear
    Aborted: development component 'Welcome'/'local'/'LOKAL'/'0.2009.02.17.15.13.26'/'0':Caught exception during application deployment from SAP J2EE Engine's deploy service:java.rmi.RemoteException: Cannot deploy application local/Welcome.. Reason: Clusterwide exception: Failed to deploy application local/Welcome. Check causing exception for details (trace file). Hint: Are all referenced components deployed and available on the engine?; nested exception is:      com.sap.engine.services.deploy.container.DeploymentException: Clusterwide exception: Failed to deploy application local/Welcome. Check causing exception for details (trace file). Hint: Are all referenced components deployed and available on the engine? (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Deployment exception : The deployment of at least one item aborted

    hi Dipesh,
    The error may be due to :
    1)some dependent dc's are not deployed on the server .Please do deploy it first.
    2) some ear with the same name is already existing on the server.So it is not able to deploy this one. For this one , the solution is change the application name and component name and deploy again.Hope this will work out.
    Thanks,
    Parama.

  • After running the download i get a mesage error from windows

    I get a message from windows saying i have to verify this program? i just downloaded other things and it worked? what is going wrong?

    What's the precise text of the message, please, chardy? (There's a few different ones I can think of that you might be getting.)

  • Backing up to external itunes, getting low disk error from macbook

    Hi all,
    So here's the deal: I have a 64Gb iphone with 1GB available, and a 256Gb macbook retina with 17Gb free space.
    The iphone backups are taking up a lot of space on the macbook. I looked into moving the backup files to an external drive and using a soft link to link it all together, but that's a lot more complicated than is necessary, so I just pressed option when opening itunes and created a new library on the external drive with 1TB free space (as reported by Finder).
    I can verify that the computer is using the external library as when I transfer purchases, that library on the external grows in size And doesn't have any of my old content. However, when I try to back up the phone (which is around 30GB) I get the error message that itunes cannot backup the phone because there is not enough space left on the computer, even though the external disk has a terabyte left. I know it's because the macintosh hd has only 17 Gb, is there any way to get round it?
    Thanks in advance!
    JJ

    It isn't using the external drive.
    http://osxdaily.com/2009/09/11/iphone-backup-location/ - your iPhone files are backed up at the following location:
    in Mac OS X:
    ~(your home directory)/Library/Application Support/MobileSync/Backup/
    That's for the files which are backed up in this manner.  Media files are not backed up along with the things above, but you may have other files taking up space.
    iTunes: About iOS backups - http://support.apple.com/kb/HT4946 - including a list of what is backed up.

Maybe you are looking for

  • My Iphone stopped ringing after my last sync

    So I synced to iTunes and I bought two ringtones. I synced them to the phone. After that, my phone only vibrates, but NONE of the rings "ring", although the settings are correct the volume is at max. I went to the genius bar at my local Apple store.

  • Using DBMS_AQ package in APEX

    Hello, I am trying to create a Queue table from application express. I read through a post on another forum that said some privs must be granted before a queue table can be created. They are: GRANT RESOURCE TO <UserName>; GRANT CONNECT TO <UserName>;

  • IDVD message, 'Error during formating'

    After adding ILIFE'09 I have successfully burned a DVD using Quicktime media , WMV converted to Quicktime and MP4 converted to Quicktime with my IDVD program, however after 4 days of burning, I suddenly received an ERROR message, after the "time rema

  • Announcing SWF2Go Pro 2.6 and free trial download

    Hello everyone, I am glad to announce a new update of SWF2Go Professional. We are now offering a full-featured trial as well. I you have missed, SWF2Go is the best Adobe Flash Lite packager for Symbian platform available in market today. Follow the l

  • Cinnamon dual display issue

    I have a perfectly working setup with KDE and I decided to try adding cinnamon to give it a try.  I added the cinnamon package, switched to slim rather than KDM as my display manager, that all works fine, I can log into a cinnamon session no problem