This is already a proxy session Error

Hello,
I've been trying to get the proxy user working properly using the Server Session Uses Main Connection and Each Client Session Uses a Separate Pooled Nonexclusive Proxy Connection configuration.
Things were sort of working when I was using the native data source. By sort of working I mean the writes to the database were sent via the proxied connection, the way they were supposed to. However, there was no connection pool used and performance was VERY BAD. I switched to a connection pool, but now I get the exception below. I am also attaching other relevant code. I use Spring with the ToplinkTransactionController. The exception occurs when I try to do an update (in a transaction) selects work fine. Any ideas?
Thanks.
     @Override
     public void preLogin(SessionEvent event) {
          System.out.println("preLogin");
          Session session = event.getSession();
          DatasourceLogin login = (DatasourceLogin) session.getDatasourceLogin();
          // Make sure that external connection pooling is used
          login.setUsesExternalConnectionPooling(true);
          login.setTableQualifier(getSchemaName());
          login.setConnector(new OracleJDBC10_1_0_2ProxyConnector(
                    ((JNDIConnector) login.getConnector()).getName()));
     @SuppressWarnings( { "deprecation", "unchecked" })
     @Override
     public void postAcquireClientSession(SessionEvent event) {
          System.out.println("postAcquireClientSession");
          ClientSession cs = (ClientSession) event.getSession();
          ConnectionPolicy policy = cs.getConnectionPolicy();
          // The Client Session will connect using the pool with the same name as
          // proxy user
          policy.setPoolName(getProxyForUser());
          ServerSession ss = cs.getParent();
          // if the pool doesn't exist, create and start up it
          ConnectionPool pool = ss.getConnectionPool(getProxyForUser());
          if (pool == null) {
               System.out.println("creating new pool for " + getProxyForUser());
               // Clone serverSession's login - the clone will be used by the new
               // connection pool
               DatasourceLogin login = (DatasourceLogin) ss.getLogin().clone();
               login.setTableQualifier(getSchemaName());
               // set proxy properties in the login
               login.setProperty("proxytype", Integer
                         .toString(OracleConnection.PROXYTYPE_USER_NAME));
               login.setProperty(OracleConnection.PROXY_USER_NAME,
                         getProxyForUser());
               // create the new pool
               pool = new ExternalConnectionPool(getProxyForUser(), login, ss);
               ss.getConnectionPools().put(getProxyForUser(), pool);
               // start it up
               pool.startUp();
from sessions.xml:
<server-platform xsi:type="oc4j-1013-platform">
<enable-jta>false</enable-jta>
</server-platform>
[TopLink Finer]: 2006.10.02 09:38:00.983--ServerSession(33147961)--Thread(Thread[ApplicationServerThread-4,5,RequestThreadGroup])--client acquired
06/10/02 21:38:00 postAcquireClientSession
[TopLink Finer]: 2006.10.02 09:38:02.225--ClientSession(24564705)--Thread(Thread[ApplicationServerThread-4,5,RequestThreadGroup])--acquire unit of work: 6768086
[TopLink Finer]: 2006.10.02 09:38:02.315--ClientSession(24564705)--Connection(19039521)--Thread(Thread[ApplicationServerThread-4,5,RequestThreadGroup])--begin transaction
[TopLink Finest]: 2006.10.02 09:38:02.315--ClientSession(24564705)--Thread(Thread[ApplicationServerThread-4,5,RequestThreadGroup])--reconnecting to external connection pool
[TopLink Warning]: 2006.10.02 09:38:02.335--ClientSession(24564705)--Thread(Thread[ApplicationServerThread-4,5,RequestThreadGroup])--Local Exception Stack:
Exception [TOPLINK-4002] (Oracle TopLink - 10g Release 3 (10.1.3.0.0) (Build 060118)): oracle.toplink.exceptions.DatabaseException
Internal Exception: java.sql.SQLException: This is already a proxy sessionError Code: 17149
     at oracle.toplink.exceptions.DatabaseException.sqlException(DatabaseException.java:276)
     at oracle.toplink.platform.database.oracle.OracleJDBC10_1_0_2ProxyConnector.connect(OracleJDBC10_1_0_2ProxyConnector.java:70)
     at oracle.toplink.sessions.DatasourceLogin.connectToDatasource(DatasourceLogin.java:147)
     at oracle.toplink.internal.databaseaccess.DatasourceAccessor.connect(DatasourceAccessor.java:197)
     at oracle.toplink.internal.databaseaccess.DatabaseAccessor.connect(DatabaseAccessor.java:221)
     at oracle.toplink.internal.databaseaccess.DatasourceAccessor.reconnect(DatasourceAccessor.java:400)
     at oracle.toplink.internal.databaseaccess.DatabaseAccessor.reconnect(DatabaseAccessor.java:1181)
     at oracle.toplink.internal.databaseaccess.DatasourceAccessor.incrementCallCount(DatasourceAccessor.java:184)
     at oracle.toplink.internal.databaseaccess.DatasourceAccessor.beginTransaction(DatasourceAccessor.java:122)
     at oracle.toplink.publicinterface.Session.basicBeginTransaction(Session.java:303)
     at oracle.toplink.threetier.ClientSession.basicBeginTransaction(ClientSession.java:105)
     at oracle.toplink.publicinterface.Session.beginTransaction(Session.java:398)
     at oracle.toplink.publicinterface.UnitOfWork.beginTransaction(UnitOfWork.java:412)
     at oracle.toplink.publicinterface.UnitOfWork.beginEarlyTransaction(UnitOfWork.java:402)
     at org.springframework.orm.toplink.TopLinkTransactionManager.doBegin(TopLinkTransactionManager.java:312)
     at org.springframework.transaction.support.AbstractPlatformTransactionManager.getTransaction(AbstractPlatformTransactionManager.java:283)
     at org.springframework.transaction.interceptor.TransactionAspectSupport.createTransactionIfNecessary(TransactionAspectSupport.java:226)
     at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:89)
     at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:170)
     at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:176)
     at $Proxy6.updateDmdMapAndText(Unknown Source)
     at com.teammeta.dmdeditor.backing.DmdEditorSession.saveFormAction(DmdEditorSession.java:249)
     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     at java.lang.reflect.Method.invoke(Method.java:585)
     at com.sun.faces.el.MethodBindingImpl.invoke(MethodBindingImpl.java:126)
     at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:72)
     at oracle.adf.view.faces.component.UIXCommand.broadcast(UIXCommand.java:211)
     at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:267)
     at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:381)
     at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicationPhase.java:75)
     at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:200)
     at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:90)
     at javax.faces.webapp.FacesServlet.service(FacesServlet.java:197)
     at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
     at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._invokeDoFilter(AdfFacesFilterImpl.java:367)
     at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._doFilterImpl(AdfFacesFilterImpl.java:336)
     at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl.doFilter(AdfFacesFilterImpl.java:196)
     at oracle.adf.view.faces.webapp.AdfFacesFilter.doFilter(AdfFacesFilter.java:87)
     at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
     at oracle.adfdemo.view.faces.webapp.RedirectFilter.doFilter(RedirectFilter.java:85)
     at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:627)
     at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:376)
     at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:870)
     at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451)
     at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:218)
     at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:119)
     at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
     at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
     at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
     at java.lang.Thread.run(Thread.java:595)
