Configure sysprep timeout

I've read this in the release notes of 3.2.2
Bugfix 6997235 - Sysprep/fastprep timeout should be configurable
We are running:
Oracle Virtual Desktop Infrastructure 3.2.2 (Build 29)
I'm unable to find where I can configure this timeout or what its currently set at (seems very high by default).
Regards,
Evert

Hi Evert,
typically such settings are provided as global properties which can be adapted using the vda settings-setprops command. If you execute the following command on your VDI server, then you get a list of all available settings:
*/opt/SUNWvda/sbin/vda settings-setprops --help*
vbox.connect.timeout=<vbox.connect.timeout>
Connection timeout to the VirtualBox web service, in
milliseconds
vbox.request.timeout=<vbox.request.timeout>
Request timeout to the VirtualBox web service, in
milliseconds
sysprep.timeout=<sysprep.timeout>
Timeout in seconds to wait for desktop customization
to complete
fastprep.timeout=<fastprep.timeout>
Timeout in seconds to wait for desktop Oracle VDI
FastPrep to complete
Thus executing */opt/SUNWvda/sbin/vda settings-getprops -p sysprep.timeout* will show the currently applied setting
Desktop Customization Timeout: 2400
Executing */opt/SUNWvda/sbin/vda settings-setprops -p sysprep.timeout=<your desired value in seconds>* allows to set the timeout as needed.
Hope that helps,
- Klaus
Edited by: klausruehl on Aug 5, 2011 4:09 AM

