Io exception: NL Exception was generated

Hi,
I am configuring Jdev for OA extension and I am getting this error. Looks like some connection setup error. Any help.
Regards
Sathiya

Hello,
I am facing the serious error while trying t oconfigure DataSources from Weblogic 10.2 console.
The following error thrown while testing the connection:
Connection test failed.
Io exception: NL Exception was generated
oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:112)
oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:146)
oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:255)
oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:387)
oracle.jdbc.driver.PhysicalConnection.(PhysicalConnection.java:420)
oracle.jdbc.driver.T4CConnection.(T4CConnection.java:165)
oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:35)
oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:801)
com.bea.console.utils.jdbc.JDBCUtils.testConnection(JDBCUtils.java:504)
com.bea.console.actions.jdbc.datasources.createjdbcdatasource.CreateJDBCDataSource.testConnectionConfiguration(CreateJDBCDataSource.java:369)
sun.reflect.GeneratedMethodAccessor284.invoke(Unknown Source)
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
java.lang.reflect.Method.invoke(Method.java:585)
org.apache.beehive.netui.pageflow.FlowController.invokeActionMethod(FlowController.java:870)
org.apache.beehive.netui.pageflow.FlowController.getActionMethodForward(FlowController.java:809)
org.apache.beehive.netui.pageflow.FlowController.internalExecute(FlowController.java:478)
org.apache.beehive.netui.pageflow.PageFlowController.internalExecute(PageFlowController.java:306)
org.apache.beehive.netui.pageflow.FlowController.execute(FlowController.java:336)
org.apache.beehive.netui.pageflow.internal.FlowControllerAction.execute(FlowControllerAction.java:52)
org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
Hostname specified as :
jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS_LIST=((ADDRESS=(PROTOCOL=TCP)(HOST=grdoratst01-vip.isus.hp.com)(PORT=1721))(ADDRESS=(PROTOCOL=TCP)(HOST=grdoratst02-vip.isus.hp.com)(PORT=1721))))(LOAD_BALANCE=yes)(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=grdslkt)(FAILOVER_MODE=(TYPE=SELECT)(METHOD=BASIC)(RETRIES=180)(DELAY=5))))
Did you find anything wrong in the above value?
Please help me out.
regards
mani

