Connection is closed.While Concurrent User Accesing...

<code>
[6/5/06 15:23:44:535 SGT] 4e20fe SystemErr R com.ibm.websphere.ce.cm.ObjectClosedException: DSRA9110E: Connection is closed.
</code>
Hi Every Body..have look in to my error can any one suggest to me..what si the symptoms of this error...only the concurrent users accessing time..i am exepecting this error once in while.

Is this a question about programming in Java or using WebSphere?
Perhaps a search on google will find your answer.

Similar Messages

  • Deadlock victim while concurrent users...

    Hello-
    I'm using Weblogic 6.1 SP3 and SQL Server 2000. In our application user create
    packages...When concurrent users click at the same time to create the package,
    application gets an error.
    Create Package Functionality Overview: we've got the table called pt_package(package_id,
    package_name, create_date, user_id). it has got relevant entity bean(PackageBean)
    and we call ejbCreate...that go into the table and generete the maximum id and
    then assign/create the package and write the details to the table.
    Err Clip from console:
    PackageBean : ejbCreate : java.sql.SQLException: [Microsoft][SQLServer 2000 Driv
    er for JDBC][SQLServer]Transaction (Process ID 69) was deadlocked on lock resour
    ces with another process and has been chosen as the deadlock victim. Rerun the
    t
    ransaction.
    Created Package Id : 3175
    ====> InterviewSession: createUniquePackage Remote Exception..
    java.rmi.RemoteException: EJB Exception:; nested exception is:
    javax.ejb.EJBException: ejbCreate: [Microsoft][SQLServer 2000 Driver for
    JDBC][SQLServer]Transaction (Process ID 69) was deadlocked on lock resources
    wi
    th another process and has been chosen as the deadlock victim. Rerun the transac
    tion.
    javax.ejb.EJBException: ejbCreate: [Microsoft][SQLServer 2000 Driver for JDBC][S
    QLServer]Transaction (Process ID 69) was deadlocked on lock resources with anoth
    er process and has been chosen as the deadlock victim. Rerun the transaction.
    at ejb.entity.Package.PackageBean.ejbCreate(PackageBean.java:173)
    at ejb.entity.Package.PackageBean_sf9ki2_Impl.ejbCreate(PackageBean_sf9k
    i2_Impl.java:197)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.ejb20.manager.DBManager.create(DBManager.java:519)
    at weblogic.ejb20.manager.DBManager.remoteCreate(DBManager.java:489)
    at weblogic.ejb20.internal.EntityEJBHome.create(EntityEJBHome.java:190)
    at ejb.entity.Package.PackageBean_sf9ki2_HomeImpl.create(PackageBean_sf9
    ki2_HomeImpl.java:116)
    at ejb.session.InterviewSessionBean.createUniquePackage(InterviewSession
    Bean.java:2035)
    at ejb.session.InterviewSessionBean_834tdn_EOImpl.createUniquePackage(In
    terviewSessionBean_834tdn_EOImpl.java:4856)
    at ejb.session.InterviewSessionBean_834tdn_EOImpl_WLSkel.invoke(Unknown
    Source)
    at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:305)
    at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.jav
    a:274)
    at weblogic.rmi.internal.BasicServerRef.dispatch(BasicServerRef.java:167
    at weblogic.rmi.internal.ServerRequest.sendOneWayRaw(ServerRequest.java:
    92)
    at weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:11
    2)
    at weblogic.rmi.internal.BasicRemoteRef.invoke(BasicRemoteRef.java:136)
    at weblogic.rmi.internal.ProxyStub.invoke(ProxyStub.java:35)
    at $Proxy174.createUniquePackage(Unknown Source)
    at jsp_servlet._ppro._interview.__sitecheck._jspService(__sitecheck.java
    :192)
    at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
    pl.java:265)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
    pl.java:200)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppSe
    rvletContext.java:2546)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestIm
    pl.java:2260)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    If you have any idea abt this, please let me know. I read bea documents, where
    it says its due to insufficient number of connection. But I'm not very positive
    abt it. Cause we conducted the test on our develeopement server as we had initial
    5 connection and 15 as a max number of connection. We were only 4 person to test
    that...Still we got the same err.......???
    Thanx,
    Ashish

    Ashish wrote:
    Hello-
    I'm using Weblogic 6.1 SP3 and SQL Server 2000. In our application user create
    packages...When concurrent users click at the same time to create the package,
    application gets an error.
    Create Package Functionality Overview: we've got the table called pt_package(package_id,
    package_name, create_date, user_id). it has got relevant entity bean(PackageBean)
    and we call ejbCreate...that go into the table and generete the maximum id and
    then assign/create the package and write the details to the table.
    Err Clip from console:
    PackageBean : ejbCreate : java.sql.SQLException: [Microsoft][SQLServer 2000 Driv
    er for JDBC][SQLServer]Transaction (Process ID 69) was deadlocked on lock resour
    ces with another process and has been chosen as the deadlock victim. Rerun the
    transaction.
    If you have any idea abt this, please let me know. I read bea documents, where
    it says its due to insufficient number of connection. But I'm not very positive
    abt it. Cause we conducted the test on our develeopement server as we had initial
    5 connection and 15 as a max number of connection. We were only 4 person to test
    that...Still we got the same err.......???Hi Ashsish. This Exception is coming directly from the DBMS itself, and has nothing to do
    with weblogic. The issue is a DBMS deadlock, where one DBMS client has locked some
    page or database resource (let's call it resource A), and is going to try to lock some other
    resource B. Some other DBMS client has already locked resource B, and now wants
    to lock resource A. These two DBMS clients are deadlocked, and the DBMS recognises this,
    and chooses to kill one client's transaction in order to at least let the other survive.
    You should go over your tranasaction logic and DBMS locking to identify the locks
    involved in the deadlock, and then decide if you can alter your logic to ensure that
    every transaction locks A first, then B. It may also be an artifact of page-level locking,
    where one tx may inadvertantly lock logically unrelated data, just because it is on the
    same page as the logically relevant stuff.
    Joe Weinstein.
    >
    >
    Thanx,
    Ashish

  • Restricting Concurrent users on a particular BSP Application

    We are having an appraisals link in the PM section of the portal which runs the HAP_DOCUMENT BSP application. We have to restrict the number of concurrent users accesing this application at the same time to about 600 so that the server will not crash...Is there a way by which i can find out the no of users accesing a partcular BSP application concurrently??

    Appearently my interpretation of how Logon Groups work don't match up to their actual sophistication. 
    They use this number of users only as a gage to load balance between mutliple app servers.  It never uses this amount as a limiting factor.
    Sorry if I led you down an incorrect path.  It seemed promissing.  However you could at least use this approach to limit the load to a single app server.  You could then configure the maximum number of concurrent connections in the ICM on this app server.  However this probably only works if you are willing to dedicate a single app server to this single application.

  • Concurrent Users in OBIEE

    Hello,
    How can we set the number of concurrent users who will use the OBIEE application?
    Thanks in Advance.

    There is a setting in the Repository for the connection pools for maximum concurrent users.

  • Maximum number of concurrent users that can connect to a SQL DB

    I see various SQL DB plan S0, S1, S2 and P1, P2 and P3.  Each one of them talk about DTU's but never talk about the max number of concurrent users.  Where can I find that number and is it configurable by the end user?

    It is the maximum connection that is most important. Best practice is not to have users holding on to their connection for long period of time. Maximum user connection in SQL is 32767, resource permitting. Not sure for Azure SQL. If you follow best
    practice, you are not supposed to hit this limit cause other limits will be hit first.
    Frank

  • The underlying connection was closed: An unexpected error occurred on a receive..Exception.Message - while executing powershell command for sharepoint online site

    " +The underlying connection was closed: An unexpected error occurred on a receive..Exception.Message " OR sometimes
    "The remote server returned an error: (503) Server Unavailable..Exception.Message"
    Getting exception above when performing various operation (site coll creating, group creation, adding users to group) for sharepoint online (Office 365) site using powershell script.
    I want to create 3500 site collections using PS script. In-between getting above exception so it will skip one site collection creating and working again. for eg. after creating 11 site coll, script will through above exception and so 12th site coll will
    not be create but working fine from 13 and so on...

    Remote server seems working to me...any additional check?
    if problem with remote server then may be loop to create site provisioning should not start again..Right?
    any idea?

  • SQL Service Broker 2012: the connection was closed by the remote end, or an error occurred while receiving data: '64(The specified network name is no longer available.)'

    Anyone can help with the below issue please? Much appreciated.
    We have about 2k+ messages in sys.transmission_queue
    Telnet to the ports 4022 is working fine.
    Network connectivity has been ruled out.
    The firewalls are OFF.
    We also explicitly provided the permissions to the service account on Server A and Server B to the Service broker end points.
    GRANT
    CONNECT ON
    ENDPOINT <broker> <domain\serviceaccount>
    Currently for troubleshooting purposes, the DR node is also out of the Availability Group, which means that we right now have only one replica the server is now a traditional cluster.
    Important thing to note is when a SQL Server service is restarted, all the messages in the sys.transmission queue is cleared immediately. After about 30-40 minutes, the errors are continued to be seen with the below
    The
    connection was
    closed by the
    remote end,
    or an
    error occurred while
    receiving data:
    '64(The specified network name is no longer available.)'

    We were able to narrow down the issue to an irrelevant IP coming into play during the data transfer. We tried ssbdiagnose runtime and found this error:
    Microsoft Windows [Version 6.1.7601]
    Copyright (c) 2009 Microsoft Corporation.  All rights reserved.
    C:\Windows\system32>SSBDIAGNOSE -E RUNTIME -ID 54F03D35-1A94-48D2-8144-5A9D24B24520 Connect to -S <SourceServer> -d <SourceDB> Connect To -S <DestinationServer> -d <DestinationDB>
    Microsoft SQL Server 11.0.2100.60
    Service Broker Diagnostic Utility
    An internal exception occurred: Timeout expired.  The timeout period elapsed prior to completion of the operation or the server is not responding.
    P  29830                                 Could not find the connection to the SQL Server that
    corresponds to the routing address tcp://XX.XXX.XXX.199:4022. Ensure the tool is connected to this server to allow investigation of runtime events
    The IP that corresponds to routing address is no where configured within the SSB. We are yet unsure why this IP is being referred despite not being configured anywhere. We identified that this IP belongs to one of nodes other SQL Server cluster, which has
    no direct relation to the source server. We failed over that irrelevant SQL Server cluster and made another node active and to our surprise, the data from sys.transmission_queue started flowing. Even today we are able to reproduce the issue, if we bring
    back this node [XX.XXX.XXX.199] as active. Since, its a high business activity period, we are not investigating further until we get an approved downtime to find the root cause of it.
    When we get a approved downtime, we will bring the node [XX.XXX.XXX.199] as active and we will be running Network Monitor, Process Monitor and the SSB Diagnose all in parallel to capture the process/program that is accessing the irrelevant IP.
    Once, we are able to nail down the root cause, I will share more information.

  • Getting a complete backup while allowing users to stay connected

    Does anyone know if it is possible to get a complete backup (RMAN or otherwise) while allowing users that are connected to the database to remain connected? If so, how?
    thanks,
    rick

    There is no such thing as a logical backup. This phrase invented by Oracle for marketing purposes isn't worth the keystrokes it takes to type it on a keyboard. Forget you ever heard it. An export can not be used to restore or recover a database.
    All production databases containing information more important than your mother's cookie recipes should be in archive log mode and anything defined as a "backup" should be taken using RMAN either as a backupset or imagecopy.

  • "Connection is closed" closed error while using MS Access database

    We are using MS Access database in our project. Recently the database was upgraded to 2000.
    After upgrading the database, I get the folowing error when getAutoCommit() is called on a connection -
    java.sql.SQLException: Connection is closed
         at sun.jdbc.odbc.JdbcOdbcConnection.validateConnection(Unknown Source)
         at sun.jdbc.odbc.JdbcOdbcConnection.getAutoCommit(Unknown Source)
    The connection is not closed explicity before getAutoCommit() is called, only the statement is closed.
    This error is sporadic and occurs under load scenario only (when a lot of connections are open). Once the error occurs, all the database calls fail then onwards. The error was not occuring before the database was upgraded.
    I suspect the jbdc-odbc driver. The driver might not be compatible with Access2000 database. Under load scenario, it might be closing connections automatically.
    Has anybody faced similar problem before? Where can I find the compatible jdbc-odbc driver? And how to ensure that it is jdbc-odbc driver problem only?
    The database verison - MS Access 2000
    Java version - 1.3.1_01

    can i just point out that there is no support for transactions in Access so I wonder why you are calling autoCommit methods at all...

  • Windows 2008 R2 TS VPN connection closed when another user logs in

    Hi.
    I have a W 2008 R2 Ent. server with TS
    I have VPN on the TS configured with a L2TP/Ipsec connection to connect to a customer site
    Users will remote into the server, and make a VPN connection (click on shortcut to start VPN) and access the customer's site. This has worked OK for 2 years often with several users logged into the TS via RDP.
    Recently users are encountering this problem: User A logs into the TS, makes VPN connection, accesses customer site. User B logs into the TS, user A's VPN connection is broken immediately. It seems to happen every time - not sporadic.
    Can I get some suggestions on how to troubleshoot this?
    Thanks!

    Hi,
    The error which you are facing is because of Event Id 20226 (RAS connection termination).
    Error 831 (ERROR_FAST_USER_SWITCH)
    The connection was terminated because user switch happened.
    There are multiple login sessions on the user's computer. The user switched from a login session with an active RAS connection to another session. This resulted in the termination of the connection.
    For this you can check that you can limit the connection and tried to switch back the original session and make all new connection again. Please refer “Event ID
    20226 — RAS Connection Termination” for more details.
    Hope it helps!
    Thanks.

  • Concurrent User Connections

    Greetings all and please grant a noob a small bit of latitude. I've recently started a BIT program and one question that has repeatedly stumped me as I research databases is the maximum number of concurrent user connectoins for Oracle 11g.
    As an example, and NOT SPAM, SQL Server 7.0 lists the number of Concurrent User Conncections at 32,767, http://sqlserver2000.databases.aspfaq.com/what-are-the-capacities-of-access-sql-server-and-msde.html.
    Can anybody point me in the right direction and is there such a number or limitation for Oracle's products?
    Thanks in advance,
    Mark

    user11721301 wrote:
    Greetings all and please grant a noob a small bit of latitude. I've recently started a BIT program and one question that has repeatedly stumped me as I research databases is the maximum number of concurrent user connectoins for Oracle 11g.
    As an example, and NOT SPAM, SQL Server 7.0 lists the number of Concurrent User Conncections at 32,767, http://sqlserver2000.databases.aspfaq.com/what-are-the-capacities-of-access-sql-server-and-msde.html.
    Can anybody point me in the right direction and is there such a number or limitation for Oracle's products?
    Thanks in advance,
    MarkGo to tahiti.oracle.com. Drill down to your product and version. There you will find the complete doc library.
    Start by clicking on the "Books" tab and reviewing the list of titles, just to get familiar with what's available.
    Next, go to the Reference Manual and review the table of contents to get familiar with what information is available there; you should see detailed descriptions of initialization parameters and data dictionary views, among other things.
    Next start reading the Concepts Manual in earnest.
    Give a man a fish and he eats for a day. Teach a man to fish and he eats for a lifetime.

  • Error While creating users in managed system.

    Dear All,
    I am configuring SAP Solution Manager 7.1. I am in stage of Managed System Configuration (for JAVA).
    In step 6 Create user:  While creating (System) user SM_COLL_<SID> I am getting error :
    An error occurred while processing the UME command READ_USER from agent <hostname> : Server returned: 401 Unauthorized. Please check SMD agent application logs.
    And for ABAP System,
    SMDAGENT_XXX Technical User (in Managed System <SID> Client 000)
    while creating user SMDAGENT_<SID> and SAPSUPPORT
    I am getting error:
    No CENTRAL nor DIALOG instance known for system <SID>
    But in SM51 I can see Server Status Active. 
    and Users are not present.(Checked it through SU01)
    I am not getting why this is happening.
    Please help me regarding the same.
    Thanks & Regards
    Ajitabh

    Hi,
    I am pasting the SMD agent application logs:
    <!LOGHEADER[START]/>
    <!HELP[Manual modification of the header may cause parsing problem!]/>
    <!LOGGINGVERSION[1.5.3.7185 - 630]/>
    <!NAME[SMDAgentAppLog]/>
    <!PATTERN[SMDAgentApplication.log]/>
    <!FORMATTER[com.sap.tc.logging.TraceFormatter(%d [%t] %10s %m)]/>
    <!ENCODING[Cp1252]/>
    <!FILESET[0, 10, 1000000]/>
    <!PREVIOUSFILE[SMDAgentApplication.9.log]/>
    <!NEXTFILE[SMDAgentApplication.1.log]/>
    <!LOGHEADER[END]/>
    Nov 29, 2011 2:02:09 PM [Thread[Connector,5,main]] Warning    com.sap.smd.wily.hostagent.mai.MaiAdapter - init: Introscope Host Adapter is not active, no Introscope metrics from MAI
    Nov 29, 2011 2:21:01 PM [Thread[Thread-33,5,main]] Warning    com.sap.smd.wily.hostagent.mai.MaiAdapter - init: Introscope Host Adapter is not active, no Introscope metrics from MAI
    Nov 29, 2011 2:38:31 PM [Thread[Thread-67,5,main]] Warning    com.sap.smd.wily.hostagent.mai.MaiAdapter - init: Introscope Host Adapter is not active, no Introscope metrics from MAI
    Nov 30, 2011 1:26:19 PM [Thread[ExRun:OutsideDiscovery_1,5,OutsideDiscovery:ExecTG]] Path       Caught java.net.ConnectException: Connection refused: connect
         at java.net.PlainSocketImpl.socketConnect(Native Method)
         at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
         at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
         at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
         at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:366)
         at java.net.Socket.connect(Socket.java:521)
         at com.sap.smd.agent.plugin.connectors.http.ConnectionExtendedImpl.openSocket(ConnectionExtendedImpl.java:2025)
         at com.sap.smd.agent.plugin.connectors.http.ConnectionExtendedImpl.open(ConnectionExtendedImpl.java:1398)
         at com.sap.smd.agent.plugin.connectors.http.ConnectionExtendedImpl.sendInternal(ConnectionExtendedImpl.java:1552)
         at com.sap.smd.agent.plugin.connectors.http.ConnectionExtendedImpl.send(ConnectionExtendedImpl.java:1483)
         at com.tssap.dtr.client.lib.protocol.requests.RequestBase.perform(RequestBase.java:570)
         at com.tssap.dtr.client.lib.protocol.requests.RequestBase.perform(RequestBase.java:693)
         at com.sap.smd.agent.plugin.connectors.http.HTTPConnectorService.performRequest(HTTPConnectorService.java:548)
         at com.sap.smd.agent.plugin.connectors.http.HTTPConnectorService.performRequest(HTTPConnectorService.java:673)
         at com.sap.smd.agent.plugin.connectors.http.HTTPConnectorService.performRequest(HTTPConnectorService.java:638)
         at com.sap.smd.agent.plugin.connectors.http.HTTPConnectorService.performRequest(HTTPConnectorService.java:624)
         at com.sap.smd.agent.plugin.connectors.webservice.SAPHostAgentTrustedConnectionConfigurator.setupTrustedConnection(SAPHostAgentTrustedConnectionConfigurator.java:81)
         at com.sap.smd.agent.plugin.connectors.webservice.WSConnectorFactory.configureLocalSAPHostAgentEndPoint(WSConnectorFactory.java:244)
         at com.sap.smd.agent.plugin.hostagent.check.HostAgentCheckService.getHostAgentVersion(HostAgentCheckService.java:105)
         at com.sap.smd.agent.plugins.dcc.util.WSProxyManager.checkSAPHostAgentVersion(WSProxyManager.java:287)
         at com.sap.smd.agent.plugins.dcc.util.WSProxyManager.initSAPHostControlWebServiceClient(WSProxyManager.java:112)
         at com.sap.smd.agent.plugins.dcc.util.WSProxyManager.getSAPHostControlProxy(WSProxyManager.java:75)
         at com.sap.smd.agent.plugins.dcc.job.PhysicalHostPushJob.run(PhysicalHostPushJob.java:195)
         at com.sap.smd.server.exec.TaskRunner.run(TaskRunner.java:46)
         at com.sap.smd.server.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:781)
         at java.lang.Thread.run(Thread.java:679)
    Nov 30, 2011 1:26:19 PM [Thread[ExRun:OutsideDiscovery_1,5,OutsideDiscovery:ExecTG]] Error      Pb:
    [EXCEPTION]
    java.rmi.RemoteException: Error to perform http request cause by java.io.IOException: Unable to open connection to host "FQDN:1128". The host is down or unavailable...; nested exception is:
         java.io.IOException: Unable to open connection to host "FQDN:1128". The host is down or unavailable.
    Dec 2, 2011 4:56:53 PM [Thread[Thread-368,5,main]] Warning    [Setup]Step Id 1051 has no step description
    Dec 2, 2011 4:56:53 PM [Thread[Thread-368,5,main]] Warning    [Setup]Step Id 1051 has no step description
    Dec 2, 2011 5:02:05 PM [Thread[Thread-363,5,main]] Error      [Setup]Failed to get a soap response from http://FQDN:50000/spml/spmlservice
    Dec 2, 2011 5:02:05 PM [Thread[Thread-363,5,main]] Error      [Setup]An error occured while processing the UME command READ_USER from agent HOSTNAME : Server returned: 401  Unauthorized
    [EXCEPTION]
    com.sap.sup.admin.xmlsoap.core.soap.NativeSOAPException: Server returned: 401  Unauthorized
    Kindly help me out guys.
    Thanks & Regards
    Ajitabh

  • T61P - System Update build: 5.02.0011 - Error occurred while gathering user informatio​n

    I have issues with SU with my Lenovo t61p
    Win8Pro x64
    [Lenovo System Update build: 2013-4-11 5.02.0011] 29.4.2013 1:31:43
    Info 2013-04-29 , 01:31:43
    at Tvsu.Environment.EnvironmentManager..ctor()
    Message: Starting Environment Manager...
    Info 2013-04-29 , 01:31:43
    at Tvsu.Nls.NlsResources..ctor()
    Message: Starting the instance of NLS@Runtime
    Info 2013-04-29 , 01:31:44
    at Tvsu.Nls.NlsResources..ctor()
    Message:
    The active language is: EN
    The default language is: EN
    The OS language is: EN
    The language loaded type is: OS
    Info 2013-04-29 , 01:31:44
    at Tvsu.Commonscheduler.SchedulerManager.Save()
    Message: Scheduler Manager Starts...
    Info 2013-04-29 , 01:31:44
    at Tvsu.Commonscheduler.SchedulerManager.Save()
    Message: Obtaining information from the Enviroment Manager...
    Info 2013-04-29 , 01:31:44
    at Tvsu.Commonscheduler.SchedulerManager.Save()
    Message: Validating Starts...
    Info 2013-04-29 , 01:31:44
    at Tvsu.Commonscheduler.SchedulerManager.Save()
    Message: Validating Ends...
    Info 2013-04-29 , 01:31:44
    at Tvsu.Commonscheduler.SchedulerManager.Save()
    Message: Sending Values to the SchedulerParser...
    Info 2013-04-29 , 01:31:44
    at Tvt.Commonscheduler.SchedulerParser.SetValues(Stri​ng v_ScheduleMode, String v_ScheduleDayOfTheMonth, String v_ScheduleDayOfTheWeek, String v_ScheduleHour, String v_ScheduleMinute, String scheduleSecond, String v_NumMinutes, String v_wakeFromSuspendHibernate, String v_Pre, String v_PreParameters, String v_PreShow, String v_Post, String v_PostParameters, String v_PostShow, String v_Task, String v_TaskParameter, String v_TaskShow, String v_CPUPriority, String v_minDaysBetweenExecution, String v_lastRunTimeHigh, String v_lastRunTimeLow, String v_nextRunTimeHigh, String v_nextRunTimeLow, String v_preRunAsUser, String v_runAsUser, String v_postRunAsUser, String v_schedulerAbility, String v_schedulerPath)
    Message: Scheduler Parser - Receiving Values from the SchedulerManager
    Info 2013-04-29 , 01:31:44
    at Tvt.Commonscheduler.SchedulerParser.SetValues(Stri​ng v_ScheduleMode, String v_ScheduleDayOfTheMonth, String v_ScheduleDayOfTheWeek, String v_ScheduleHour, String v_ScheduleMinute, String scheduleSecond, String v_NumMinutes, String v_wakeFromSuspendHibernate, String v_Pre, String v_PreParameters, String v_PreShow, String v_Post, String v_PostParameters, String v_PostShow, String v_Task, String v_TaskParameter, String v_TaskShow, String v_CPUPriority, String v_minDaysBetweenExecution, String v_lastRunTimeHigh, String v_lastRunTimeLow, String v_nextRunTimeHigh, String v_nextRunTimeLow, String v_preRunAsUser, String v_runAsUser, String v_postRunAsUser, String v_schedulerAbility, String v_schedulerPath)
    Message: Scheduler Parser - Starting Validation Process!
    Info 2013-04-29 , 01:31:44
    at Tvt.Commonscheduler.SchedulerParser.SetValues(Stri​ng v_ScheduleMode, String v_ScheduleDayOfTheMonth, String v_ScheduleDayOfTheWeek, String v_ScheduleHour, String v_ScheduleMinute, String scheduleSecond, String v_NumMinutes, String v_wakeFromSuspendHibernate, String v_Pre, String v_PreParameters, String v_PreShow, String v_Post, String v_PostParameters, String v_PostShow, String v_Task, String v_TaskParameter, String v_TaskShow, String v_CPUPriority, String v_minDaysBetweenExecution, String v_lastRunTimeHigh, String v_lastRunTimeLow, String v_nextRunTimeHigh, String v_nextRunTimeLow, String v_preRunAsUser, String v_runAsUser, String v_postRunAsUser, String v_schedulerAbility, String v_schedulerPath)
    Message: Scheduler Parser - All validations have been processed!
    Info 2013-04-29 , 01:31:44
    at Tvt.Commonscheduler.SchedulerParser.SetValues(Stri​ng v_ScheduleMode, String v_ScheduleDayOfTheMonth, String v_ScheduleDayOfTheWeek, String v_ScheduleHour, String v_ScheduleMinute, String scheduleSecond, String v_NumMinutes, String v_wakeFromSuspendHibernate, String v_Pre, String v_PreParameters, String v_PreShow, String v_Post, String v_PostParameters, String v_PostShow, String v_Task, String v_TaskParameter, String v_TaskShow, String v_CPUPriority, String v_minDaysBetweenExecution, String v_lastRunTimeHigh, String v_lastRunTimeLow, String v_nextRunTimeHigh, String v_nextRunTimeLow, String v_preRunAsUser, String v_runAsUser, String v_postRunAsUser, String v_schedulerAbility, String v_schedulerPath)
    Message: Scheduler Parser - Writting to the registry...
    Info 2013-04-29 , 01:31:44
    at Tvt.Commonscheduler.SchedulerParser.SetValues(Stri​ng v_ScheduleMode, String v_ScheduleDayOfTheMonth, String v_ScheduleDayOfTheWeek, String v_ScheduleHour, String v_ScheduleMinute, String scheduleSecond, String v_NumMinutes, String v_wakeFromSuspendHibernate, String v_Pre, String v_PreParameters, String v_PreShow, String v_Post, String v_PostParameters, String v_PostShow, String v_Task, String v_TaskParameter, String v_TaskShow, String v_CPUPriority, String v_minDaysBetweenExecution, String v_lastRunTimeHigh, String v_lastRunTimeLow, String v_nextRunTimeHigh, String v_nextRunTimeLow, String v_preRunAsUser, String v_runAsUser, String v_postRunAsUser, String v_schedulerAbility, String v_schedulerPath)
    Message: Scheduler Parser - All values were saved on the Registry!
    Info 2013-04-29 , 01:31:44
    at Tvt.Commonscheduler.SchedulerParser.SetValues(Stri​ng v_ScheduleMode, String v_ScheduleDayOfTheMonth, String v_ScheduleDayOfTheWeek, String v_ScheduleHour, String v_ScheduleMinute, String scheduleSecond, String v_NumMinutes, String v_wakeFromSuspendHibernate, String v_Pre, String v_PreParameters, String v_PreShow, String v_Post, String v_PostParameters, String v_PostShow, String v_Task, String v_TaskParameter, String v_TaskShow, String v_CPUPriority, String v_minDaysBetweenExecution, String v_lastRunTimeHigh, String v_lastRunTimeLow, String v_nextRunTimeHigh, String v_nextRunTimeLow, String v_preRunAsUser, String v_runAsUser, String v_postRunAsUser, String v_schedulerAbility, String v_schedulerPath)
    Message: Scheduler Parser - Reloading Scheduler
    Info 2013-04-29 , 01:31:44
    at Tvt.Commonscheduler.SchedulerParser.SetValues(Stri​ng v_ScheduleMode, String v_ScheduleDayOfTheMonth, String v_ScheduleDayOfTheWeek, String v_ScheduleHour, String v_ScheduleMinute, String scheduleSecond, String v_NumMinutes, String v_wakeFromSuspendHibernate, String v_Pre, String v_PreParameters, String v_PreShow, String v_Post, String v_PostParameters, String v_PostShow, String v_Task, String v_TaskParameter, String v_TaskShow, String v_CPUPriority, String v_minDaysBetweenExecution, String v_lastRunTimeHigh, String v_lastRunTimeLow, String v_nextRunTimeHigh, String v_nextRunTimeLow, String v_preRunAsUser, String v_runAsUser, String v_postRunAsUser, String v_schedulerAbility, String v_schedulerPath)
    Message: Scheduler Parser - The Scheduler was reloaded
    Info 2013-04-29 , 01:31:44
    at Tvsu.Commonscheduler.SchedulerManager.Save()
    Message: All values sent to SchedulerParser...
    Info 2013-04-29 , 01:31:44
    at Tvsu.Commonscheduler.SchedulerManager.Save()
    Message: Scheduler Manager ends...
    Severe 2013-04-29 , 01:31:44
    at Tvsu.Sdk.SuSdk.StartApplication()
    Message: Application runs with the framework: 2.0.50727.6400
    Info 2013-04-29 , 01:31:44
    at Tvsu.Engine.DataBase.InitializeDataBase()
    Message: Initializing the DataBase from file: updates.ser
    Info 2013-04-29 , 01:31:44
    at Tvsu.Sdk.SuSdk.StartApplication()
    Message: Starting the Application
    Info 2013-04-29 , 01:31:44
    at Tvsukernel.Logic.GUIController.StartGUI(Boolean showsplash)
    Message: Starting GUI...
    Info 2013-04-29 , 01:31:44
    at Tvsukernel.Logic.GUIController.StartGUI(Boolean showsplash)
    Message: MainFrame created successfully
    Info 2013-04-29 , 01:31:44
    at Tvsukernel.Logic.GUIController.StartGUI(Boolean showsplash)
    Message: GUI -- Welcome screen
    Info 2013-04-29 , 01:31:44
    at Tvsukernel.Logic.GUIController.BackToMain()
    Message: Setting Welcome screen...
    Info 2013-04-29 , 01:31:44
    at Tvsukernel.FlowScreens.MainFrame.SetScreen(String screen, RoutedEventHandler[] eh)
    Message: Loading Welcome screen on Action pane.
    Info 2013-04-29 , 01:31:49
    at Tvsukernel.Logic.GUIController.SearchUpdates(Objec​t sender, EventArgs args)
    Message: Starting the Search process...
    Info 2013-04-29 , 01:31:49
    at Tvsukernel.FlowScreens.MainFrame.SetScreen(String screen, RoutedEventHandler[] eh)
    Message: Loading Search screen on Action pane.
    Info 2013-04-29 , 01:31:49
    at Tvsukernel.Logic.ProgressThread.InitSearch()
    Message: GUI -- Reporting progress for the Search
    Info 2013-04-29 , 01:31:49
    at Tvsu.Sdk.SuSdk.GetSystemProperties()
    Message: Get the System Properties
    Info 2013-04-29 , 01:31:49
    at Tvsu.Engine.Task.Task.StartExecution()
    Message: PreTask
    Info 2013-04-29 , 01:31:49
    at Tvsu.Engine.Task.Task.StartExecution()
    Message: Start
    Info 2013-04-29 , 01:31:49
    at Tvsu.Engine.Task.Task.Start()
    Message: Starting the task
    Info 2013-04-29 , 01:31:49
    at Tvsu.Engine.Task.Task.Start()
    Message: The current process is:HelloProcess
    Info 2013-04-29 , 01:31:49
    at Tvsu.Engine.Task.Task.Start()
    Message: Executing the PreProcess HelloProcess
    Info 2013-04-29 , 01:31:49
    at Tvsu.Engine.Task.Task.Start()
    Message: Executing the StartProcess HelloProcess
    Info 2013-04-29 , 01:31:49
    at Tvsu.Engine.Process.HelloProcess.DownloadHelpFile(​)
    Message: The chm help file is already present in the system
    Info 2013-04-29 , 01:31:49
    at Tvsu.Engine.Process.HelloProcess.Start()
    Message: The test.properties file was not found, the normal Hello process will continue.
    Info 2013-04-29 , 01:31:49
    at Tvsu.Engine.Process.HelloProcess.Start()
    Message: HelloProcess Started
    Info 2013-04-29 , 01:31:49
    at Tvsu.Engine.Process.HelloProcess.Start()
    Message: Client level: HelloLevel_9_03_00
    Info 2013-04-29 , 01:31:49
    at Tvsu.Engine.Process.HelloProcess.DownloadUDF(Strin​g helloClientLevel)
    Message: The UDF will be downloaded from: https://download.lenovo.com/ibmdl/pub/pc/pccbbs/ag​ent/SSClientCommon/HelloLevel_9_03_00.xml
    Info 2013-04-29 , 01:31:49
    at Tvsu.Engine.Process.HelloProcess.DownloadUDF(Strin​g helloClientLevel)
    Message: The UDF will be downloaded to-> C:\ProgramData\Lenovo\SystemUpdate\session\system\​SSClientCommon\HelloLevel_9_03_00.xml
    Info 2013-04-29 , 01:31:49
    at Tvsu.ConnectionSettings.ConnectionSettings.GetConn​ectionForURL(String url)
    Message: Creating a new Connection Settings Bean instance to Host: download.lenovo.com
    Info 2013-04-29 , 01:31:49
    at Tvt.ConnectionSettings.ConnectionSettings.GetConne​ctionForURL(String url)
    Message: Direct connection found
    Info 2013-04-29 , 01:31:49
    at Tvsukernel.CustomControls.Step.<>c__DisplayClass7.​<set_Image>b__6()
    Message: Setting PROCESSING status.
    Info 2013-04-29 , 01:31:49
    at Tvsu.FileDownloader.HttpsDownload.SetCertificates(​)
    Message: Setting certificates...
    Info 2013-04-29 , 01:31:50
    at Tvsu.FileDownloader.HttpsDownload.GetProxy(Connect​ionSettingsBean connBean)
    Message: Connection type set to DIRECT in ConnectionSettingsBean
    Severe 2013-04-29 , 01:31:50
    at Tvsu.FileDownloader.HttpsDownload.Init(FileDownloa​dInfo fileInfo)
    Message: Debug Log: Init method:GET
    Severe 2013-04-29 , 01:31:52
    at Tvsu.FileDownloader.HttpsDownload.doDownloadByHttp​s(FileDownloadInfo fileInfo, downloadingDelegate downDelegate)
    Message: Debug Log: doDownloadByHttps InterException is null, uri:https://download.lenovo.com/ibmdl/pub/pc/pccbbs/ag​ent/SSClientCommon/HelloLevel_9_03_00.xml
    Severe 2013-04-29 , 01:31:52
    at Tvsu.FileDownloader.HttpsDownload.doDownloadByHttp​s(FileDownloadInfo fileInfo, downloadingDelegate downDelegate)
    Message: Debug Log doDownloadByHttps webException message:The remote server returned an error: (404) Not Found.
    Severe 2013-04-29 , 01:31:52
    at Tvsu.FileDownloader.HttpsDownload.doDownloadByHttp​s(FileDownloadInfo fileInfo, downloadingDelegate downDelegate)
    Message: Debug Log server path: https://download.lenovo.com/ibmdl/pub/pc/pccbbs/ag​ent/SSClientCommon/HelloLevel_9_03_00.xml responseStatus:404
    Severe 2013-04-29 , 01:31:52
    at Tvsu.FileDownloader.HttpsDownload.doDownloadByHttp​s(FileDownloadInfo fileInfo, downloadingDelegate downDelegate)
    Message: Debug Log server path: https://download.lenovo.com/ibmdl/pub/pc/pccbbs/ag​ent/SSClientCommon/HelloLevel_9_03_00.xml webException.StackTrace: at System.Net.HttpWebRequest.GetResponse()
    at Tvsu.FileDownloader.HttpsDownload.doDownloadByHttp​s(FileDownloadInfo fileInfo, downloadingDelegate downDelegate)
    Info 2013-04-29 , 01:31:52
    at Tvsu.Engine.Process.HelloProcess.Start()
    Message: UDF download status is -> Failed
    Severe 2013-04-29 , 01:31:52
    at Tvsu.Engine.Process.HelloProcess.Start()
    Message: Could't connect to the HelloServer, no UDF file was downloaded
    Info 2013-04-29 , 01:31:52
    at Tvsu.Egather.EgatherManager.GetEgatherParser(Strin​g type)
    Message: Running egather minimal.....
    Info 2013-04-29 , 01:31:52
    at Tvsu.Egather.EgatherExecutor.RunAsWindowsService(S​tring directory, String command, String arguments)
    Message: /execute ia.exe /arguments -filename"""C:\Program Files (x86)\Lenovo\System Update\egather\sysrecomin""" -probes REGIONAL_SETTINGS GATHERER_INFORMATION SYSTEM_SUMMARY -local /directory C:\Program Files (x86)\Lenovo\System Update\egather\ /type COMMAND /timeout 300000
    Info 2013-04-29 , 01:31:52
    at Tvsu.Egather.EgatherExecutor.RunAsWindowsService(S​tring directory, String command, String arguments)
    Message: FileName Path: C:\Program Files (x86)\Lenovo\System Update\TvsuCommandLauncher.exe
    Info 2013-04-29 , 01:31:53
    at Tvsu.Egather.EgatherExecutor.ExecuteEgather(String fileOutput, String args)
    Message: RC eGatherer: 0
    Info 2013-04-29 , 01:31:53
    at Tvsu.Engine.Process.HelloProcess.Start()
    Message: MTM received from eGather: 6458BS9
    Severe 2013-04-29 , 01:31:53
    at Tvsu.Engine.Process.HelloProcess.Start()
    Message: An error ocurred while using the MappingParser
    Exception:
    Message: There is not entry for the key SRM
    Type: System.NullReferenceException
    at Tvt.Mapping.Languages.get_Item(String tla)
    at Tvsu.Engine.Process.HelloProcess.Start()
    Severe 2013-04-29 , 01:31:53
    at Tvsu.Engine.Process.HelloProcess.Start()
    Message: A value could not be mapped when using the MappingParser or eGather execution failed
    Exception:
    Message: Error getting MappingParser properties
    Type: Tvsu.Engine.Process.MappingInterfaceException
    at Tvsu.Engine.Process.HelloProcess.Start()
    Severe 2013-04-29 , 01:31:53
    at Tvsu.Engine.Task.Task.StartExecution()
    Message: An error occurred while the task: HelloTask executed the process: HelloProcessthe message from exception isA fatal error ocurred while in the HelloProcess
    Exception:
    Message: A fatal error ocurred while in the HelloProcess
    Type: Tvsu.Engine.Process.HelloProcessException
    at Tvsu.Engine.Task.Task.Start()
    at Tvsu.Engine.Task.Task.StartExecution()
    Info 2013-04-29 , 01:31:53
    at Tvsukernel.CustomControls.Step.<>c__DisplayClass7.​<set_Image>b__6()
    Message: Setting FAILED status.
    Info 2013-04-29 , 01:31:53
    at Tvsukernel.Logic.GUIController.ShowErrorMessage(Ex​ception e)
    Message: Error while gathering user information.
    Exception:
    Message: A fatal error ocurred while in the HelloProcess
    Type: Tvsu.Engine.Process.HelloProcessException
    at Tvsu.Engine.Task.Task.StartExecution()
    at Tvsu.Sdk.SuSdk.GetSystemProperties()
    at Tvsukernel.Logic.ProgressThread.InitSearch()
    Info 2013-04-29 , 01:31:53
    at Tvsukernel.Dialogs.Messages.ShowStaticMessage(Stri​ng message, String title, MessageType t, Boolean check)
    Message: Showing ERROR Message: < An error occurred while gathering user information. >
    Info 2013-04-29 , 01:31:55
    at Tvsukernel.Logic.GUIController.BackToMain()
    Message: Setting Welcome screen...
    Info 2013-04-29 , 01:31:55
    at Tvsukernel.FlowScreens.MainFrame.SetScreen(String screen, RoutedEventHandler[] eh)
    Message: Loading Welcome screen on Action pane.
    Info 2013-04-29 , 01:31:57
    at Tvsukernel.Logic.GUIController.AskBeforeClosing()
    Message: Close System Update?
    Info 2013-04-29 , 01:31:57
    at Tvsukernel.Dialogs.Messages.ShowStaticMessage(Stri​ng message, String title, MessageType t, Boolean check)
    Message: Showing QUESTION Message: < Are you sure you want to close System Update? >
    Info 2013-04-29 , 01:31:59
    at Tvsukernel.Logic.GUIController.AskBeforeClosing()
    Message: Application will close now? True
    Info 2013-04-29 , 01:31:59
    at Tvsukernel.FlowScreens.MainFrame.OnClosing(CancelE​ventArgs e)
    Message: User wanted to close System Update, or the package force a reboot.
    Severe 2013-04-29 , 01:31:59
    at Tvsu.Sdk.SuSdk.ShutDownApplication()
    Message: Has happened an exception while the UNCAuthenticator.Shutdown() was executedShare name can not be null or empty
    Info 2013-04-29 , 01:31:59
    at Tvsu.Engine.DataBase.ShutDownDataBase()
    Message: Shutting down the DataBase, saving any data into file: updates.ser
    Info 2013-04-29 , 01:31:59
    at Tvsu.Environment.EnvironmentManager.closeEM()
    Message: Closing Environment Manager.
    Info 2013-04-29 , 01:31:59
    at Tvsu.Sdk.SuSdk.ShutDownApplication()
    Message: Shut Down the Application

    You have win8. Have you ever had an earlier version of SU , ie when you booted up the 1st time (did it work).
    Run windows update and make sure .netframework is current.
    Did you upgrade from win 7?

  • System Update error "An error occurred while gathering user informatio​n"

    I honestly think that i'm never going to stop running into issues with Lenovos software....
    Anyways, i've reinstalled countless times trying every way to fix things and nothing works. I will post my log for others to look at and hopefully help me out. 
    [Lenovo System Update build: 2015-01-15 5.06.0027] 3/4/2015 5:58:34 PM
    Info 2015-03-04 , 05:58:34
    at Tvsu.Environment.EnvironmentManager..ctor()
    Message: Starting Environment Manager...
    Info 2015-03-04 , 05:58:36
    at Tvsu.Nls.NlsResources..ctor()
    Message: Starting the instance of NLS@Runtime
    Info 2015-03-04 , 05:58:36
    at Tvsu.Nls.NlsResources..ctor()
    Message:
    The active language is: EN
    The default language is: EN
    The OS language is: EN
    The language loaded type is: OS
    Severe 2015-03-04 , 05:58:36
    at Tvsu.Sdk.SuSdk.StartApplication()
    Message: Application runs with the framework: 4.0.30319.34209
    Info 2015-03-04 , 05:58:36
    at Tvsu.Engine.DataBase.InitializeDataBase()
    Message: Initializing the DataBase from file: updates.ser
    Info 2015-03-04 , 05:58:36
    at Tvsu.Sdk.SuSdk.StartApplication()
    Message: Starting the Application
    Info 2015-03-04 , 05:58:36
    at Tvsukernel.Logic.GUIController.StartGUI(Boolean showsplash)
    Message: Starting GUI...
    Info 2015-03-04 , 05:58:36
    at Tvsukernel.Logic.GUIController.StartGUI(Boolean showsplash)
    Message: MainFrame created successfully
    Info 2015-03-04 , 05:58:36
    at Tvsukernel.Logic.GUIController.StartGUI(Boolean showsplash)
    Message: GUI -- Welcome screen
    Info 2015-03-04 , 05:58:36
    at Tvsukernel.Logic.GUIController.BackToMain()
    Message: Setting Welcome screen...
    Info 2015-03-04 , 05:58:36
    at Tvsukernel.FlowScreens.MainFrame.SetScreen(String screen, RoutedEventHandler[] eh)
    Message: Loading Welcome screen on Action pane.
    Info 2015-03-04 , 05:58:39
    at Tvsukernel.Logic.GUIController.SearchUpdates(Objec​t sender, EventArgs args)
    Message: Starting the Search process...
    Info 2015-03-04 , 05:58:39
    at Tvsukernel.FlowScreens.MainFrame.SetScreen(String screen, RoutedEventHandler[] eh)
    Message: Loading Search screen on Action pane.
    Info 2015-03-04 , 05:58:39
    at Tvsukernel.Logic.ProgressThread.InitSearch()
    Message: GUI -- Reporting progress for the Search
    Info 2015-03-04 , 05:58:39
    at Tvsu.Sdk.SuSdk.GetSystemProperties()
    Message: Get the System Properties
    Info 2015-03-04 , 05:58:39
    at Tvsu.Engine.Task.Task.StartExecution()
    Message: PreTask
    Info 2015-03-04 , 05:58:39
    at Tvsu.Engine.Task.Task.StartExecution()
    Message: Start
    Info 2015-03-04 , 05:58:39
    at Tvsu.Engine.Task.Task.Start()
    Message: Starting the task
    Info 2015-03-04 , 05:58:39
    at Tvsu.Engine.Task.Task.Start()
    Message: The current process is:HelloProcess
    Info 2015-03-04 , 05:58:39
    at Tvsu.Engine.Task.Task.Start()
    Message: Executing the PreProcess HelloProcess
    Info 2015-03-04 , 05:58:39
    at Tvsu.Engine.Task.Task.Start()
    Message: Executing the StartProcess HelloProcess
    Info 2015-03-04 , 05:58:39
    at Tvsu.Engine.Process.HelloProcess.DownloadHelpFile(​)
    Message: The chm help file is already present in the system
    Info 2015-03-04 , 05:58:39
    at Tvsu.Engine.Process.HelloProcess.Start()
    Message: The test.properties file was not found, the normal Hello process will continue.
    Info 2015-03-04 , 05:58:39
    at Tvsu.Engine.Process.HelloProcess.Start()
    Message: HelloProcess Started
    Info 2015-03-04 , 05:58:39
    at Tvsu.Engine.Process.HelloProcess.Start()
    Message: Client level: HelloLevel_9_14_00
    Info 2015-03-04 , 05:58:39
    at Tvsu.Engine.Process.HelloProcess.DownloadUDF(Strin​g helloClientLevel)
    Message: The UDF will be downloaded from: https://download.lenovo.com/ibmdl/pub/pc/pccbbs/ag​ent/SSClientCommon/HelloLevel_9_14_00.xml
    Info 2015-03-04 , 05:58:39
    at Tvsu.Engine.Process.HelloProcess.DownloadUDF(Strin​g helloClientLevel)
    Message: The UDF will be downloaded to-> C:\ProgramData\Lenovo\SystemUpdate\session\system\​SSClientCommon\HelloLevel_9_14_00.xml
    Info 2015-03-04 , 05:58:39
    at Tvsu.ConnectionSettings.ConnectionSettings.GetConn​ectionForURL(String url)
    Message: Creating a new Connection Settings Bean instance to Host: download.lenovo.com
    Info 2015-03-04 , 05:58:39
    at Tvsukernel.CustomControls.Step.<>c__DisplayClass7.​<set_Image>b__6()
    Message: Setting PROCESSING status.
    Info 2015-03-04 , 05:58:39
    at Tvt.ConnectionSettings.ConnectionSettings.GetConne​ctionForURL(String url)
    Message: Direct connection found
    Info 2015-03-04 , 05:58:39
    at Tvsu.FileDownloader.HttpsDownload.GetProxy(Connect​ionSettingsBean connBean)
    Message: Connection type set to DIRECT in ConnectionSettingsBean
    Severe 2015-03-04 , 05:58:39
    at Tvsu.FileDownloader.HttpsDownload.Init(FileDownloa​dInfo fileInfo)
    Message: Debug Log: Init method:GET
    Info 2015-03-04 , 05:58:39
    at Tvsu.Engine.Process.HelloProcess.Start()
    Message: UDF download status is -> Downloaded
    Info 2015-03-04 , 05:58:39
    at Tvsu.Engine.Process.HelloProcess.ParseUDF(String udfPath)
    Message: Parsing the UDF file
    Severe 2015-03-04 , 05:58:39
    at Tvsu.Engine.Process.HelloProcess.Start()
    Message: Error reading C:\ProgramData\Lenovo\SystemUpdate\session\system\​SSClientCommon\HelloLevel_9_14_00.xml, this XML file is not well-formed
    Exception:
    Message: Root element is missing.
    Type: System.Xml.XmlException
    at System.Xml.XmlTextReaderImpl.Throw(Exception e)
    at System.Xml.XmlTextReaderImpl.ParseDocumentContent(​)
    at System.Xml.XmlTextReaderImpl.Read()
    at System.Xml.XPath.XPathDocument.LoadFromReader(XmlR​eader reader, XmlSpace space)
    at System.Xml.XPath.XPathDocument..ctor(TextReader textReader)
    at Tvsu.Engine.Process.HelloProcess.ParseUDF(String udfPath)
    at Tvsu.Engine.Process.HelloProcess.Start()
    Info 2015-03-04 , 05:58:39
    at Tvsu.Egather.EgatherManager.GetEgatherParser(Strin​g type)
    Message: Running egather minimal.....
    Info 2015-03-04 , 05:58:39
    at Tvsu.Egather.EgatherExecutor.RunAsWindowsService(S​tring directory, String command, String arguments)
    Message: /execute ia.exe /arguments -filename$C:\Program Files (x86)\Lenovo\System Update\egather\sysrecomin$ -probes REGIONAL_SETTINGS GATHERER_INFORMATION SYSTEM_SUMMARY -local /directory $C:\Program Files (x86)\Lenovo\System Update\egather\$ /type COMMAND /securitycode a7db21fdc747d5e6f213b2b4c6632dc5dbfe5162 /timeout 300000
    Info 2015-03-04 , 05:58:39
    at Tvsu.Egather.EgatherExecutor.RunAsWindowsService(S​tring directory, String command, String arguments)
    Message: FileName Path: C:\Program Files (x86)\Lenovo\System Update\TvsuCommandLauncher.exe
    Info 2015-03-04 , 05:58:39
    at Tvsu.Egather.EgatherExecutor.ExecuteEgather(String fileOutput, String args)
    Message: RC eGatherer: 0
    Severe 2015-03-04 , 05:58:39
    at Tvsu.Egather.EgatherManager.GetEgatherParser(Strin​g type)
    Message: Unable to execute egather
    Severe 2015-03-04 , 05:58:39
    at Tvsu.Engine.Process.HelloProcess.Start()
    Message: Error getting the Egather parser
    Exception:
    Message: Could not find file 'C:\Program Files (x86)\Lenovo\System Update\egather\sysrecomin.XML'.
    Type: System.IO.FileNotFoundException
    at Tvsu.Egather.EgatherManager.GetEgatherParser(Strin​g type)
    at Tvsu.Egather.EgatherManager.get_EgatherMinimal()
    at Tvsu.Engine.Process.HelloProcess.Start()
    Severe 2015-03-04 , 05:58:39
    at Tvsu.Engine.Task.Task.StartExecution()
    Message: An error occurred while the task: HelloTask executed the process: HelloProcessthe message from exception isError getting the Egather parser
    Exception:
    Message: Error getting the Egather parser
    Type: Tvsu.Engine.Process.EgatherException
    at Tvsu.Engine.Task.Task.Start()
    at Tvsu.Engine.Task.Task.StartExecution()
    Info 2015-03-04 , 05:58:39
    at Tvsukernel.CustomControls.Step.<>c__DisplayClass7.​<set_Image>b__6()
    Message: Setting FAILED status.
    Info 2015-03-04 , 05:58:39
    at Tvsukernel.Logic.GUIController.ShowErrorMessage(Ex​ception e)
    Message: Error while gathering user information.
    Exception:
    Message: Error getting the Egather parser
    Type: Tvsu.Engine.Process.EgatherException
    at Tvsu.Engine.Task.Task.StartExecution()
    at Tvsu.Sdk.SuSdk.GetSystemProperties()
    at Tvsukernel.Logic.ProgressThread.InitSearch()
    Info 2015-03-04 , 05:58:39
    at Tvsukernel.Dialogs.Messages.ShowStaticMessage(Stri​ng message, String title, MessageType t, Boolean check)
    Message: Showing ERROR Message: < An error occurred while gathering user information. >
    Info 2015-03-04 , 05:58:41
    at Tvsukernel.Logic.GUIController.BackToMain()
    Message: Setting Welcome screen...
    Info 2015-03-04 , 05:58:41
    at Tvsukernel.FlowScreens.MainFrame.SetScreen(String screen, RoutedEventHandler[] eh)
    Message: Loading Welcome screen on Action pane.
    Info 2015-03-04 , 05:58:41
    at Tvsukernel.Logic.GUIController.AskBeforeClosing()
    Message: Close System Update?
    Info 2015-03-04 , 05:58:41
    at Tvsukernel.Dialogs.Messages.ShowStaticMessage(Stri​ng message, String title, MessageType t, Boolean check)
    Message: Showing QUESTION Message: < Are you sure you want to close System Update? >
    Info 2015-03-04 , 05:58:42
    at Tvsukernel.Logic.GUIController.AskBeforeClosing()
    Message: Application will close now? True
    Info 2015-03-04 , 05:58:42
    at Tvsukernel.FlowScreens.MainFrame.OnClosing(CancelE​ventArgs e)
    Message: User wanted to close System Update, or the package force a reboot.
    Severe 2015-03-04 , 05:58:42
    at Tvsu.Sdk.SuSdk.ShutDownApplication()
    Message: Has happened an exception while the UNCAuthenticator.Shutdown() was executedShare name can not be null or empty
    Info 2015-03-04 , 05:58:42
    at Tvsu.Engine.DataBase.ShutDownDataBase()
    Message: Shutting down the DataBase, saving any data into file: updates.ser
    Info 2015-03-04 , 05:58:42
    at Tvsu.Environment.EnvironmentManager.closeEM()
    Message: Closing Environment Manager.
    Info 2015-03-04 , 05:58:43
    at Tvsu.Sdk.SuSdk.ShutDownApplication()
    Message: Shut Down the Application
     One thing I noticed is that if I visit the download link for the HelloLevel_9_14_00.xml here: https://download.lenovo.com/ibmdl/pub/pc/pccbbs/ag​ent/SSClientCommon/HelloLevel_9_14_00.xml
    It shows up completely blank but everything HelloLevel_9_13_00.xml and < shows up fine for me. It appears this is the same issue the log is reporting saying that "this XML file is not well-formed" could this be a Lenovo issue though? No one else has reported this exact problem though so I guess not.
    My model is a Thinkpad Edge E540 (20C6008SUS) with Windows 8.1
    Solved!
    Go to Solution.

    The hello level  9_14 is expected behavior. The link is currently set blanks.  Down the road, when a newer version of SU is available, and Lenovo wants SU to self update, this link will contain the self update information. 
    As you saw, hello level9_13 contains data.
    My notes: 
    systemupdate506-01-15-2015.exe System Update  5.06.0027 hl=14  (02/05/2015)
    systemupdate506-11-04-2014.exe System Update  5.06.0024 hl=13  (11/24/2014)
    >>>> users of SU 5.6.0024 , which is hello level 13, will be offered self update of SU to the current release.
    ====
    Your failure is here:
    Info 2015-03-04 , 05:58:39
    at Tvsu.Egather.EgatherExecutor.RunAsWindowsService(S​​tring directory, String command, String arguments)
    Message: FileName Path: C:\Program Files (x86)\Lenovo\System Update\TvsuCommandLauncher.exe
    Info 2015-03-04 , 05:58:39
    at Tvsu.Egather.EgatherExecutor.ExecuteEgather(String fileOutput, String args)
    Message: RC eGatherer: 0
    Severe 2015-03-04 , 05:58:39
    at Tvsu.Egather.EgatherManager.GetEgatherParser(Strin​​g type)
    Message: Unable to execute egather
    Severe 2015-03-04 , 05:58:39
    at Tvsu.Engine.Process.HelloProcess.Start()
    Message: Error getting the Egather parser
    Exception:
    Message: Could not find file 'C:\Program Files (x86)\Lenovo\System Update\egather\sysrecomin.XML'
    ================
    SU runs ia.exe(inventory agent) via tvsucommandlauncher via  the SU service in windows services. 
    Expected output is the creation of  two XML's:
    'C:\Program Files (x86)\Lenovo\System Update\egather\sysrecomin.XML'
    'C:\Program Files (x86)\Lenovo\System Update\egather\sysreco.XML'
    These two .xmls contain information about your system such as machine type and model.
    This message stated:
    Message: RC eGatherer: 0
    I dont think ia.exec ever got executed.
    ===
    In c\programdata\lenovo\systemupdate\logs    
    Post
    tvsu_exec.log
    Tvsucommandlauncher.log 
    service.log   (inside the SUservice logs folder).
    Go into windows services, and find entry name System Update and make sure it is set to start type=manual..
    ==
    DId your system ship from the factory with System Update installed?
    Have you ever run a prior release of SU on your system with success, or is this your first time using Su on your system?

  • TVSU "an error occurred while gathering user information"

    I am getting this error on E20 4220CTO. I was told by tech support one/some of the windows files were bad and that was why it didn't run. I don't believe that response as everything else works just fine--except TVSU--and the tech gave me no idea which windows files might be bad. I am running version 4.03.0012. Is there any fix out there?? I do not manually update the registry.But I have run a registry cleaner and reinstalled latest verion of TVSU same problems. I also did a windows repair on NetFramework 4.0. I am running Win7-SP1 64-bit. I understand there is a beta Ver. 5 out for TVSU, if yes, where can I get it???? Or is there a different fix?  I have checked the mapping interface.xml file and my version of Windows appears correctly there. Any help would be appreciated.

    OS  was preinstalled Win 7-64 bit but I have updated monthly when MS issues new releases. Copy of log file below:
    [ThinkVantage System Update build: 2012-5-11 4.03.0012] 6/19/2012 8:08:14 PM
    Info 2012-06-19 , 08:08:15  at Tvsu.Environment.EnvironmentManager..ctor()  Message: Starting Environment Manager...
    Info 2012-06-19 , 08:08:15  at Tvsu.Nls.NlsResources..ctor()  Message: Starting the instance of NLS@Runtime
    Info 2012-06-19 , 08:08:15  at Tvsu.Nls.NlsResources..ctor()  Message: The active language is: EN The default language is: EN The OS language is: EN The language loaded type is: OS
    Info 2012-06-19 , 08:08:15  at Tvsu.Commonscheduler.SchedulerManager.Save()  Message: Scheduler Manager Starts...
    Info 2012-06-19 , 08:08:15  at Tvsu.Commonscheduler.SchedulerManager.Save()  Message: Obtaining information from the Enviroment Manager...
    Info 2012-06-19 , 08:08:15  at Tvsu.Commonscheduler.SchedulerManager.Save()  Message: Validating Starts...
    Info 2012-06-19 , 08:08:15  at Tvsu.Commonscheduler.SchedulerManager.Save()  Message: Validating Ends...
    Info 2012-06-19 , 08:08:15  at Tvsu.Commonscheduler.SchedulerManager.Save()  Message: Sending Values to the SchedulerParser...
    Info 2012-06-19 , 08:08:15  at Tvt.Commonscheduler.SchedulerParser.SetValues(String v_ScheduleMode, String v_ScheduleDayOfTheMonth, String v_ScheduleDayOfTheWeek, String v_ScheduleHour, String v_ScheduleMinute, String scheduleSecond, String v_NumMinutes, String v_wakeFromSuspendHibernate, String v_Pre, String v_PreParameters, String v_PreShow, String v_Post, String v_PostParameters, String v_PostShow, String v_Task, String v_TaskParameter, String v_TaskShow, String v_CPUPriority, String v_minDaysBetweenExecution, String v_lastRunTimeHigh, String v_lastRunTimeLow, String v_nextRunTimeHigh, String v_nextRunTimeLow, String v_preRunAsUser, String v_runAsUser, String v_postRunAsUser, String v_schedulerAbility, String v_schedulerPath)  Message: Scheduler Parser - Receiving Values from the SchedulerManager
    Info 2012-06-19 , 08:08:15  at Tvt.Commonscheduler.SchedulerParser.SetValues(String v_ScheduleMode, String v_ScheduleDayOfTheMonth, String v_ScheduleDayOfTheWeek, String v_ScheduleHour, String v_ScheduleMinute, String scheduleSecond, String v_NumMinutes, String v_wakeFromSuspendHibernate, String v_Pre, String v_PreParameters, String v_PreShow, String v_Post, String v_PostParameters, String v_PostShow, String v_Task, String v_TaskParameter, String v_TaskShow, String v_CPUPriority, String v_minDaysBetweenExecution, String v_lastRunTimeHigh, String v_lastRunTimeLow, String v_nextRunTimeHigh, String v_nextRunTimeLow, String v_preRunAsUser, String v_runAsUser, String v_postRunAsUser, String v_schedulerAbility, String v_schedulerPath)  Message: Scheduler Parser - Starting Validation Process!
    Info 2012-06-19 , 08:08:15  at Tvt.Commonscheduler.SchedulerParser.SetValues(String v_ScheduleMode, String v_ScheduleDayOfTheMonth, String v_ScheduleDayOfTheWeek, String v_ScheduleHour, String v_ScheduleMinute, String scheduleSecond, String v_NumMinutes, String v_wakeFromSuspendHibernate, String v_Pre, String v_PreParameters, String v_PreShow, String v_Post, String v_PostParameters, String v_PostShow, String v_Task, String v_TaskParameter, String v_TaskShow, String v_CPUPriority, String v_minDaysBetweenExecution, String v_lastRunTimeHigh, String v_lastRunTimeLow, String v_nextRunTimeHigh, String v_nextRunTimeLow, String v_preRunAsUser, String v_runAsUser, String v_postRunAsUser, String v_schedulerAbility, String v_schedulerPath)  Message: Scheduler Parser - All validations have been processed!
    Info 2012-06-19 , 08:08:15  at Tvt.Commonscheduler.SchedulerParser.SetValues(String v_ScheduleMode, String v_ScheduleDayOfTheMonth, String v_ScheduleDayOfTheWeek, String v_ScheduleHour, String v_ScheduleMinute, String scheduleSecond, String v_NumMinutes, String v_wakeFromSuspendHibernate, String v_Pre, String v_PreParameters, String v_PreShow, String v_Post, String v_PostParameters, String v_PostShow, String v_Task, String v_TaskParameter, String v_TaskShow, String v_CPUPriority, String v_minDaysBetweenExecution, String v_lastRunTimeHigh, String v_lastRunTimeLow, String v_nextRunTimeHigh, String v_nextRunTimeLow, String v_preRunAsUser, String v_runAsUser, String v_postRunAsUser, String v_schedulerAbility, String v_schedulerPath)  Message: Scheduler Parser - Writting to the registry...
    Info 2012-06-19 , 08:08:15  at Tvt.Commonscheduler.SchedulerParser.SetValues(String v_ScheduleMode, String v_ScheduleDayOfTheMonth, String v_ScheduleDayOfTheWeek, String v_ScheduleHour, String v_ScheduleMinute, String scheduleSecond, String v_NumMinutes, String v_wakeFromSuspendHibernate, String v_Pre, String v_PreParameters, String v_PreShow, String v_Post, String v_PostParameters, String v_PostShow, String v_Task, String v_TaskParameter, String v_TaskShow, String v_CPUPriority, String v_minDaysBetweenExecution, String v_lastRunTimeHigh, String v_lastRunTimeLow, String v_nextRunTimeHigh, String v_nextRunTimeLow, String v_preRunAsUser, String v_runAsUser, String v_postRunAsUser, String v_schedulerAbility, String v_schedulerPath)  Message: Scheduler Parser - All values were saved on the Registry!
    Info 2012-06-19 , 08:08:15  at Tvt.Commonscheduler.SchedulerParser.SetValues(String v_ScheduleMode, String v_ScheduleDayOfTheMonth, String v_ScheduleDayOfTheWeek, String v_ScheduleHour, String v_ScheduleMinute, String scheduleSecond, String v_NumMinutes, String v_wakeFromSuspendHibernate, String v_Pre, String v_PreParameters, String v_PreShow, String v_Post, String v_PostParameters, String v_PostShow, String v_Task, String v_TaskParameter, String v_TaskShow, String v_CPUPriority, String v_minDaysBetweenExecution, String v_lastRunTimeHigh, String v_lastRunTimeLow, String v_nextRunTimeHigh, String v_nextRunTimeLow, String v_preRunAsUser, String v_runAsUser, String v_postRunAsUser, String v_schedulerAbility, String v_schedulerPath)  Message: Scheduler Parser - Reloading Scheduler
    Info 2012-06-19 , 08:08:15  at Tvt.Commonscheduler.SchedulerParser.SetValues(String v_ScheduleMode, String v_ScheduleDayOfTheMonth, String v_ScheduleDayOfTheWeek, String v_ScheduleHour, String v_ScheduleMinute, String scheduleSecond, String v_NumMinutes, String v_wakeFromSuspendHibernate, String v_Pre, String v_PreParameters, String v_PreShow, String v_Post, String v_PostParameters, String v_PostShow, String v_Task, String v_TaskParameter, String v_TaskShow, String v_CPUPriority, String v_minDaysBetweenExecution, String v_lastRunTimeHigh, String v_lastRunTimeLow, String v_nextRunTimeHigh, String v_nextRunTimeLow, String v_preRunAsUser, String v_runAsUser, String v_postRunAsUser, String v_schedulerAbility, String v_schedulerPath)  Message: Scheduler Parser - The Scheduler was reloaded
    Info 2012-06-19 , 08:08:15  at Tvsu.Commonscheduler.SchedulerManager.Save()  Message: All values sent to SchedulerParser...
    Info 2012-06-19 , 08:08:15  at Tvsu.Commonscheduler.SchedulerManager.Save()  Message: Scheduler Manager ends...
    Severe 2012-06-19 , 08:08:15  at Tvsu.Sdk.SuSdk.StartApplication()  Message: Application runs with the framework: 2.0.50727.5456
    Info 2012-06-19 , 08:08:15  at Tvsu.Engine.DataBase.InitializeDataBase()  Message: Initializing the DataBase from file: updates.ser
    Info 2012-06-19 , 08:08:15  at Tvsu.Sdk.SuSdk.StartApplication()  Message: Starting the Application
    Warning 2012-06-19 , 08:08:15  at Tvsu.Gui.Util.Tools.get_SystemVendor()  Message: The vendor was resolved to THINK
    Info 2012-06-19 , 08:08:15  at Tvsu.Gui.GUIController.StartGUI(Boolean showsplash)  Message: Starting GUI...
    Info 2012-06-19 , 08:08:15  at Tvsu.Gui.GUIController.StartGUI(Boolean showsplash)  Message: MainFrame created successfully
    Info 2012-06-19 , 08:08:15  at Tvsu.Gui.GUIController.StartGUI(Boolean showsplash)  Message: GUI -- Welcome screen
    Info 2012-06-19 , 08:08:15  at Tvsu.Gui.GUIController.BackToMain()  Message: Setting Welcome screen...
    Info 2012-06-19 , 08:08:15  at Tvsu.Gui.MainFrame.SetScreen(String screen, EventHandler[] eh)  Message: Loading Welcome screen on Action pane.
    Info 2012-06-19 , 08:08:20  at Tvsu.Gui.GUIController.SearchUpdates(Object sender, EventArgs args)  Message: Starting the Search process...
    Info 2012-06-19 , 08:08:20  at Tvsu.Gui.MainFrame.SetScreen(String screen, EventHandler[] eh)  Message: Loading Search screen on Action pane.
    Info 2012-06-19 , 08:08:20  at Tvsu.Gui.Util.ProgressThread.InitSearch()  Message: GUI -- Reporting progress for the Search
    Info 2012-06-19 , 08:08:20  at Tvsu.Sdk.SuSdk.GetSystemProperties()  Message: Get the System Properties
    Info 2012-06-19 , 08:08:20  at Tvsu.Engine.Task.Task.StartExecution()  Message: PreTask
    Info 2012-06-19 , 08:08:20  at Tvsu.Engine.Task.Task.StartExecution()  Message: Start
    Info 2012-06-19 , 08:08:20  at Tvsu.Engine.Task.Task.Start()  Message: Starting the task
    Info 2012-06-19 , 08:08:20  at Tvsu.Engine.Task.Task.Start()  Message: The current process is:HelloProcess
    Info 2012-06-19 , 08:08:20  at Tvsu.Engine.Task.Task.Start()  Message: Executing the PreProcess HelloProcess
    Info 2012-06-19 , 08:08:20  at Tvsu.Engine.Task.Task.Start()  Message: Executing the StartProcess HelloProcess
    Info 2012-06-19 , 08:08:20  at Tvsu.Engine.Process.HelloProcess.DownloadHelpFile()  Message: The chm help file is already present in the system
    Info 2012-06-19 , 08:08:20  at Tvsu.Engine.Process.HelloProcess.Start()  Message: The test.properties file was not found, the normal Hello process will continue.
    Info 2012-06-19 , 08:08:20  at Tvsu.Engine.Process.HelloProcess.Start()  Message: HelloProcess Started
    Info 2012-06-19 , 08:08:20  at Tvsu.Engine.Process.HelloProcess.Start()  Message: Client level: HelloLevel_8_11_00
    Info 2012-06-19 , 08:08:20  at Tvsu.Engine.Process.HelloProcess.DownloadUDF(String helloClientLevel)  Message: The UDF will be downloaded from: https://download.lenovo.com/ibmdl/pub/pc/pccbbs/agent/SSClientCommon/HelloLevel_8_11_00.xml
    Info 2012-06-19 , 08:08:20  at Tvsu.Engine.Process.HelloProcess.DownloadUDF(String helloClientLevel)  Message: The UDF will be downloaded to-> C:\Program Files (x86)\Lenovo\System Update\session\system\SSClientCommon\HelloLevel_8_11_00.xml
    Info 2012-06-19 , 08:08:20  at Tvsu.Gui.CustomComponents.Step.set_Image(StepImage value)  Message: Setting PROCESSING status.
    Info 2012-06-19 , 08:08:20  at Tvsu.ConnectionSettings.ConnectionSettings.GetConnectionForURL(String url)  Message: Creating a new Connection Settings Bean instance to Host: download.lenovo.com
    Info 2012-06-19 , 08:08:20  at Tvt.ConnectionSettings.ConnectionSettings.GetConnectionForURL(String url)  Message: Direct connection found
    Info 2012-06-19 , 08:08:20  at Tvsu.FileDownloader.HttpsDownload.SetCertificates()  Message: Setting certificates...
    Info 2012-06-19 , 08:08:20  at Tvsu.FileDownloader.HttpsDownload.GetProxy(ConnectionSettingsBean connBean)  Message: Connection type set to DIRECT in ConnectionSettingsBean
    Severe 2012-06-19 , 08:08:20  at Tvsu.FileDownloader.HttpsDownload.Init(FileDownloadInfo fileInfo)  Message: Debug Log: Init method:GET
    Severe 2012-06-19 , 08:08:21  at Tvsu.FileDownloader.HttpsDownload.doDownloadByHttps(FileDownloadInfo fileInfo, downloadingDelegate downDelegate)  Message: Debug Log: doDownloadByHttps InterException is null, uri:https://download.lenovo.com/ibmdl/pub/pc/pccbbs/agent/SSClientCommon/HelloLevel_8_11_00.xml
    Severe 2012-06-19 , 08:08:21  at Tvsu.FileDownloader.HttpsDownload.doDownloadByHttps(FileDownloadInfo fileInfo, downloadingDelegate downDelegate)  Message: Debug Log doDownloadByHttps webException message:The remote server returned an error: (404) Not Found.
    Severe 2012-06-19 , 08:08:21  at Tvsu.FileDownloader.HttpsDownload.doDownloadByHttps(FileDownloadInfo fileInfo, downloadingDelegate downDelegate)  Message: Debug Log server path: https://download.lenovo.com/ibmdl/pub/pc/pccbbs/agent/SSClientCommon/HelloLevel_8_11_00.xml responseStatus:404
    Severe 2012-06-19 , 08:08:21  at Tvsu.FileDownloader.HttpsDownload.doDownloadByHttps(FileDownloadInfo fileInfo, downloadingDelegate downDelegate)  Message: Debug Log server path: https://download.lenovo.com/ibmdl/pub/pc/pccbbs/agent/SSClientCommon/HelloLevel_8_11_00.xml webException.StackTrace:   at System.Net.HttpWebRequest.GetResponse()    at Tvsu.FileDownloader.HttpsDownload.doDownloadByHttps(FileDownloadInfo fileInfo, downloadingDelegate downDelegate)
    Info 2012-06-19 , 08:08:21  at Tvsu.Engine.Process.HelloProcess.Start()  Message: UDF download status is -> Failed
    Severe 2012-06-19 , 08:08:21  at Tvsu.Engine.Process.HelloProcess.Start()  Message: Could't connect to the HelloServer, no UDF file was downloaded
    Info 2012-06-19 , 08:08:21  at Tvsu.Egather.EgatherManager.GetEgatherParser(String type)  Message: Running egather minimal.....
    Info 2012-06-19 , 08:08:21  at Tvsu.Egather.EgatherExecutor.RunAsWindowsService(String directory, String command, String arguments)  Message:  /execute ia.exe /arguments -filename"""C:\Program Files (x86)\Lenovo\System Update\egather\sysrecomin""" -probes REGIONAL_SETTINGS GATHERER_INFORMATION SYSTEM_SUMMARY -local /directory C:\Program Files (x86)\Lenovo\System Update\egather\ /type COMMAND /timeout 300000
    Info 2012-06-19 , 08:08:21  at Tvsu.Egather.EgatherExecutor.RunAsWindowsService(String directory, String command, String arguments)  Message: FileName Path: C:\Program Files (x86)\Lenovo\System Update\TvsuCommandLauncher.exe
    Info 2012-06-19 , 08:08:22  at Tvsu.Egather.EgatherExecutor.ExecuteEgather(String fileOutput, String args)  Message: RC eGatherer: 0
    Info 2012-06-19 , 08:08:23  at Tvsu.Engine.Process.HelloProcess.Start()  Message: MTM received from eGather: 4220CTO
    Severe 2012-06-19 , 08:08:23  at Tvsu.Engine.Process.HelloProcess.Start()  Message: An error ocurred while using the MappingParser  Exception:   Message: Key cannot be null. Parameter name: key   Type: System.ArgumentNullException      at System.Collections.Hashtable.ContainsKey(Object key)    at System.Collections.Hashtable.Contains(Object key)    at Tvt.Mapping.Languages.get_Item(String tla)    at Tvsu.Engine.Process.HelloProcess.Start()
    Severe 2012-06-19 , 08:08:23  at Tvsu.Engine.Process.HelloProcess.Start()  Message: A value could not be mapped when using the MappingParser or eGather execution failed  Exception:   Message: Error getting MappingParser properties   Type: Tvsu.Engine.Process.MappingInterfaceException      at Tvsu.Engine.Process.HelloProcess.Start()
    Severe 2012-06-19 , 08:08:23  at Tvsu.Engine.Task.Task.StartExecution()  Message: An error occurred while the task: HelloTask executed the process: HelloProcessthe message from exception isA fatal error ocurred while in the HelloProcess  Exception:   Message: A fatal error ocurred while in the HelloProcess   Type: Tvsu.Engine.Process.HelloProcessException      at Tvsu.Engine.Task.Task.Start()    at Tvsu.Engine.Task.Task.StartExecution()
    Info 2012-06-19 , 08:08:23  at Tvsu.Gui.CustomComponents.Step.set_Image(StepImage value)  Message: Setting FAILED status.
    Info 2012-06-19 , 08:08:23  at Tvsu.Gui.GUIController.ShowErrorMessage(Exception e)  Message: Error while gathering user information.  Exception:   Message: A fatal error ocurred while in the HelloProcess   Type: Tvsu.Engine.Process.HelloProcessException      at Tvsu.Engine.Task.Task.StartExecution()    at Tvsu.Sdk.SuSdk.GetSystemProperties()    at Tvsu.Gui.Util.ProgressThread.InitSearch()
    Info 2012-06-19 , 08:08:23  at Tvsu.Gui.FlowScreens.Messages.ShowMessage(String message, String title, String mastheadtext, MessageType t, Boolean check, IWin32Window owner)  Message: Showing ERROR Message: < An error occurred while gathering user information. >
    Info 2012-06-19 , 08:08:25  at Tvsu.Gui.GUIController.BackToMain()  Message: Setting Welcome screen...
    Info 2012-06-19 , 08:08:25  at Tvsu.Gui.MainFrame.SetScreen(String screen, EventHandler[] eh)  Message: Loading Welcome screen on Action pane.
    Info 2012-06-19 , 08:08:30  at Tvsu.Gui.GUIController.AskBeforeClosing()  Message: Close System Update?
    Info 2012-06-19 , 08:08:30  at Tvsu.Gui.FlowScreens.Messages.ShowMessage(String message, String title, String mastheadtext, MessageType t, Boolean check, IWin32Window owner)  Message: Showing QUESTION Message: < Are you sure you want to close System Update? >
    Info 2012-06-19 , 08:08:32  at Tvsu.Gui.GUIController.AskBeforeClosing()  Message: Application will close now? True
    Info 2012-06-19 , 08:08:32  at Tvsu.Gui.MainFrame.OnClosing(CancelEventArgs e)  Message: User wanted to close System Update, or the package force a reboot.
    Severe 2012-06-19 , 08:08:32  at Tvsu.Sdk.SuSdk.ShutDownApplication()  Message: Has happened an exception while the UNCAuthenticator.Shutdown() was executedShare name can not be null or empty
    Info 2012-06-19 , 08:08:32  at Tvsu.Engine.DataBase.ShutDownDataBase()  Message: Shutting down the DataBase, saving any data into file: updates.ser
    Info 2012-06-19 , 08:08:32  at Tvsu.Environment.EnvironmentManager.closeEM()  Message: Closing Environment Manager.
    Info 2012-06-19 , 08:08:32  at Tvsu.Sdk.SuSdk.ShutDownApplication()  Message: Shut Down the Application