Similar Messages

  • No ManagedConnections available within configured blocking timeout ( 30000

    Hi,
    I am getting the below error when i am using the mysql database more than once reading it . can anybody help me in this regard.
    No ManagedConnections available within configured blocking timeout ( 30000 [ms] ); - nested throwable:

    For any begginners (like me) that might encounter the same error in future:
    I got this error on JBoss server logs even when I had closed all DB connections and ResultSets.
    It turned out that the error occured because I had not closed a CallableStatement which I had instantiated within LOOP. (I had only closed this object inside the finally block at the end)
    So if your code creates a CallableStatement (or likewise) inside a LOOP, jez check whether it is closed within the loop (before the loop creates another CallableStatement object)
    Prerry basic stuff... which sometimes you tend to overlook...

  • How to configure session timeout for SAP Netweaver Portal

    Hi,
    I would like to know the way to configure the session timeout for SAP Netweaver Portal.

    Hi Kim,
    the solution for your question  is in this thread.
    500 Connection timed out
    if it is helpful award me points.
    Regards,
    R.Suganya.

  • Configuring Lock timeout in Oracle 8i

    I need to reduce the time Oracle is waiting for a locked record to be released.
    At this moment, when a transaction tries to update a record that is being updated in another transaction, Oracle waits forever to that record be unlocked.
    I need to change this so Oracle waits until just a defined time for record to be unlocked, and after thats finalizes excetution with any error I can check.
    I'd tried the LockTimeOut property of ORAODBC.INI, but there is a Know Bug in the Oracle ODBC Driver 8.01.07 and above, for Windows NT that prevents this feature from working.
    Regards,
    Victor Espina

    The problem is not with a SELECT statement but with another UPDATE statement.
    I'm accessing the Oracle database from Visual Foxpro, using ODBC driver.
    I reproduced the problem in this way:
    LOCAL cConnectString
    cConnectString="Driver={Oracle ODBC Driver};Dbq=EM;uid=system;pwd=manager"
    *-- Entablish a connection to Oracle databse
    Hnd1=SQLSTRINGCONNECT(cConnectString)
    *-- Entablish another connection
    Hnd2=SQLSTRINGCONNECT(cConnectString)
    *-- Configuring both connections to use manual
    * transactions. In this mode, a transacction
    * is started automatically whan a DML statement
    * is sent to the server, and it finished with
    * a COMMIT or a ROLLBACK statment.
    SQLSETPROP(Hnd1,"transactions",DB_TRANSMANUAL)
    SQLSETPROP(Hnd2,"transactions",DB_TRANSMANUAL)
    *-- Start a new transaction a lock a row
    Exec("SAVEPOINT P1",Hnd1)
    Exec("UPDATE t1 SET nom='TEST' WHERE cod='01'",Hnd1)
    *-- Start another transaction in 2nd connection
    * and try to update the SAME RECORD being updated
    * in 1st connection. In this point, SQLEXEC() does
    * not NEVER returns beacuse Oracle waits forever for
    * locked record being released. This is what i need
    * to avoid.
    Exec("SAVEPOINT P1",Hnd2)
    Exec("UPDATE t1 SET nom='TEST' WHERE cod='01'",Hnd2)
    *-- Rollback any change in both connections
    Exec("ROLLBACK",Hnd1)
    Exec("ROLLBACK",Hnd2)
    *-- Disconnect both connections
    SQLDISCONNECT(0)
    I hope this clearifies my point.
    Regards,
    Victor Espina

  • Which paramter configures the timeout for rfc call (to R/3 ) from BPM

    hi froum,
    i have a scenario, with BPM, in which theres a synchronous send to a rcf Function Module in R/3,
    now, can u tell me which paramter decides the time out for this Sync call to rfc enabled Function Module in R/3,
    i mean which paramater in SXMB_ADM or anywhere else that dictates the time period

    Check this out, RFC adapter section
    /people/michal.krawczyk2/blog/2006/06/08/xi-timeouts-timeouts-timeouts
    Regards,
    Prateek

  • Configure RMI Timeout?

    Is there any way to control the timeout for a RMI call in 10.1.2.2 (heck, in any version of the Oracle app server)?
    We have several business services exposed using SessionEJBs on a backend business server. However, if the call to these methods take more than about 30 seconds to complete we receive the following exeption (even if it the operation completed successfully):
    com.evermind.server.rmi.OrionRemoteException: Transaction was rolled back: timed out;
    How can we set the length of time before this timeout error will be generated? I'd like to ensure that in the event of long-running operations the request will not timeout and the function can complete normally. It makes sense to set some kind of a timeout but seems there should be some way to control this value based on the specific operation being performed.

    Michael,
    We use the [System] property "rmi.client.connection.timeout".
    You can set it when you launch OC4J stand alone using the "-D" option of the java command, for example:
    java -Drmi.client.connection.timeout=10 -jar oc4j.jarShould set the timeout to ten (10) seconds.
    Good Luck,
    Avi.

  • Configuring a timeout in HttpURLConnection

              Greetings,
              I am using HttpURLConnection class to do posts and then reading the response
              by opening an InputStream on the same connection.
              Is there some way of putting in a Timeout, such that, if I dont receive any response
              within that period, i cd disconnect or return.
              Thanks in advance...
              Regards
              Vinay S
              

    Hi,
              No, you should be good to go. The HttpURLConnection.setTimeout(int) is all you need to
              call. It does essentially what the code at the url you sent me does. It sets the timeout
              value on the socket. You can drop the classes from logicamente.
              Bill
              Vinay S wrote:
              > Hey William,
              >
              > I am using wls 6.1sp2. Now, if i obtain the patch from support, would i still
              > need to use the classes from
              > http://www.logicamente.com/sockets.html, or there is a new way, using weblogic
              > patch?
              >
              > Regards
              > Vinay
              >
              > William Kemp <[email protected]> wrote:
              > >Hi,
              > >
              > >This feature was added in 6.1, but needs a patch to work correctly. The
              > >change request
              > >is CR055987 and has a patch for 6.1sp2. If I remember correctly, when
              > >the connection
              > >times out, an exception is thrown so that you can recover accordingly.
              > >Support can give
              > >you the patch.
              > >
              > >As an aside, I find it amazing that this was never an option to HttpURLConnection
              > >until
              > >1.4. We just added it because it seemed obvious. Maybe not to everybody.
              > >;-)
              > >
              > >Bill
              > >
              > >Vinay S wrote:
              > >
              > >> Thanks Dimitri.
              > >>
              > >> I am using and Sun JDK 1.3.1 (wls 6.1) and i tried the first option.
              > >There seems
              > >> to be a problem.
              > >> If the connection times out, no exception is thrown, it just waits
              > >there, it doesnt
              > >> even exit. Is there any workaround for this? I need to take some actions
              > >if the
              > >> connection timesout, but there seems to be no intimation.
              > >>
              > >> any suggetions?
              > >>
              > >> Regards
              > >> Vinay
              > >>
              > >> "Dimitri I. Rakitine" <[email protected]> wrote:
              > >> >For some strange reason this feature was not supported until 1.4.
              > >> >
              > >> >If you use Sun's JDK, this hack works:
              > >> >
              > >> >http://www.logicamente.com/sockets.html
              > >> >
              > >> >(or you can use a different HTTP client - http://www.innovation.ch/java/HTTPClient/
              > >> >for example).
              > >> >
              > >> >Vinay S <[email protected]> wrote:
              > >> >
              > >> >> Greetings,
              > >> >
              > >> >> I am using HttpURLConnection class to do posts and then reading
              > >the
              > >> >response
              > >> >> by opening an InputStream on the same connection.
              > >> >> Is there some way of putting in a Timeout, such that, if I dont
              > >receive
              > >> >any response
              > >> >> within that period, i cd disconnect or return.
              > >> >
              > >> >> Thanks in advance...
              > >> >
              > >> >> Regards
              > >> >> Vinay S
              > >> >
              > >> >--
              > >> >Dimitri
              > >
              

  • Configuring session timeout

    Well I see below message after a long idle time
    Because of inactivity, your session has timed out and is no longer active. The page will automatically be reloaded in 10 seconds; if not, click here.
    What if I have to show a better customize message as a popup instead of a blank white page?

    Hi John,
    I followed exactly same steps, still getting error :
    *<ClassLoaderUtils><getServices> Error parsing:file:/C:/Oracle_11g/Middleware/jdeveloper/jdev/system11.1.1.2.36.55.36/o.j2ee/drs/Oms_2_0/adf/META-INF/services/oracle.adf.view.rich.context.ExceptionHandler*
    *<ClassLoaderUtils><getServices>*
    *java.lang.ClassNotFoundException: fj.oms.view.error.FjOmExceptionHandler
    at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:296)
         at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:269)
         at weblogic.utils.classloaders.ChangeAwareClassLoader.findClass(ChangeAwareClassLoader.java:56)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:252)
         at weblogic.utils.classloaders.GenericClassLoader.loadClass(GenericClassLoader.java:177)
         at weblogic.utils.classloaders.ChangeAwareClassLoader.loadClass(ChangeAwareClassLoader.java:37)
         at org.apache.myfaces.trinidad.util.ClassLoaderUtils._getClass(ClassLoaderUtils.java:319)
         at org.apache.myfaces.trinidad.util.ClassLoaderUtils.getServices(ClassLoaderUtils.java:265)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.<init>(LifecycleImpl.java:120)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleFactoryImpl.<init>(LifecycleFactoryImpl.java:36)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
         at javax.faces.FactoryFinder.getImplGivenPreviousImpl(FactoryFinder.java:519)
         at javax.faces.FactoryFinder.getImplementationInstance(FactoryFinder.java:405)
         at javax.faces.FactoryFinder.access$400(FactoryFinder.java:135)
         at javax.faces.FactoryFinder$FactoryManager.getFactory(FactoryFinder.java:717)
         at javax.faces.FactoryFinder.getFactory(FactoryFinder.java:239)
         at com.sun.faces.config.processor.FactoryConfigProcessor.verifyFactoriesExist(FactoryConfigProcessor.java:186)
         at com.sun.faces.config.processor.FactoryConfigProcessor.process(FactoryConfigProcessor.java:131)
         at com.sun.faces.config.ConfigManager.initialize(ConfigManager.java:202)
         at com.sun.faces.config.ConfigureListener.contextInitialized(ConfigureListener.java:195)
         at weblogic.servlet.internal.EventsManager$FireContextListenerAction.run(EventsManager.java:481)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.EventsManager.notifyContextCreatedEvent(EventsManager.java:181)
         at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1801)
         at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3045)
         at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1397)
         at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:460)
         at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:83)
         at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
         at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
         at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)
         at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:83)
         at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
         at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
         at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:1267)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:83)
         at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:409)
         at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:54)
         at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
         at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
         at weblogic.deploy.internal.targetserver.operations.AbstractOperation.activate(AbstractOperation.java:569)
         at weblogic.deploy.internal.targetserver.operations.ActivateOperation.activateDeployment(ActivateOperation.java:150)
         at weblogic.deploy.internal.targetserver.operations.ActivateOperation.doCommit(ActivateOperation.java:116)
         at weblogic.deploy.internal.targetserver.operations.AbstractOperation.commit(AbstractOperation.java:323)
         at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentCommit(DeploymentManager.java:844)
         at weblogic.deploy.internal.targetserver.DeploymentManager.activateDeploymentList(DeploymentManager.java:1253)
         at weblogic.deploy.internal.targetserver.DeploymentManager.handleCommit(DeploymentManager.java:440)
         at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.commit(DeploymentServiceDispatcher.java:163)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doCommitCallback(DeploymentReceiverCallbackDeliverer.java:181)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$100(DeploymentReceiverCallbackDeliverer.java:12)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$2.run(DeploymentReceiverCallbackDeliverer.java:67)
         at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:516)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Here is the summary of steps :
    1) Created a folder with name "services" in .adf/META-INF folder .
    2)Create a file with name "oracle.adf.view.rich.context.Exceptionhandler" with .txt extension in this folder.
    3)Created following FjOmExceptionHandler class for testing :
    package fj.oms.view.error;
    import javax.faces.application.FacesMessage;
    import javax.faces.context.FacesContext;
    import javax.faces.event.PhaseId;
    import oracle.adf.view.rich.context.ExceptionHandler;
    import oracle.adfinternal.controller.application.AdfcExceptionHandler;
    public class FjOmExceptionHandler
    extends AdfcExceptionHandler
    public FjOmExceptionHandler()
    super();
    public void handleException(FacesContext facesContext,
    Throwable throwable, PhaseId phaseId)
    throws Throwable
    System.out.println("testing................");
    super.handleException(facesContext, throwable, phaseId);
    4) Added "fj.oms.view.error.FjOmExceptionHandler" in file created in step2.
    Please advise and help!
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Configure Timeout in Tomcat

    Hi,
    We want to configure timeout in tomcat, but we are not able to do so by configuring the ~conf/web.xml. Our requirement is to configure http timeout to be 2 seconds.
    Pl. help
    ShekharA

    Which timeout are you talking about? 2 seconds is very short. The HttpSession timeout can only be set in minutes.

  • WLSE Configuration archive download SNMP timeout

    HI, I´m new to WLSE. My AP´s are already discovered and managed, but when I try to download the configuration archive from them, the Job Always fail with a SNMP timeout error message. This problem occur in the upgrade firmware job too.
    Whe I go to reports, device center, I can see the AP configuration, but in the configuration>archives>view archive I have nothing.
    I appreciate your help

    You can configure the timeout value by selecting Firmware > Advanced Parameters. From this option you can change the "Per device job operation timeout value" to a higher value

  • Wastebasket timeout configuration

    Hello everyone,
    I need some help to configure the Wastebasket parameters (Quota, Timeout, and some others). I already activate the Wastebasket service in the Repository Services and also turned up the option at the repository configuration, but now I'd want to configure the timeout parameter to indicate how many days the deleted files are kept in the wastebasket.
    I already review some information like this:
    http://help.sap.com/saphelp_nw70/helpdata/EN/42/93c828a5061d69e10000000a1553f6/frameset.htm
    Can somebody give a little help?
    I also would know if there is a way to make sure that the wastebasket service is running with no problems...
    Regards.
    Roberto.

    Hi,
    The timeout parameter is part of KM report. You need to create Km report and set the timeout parameter.
    Navigate > Content Admin>KM Content>Toolbox>Reports>User related cleanup>clisk Deleted Items Quota Check-->Start
    Then follow this document
    http://help.sap.com/saphelp_nw70/helpdata/EN/b5/adaf422ffada11e10000000a155106/frameset.htm
    Hope this will help you.
    Regards,
    Senthil K

  • Webservice timeout ? where can we set it up in BO ?

    Hi, I post this question in this part of the forum as well in case some Xcelsius user would have had the same problem :
    Hi,
    we are using BO XI R2 Edge and we have a number of concurrent accesses licences.
    We have a problem handling the life duration of a webservice.
    We use Query as webservice to build a webservice from our universe, and use the advanced feature to set a timeout of 1 minute for the webservice.
    Then we use Xcelsius to generate a table that is exported to WebI and integrated in Infoview as an object.
    When we display this object from the infoview, the xcelsius calls the webservice to get data, and when a user clicks on a part of the graph, he gets another table from another Xcelsius object, with another webservice.
    The problem is that a webservice is still active during 20 minutes, so our concurrents licences are consumed really fas by a single person browsing xcelsius documents ...
    Webservices are going through Tomcat, which has been set to 1 minute as session timeout, as well as 2 minutes for IIS (infoview sessions).
    Still, no result, there seems to be a timeout period of 20 minutes set up in BO, but we cannot find where.
    Could you please indicate use where this parameter can be set ?
    Thank you for your help in this blocking problem for us.
    Sébastien

    If you use Query As A Web Service, you can configure the timeout of web service to other time but not 20 minutes default:
    1. Open Business Objects\Tomcat\webapps\dswsbobje\WEB-INF\classes\dsws.properties.
    2. Find and configure the property "session.timeout=". If this property does not exist, add it.
        Note the time is measured by seconds. If you want to set 60 minutes, you should configure session.timeout=3600.
    3. Restart tomcat.
    Further information you can refer:
    http://dallasmarks.blogspot.com/2008/10/xcelsius-and-session-management-in.html
    Tammy
    Xcelsius QA

  • Windows 7 - sporadical sysprep error in specialize phase

    Hey Everyone,
    Currently I have some trouble with the unattended setup of Windows 7.
    The Image was created like this...
    Windows 7 Installation - Boot into Audit Mode - Software Installation & Configuration - sysprep - create Base Image
    This Image is deployed with AddOn Images for Drivers, ZCM, AV, etc.
    And a separate "Sysprep-AddOn" containing Stuff like dpinst.exe, the UNATTEND.XML etc.
    When Deploying this, it works in 80% without any problems, but the other times the Setup fails in Specialize Phase (Windows-Shell-Setup).
    The sysprep logs do not contain any information beyong the sysprep-run when building the image.
    This happens on three different hardware types all the same.
    This is the Windows Shell Setup part from my unattend file
    Code:
    <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <CopyProfile>true</CopyProfile>
    <RegisteredOwner>Mitarbeiter</RegisteredOwner>
    <RegisteredOrganization>Customer Name XYZ</RegisteredOrganization>
    <ShowWindowsLive>false</ShowWindowsLive>
    <TimeZone>W. Europe Standard Time</TimeZone>
    <BluetoothTaskbarIconEnabled>false</BluetoothTaskbarIconEnabled>
    <DoNotCleanTaskBar>true</DoNotCleanTaskBar>
    </component>
    "ComputerName" within unattend is deleted in order to have the setup ask for the workstation name - which works just great, if Setup does not crash
    I found a few information on this problem, related to the copy Profile action, which were caused by deleting user profiles, which werent completely removed from the registry, but this isnt the case here, only the administrator is used during Configuration, no users added/deleted. I also checked the "pre-sysprep" state of the installation, no false profiles in registry

    Okay i just remembered I once again checked the wrong logs.
    setuperr.log:
    2011-05-16 10:17:27, Error [Shell Unattend] CopyProfileDirectory from C:\Users\Administrator failed (0x8007012b) [gle=0x0000012b]
    2011-05-16 10:17:27, Error [Shell Unattend] _CopyToDefaultProfile failed (0x8007012b) [gle=0x0000012b]
    2011-05-16 10:17:27, Error [Shell Unattend] CopyProfile failed (0x8007012b) [gle=0x0000012b]
    setupact.log
    2011-05-16 10:17:23, Info [Shell Unattend] Running 'specialize' pass
    2011-05-16 10:17:23, Info [Shell Unattend] WindowsFeatures: Launched HideWindowsLive
    2011-05-16 10:17:23, Info [Shell Unattend] TimeZone: Time zone set to 'W. Europe Standard Time'
    2011-05-16 10:17:27, Error [Shell Unattend] CopyProfileDirectory from C:\Users\Administrator failed (0x8007012b) [gle=0x0000012b]
    2011-05-16 10:17:27, Error [Shell Unattend] _CopyToDefaultProfile failed (0x8007012b) [gle=0x0000012b]
    2011-05-16 10:17:27, Error [Shell Unattend] CopyProfile failed (0x8007012b) [gle=0x0000012b]
    2011-05-16 10:17:27, Info [Shell Unattend] Exiting 'specialize' pass with status 0x8007012b

  • How to check for Web Srvice Timeout in ABAP Proxy call

    I am calling a web service in my ABAP program using ABAP proxy. The code is as under:
    TRY.
          y_v_request-mt_request-yaskkey   =  y_l_matnr. 
          y_v_request-mt_request-maktx      =  y_l_maktx.
          y_v_request-mt_request-ymtart     =  y_l_mtart.
          CALL METHOD y_v_prxy->execute_synchronous
            EXPORTING
              output = y_v_request
            IMPORTING
              input  = y_v_response.
        CATCH cx_ai_system_fault INTO y_v_fault.
          y_v_message = y_v_fault->errortext.
      ENDTRY.
      y_l_ycod = y_v_response-mt_response-answer.
    1. Is there is any way to know that the called web  service has timed out ?
    2. Is it possible to check for the time spent in the  call if it is more then say 500 sec then it should be considered as timeout?
    Any help will be appreciated.
    Thanks in advance

    Hi Subbu,
    you can catch CX_AI_SYSTEM_FAULT.
      DATA:   lo_sys_exception  TYPE REF TO cx_ai_system_fault,
    l_error_text type string.
    CALL METHOD ...
    CATCH cx_ai_system_fault INTO lo_sys_exception.
    l_error_text = lo_sys_exception->errortext.
    You can configure XI timeout parameter (for shure in SMICM / Parameter and, if i remeber right, as profile parameter in XI administration).
    Regards,
    Udo
    Message was edited by: Udo Martens

  • Timeout querying LDAP groups from BPM Workspace Administration page

    I already configured my server to use Active Directory instead the Weblogic embedded LDAP to users authentication in the BPM Workspace.
    When I go to [Weblogic Console / Security Realms / myrealm / Users and Groups / Groups] the console shows correctly all the AD groups after a 20 secs aprox, but when I try to assign some group to a role using the BPM Workspace Administration menu, the app only show users in the search pop up, if I search usign "All" or "Groups" filter I always get this error:
    ORABPEL-10592
    Identity Service soap error.
    BPMIdentityService encountered soap error in method invoke for with fault "javax.naming.PartialResultException [Root exception is javax.naming.CommunicationException: miserver.com:389 [Root exception is java.net.ConnectException: Connection timed out]]".
    Ensure that the soap message is properly formed and has all necessary attributes and elements. Contact oracle support if error is not fixable.
            at oracle.bpel.services.identity.client.IdentityServiceSOAPClient.invoke(IdentityServiceSOAPClient.java:265)
            at oracle.bpel.services.identity.client.IdentityServiceSOAPClient.searchGroups(IdentityServiceSOAPClient.java:391)
            at oracle.bpel.services.identity.client.AbstractIdentityServiceClient.searchGroups(AbstractIdentityServiceClient.java:514)
            at oracle.bpel.worklistapp.dc.idbrowser.beans.model.identity.UnrestrictedIDSearcher.searchGroups(UnrestrictedIDSearcher.java:65)
            at oracle.bpel.worklistapp.dc.idbrowser.beans.model.IdentityBrowserModel.executeSearch(IdentityBrowserModel.java:265)
            at oracle.bpel.worklistapp.dc.idbrowser.beans.view.IdentityBrowserView.executeSearch(IdentityBrowserView.java:308)
            at oracle.bpel.worklistapp.dc.idbrowser.beans.controller.IdentityBrowserController.executeSearch(IdentityBrowserController.java:84)
            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:597)
            at com.sun.el.parser.AstValue.invoke(AstValue.java:157)
            at com.sun.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:283)
            at org.apache.myfaces.trinidadinternal.taglib.util.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:53)
            at org.apache.myfaces.trinidad.component.UIXComponentBase.broadcastToMethodBinding(UIXComponentBase.java:1259)
            at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:183)
            at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:97)
            at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:90)
            at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:309)
            at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:94)
            at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:91)
            at oracle.adf.view.rich.component.fragment.UIXRegion.broadcast(UIXRegion.java:148)
            at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:90)
            at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:309)
            at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:94)
            at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:97)
            at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:90)
            at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:309)
            at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:94)
            at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:91)
            at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:90)
            at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:309)
            at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:94)
            at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:97)
            at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:90)
            at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:309)
            at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:94)
            at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:91)
            at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.broadcastEvents(LifecycleImpl.java:812)
            at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:292)
            at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:177)
            at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
            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.help.web.rich.OHWFilter.doFilter(Unknown Source)
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
            at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:191)
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
            at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:97)
            at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
            at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
            at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
            at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:247)
            at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:157)
            at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
            at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:94)
            at java.security.AccessController.doPrivileged(Native Method)
            at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
            at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:414)
            at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:138)
            at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
            at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:159)
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
            at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:94)
            at java.security.AccessController.doPrivileged(Native Method)
            at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
            at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:414)
            at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:138)
            at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
            at oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:330)
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
            at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
            at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.doIt(WebAppServletContext.java:3684)
            at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3650)
            at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
            at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
            at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2268)
            at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2174)
            at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1446)
            at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
            at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)It seems like the long response time from AD is closing the connection, but I can find where to configure the timeout for workspace app. In my Provider specific settings for AD provider I checked "Keep Alive Enabled" but doesn't work.
    Any ideas about this?, I'm using Oracle SOA Suite 11gR3

    Hello Martin,
    Did you check it on apex.oracle.com because I just did and didn’t encounter the same problem.
    Regards,
    Arie.
    &diams; Please remember to mark appropriate posts as correct/helpful. For the long run, it will benefit us all.
    &diams; Author of Oracle Application Express 3.2 – The Essentials and More