Similar Messages

  • JDBC / Servlet / ": Io exception: SO Exception was generated"

    Hi,
    i am trying to write a simple Servlet program that would access oracle 9i database and display the names in the "emp" table in the form of a html page.
    I am using tomcat 4.0, jdk1.2.2, oracle 9i, windows 98.
    I am getting this exception as the outoput of the program:
    "Io exception: SO Exception was generated "
    The input of the program will be through a html file, with a form that will ask the user for his/her name(this has got nothing to do with the logic of the program.. just for the sake of using a html form):
    HTML file:
    <html>
    <head>
    <title>First Aplet</title>
    </head>
    <body>
    <FORM METHOD=GET ACTION="http://localhost:8080/Hello">
    What is your name?
    <input type=text name="name"><p>
    <input type=submit>
    </form>
    </body>
    </html>
    The code for the servlet class is as follows:
    import java.io.*;
    import java.sql.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class Hello extends HttpServlet{
    public void doGet(HttpServletRequest req, HttpServletResponse res) throws
         ServletException, IOException{
              res.setContentType("text/html");
              PrintWriter out = res.getWriter();
              String name = req.getParameter("name");
              Connection con = null;
              Statement stmt = null;
              ResultSet rs = null;
              String name = req.getParameter("name");
              res.setContentType("text/html");
         out = res.getWriter();
         try{
         DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
         con = DriverManager.getConnection(
              "jdbc:oracle:thin:@","scott","tiger");
                   stmt = con.createStatement();
         rs = stmt.executeQuery("SELECT * from EMP");
    out.println("<HTML><HEAD><TITLE>EMp Table Details for "+name+"</TITLE></HEAD>");
         out.println("<BODY>");
              out.println("");
                   out.print("<TABLE>\n");
              try{
                   ResultSetMetaData rsmd = rs.getMetaData();
                   int numcols = rsmd.getColumnCount();
                   out.print("<TR>");
                   for(int i = 1;i<=numcols;i++)
                        out.print("<TH>"+rsmd.getColumnLabel(i));
                        out.print("</TR>\n");
                        while(rs.next()){
                        out.print("<TR");
                        for(int i=1;i<=numcols;i++){
                        out.print("<TD>");
                        Object obj = rs.getObject(i);
                        if(obj!=null)
                             out.print(obj.toString());
                        else
                             out.print(" ");
                   out.print("</TR>\n");
                   catch(SQLException e){
                   out.print("SQLEXception : "+e.getMessage());
              out.println("</TABLE>");
              out.println("</BODY></HTML>");
              catch(SQLException e){
                   out.println("SQLEXception caught: " + e.getMessage());
         public String getServletInfo(){
                             return "A servlet that knows the name of the person to whom it is saying hello";
    can anyone help?
    thanks..
    KdevRaya

    The getMetaVersion is not the problem, it works ok.
    the problem is the second connection
    conn = DriverManager.getConnection ("jdbc:oracle:thin:@database",info);
    This is exactly as it is illustrated in the "JDBC Developer?s Guide and R
    Reference" from oracle for release 9.2 Part No. A96654-01 page 3-8
    //import packages and register the driver
    import java.sql.*;
    import java.math.*;
    DriverManager.registerDriver (new oracle.jdbc.OracleDriver());
    //specify the properties object
    java.util.Properties info = new java.util.Properties();
    info.put ("user", "sys");
    info.put ("password", "change_on_install");
    info.put ("internal_logon","sysdba");
    //specify the connection object
    Connection conn = DriverManager.getConnection
    ("jdbc:oracle:thin:@database",info);"

  • SYSTEM-ERROR. Tokens: MESSAGE = Io exception: NL Exception was generated;

    Hello,
    When I am running a page in jdev, I am getting the following error:
    NVFactory: _readNVPair expected )
    NVFactory: _readNVPair expected )
    NVFactory: _readNVPair expected )
    NVFactory: _readNVPair expected )
    oracle.apps.fnd.framework.OAException: Application: FND, Message Name: SYSTEM-ERROR. Tokens: MESSAGE = Io exception: NL Exception was generated; (Could not lookup message because there is no database connection)      at oracle.apps.fnd.framework.OACommonUtils.processAOLJErrorStack(OACommonUtils.java:884).....
    Till yesterday the page was running fine but suddenly I am encountering this exception.
    The DBC file is also fine without any slashes(/).
    The DataBase connection is getting established successfully.
    Please give your suggetions on to solve this issue.
    Thank you.

    Right click on the DB connection you are using and check whether you able to connect and open the "Sql Worksheet"?
    --Shiv                                                                                                                                                                                                                                                       

  • Io Exeption: SO Exception was generated AND no ocijdbc9

    My database version is oracle8.15,
    I use jdk1.4 so I download new jdbc driver from oracle website.Its version is Oracle9i Release 2 (9.2.0.1).
    1. When connect in thin mode, I set the classpath include ojdbc14_g.jar,ocrs12.zip, and nls_charset12.zip, but the error occured: Io Exeption: SO Exception was generated
    2. When connect in oci mode, I set the classpath include ojdbc14_g.jar,ocrs12.zip,nls_charset12.zip, and oci_nt.tar. The error occured: no ocijdbc9. But I have include the oci_nt in the classpath and this ocijdbc9 is just in the oci_nt.tar.
    How to solve these two problem. Please help me.Thanks

    You are using Oracle JDBC drivers that are incompatible with your version of Oracle. You need to download the Oracle driver set that includes classes12.jar or classes12.zip.

  • Io exception: SO Exception was generated

    Your assumptions if you choose to respond... This is my first installation of a DB. I'm taking a class that requires db 10g, and I'm trying to load it on my home computer. Windows XP pro. Everything seemed to be going well, until the point where it is suppose (by the instructions I'm following) to configure a new user account. When the URL:http://localhost:5500/em is suppose to open to the login page it gives me the following error page
    The database status is currently unavailable. It is possible that the database is in mount or nomount state.
    It doesn't like any username or password I can think of. I can select "Related Links: Configure Recovery Settings" to get to the login page, but it gives me the error message
    Io exception: SO Exception was generated
    The installation I'm following is off of this site...
    http://www.course.com/cdkit/installinstructions_dbIII.cfm
    I can log in to SQL with the default Scott/Tiger - but (and I don't know anything about this really), if the db won't start a lot of good it does me.
    I'm ready to call in the army to fix this - anybody have any suggestions? I need them in basic english I can' seem to establish a new user account for 10g, and the db is 'currently unavailable.'' Are they related, are the separate issues, help, help, help....
    The installation guide says I can't load it on XP unless it is pro. Is that true? I have a laptop with the home media addition. Would that work?
    thanks,
    Dan

    The getMetaVersion is not the problem, it works ok.
    the problem is the second connection
    conn = DriverManager.getConnection ("jdbc:oracle:thin:@database",info);
    This is exactly as it is illustrated in the "JDBC Developer?s Guide and R
    Reference" from oracle for release 9.2 Part No. A96654-01 page 3-8
    //import packages and register the driver
    import java.sql.*;
    import java.math.*;
    DriverManager.registerDriver (new oracle.jdbc.OracleDriver());
    //specify the properties object
    java.util.Properties info = new java.util.Properties();
    info.put ("user", "sys");
    info.put ("password", "change_on_install");
    info.put ("internal_logon","sysdba");
    //specify the connection object
    Connection conn = DriverManager.getConnection
    ("jdbc:oracle:thin:@database",info);"

  • SO Exception Was Generated NEWBIE

    I installed the latest Oracle 9 available on Redhat 9 today and now get this exception when I try to connect in DBVisualizer:
    java.sql.SQLException: Io exception: SO Exception was generated
    Io exception: SO Exception was generated
    What does this mean?
    Thanks.

    It means that Oracle 9 is not certified for Red Hat 9.
    Fred

  • NL Exception was generated

    I'm receiving this error message when execute the class below, who may help me? I already search for the solution in google, but without success.
    I also can connect in this server using SQLPLUS*
    ERROR:
    java.sql.SQLException: Io exception: NL Exception was generated         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:124)         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:161)         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:273)         at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:327)         at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:360)         at oracle.jdbc.driver.T4CConnection.<init>(T4CConnection.java:150)         at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:31)         at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:595)         at java.sql.DriverManager.getConnection(DriverManager.java:582)         at java.sql.DriverManager.getConnection(DriverManager.java:185)         at fmsreport.FMSReportView.jButtonSheet1ActionPerformed(FMSReportView.java:372)         at fmsreport.FMSReportView.access$800(FMSReportView.java:26)         at fmsreport.FMSReportView$4.actionPerformed(FMSReportView.java:168)         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)         at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318)         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)         at java.awt.Component.processMouseEvent(Component.java:6041)         at javax.swing.JComponent.processMouseEvent(JComponent.java:3265)         at java.awt.Component.processEvent(Component.java:5806)         at java.awt.Container.processEvent(Container.java:2058)         at java.awt.Component.dispatchEventImpl(Component.java:4413)         at java.awt.Container.dispatchEventImpl(Container.java:2116)         at java.awt.Component.dispatchEvent(Component.java:4243)         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4322)         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3986)         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3916)         at java.awt.Container.dispatchEventImpl(Container.java:2102)         at java.awt.Window.dispatchEventImpl(Window.java:2440)         at java.awt.Component.dispatchEvent(Component.java:4243)         at java.awt.EventQueue.dispatchEvent(EventQueue.java:599)         at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:273)         at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:183)         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:173)         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:168)         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:160)         at java.awt.EventDispatchThread.run(EventDispatchThread.java:121) BUILD SUCCESSFUL (total time: 13 seconds)
    CLASS:
    private void jButtonSheet1ActionPerformed(java.awt.event.ActionEvent evt) {                                                      // TODO add your handling code here:         Connection connection = null;         try {             // Load the JDBC driver             String driverName = "oracle.jdbc.driver.OracleDriver";             Class.forName(driverName);             // Create a connection to the database             String url = "jdbc:oracle:thin:@(DESCRIPTION=" +                     "(ADDRESS_LIST=" +                     "(ADDRESS=(PROTOCOL=TCP)" +                     "(HOST=X.com)" + " = " +                     "(PORT=1540)" +                     ")" +                     ")" +                     "(CONNECT_DATA=" +                     "(SERVICE_NAME=empac810)" +                     "(SERVER=DEDICATED)" +                     ")" +                     ")";             String username = "x";             String password = "x";             connection = DriverManager.getConnection(url, username, password);             System.out.println("OK!");         } catch (ClassNotFoundException e) {             e.printStackTrace();         // Could not find the database driver         } catch (SQLException e) {             e.printStackTrace();         // Could not connect to the database         }          }

    shouldn't it be?
    String url = "jdbc:oracle:thin:@X.com:1540/empac810";%

  • I am facing problem while reading values from properties file ...i am getting null pointer exception earlier i was using jdeveloper10g now i am using 11g

    i am facing problem while reading values from properties file ...i am getting null pointer exception earlier i was using jdeveloper10g now i am using 11g

    hi TimoHahn,
    i am getting following exception in JDeveloper(11g release 2) Studio Edition Version 11.1.2.4.0 but it works perfectly fine in JDeveloper 10.1.2.1.0
    Root cause of ServletException.
    java.lang.NullPointerException
    at java.util.PropertyResourceBundle.handleGetObject(PropertyResourceBundle.java:136)
    at java.util.ResourceBundle.getObject(ResourceBundle.java:368)
    at java.util.ResourceBundle.getString(ResourceBundle.java:334)
    at org.rbi.cefa.master.actionclass.UserAction.execute(UserAction.java:163)
    at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
    at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
    at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
    at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:432)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
    at java.security.AccessController.doPrivileged(Native Method)
    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442)
    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:139)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)

  • The exception error message was: oracle.jbo.NoDefException: JBO-25002: Defi

    Hi,
    I added a DFF through create item "flex" in iRecruitment (View applicants page).I am getting the following message:
    "The flexfield listener failed while getting the value for segment Job Title from column ASS_ATTRIBUTE1 of the descriptive flexfield with application short name PER and name PER_ASSIGNMENTS. Please contact your system administrator. The exception error message was: oracle.jbo.NoDefException: JBO-25002: Definition AssAttribute1 of type Attribute not found".
    Regards
    Radhika

    Check the DFF you have added according to the error message to confirm that it is setup properly and compiled.
    --Shiv                                                                                                                                                                                                                                               

  • I had to restore my computer to the factory settings, which means my itunes library was lost except for what was on my ipod nano.  How do pull the songs from my ipod back onto my computer?

    I had to restore my computer to the factory settings, which means my itunes library was lost except for what was on my ipod nano.  How do pull the songs from my ipod back onto my computer?  I have over 200 songs.  There is no way I can re-purchase them!  Any help?

    How to use your iPod to move your music to a new computer 

  • Release a patch from the concert in which it was generated.

    Hello, I have a question .When I create a new patch this is a perfect copy of that concert. But if I try to do something as clear a strip, change its position, copy it or else I see that I can not do anything. Is there a way to make independent a new patch from the original concert which was originated? So you can edit it in its entirety?

    Sorry but my first problem is an English really rough. I knew it was hard to explain, I try with an example: if I create an entire setup to the level of the concert then when I create a new patch with the "+" button at the top right, will create a new patch in all identical to the content of the concert. But in this new patch every strip displays the Mainstage icon at the top and is not editable except the very few aspects. You can not move, can not delete unless you do it at the concert level but then it will be deleted from all other pacth. And I do not find a solution to make it independent from the level of concert in which it was generated.

  • Com.adobe.ProcessingException: No output was generated while rendering

    Hi gurus,
    We have an ESS implementation working on our portal system.
    Our portal system is EP 7.0 support package level is 15. Our backend system is SAP ECC 6.0.
    Forms in ESS implementation are viewed via Adobe Acrobat.
    I configured Adobe in our sap ecc system and portal. It worked for 3 months without any problem till yesterday. Our users started to get "Error at start of form processing" error when they tried to view the forms. I searched the cause of the problem at portal side and found a log in default.trc:
    "Processing exception during a "Render" operation.
    Request start time: Mon Jun 23 16:48:09 EEST 2008
    com.adobe.ProcessingException: No output was generated while rendering: Stream for: PDFOut.
    Please validate the input files or streams and try again.
    Exception Stack Trace:
    com.adobe.ProcessingException: No output was generated while rendering: Stream for: PDFOut.
    Please validate the input files or streams and try again.
         at com.adobe.ads.operation.Render.execute(Unknown Source)
         at com.adobe.ads.operation.ADSOperation.doWork(Unknown Source)
         at com.adobe.ads.request.Request.processOperations(Unknown Source)
         at com.adobe.ads.request.Request.process(Unknown Source)
         at com.adobe.AdobeDocumentServicesEJB.processRequest(Unknown Source)
         at com.adobe.AdobeDocumentServicesEJB.rpData(Unknown Source)
         at com.adobe.AdobeDocumentServicesLocalLocalObjectImpl0_0.rpData(AdobeDocumentServicesLocalLocalObjectImpl0_0.java:120)
         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:324)
         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:102)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)"
    I checked the configuration step by step using the note-944221 everything works well.
    Any suggestions? It is urgent please help.
    Helpful answers will be awarded with points.
    Tolga

    Dear Chintan,
    I did check the settings about the user ADSUSER. ADSUSER was set as technical user so the expiration of the password is not possible.
    If there were a problem about the wrong password for ADSUSER in visual administrator or at portal side or in sap system, viewing the adobe form would not be possible from the start.
    And one last interesting thing is that the problem was solved after the restart of the portal system.
    Any other suggestions?
    Kindest Regards
    Tolga

  • Exchange 2013 - Mailbox Setup Failed "The following error was generated when "$error.Clear()" 7 of 14

    I am getting the following error when I'm setting up the mailbox server as I'm currently doing a test virtual machine throughHyper-V, it seems to happen during the transport service phase of the installation which is 7/12
    Do i know need a D:\ drive for the mailbox server to work? as in my test i only have a c:\ drive but no d:\ drive
    Error:
    The following error was generated when "$error.Clear();
                if ($RoleProductPlatform -eq "amd64")
                    $useAttachMode = $false;
                    $fastInstallConfigPath = Join-Path -Path $RoleBinPath -ChildPath "Search\Ceres\Installer";
                    $command = Join-Path -Path $fastInstallConfigPath -ChildPath "InstallConfig.ps1";
                    $fastDefaultDataFolderPath = Join-Path -Path $RoleBinPath -ChildPath "Search\Ceres\HostController\Data";
                    $dataFolderPath = $fastDefaultDataFolderPath;
                    if ([System.IO.Directory]::Exists($fastDefaultDataFolderPath))
                        $useAttachMode = $true;
                    else
                        if ($RoleIsDatacenter -eq $true)
                            $preferredDataFolderPathRoot = "D:\";
                            if ([System.IO.Directory]::Exists($preferredDataFolderPathRoot))
                                $dataFolderPath = Join-Path -Path $preferredDataFolderPathRoot -ChildPath "ExchangeSearchData";
                                if ([System.IO.Directory]::Exists($dataFolderPath))
                                    $useAttachMode = $true;
                    if ($useAttachMode -eq $true)
                        &$command -action a -dataFolder $dataFolderPath -silent;
                    else
                        try
                            &$command -action i -dataFolder $dataFolderPath -silent;
                        catch
                            $errorMsg = "Failure running SearchFoundation installconfig.ps1 - " + $_.Exception.Message;
                            Write-ExchangeSetupLog -Error $errorMsg;
                            &$command -action u -silent;
                            try
                                if ([System.IO.Directory]::Exists($dataFolderPath))
                                    [System.IO.Directory]::Delete($dataFolderPath, $true);
                            catch
                                $deleteErrorMsg = "Failure cleaning up SearchFoundation Data folder. - " + $dataFolderPath
    + " - " + $_.Exception.Message;
                                Write-ExchangeSetupLog -Error $deleteErrorMsg;
            " was run: "Couldnít attach the data folder 'C:\Program Files\Microsoft\Exchange Server\V15\Bin\Search\Ceres\HostController\Data'. Path doesnít contain old nodes belonging to the system 'Fsis'.".
    Warning:
    An unexpected error has occurred and a Watson dump is being generated: The following error was generated when "$error.Clear();
                if ($RoleProductPlatform -eq "amd64")
                    $useAttachMode = $false;
                    $fastInstallConfigPath = Join-Path -Path $RoleBinPath -ChildPath "Search\Ceres\Installer";
                    $command = Join-Path -Path $fastInstallConfigPath -ChildPath "InstallConfig.ps1";
                    $fastDefaultDataFolderPath = Join-Path -Path $RoleBinPath -ChildPath "Search\Ceres\HostController\Data";
                    $dataFolderPath = $fastDefaultDataFolderPath;
                    if ([System.IO.Directory]::Exists($fastDefaultDataFolderPath))
                        $useAttachMode = $true;
                    else
                        if ($RoleIsDatacenter -eq $true)
                            $preferredDataFolderPathRoot = "D:\";
                            if ([System.IO.Directory]::Exists($preferredDataFolderPathRoot))
                                $dataFolderPath = Join-Path -Path $preferredDataFolderPathRoot -ChildPath "ExchangeSearchData";
                                if ([System.IO.Directory]::Exists($dataFolderPath))
                                    $useAttachMode = $true;
                    if ($useAttachMode -eq $true)
                        &$command -action a -dataFolder $dataFolderPath -silent;
                    else
                        try
                            &$command -action i -dataFolder $dataFolderPath -silent;
                        catch
                            $errorMsg = "Failure running SearchFoundation installconfig.ps1 - " + $_.Exception.Message;
                            Write-ExchangeSetupLog -Error $errorMsg;
                            &$command -action u -silent;
                            try
                                if ([System.IO.Directory]::Exists($dataFolderPath))
                                    [System.IO.Directory]::Delete($dataFolderPath, $true);
                            catch
                                $deleteErrorMsg = "Failure cleaning up SearchFoundation Data folder. - " + $dataFolderPath
    + " - " + $_.Exception.Message;
                                Write-ExchangeSetupLog -Error $deleteErrorMsg;
            " was run: "Couldnít attach the data folder 'C:\Program Files\Microsoft\Exchange Server\V15\Bin\Search\Ceres\HostController\Data'. Path doesnít contain old nodes belonging to the system 'Fsis'.".
                     

    Hi 
    Most likely for these kind of issues its better you can  delete the hyper-v machine and create a new  os , ensure all the prerequisite are met and install the Exchange since this is a new installation.
    But as a try you can try giving full access to the admin account to the data folder  'C:\Program
    Files\Microsoft\Exchange Server\V15\Bin\Search\Ceres\HostController\Data'. which is giving the error and rerun the setup 
    Remember to mark as helpful if you find my contribution useful or as an answer if it does answer your question.That will encourage me - and others - to take time out to help you Check out my latest blog posts on http://exchangequery.com

  • EVENT 36888, Schannel A fatal alert was generated and sent to the remote endpoint. This may result in termination of the connection. The TLS protocol defined fatal error code is 43. The Windows SChannel error state is 252.

    I keep losing my network connection for a few seconds at a time.  Not  a big deal unless I just spent time filling in a form and have to redo it.
    Getting:
    A fatal alert was generated and sent to the remote endpoint. This may result in termination of the connection. The TLS protocol defined fatal error code is 43. The Windows SChannel error state is 252. Using windows 8.  I just installed the new ARRIS
    TG862 provided by Comcast. 
    Any Ideas?
    Also get the following errors in my events:
    The name "WORKGROUP      :1d" could not be registered on the interface with IP address 10.0.0.2. The computer with the IP address 10.0.0.3 did not allow the name to be claimed by this computer.
    Realtek PCIe GBE Family Controller is disconnected from network.
    Any help is appreciated

    Hi,
    Critical Kernel-power event ID 41 is used appear after PC restarts or randomly restarts with error
    BugcheckCode listed or a cold reboot. Do you get BSOD and some dump files?
     Default location is %SystemRoot%\Minidump. You can upload it to skydrive, then paste link here.
    How to use Skydrive
    http://www.wikihow.com/Use-SkyDrive
    Kernel-PnP event ID 219: A Plug and Play device driver on your system is failing to load due to a device driver or device malfunction, you can unplug any external devices (except mouse and keyboard, but please keep the latest drivers), and
    check device status in device manager, please also keep the all latest driver update of your PC.
    And for error 36888, I found a similar thread, please refer to this link
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/4c5430f5-43f6-41b4-97d3-03cfb3efa70b/schannel-error-event-id-36888-is-there-a-way-to-identify-what-causes-schannel-to-log-error?forum=winserverDS
    Regards
    Yolanda
    TechNet Community Support

  • Java.rmi.RemoteException: Runtime exception; nested exception

    I am developing a web service standalone client using J2SDK 1.5 and I get the following exception below in one of the generated stubs. I am using Netbean 5.0. Please how can the expected and actual be matched. Thanks
    java.rmi.RemoteException: Runtime exception; nested exception is:
    unexpected element name: expected=getAllLatestNoonRatesReturn, actual={http://v1_0.WebService.fxrates.markets}getAllLatestNoonRatesReturn
    at com.sun.xml.rpc.client.StreamingSender._handleRuntimeExceptionInSend(StreamingSender.java:331)
    at com.sun.xml.rpc.client.StreamingSender._send(StreamingSender.java:313)
    at fxwsclient.FXWS_Stub.getAllLatestNoonRates(FXWS_Stub.java:129)
    at fxwsclient.ClientMain.main(ClientMain.java:45)
    Caused by: unexpected element name: expected=getAllLatestNoonRatesReturn, actual={http://v1_0.WebService.fxrates.markets}getAllLatestNoonRatesReturn
    at fxwsclient.FXWS_getAllLatestNoonRates_ResponseStruct2_SOAPSerializer.doDeserialize(FXWS_getAllLatestNoonRates_ResponseStruct2_SOAPSerializer.java:55)
    at com.sun.xml.rpc.encoding.ObjectSerializerBase.deserialize(ObjectSerializerBase.java:192)
    at com.sun.xml.rpc.encoding.ReferenceableSerializerImpl.deserialize(ReferenceableSerializerImpl.java:155)
    at fxwsclient.FXWS_Stub._deserialize_getAllLatestNoonRates(FXWS_Stub.java:322)
    at fxwsclient.FXWS_Stub._readFirstBodyElement(FXWS_Stub.java:290)
    at com.sun.xml.rpc.client.StreamingSender._send(StreamingSender.java:228)
    ... 2 more
    BUILD SUCCESSFUL (total time: 6 seconds)

    Looks like the server is sending a namespace qualified response when a non-qualified response is expected. If you are accessing a .NET endpoint this is a known issue with their implementation.

Maybe you are looking for

  • "Unable to load URL" error when importing VS2008 created WSDL

    One of my developers created a simple web service in Visual Studio 2008 that queries a database on our SQL Server 2005. I can view the web service results in a web browser with no problems. I can also pull up the WSDL in the web browser with no probl

  • Dual-DMVPN Design with Dual Hubs on a single router ??

    Hi All, In DMVPN, in Dual-DMVPN Design with Dual Hubs , can a single router perform the role of dual hubs. The router has two different internet links. It is intended that when one link goes down, spokes shud connect to the same router onto the other

  • "The disk could not be read from or written to" message.  Please help!

    I just got a 30 GB Ipod today. I was able to transfer about 60 songs using one of my USB ports before this message came up. I switched the plug into my other USB port, and I was able to transfer about 500 songs before the message came up again. Now t

  • Using iMac 27 as a display for a PC, is it possible?

    is there a way to connect my PC (HD 4870 dvi) to the imac 27 to use it as a display? and if so, what cables and adapters do i need? thanx ilya

  • Referencing preset with applescript

    I'd like to apply adjustment presets through an applescript. Is there a way to have the applescript call them by their name? I have a convoluted way to apply the presets, but it is cumbersome because the presets end up being referenced by a sequentia