Caused by: java.sql.SQLException: This is already a proxy session
     at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:138)
     at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:175)
     at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:240)
     at oracle.jdbc.driver.PhysicalConnection.openProxySession(PhysicalConnection.java:1518)
     at oracle.jdbc.OracleConnectionWrapper.openProxySession(OracleConnectionWrapper.java:155)
     at oracle_jdbc_driver_LogicalConnection_Proxy.openProxySession()
     at oracle.toplink.platform.database.oracle.OracleJDBC10_1_0_2ProxyConnector.connect(OracleJDBC10_1_0_2ProxyConnector.java:68)
     ... 50 more
[TopLink Finer]: 2006.10.02 09:38:02.415--UnitOfWork(6768086)--Thread(Thread[ApplicationServerThread-4,5,RequestThreadGroup])--release unit of work
[TopLink Finer]: 2006.10.02 09:38:02.415--ClientSession(24564705)--Thread(Thread[ApplicationServerThread-4,5,RequestThreadGroup])--client released
2006-10-02 21:38:02.415 WARNING J2EE DS265 Unclosed connection detected : 'oracle_jdbc_driver_LogicalConnection_Proxy@1342a0b' : ''.
06/10/02 21:38:02 org.springframework.transaction.CannotCreateTransactionException: Could not open TopLink Session for transaction; nested exception is Exception [TOPLINK-4002] (Oracle TopLink - 10g Release 3 (10.1.3.0.0) (Build 060118)): oracle.toplink.exceptions.DatabaseException
Internal Exception: java.sql.SQLException: This is already a proxy sessionError Code: 17149
Local Exception Stack:
Exception [TOPLINK-4002] (Oracle TopLink - 10g Release 3 (10.1.3.0.0) (Build 060118)): oracle.toplink.exceptions.DatabaseException
Internal Exception: java.sql.SQLException: This is already a proxy sessionError Code: 17149
     at oracle.toplink.exceptions.DatabaseException.sqlException(DatabaseException.java:276)
     at oracle.toplink.platform.database.oracle.OracleJDBC10_1_0_2ProxyConnector.connect(OracleJDBC10_1_0_2ProxyConnector.java:70)
     at oracle.toplink.sessions.DatasourceLogin.connectToDatasource(DatasourceLogin.java:147)
     at oracle.toplink.internal.databaseaccess.DatasourceAccessor.connect(DatasourceAccessor.java:197)
     at oracle.toplink.internal.databaseaccess.DatabaseAccessor.connect(DatabaseAccessor.java:221)
     at oracle.toplink.internal.databaseaccess.DatasourceAccessor.reconnect(DatasourceAccessor.java:400)
     at oracle.toplink.internal.databaseaccess.DatabaseAccessor.reconnect(DatabaseAccessor.java:1181)
     at oracle.toplink.internal.databaseaccess.DatasourceAccessor.incrementCallCount(DatasourceAccessor.java:184)
     at oracle.toplink.internal.databaseaccess.DatasourceAccessor.beginTransaction(DatasourceAccessor.java:122)
     at oracle.toplink.publicinterface.Session.basicBeginTransaction(Session.java:303)
     at oracle.toplink.threetier.ClientSession.basicBeginTransaction(ClientSession.java:105)
     at oracle.toplink.publicinterface.Session.beginTransaction(Session.java:398)
     at oracle.toplink.publicinterface.UnitOfWork.beginTransaction(UnitOfWork.java:412)
     at oracle.toplink.publicinterface.UnitOfWork.beginEarlyTransaction(UnitOfWork.java:402)
     at org.springframework.orm.toplink.TopLinkTransactionManager.doBegin(TopLinkTransactionManager.java:312)
     at org.springframework.transaction.support.AbstractPlatformTransactionManager.getTransaction(AbstractPlatformTransactionManager.java:283)
     at org.springframework.transaction.interceptor.TransactionAspectSupport.createTransactionIfNecessary(TransactionAspectSupport.java:226)
     at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:89)
     at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:170)
     at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:176)
     at $Proxy6.updateDmdMapAndText(Unknown Source)
     at com.teammeta.dmdeditor.backing.DmdEditorSession.saveFormAction(DmdEditorSession.java:249)
     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     at java.lang.reflect.Method.invoke(Method.java:585)
     at com.sun.faces.el.MethodBindingImpl.invoke(MethodBindingImpl.java:126)
     at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:72)
     at oracle.adf.view.faces.component.UIXCommand.broadcast(UIXCommand.java:211)
     at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:267)
     at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:381)
     at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicationPhase.java:75)
     at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:200)
     at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:90)
     at javax.faces.webapp.FacesServlet.service(FacesServlet.java:197)
     at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
     at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._invokeDoFilter(AdfFacesFilterImpl.java:367)
     at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._doFilterImpl(AdfFacesFilterImpl.java:336)
     at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl.doFilter(AdfFacesFilterImpl.java:196)
     at oracle.adf.view.faces.webapp.AdfFacesFilter.doFilter(AdfFacesFilter.java:87)
     at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
     at oracle.adfdemo.view.faces.webapp.RedirectFilter.doFilter(RedirectFilter.java:85)
     at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:627)
     at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:376)
     at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:870)
     at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451)
     at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:218)
     at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:119)
     at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
     at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
     at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
     at java.lang.Thread.run(Thread.java:595)