Maybe you are looking for

  • Skydrive for Mac crashes immediately after launch

    Skydrive for Mac crashes immediately after launch Hi and thanks in advance for your help. Recently when I launch Skydrive on Mac 10.8.3 it quits 2 seconds after launch. If I disconnect the internet connection Skydrive won't quit but the icon remains

  • HOW DO YOU REINSTALL THE SAFARI APP ON AN IPOD TOUCH?

    MY SON HAS DELETED THE SAFARI APP ON HIS IPHONE AND WE CAN'T FIND OUT HOW TO REINSTALL IT?

  • Isolation level: repeatable read vs read stability.

    I was going through the following link [http://www.developer.com/print.php/3706251] about database isolation levels. There was a statement: In Read Stability, only rows that are retrieved or modified are locked, whereas in Repeatable Read, all rows t

  • Audio won't render

    I have a nested sequence, HDV into HDV timeline, and the audio requires rendering. (once i open the nest up it can play in real time for some reason.) Th problem is that it refuses to render at the moment. When i tell it to render for playback, the r

  • HP CLJ 3800 prints without color

    The HP 3800 was printing perfectly until I changed from Win XP to Win 7.The printer is operated as a home network printer. After installation of the driver (as chosen by the Win 7 installation system) it then printed only without color. Since HP appa