Maybe you are looking for

  • Itunes movie doesn't show up on Apple TV

    My movie shows up on itunes on my computer. I can play it and send it to view on Apple TV but it doesn't show up on Apple TV's menu and all the other movies on my iTunes do. Any thoughts? (I have checked different lists on Apple tv).

  • File-XI-RFC, archiving file only when system ack ok. Is it possible?

    Hi ! We have a File-XI-RFC scenario. We need the file adapter to archive the input file ONLY if the message was delivered ok to the RFC. Should this work, using a BPM with this steps ???? 1) Receive (file message type) 2) Block 2a) Send (ASYNC to the

  • Nokia N80 move messages question

    I was toying with my message settings a bit, and I found the option to change the location where messages are stored. I changed it to my memory card, but as I was doing that, I decided it might be best not to do that in case I switch memory cards or

  • Deploy the BC4J JSP Applications to Sun ONE Application Server 7.0

    Hi I am new for the Jdeveloper 9.0.3, I felt that the OC4J is quite useful, but I am not sure if it can be deployed on Sun ONE application server 7.0 (Our team are using Sun ONE Application server 7.0 as our J2EE AS). If it can, please tell me the de

  • No list of printerdrivers appear in the printerbrowser

    I have got a brandnew intel 20" I mac. I tried to install my printer but the printerbrowser doesn't seem to find any printerdrivers at all, although they are installed. My printer worked well with a very old imac and OS 10.3.5. The printerbrowser rec