Caused by: java.sql.SQLException: This is already a proxy session
     at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:138)
     at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:175)
     at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:240)
     at oracle.jdbc.driver.PhysicalConnection.openProxySession(PhysicalConnection.java:1518)
     at oracle.jdbc.OracleConnectionWrapper.openProxySession(OracleConnectionWrapper.java:155)
     at oracle_jdbc_driver_LogicalConnection_Proxy.openProxySession()
     at oracle.toplink.platform.database.oracle.OracleJDBC10_1_0_2ProxyConnector.connect(OracleJDBC10_1_0_2ProxyConnector.java:68)
     ... 50 more

It's a known problem. Proxy Authentication error - "This is already a proxy session" describes the workaround.

Similar Messages

  • I get an error message when trying to sign into the support community with another Apple id. On the pick a username screen I get "an account utilizing this address already exists...." despite trying a few usernames. Anyone know how I can resolve this?

    I get an error message when trying to sign into the support community with another Apple id. On the <pick a username> screen I get "an account utilizing this address already exists.Only one account per email address is allowed on the Apple Support Communities" despite trying a few usernames. Anyone know how I can resolve this?

    This problem has been driving me demented. The instructions that Ivan gives have partially worked for me. By following his link
    "How to find out if you have multiple Apple IDs" I was able to identify that yes I did have two apple accounts using the same e mail address. One was very old that I used to use for the forum boards and one is my much more recent ID that I use for everything these days. So I changed the e mail address for the old account which is associated with these discussion boards and that's the account that I am now posting this from. However even though the two accounts now have different e mail addresses when I try to log onto the boards with my more recent main apple ID I still get all the same errors as described at the start of this thread by rodgers_j. And of course that's the one I want to use so that I only have one itunes account for everything.
    So if anyone has any more hints I'd be very grateful.

  • Trying to install final cut express keep getting error message "FCE" can't install on this disk.  A newer version of this software already exists on this disk.  Have remove all FCE elements with no success.

    Keep getting error message "FCE" can't install on this disk.  A newer version of this software already exists on this disk.  Have remove all FCE elements with no success.

    http://www.digitalrebellion.com/fcsremover/

  • File Error: A file of this name already exists

    im using Final Cut Pro 5.1.4 and whenever I tried to export a sequence using compressor, I get that error message "File Error: A file of this name already exists". I tried reinstalling the program, nothing. What can I do to fix that?

    Sounds like you already have a file by that name located in the place you want to export to. Try changing the name of your new file.
    b

  • Hi,Error when adding chart of account This entry already exists in the foll

    Hi,
    I am getting these below error while adding new chart of account.
    This entry already exists in the following tables  '' (UDO1) (ODBC -2035)  [Message 131-183]
    This entry already exists in the following tables  'G/L Accounts' (OACT) (ODBC -2035)  [Message 131-183]
    please suggest solving .  Thanks Advance.
    Regards
    Rajkumar Gupta

    Hi,
    You may check this thread:
    Re: This entry already exists in the following tables -Message
    Also check SAP Note Number: 1054713 to see if it applies to you. It might be a bug too.
    Thanks,
    Gordon

  • Getting error message 2053 "This entry already exists in the following tab"

    Hi all
    i have a user form which is connected to UDO of type document which has a document line user table which is bounded to a matrix within the user form.
    when i add a new line to the matrix and press update it works fine. when i change a value in one of the fields of the newly added row and press the update button, i recieve the error message:
    "2053 This entry already exists in the following table".
    question is what is causing this error and how can it be fixed?
    appreciate the help
    Yoav

    Hi Yoav,
    If you run "Restore numbering"from the administration/.../Restore menu it will probably be solved.
    Regards
    Ad

  • Error: This entry already exists in the following tables "(ALR2)(ODBC -2035

    Dear Expert,
    I can not prepare Sales Order and Purchase Order in SAP B1-2007 SP 1(Both Documents Having on Approval ), due to following system error.
    System Error:
    This entry already exists in the following tables "(ALR2)(ODBC -2035) [Message 131-183]
    Kindly check it and provided me solution.

    Hi,
    Check This
    This Entry already in following tables "AIT1) (ODBC-2035) [message 131-183]
    Regards
    Deepak Tyagi

  • Inventory Revaluation Error : This entry already exists in the foll.table

    Dear community members,
    For Inventory Revaluation, we have used Primary Series for fiscal
    year2008-2009( April2008 -March2009) and total number of documents
    posted last fiscal yr are 43(Primary 1 to Primary 43)
    Starting Fiscal year 2009-2010(April2009-March2010), we havedefined
    series 09-10 (First Number 1) and assigned it to current fiscal year
    (Period Indicator 09-10), but when we are trying to post first
    Inventory Revaluation documnet for fiscal year 09-10 (Series 09-
    10,documnet number 1) , system gives an error "This entry already
    exists in following table(OMRV)
    Please provide the solution ASAP
    Regards,
    Mukesh Agrawal

    Hi,
    You can check the similar settings in the Demo database and if the issue is not reproduced, it can be a database corruption.
    Probably, you need to log a support Ticket to SAP in order to get your issue investigated.
    Kind Regards,
    Jitin
    SAP Business One Forum Team

  • Import from scanner give error message "This file already exists in this catalogue"

    I can import from the scanner occasionally, but often times get this error message.  " this file already exists in this catalogue" and the scanned picture is discarded.
        I see others have had it as well, but no solutions were posted. I'm running Photoshop elements 11 with all current updates.

    Thanks for the reply. My Image wasn't in a version set however.   I scanned a new photo which was successsful. I then scanned a second photo different from the first, which failed.  I think possibly the software for my HP scanner is at fault, since it always names the scans as image1.jpg. It doesn't give an option to increment successive scans to a different name which probably caused the problem.

  • Error :This database already exists and is not a supported version of MBAM.

    While installing MBAM 2.0 SP1 i get the following error ,screenshot is attached.
    This database already exists and is not a supported version of MBAM.
    System set-up
    Server 2012 on which SQL 2012 SP1 is installed.
    Adding MBAM Audit , recovery and compliance features.

    Change the name of the database to:-
    - For Recovery database - "MBAM Recovery and Hardware"
    - For Compliance Database - "MBAM Compliance Status"
    While installing the MBAM DB features and then try. Don't change the default names or use any custom name for DBs.
    Gaurav Ranjan

  • Error when updating Budget-This entry already exists...Budget (OBGT)

    SAP 2007A SP00 PL49
    When updating Budget, get following error:
    This entry already exists in the following tables 'Budget' (OBGT) (ODBC-2035) [Message 131-183]
    Any ideas?
    Thanks,
    Ajay Audich

    Hi,
    Vitor Vieira,
    Thank you that your answer helped me solving my problem to some extent.
    I solved the problem by creating document and document lines table and creating a UDO with it. Because the problem was with assigning some data to the u201CCodeu201D field when using master type tables.
    I didnu2019t get any problem after using the document and document lines table.
    Also,initially I didnu2019t bind the # column of my matrix with the LineID field of table. After doing that it is working fine and I am able to update the records.
    But still this is not a proper solution and I didnu2019t get answer for why master type UDO doesnu2019t support updating.
    Thanks,
    V.M.Nivasini

  • Nokia Music error "this phone already has unlimite...

    I'm having trouble downloading songs from Nokia music some error is out says this phone already has unlimited download register
    Moderator's note: The subject was amended.

    Hello, EglantineLorenz.
    Thank you for posting and welcome to the Nokia Support Discussion!
    Please answer these questions for us to diagnose your situation and offer a solution.
    • What is your phone model?
    • Where are you located?
    • Where did you purchase your phone?
    • Did you purchase it second hand?
    • Have you been using your nokia account to access the Nokia Music service on a different device before?
    • Did someone log in their Nokia account on your phone to access their Nokia Music service?
    To add, you may check michaels' post here: http://discussions.nokia.com/t5/Music/nokia-music-activation-problam/m-p/1969510#M22463 .
    We are looking forward to hear your response.

  • When i sign on I get this message.  An undefined AIM session error has occurred.

    when i sign on I get this message.  An undefined AIM session error has occurred.

    Hi,
    In iChat > Preferences > Accounts  go to the Server Setting tab for the account in question
    Change the Port from 5190 to 443  (you can only do this whilst Logged out)
    Now go to the Account Info tab and tick the Use this Account box to Log in
    If you still can't log in then return to the Server Settings and deselect SSL and try logging in again.
    <
    8:50 PM      Friday; July 22, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb( 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Web Proxy sessions stop working after some time (ISA 2006)

    Hi guys,
    we have been using ISA 2006 with Web Publishing Rule to provide access for mobile phone to corporate Exchange via ActiveSync for years. The issue occurred roughly one month ago. 
    After some period of time (usually it happens once or twice daily) ISA stops to accept connections from the mobile phones. There are no errors on client devices (they don't get new mails). In Sessions tab I see that only SecureNAT sessions from phones remain,
    but no Web Proxy sessions any more. There are no errors in Event Viewer and I didn't find anything strange in diagnostic logs.
    I've created one more Web Publishing Rule with the same Web listener as for ActiveSync rule for OWA. The intersting thing that ISA still allows access to OWA when issue occurs. Looks like the problem with Web Proxy filter.
    After OS restart ISA starts working normally. 
    I have ISA 2006, sp1, version 5.0.5723.514 installed on VMWare VM with Windows 2003 SE sp2.  
    Do you have any ideas?

    Hi,
    Does this issue still exist? If so, you could try to collect logs from devices to find more information.
    http://support.microsoft.com/kb/2461792
    Best Regards,
    Joyce
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Item already locked by user error

    Hi, I am getting the problem item already locked by User error when i try to edit a user idm 6.0 So, any solution for this?

    The basic reason for this error is the object you are trying to access is already locked by another user (helpdesk/ proxy user or admin).
    Generally you can check the lock status who has the active lock on the object from the lh console also.
    http://identitycontrol.blogspot.com

Maybe you are looking for

  • Problems sending a PDF via mail

    Hi !! I have a report, runs in background, which obtains some information from sap tables and then generates an ALV. As it is executed in background, the ALV creates an spool order. After this, I convert this spool into a PDF object . And then I need

  • Tables (not shown or hidden)

    Hi Experts, Is there a way of showing tables that are hidden or not shown in the query wizard listing when you tab to see the table list. I have had a couple of instances where when trying too write the query and struggled.  But when I have spoken to

  • Audio Jack Output Problem

    When I hear music via iTunes with my Beats Mixr, I hear it louder with the right ear. Neither my Beats nor I have a problem. It comes from my MacBook Pro 13" (Late 2013, 4GB). What do I do?

  • Like operator with PowerQuery

    Hi Everyone Please help me to construct a PowerQuery With help of LIKE operator SQL Query Below is my sample Query select * from abc where LastModifiedDate like '2012-02-06%' Thanks In Advance..

  • Weblogic 10 and JSF1.2

    Hi, I found few threads in the forum on jsf with weblgoic 10 but they didn't solve my problem. I am deploying a web application which uses jsf1.2_01 (due to certain limitations with our environment , i have to use only this version) on weblogic 10 se