JDBC SQLServer: Error when loosing connection

Hi all,
I have this problem: I�m using microsoft jdbc driver for sqlserver 4 to connect to my sqlserver database. The connection is working just fine, but I want to create a method to reconnect to the database if the connection is lost (for example, if the SQLServer machine is rebooted).
I test to see whether if the connection is closed. If it�s closed, I set the connection to null and try to connect again, but it gives me this error:
[Microsoft][SQLServer JDBC Driver][SQLServer]Cannot open database requested in login 'XXXX'. Login fails.
The login and password are the same. Nothing is different from the first routine that connects to the database.
If I shutdown the application and start again, it works. So, my problem is with the reconnect routine, but it just calls the first connect routine.
What could be the problem? any hints?
Tks a lot
Rodrigo

Ok
Here is part of my code:
First of all, I call this code in the constructor of the object:
con = getConnection();
Here is the getConnection code:
     private Connection getConnection()
          LogFile.logInfo("MMSSender","getConnection()","Creating connection...");
          try
               con = DataBaseManager.getConnection();          
          catch (Exception e)
               LogFile.logError("MMSSender","getConnection()",e.getMessage());
          LogFile.logInfo("MMSSender","getConnection()","Connection created.");
          return con;
here is the reConnect() code
     public void reConnect()
          try
                    DataBaseManager.releaseConnection(con);
                    LogFile.logInfo("MMSSender","reConnect()","Reabrindo conex�o com o banco de dados ...");
                    con = getConnection();
                    LogFile.logInfo("MMSSender","reConnect()","Conex�o reaberta com sucesso");
          catch (Exception e)
               LogFile.logError("MMSSender","reConnect()",e.getMessage());
//DATABASEMANAGER class
public static Connection getConnection() throws SQLException, ClassNotFoundException, InstantiationException, IllegalAccessException, ConstanteException{
     Connection conn     = null;
     String login = null;
     String password = null;
     String connect = null;
     String driver = null;
     login      = Constantes.getConstante("usr");
     password = Constantes.getConstante("pass");
     connect      = Constantes.getConstante("connStr");
     driver = Constantes.getConstante("driver");
     cls = Class.forName(driver);
     d = (Driver) cls.newInstance();
     DriverManager.registerDriver(d);
     conn = DriverManager.getConnection(connect, login, password);
     return conn;
public static void releaseConnection(Connection conn) {
     try {
          conn.close();
          conn = null;
     catch (Exception e){
          System.out.println("Erro ao liberar a conex�o com a base de dados: "+e);
Tks again
Rodrigo

Similar Messages

  • I am getting an error when I connect my Ipod, I have used it on this laptop before but now it is saying "Ipod detected, but it could not be detected properly"  Help please!

    I am getting an error when I connect my Ipod, I have used it on this laptop before but now it is saying "Ipod detected, but it could not be detected properly"  Help please

    You can try going through this troubleshooting document
    iPod nano: Error message saying that iPod 'could not be identified properly' - Apple Support

  • Malfunction error when I connect

    Recently received an iPod from a friend. Everytime I try to connect the iPod [it's an 8g nano] I get the error message
    'One of the USB devices attached to this computer has malfunctioned , and Windows does not recognize it.'
    Not sure what to do. Any suggestiong? Also, no apple help topics have worked for me.
    Thanks.
    Compaq Presario   Windows XP  

    Hi again, cupcake,
    Let's try forcing your iPod into disk mode. To do that, follow the steps mentioned here:
    Putting iPod into disk mode
    With the iPod in disk mode, connect it to your computer.
    If you still get a "USB device has malfunctioned" error when you connect your iPod, then let's try something else.
    Make sure that your computer's USB drivers are up-to-date. And, in some cases, you may need to reinstall those drivers.
    See this article for instructions on that:
    iPod is not recognized properly by computer when USB drivers are not installed properly or are out of date
    If that didn't work, then you can try reformatting your iPod to FAT32 in Windows, and see if that affects anything:
    1 - Connect your iPod to your computer.
    2 - When iTunes has finished syncing with your iPod, open "My Computer".
    3 - Right-click on your iPod, and click on "Format". (If your iPod is not showing in My Computer, make sure that disk use isn’t enabled in iTunes).
    4 - Here, verify that your formatting settings are "Default", with the format type set for FAT32. Also, make sure that "Quick Scan" is not selected.
    5 - Then, click on "OK" to begin the formatting process.
    6 - When this is complete (it might take a while), make sure to restore your iPod in iTunes again, so as to properly reload the firmware back onto it again.
    Any success?
    -Kylene

  • Receiving oracle.jdbc.driver error when trying to connect

    Setup:
    Windows 7 64bit
    4GB ram
    SQL Developer 3.2.20.09
    Java platform 1.6.0_37
    Oracle IDE 3.2.20.09.87
    Hello, I'm going to start by saying I'm a rank amateur when it comes to using and understand SQL developer. My entire need for this program is to connect to a virt server at my office and test out my SQL queries against our tables. It's been working great for this purpose until yesterday when I received this error:
    An error was encountered performing the requested operation:
    oracle.jdbc.driver.T2CConnection.getLibraryVersionNumber()I
    Vendor code 0
    I did some searching and found a few references to this error but due to my inexperience I was unable to follow the resolutions and fix the error. This connection was working fine until yesterday afternoon which seemed odd. Based on my control panel, here is what I installed yesterday, I believe I installed both Java's after the error occurred seeing if they would alleviate the issue.
    MySQL Administrator 1.1
    Java SE Development Kit 6 Update 41 (64-bit)
    MySQL Workbench 5.2 CE
    Java 6 Update 41 (64-bit)
    Could one of these be the root of the issue?
    Thanks for the help and sorry for the lack of technical expertise, my need is very narrow and up until now this program has worked great for me.
    -Brad
    Edited by: 998110 on Apr 4, 2013 9:46 AM

    >
    Could one of these be the root of the issue?
    >
    More likely to be that you are now using the wrong version of the oracle jdbc jar file.
    Post the name and version of the JDBC jar file that you think you are using.
    Search the pc for ALL such files.
    Examine the environment variables (e.g. PATH) to see if they reference jdbc jars other than the ojdbc6 jar you should be using.

  • JDBC receiver error Cannot establish connection with the registered driver

    Hi Expert,
    I am constructing a proxy to JDBC scenario. And I am getting error saying "
    Message processing failed. Cause: com.sap.engine.interfaces.messaging.api.exception.MessagingException: Error when attempting to get processing resources: com.sap.aii.af.lib.util.concurrent.ResourcePoolException: Unable to create new pooled resource: DriverManagerException: Cannot establish connection with the registered driver. oracle.jdbc.driver.OracleDriver returns: The Network Adapter could not establish the connection. : SQLException: The Network Adapter could not establish the connection"
    I can get into my Oracle database using TOAD with same IP address, user name and password. Could anybody tell me what should I do? Thanks a lot!
    Charles

    Hi,
    Check with your network team, network conenction between PI and Data base not working , Network team have to open Data base system ports inorder connect PI System.
    check with Basis team about network connectivty,like they are bale to ping Data base server ip or not.
    please go through below thread,
    SQLException: Io exception: The Network Adapter could not establish the con
    regards,
    ganesh.

  • Error when making connection:  You have an error in your SQL syntax;

    I'm getting this error when trying to make a simple Database Connection:
    SQLException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '????????????????????????????????' at line 1
    SQLState: 42000
    VendorError: 1064
    I tried a different driver and got the same error with more "?"s in the "use near....." part.
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.SQLException;
    public class DBTest{         public static void main(String[] args){                 try{                         Class.forName("com.mysql.jdbc.Driver").newInstance();                 } catch(Exception e){                         System.out.println(e);                         System.exit(0);                 }                 Connection conn = null;                 try {                         conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/testDB?" + "user=root&password=password");                         conn.close();                 } catch (SQLException ex) {                         // handle any errors                         System.out.println("SQLException: " + ex.getMessage());                         System.out.println("SQLState: " + ex.getSQLState());                         System.out.println("VendorError: " + ex.getErrorCode());                 }         } }
    MySQL Server Version:
    Server version: 5.0.67-0ubuntu6 (Ubuntu)

    cotton.m wrote:
    c0c0 wrote:
    I've tried Drivers 5.1 , 5.0 and 3.1 now and I get the same problem every time. I've tried switching databases, users, etc but always get this same error:
    java.sql.SQLException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '????????????????' at line 1
    I have the latest version of mysql from the Ubuntu repositories. Do I have to configure that a certain way? It isn't the URL which I supply that it does not like because I've tried multiple URLs and they all give me the same error when I supply the correct information.
    Any help is greatly appreciated.This is.. very odd.
    I have to ask are you really, really sure that your code is just as you posted? Are you sure you aren't running a query of some sort? My guess at this point would be some sort of rather bizarre encoding issue. I'm sorry but I can't reproduce your behaviour, I am connecting to different MySQL instances with no problem from Ubuntu..
    Yes the code is exactly the same as what I posted (except hiding actual usernames and passwords)
    I've even tried to connect to a remote mysql server and get the same behavior (If I type in the wrong database it alerts me there is no db of that name, if I lg in with the wrong password it alerts me cant login ____ @ ______, when I have all the correct information I get that same old error) , I'm somewhat convinced it's my driver now. I thought at first it was the way I had mysql configured but now I think it's my driver or the way I have everything installed. I simply put the driver location in the classpath and do the command:
    export set CLASSPATH=/usr/share/tomcat5.5-webapps/ROOT/lib/mysql-connector-java-5.1.7-bin.jar
    Was this the wrong way to go about doing it? I'm not currently running tomcat I simply put it there because a book said that's where it should go for tomcat, but I wanted to first try this not running tomcat with just a simple normal Java example.

  • "USB Device Not Recognized" error when I connect iPod to my PC

    I have a brand new 5th gen (I think) iPod.
    I have been able to connect it successfully to my home laptop, download music to it and play it so I know the iPod works per se and the cable is ok too.
    Now at work (where tons of my music is) when I connect it to my PC here and I get a "USB Device Not Recognized" error pops up from my taskbar. When I click on the message it pops up a "USB Device Not Recognized" window which displays a list of USB ports, and shows "Unknown Device" for the one where the iPod is connected.
    I think its probably USB1.something as opposed to USB2.0 but from what I understand that shouldn't matter.
    Can anyone suggest anything ?
    I've tried the 5R's as far as I can, and I read through this thread:
    http://discussions.apple.com/thread.jspa?threadID=500559&tstart=15
    but there didn't seem to be anything conclusive.
    Thanks for any help,
    Jill

    First make sure the latest iTUnes is installed on this work PC, IF your allowed to install things on it, the latest iTunes version is 6.0.4.2 and can be downloaded from the apple site (Hit iPod+iTunes tab at the very top of this web page)
    Another thing is what version of windows is the work PC? Is it windows XP Windows 2000 Or windows Me 98? iTunes will only run on XP and 2000

  • Error when create connection in Xcelcius 2008 SP3 to BW EHP 1 SPS 6

    Dear All,
    Last week there is no problem in this connection, buat since today this error happen.
    We found error when trying to connect Xcelcius and and BW,below the error:
    com.sap.ip.bi.bics.remote.impl.rmi.ApplicationCreationException: Could not to create the application. This is probably due to a misconfigured Abap/Java connection.
    at com.sap.ip.bi.bics.remote.impl.rmi.cc.AbstractConnectionContext.getApplication(AbstractConnectionContext.java:195)
    at com.sap.ip.bi.bics.remote.impl.rmi.cc.AbstractConnectionContext.createBicsRemoteMessageProducer(AbstractConnectionContext.java:387)
    at com.sap.ip.bi.bics.remote.impl.rmi.cc.AbstractConnectionContext.getMessageProducer(AbstractConnectionContext.java:209)
    at com.sap.ip.bi.bics.remote.BicsRemoteImpl.getDesignTimeInfo(BicsRemoteImpl.java:156)
    at com.sap.ip.bi.bics.remote.BicsRemoteBean.getDesignTimeInfo(BicsRemoteBean.java:109)
    at com.sap.ip.bi.bics.remote.BicsRemoteObjectImpl0_0.getDesignTimeInfo(BicsRemoteObjectImpl0_0.java:379)
    at com.sap.ip.bi.bics.remote.BicsRemote_Stub.getDesignTimeInfo(BicsRemote_Stub.java:328)
    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:331)
    at com.sap.engine.services.webservices.runtime.EJBImplementationContainer.invokeMethod(EJBImplementationContainer.java:126)
    at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:157)
    at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:79)
    at com.sap.engine.services.webservices.runtime.servlet.ServletDispatcherImpl.doPost(ServletDispatcherImpl.java:92)
    at SoapServlet.doPost(SoapServlet.java:51)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
    at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
    at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
    at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
    at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)
    Caused by: com.sap.ip.bi.base.service.connection.ConnectionException: No connection possible to BI master system BD1CLNT500
    at com.sap.ip.bi.base.portal.connection.impl.GenericConnectionPool.getMasterSystemConnection(GenericConnectionPool.java:71)
    at com.sap.ip.bi.base.application.impl.Application.createService(Application.java:568)
    at com.sap.ip.bi.base.application.impl.Application.getMasterSystemService(Application.java:1027)
    at com.sap.ip.bi.base.application.impl.Application.getProperty(Application.java:829)
    at com.sap.ip.bi.base.application.impl.Application.startApplicationStep(Application.java:346)
    at com.sap.ip.bi.base.application.impl.Application.initialization(Application.java:326)
    at com.sap.ip.bi.base.application.ApplicationFactory.createApplication(ApplicationFactory.java:63)
    at com.sap.ip.bi.bics.remote.impl.rmi.cc.ConnectionContextStateless.createApplication(ConnectionContextStateless.java:72)
    at com.sap.ip.bi.bics.remote.impl.rmi.cc.AbstractConnectionContext.getApplication(AbstractConnectionContext.java:172)
    ... 31 more
    Caused by: com.sap.ip.bi.base.service.connection.ConnectionException: No connection exists for system "BD1CLNT500"
    at com.sap.ip.bi.base.portal.connection.PortalConnectionPool.getConnection(PortalConnectionPool.java:206)
    at com.sap.ip.bi.base.portal.connection.impl.GenericConnectionPool.getMasterSystemConnection(GenericConnectionPool.java:67)
    ... 39 more
    Caused by: com.sap.mw.jco.JCO$Exception: (101) RFC_ERROR_PROGRAM: 'user' missing
    at com.sap.mw.jco.MiddlewareJRfc.generateJCoException(MiddlewareJRfc.java:518)
    at com.sap.mw.jco.MiddlewareJRfc$Client.connect(MiddlewareJRfc.java:1086)
    at com.sap.mw.jco.JCO$Client.connect(JCO.java:3256)
    at com.sapportals.connectors.SAPCFConnector.connection.SAPCFConnectorManagedConnection.connectWithJCO(SAPCFConnectorManagedConnection.java:429)
    at com.sapportals.connectors.SAPCFConnector.connection.SAPCFConnectorManagedConnection.establishInitialConnection(SAPCFConnectorManagedConnection.java:204)
    at com.sapportals.connectors.SAPCFConnector.connection.SAPCFConnectorManagedConnection.init(SAPCFConnectorManagedConnection.java:183)
    at com.sapportals.connectors.SAPCFConnector.connection.SAPCFConnectorManagedConnectionFactory.createManagedConnection(SAPCFConnectorManagedConnectionFactory.java:129)
    at com.sap.engine.services.connector.jca.ConnectionHashSet.match(ConnectionHashSet.java:338)
    at com.sap.engine.services.connector.jca.ConnectionManagerImpl.allocateConnection(ConnectionManagerImpl.java:262)
    at com.sapportals.connectors.SAPCFConnector.connection.SAPCFConnectorConnectionFactory.getConnectionEx(SAPCFConnectorConnectionFactory.java:156)
    at com.sap.portal.ivs.internalconnector.ConnectionProvider.getConnection(ConnectionProvider.java:295)
    at com.sap.portal.ivs.internalconnector.ConnectionProvider.getConnection(ConnectionProvider.java:256)
    at com.sapportals.portal.ivs.cg.ConnectorService.getConnection(ConnectorService.java:446)
    at com.sapportals.portal.ivs.cg.ConnectorService.getConnection(ConnectorService.java:84)
    at com.sap.ip.bi.base.portal.connection.PortalConnectionPool.getConnection(PortalConnectionPool.java:170)
    Please your help and solution on this,
    Thanks and Best Regards,
    Widi

    Hi Mustafa,
    Yes, we are able to resolve the issue.
    This issue happen because we change the configuration in
    System Admin -> System Configuration -> Portal Content -> Systemlandscape -> (your system landscape)
    - Display = Object
    - Property Category = User Management
    - Authentication Ticket Type = SAP Assertion  TIcket
    - Logon Method = SAPLOGONTICKET
    - User Mapping type = admin,user
    After we change this configuration, our we can connect with our Xcelcius to SAP BW.
    Please kindly check your User Management configuration.
    Regards,
    Widi

  • Certificate error when using connection broker on Mac client

    We're using RD Connection Broker using IP address redirection for a couple of years now. Previously Mac client were using iTap RDP without any problems. Clients are connecting using a RD Gateway server.
    When trying to connect using the latest Microsoft remote desktop client (version 8.0.24255) a certificate warning is shown saying the IP-address doesn't match the name in the certificate. The client shoudn't match the IP address with the certificate but
    should match the farm name. The error occurs when the connection broker redirects the client to a server.
    Any help is appreciated
    <style type="text/css">p, li { Version 8.0.24255</style>

    Hi MatthijsO,
    Have you updated it to 8.0.3? Does the issue persist?
    Thanks.
    Jeremy Wu
    TechNet Community Support

  • I get a USB error when I connect my ipod to my CRv

    I have an iPod 5th gen...
    When I connect it to my' 2013 Honda crv, via USB.. I get a UBB Error on my dashboard.  I hit the aux and other buttons but not able to get it play my music that is loaded on my iPod.  
    thanks
    rt

    Does Honda say it is compatible with the 5G iPod? It just may not be compatible.
    Did you reset the car system?
    Sometimes this works;
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:       
    iOS: How to back up
    - Restore to factory settings/new iOS device.

  • Error when I connect my iPhone to my Mac

    When I connect my iPhone 5 to my MacBook Pro (running OS X 10.9.1) I get an error that says "com.apple.MediaLibraryService quit unexpectedly"

    Obviously you're a develper since you have iOS 8 beta.  You agreed to NOT post in these forums.  You must post in the Developer Forum for help.

  • Adobe Designer 7.0 - XML parsing error when data connection to XML with UTF-16

    Hi all
    <br />
    <br />I need to change my data connection xml file to use UTF-16 instead of ISO-8859-1. When I connect the file with the UTF-16 encoding, I receive the following error
    <br />
    <br />Invalid XML: Xml parsing error: encoding specified in XML declaration is incorrect (error code 19) ..
    <br />
    <br />The XML declaration is:
    <br /><?xml version="1.0" encoding="utf-16"?>
    <br />
    <br />I am able to succesfully set the encoding to "UTF-8". UTF-16 should also be possible.
    <br />
    <br />Has anyone seen this error before ? How can I resolve this ?
    <br />
    <br />Thanks in advance
    <br />
    <br />Bilal Haniff

    Thank you, expert, for your quick reply.
    Described problem got solved: we noticed later that the extra text only appears for users using Adobe professional 7.0, 'normal' users with adobe 8.0 reader don't get the extra text, so that is ok for us.

  • Database Connector Error when I connect SAP Crystal Report to dbase

    When I connect SAP Crystal Report to dbase the error is "Database Connector Error", only when exist a field the type memo. I need to used this type of field, somebody that known how can I resolve this problem or some idea?
    Thanks a lot for your help.

    Hi,
    there are sevaral SAP Notes for your problem. Can you specify the databaseof the source?
    i.e. MS SQL Server -> Note 1212769
          dbase -> Note 1209347
    regards
    -Phil

  • JDBC/SQLServer errors

    Hi all:
    I have the folowing SELECT giving me some odd troubles from a Java application to a SQLServer 2000:
    If i use a db manager (hsqldb) with the JdbcOdbc bridge driver, it works OK.
    If i use a db manager (dBVisualizer) with the native driver, it works OK.
    If i use it from within my application that is using the native driver, i get
    java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for JDBC][SQLServer]Incorrect syntax near the keyword 'AS'.
    Wath is going on?
    SELECT Tarefa.Tarefa_K, Tarefa.Processo_K, Tarefa.DataAbertura, Tarefa.AssuntoTarefa, DocumentoItem.Referencia, DocumentoHeader.NomeFriendly, [NomeLogin]+' ('+[NomeUtente]+')' AS Responsavel, Utente.Utente_K, (SELECT Max(Versao) FROM DocumentoItem DI WHERE DI.DocumentoHeader_K = DocumentoHeader.DocumentoHeader_K) AS Versao, DocumentoHeader.DocumentoHeader_K FROM ((Utente INNER JOIN Tarefa ON Utente.Utente_K = Tarefa.UtenteAtribuido_K) INNER JOIN DocumentoHeader ON Tarefa.Tarefa_K = DocumentoHeader.Origem_K) INNER JOIN DocumentoItem ON DocumentoHeader.DocumentoHeader_K = DocumentoItem.DocumentoHeader_K WHERE ((((SELECT Max(Versao) FROM DocumentoItem DI WHERE DI.DocumentoHeader_K = DocumentoHeader.DocumentoHeader_K))=[DocumentoItem].[Versao]) AND ((DocumentoHeader.DocumentoContexto)='TAREFA') AND (Tarefa.Processo_K='K00005'))

    You posted what you think the code is doing.
    That isn't a good idea.
    Print it out.
    You will find that your problem is a missing space, comma, etc or some other type of syntax error.

  • Error when creating connection with SSO Authentication mode

    Hi All,
    when I am creating the connection with Authentication Mode as SSO, I get error "Unable to connect to SAP BW Server User abc has no RFC Authorization for function group SYST".
    When I am craeting connection with specific user id and Password it works fine.
    Pls. let me know whats the problem with creating connection with SSO.
    System Info: BOXIR.3.1 Sp3, SAP 7.1
    Regards,
    Nisha

    Yes, I have installed Integration Kit, and configured the SSO.
    I am able to login into designer with Authentication as SAP.
    But, the Problem is with connection creation with SSo authentication mode.
    Is there any property or role needs to be defined for the universe designer Group or user, so that SSO is allowed in authentication mode?
    Regards,
    Nisha

Maybe you are looking for

  • How to create an email account??

    Hi, How to create a new email account by using Java program. I'm able to send and receive the mails to and from an existing account by using JavaMail. But I dont know how to create an account. Please help me... thanks in advance

  • Mighty Mouse Scroll Problem

    I was messing around in finder moving pictures from one folder to another when my mighty mouse stopped scrolling up. It still scrolls down and side to side fine. Whats wrong? Any ideas at all?

  • Photoshop Elements 10 uploading/deleting images error

    Hello, I attempted to upload new pictures to my Organizer from files and folders.  I selected the images I wanted to upload, and Elements began uploading them, but when it got to 95%, it said there was an error.  Afterwards, I tried to delete a pictu

  • BPA - SOA 11g Rountrip problem

    Hi, during evaluating of Fusion Middleware 11g I have the following problem: In BPA SUuite 11g I created BPMN model, which contains one subprocess. I export the model into BPEL (without errors), but when I try to create a new composite application in

  • My iphone is 16g but when i go in web say my IMEI for 32 g.this in usual?

    when i go http://www.imei.info/ or work wirh itools say your phone is 32g i dont know why