User's tim eis different from Server's time

Hello
we have SRM 7 level 9 with ECS.
Server's time zone is GMTUK.
We have users in the US. What are the settings to be sure SC use US time zones? At the moment they get UK's time in SC title and a yellow message "Time zone GMTUK is not valid in country US (several possibilities)     "
Thanks in advance.

Go to Tcode STZAC and adjust your user time zone.
Regards,
Nikhil

Similar Messages

  • Is it possible to control users home page in firefox from server?

    is it possible to control users home page in firefox from server?

    Maybe OP means for their network users using Workgroup Manager?
    I don't think there is a way to do it for firefox.
    Unless you can put in a Firefox pref file in their directory when they log in.
    Message was edited by: tibor.moldovan

  • Custom logging, multiple apps in one file, different from server.log

    I have several applications running on my integration server. I would like to log from these apps to a single file (different file from server.log)
    I tried to use custom log4j logging, but there's a problem with the RollingFileAppender. Whenever a file is rolled, the backup copies are deleted. It probably happens because different classloaders load different apps and I configure the log4j in every app, but I don't understand classloaders.
    Here is a part of the log4j.properties file:
    log4j.appender.file=org.apache.log4j.RollingFileAppender
    log4j.appender.file.File=/path/log
    log4j.appender.file.maxBackupIndex=10
    log4j.appender.file.maximumFileSize=10485760and I configure the logger in every app by
    org.apache.log4j.PropertyConfigurator.configure( logPropertiesPath );(Is this wrong? Is it even possible to use one log file from different apps? The integration servers does it...)
    I don't need the log4j, if the internal logging can be set up to log app. messages to a different file and configured with a different layout pattern, it would be enough.
    Can anybody please help with my logging problem?

    I've tried this:
    I've put log4j.jar to the lib dir of the logicalhost and log4j.properties to another jar (my own) and put it to the lib dir too. I deleted the PropertyCOnfigurator.configure() line from the apps. Built it, manually deleted log4j.jar from the EARs. Then I deployed EARs, restarted the domain and ran the apps. They both logged to the same and correct file, but again the rolling didn't work. How is this possible? I thought that this way the IS should have one and only one instance of Log4j...

  • Multiple users logged into one server, each users printer has a different name, application needs ONE name to print to.

    Multiple users logged into one server, each users printer has a different name, application needs ONE name to print to. 
    I'm NOT in any way a Terminal Services expert and I need help trying to get an application program working in a multi-user environment.
    The issue is that the printer changes for every user that is logged in. The application needs to print NOT to the default printer, but to a "special" printer which is selected in the application... let's call it a label printer to simplify the explanation.
    You have your default regular printer, easy for the application to find that one, and then you have a special printer that labels get printed onto. The application needs to know what printer is the label printer. So we allow the user to select that in the
    application and the selection is stored in a config file in 
    C:\ProgramData\mfgr\prog\setting files
    I don't have access to the application so I can't change how this works.  
    In the "regular" world, selecting the label printer driver to use should be per machine, NOT per user. When a new user logs into a machine, the physical printer doesn't go "poof" and a new printer suddenly appear. Same printer for all
    users.
    Yet in terminal services, the physical machine is "merged" with the virtual machine on the server. And there can be many users logged in at the same time. So each users real machine (and real printer) is injected into the "fake" terminal
    services machine. The name of the printers is made unique for each user. So the printers DO go "poof" and change names depending on the user logged into terminal services.
    So user "A" logs in and sets up the application to print to "LabelPrinterForUserA" (or whatever the name of the printer happens to be), that setting is stored in the ProgramData subfolder, and all is well. Later, user "B" logs
    in, and when they print, the application tries to print to "LabelPrinterForUserA" which doesn't exist for user B or is only accessible by user A. If user B re-configures, that breaks it for user A. 
    SOLUTION 1: The way that /should/ work (in my mind) is that you define one "generic" printer in Terminal Services... call it "Virtual Label printer" and when the user wants to print to it, the print job gets re-directed back to whatever
    physical printer is actually connected to their local workstation. There is a map of virtual printer to actual printer depending on the current user. The application is told once to print to "Virtual Label Printer" for all users.
    SOLUTION 2: Or... there should be some way to make the ProgramData sub folders separate per user. E.g. when user "A" tries to access:
    C:\ProgramData\mfgr\prog\setting files
    they actually get 
    C:\UserData\UserA\AppData\mfgr\prog\setting files
    and user "B" gets
    C:\UserData\UserB\AppData\mfgr\prog\setting files
    So the question I have is: Does either of those solutions exist hidden somewhere in the setup of terminal server? Or is there another way around this issue that I don't know?

    I don't really have a "for sure" answer to this, but because people here can't seem to deal with a question that hasn't been answered I'll provide the best answer I did receive from ServerFault.com user Nathan:
    I can feel your pain with using old software on terminal servers ...the solution I've come up with definitely won't scale as it requires some manual configuration, but I've gotten this method to work with our label printers (which require to be
    printed to an LPT port...yep, that old).
    Share your USB-connected printers to the network on each machine. Then, have the user log in on aunique session for each of them
    (a TS account cannot be shared among computers for this to work) and install a network printer pointing to the USB one they shared. Try to use a DNS name to account for possible DHCP movements.
    After, it should work. Each user can do this since display names can be identical as long as the ports are different (which they are).
    This was clarified by the following series of comments:
    I think you are on to something here, and I originally advised the admin to do this. The problem he ran into is that it setup the printer names in the TS as "printer on usersworkstation"
    and he could not rename it except to change the "printer" to whatever. E.g. the "on userworkstation" remained. I believe there is another way of installing the printer which avoids this, but I can't find it. Ages ago, one used to do NET
    USE LPT2 \\computer\printer password /USER:domain\user /PERSISTENT:YES and then tell the driver to print to LPT2 –  James
    Newton Mar
    17 at 16:21   
    @JamesNewton That's actually the exact method we used. The way around the "network printer" part is to install it as local printer and map it to a TCP/IP port that way. –  Nathan
    C Mar
    17 at 16:28
    You mean in the case where the printers are TCP/IP connected and not local USB / LPT to the users workstation? That makes sense. Wonder if this will work for USB connected printers... –  James
    NewtonMar
    17 at 16:35   
    @JamesNewton You'd share the local printer on the client's PC then on the server connect via TCP/IP to it. You'd need static addresses or use DNS names if DHCP, though. –  Nathan
    C Mar
    17 at 16:51
    Ah. Yes. I see. Looks like the LPT thing should work even with a USB connected printer:superuser.com/questions/182655/… –  James
    Newton Mar
    17 at 17:09   

  • How to use different xsl's for user first time logon in OAM

    Hi,
    We have a requirement to use different stylesheets (xsls) for employees and customers in OAM. How we can configure different XSLs for user first time logon to OAM (i.e for change password and configuring challenge and responses).
    Any pointers on this is appreciated.
    Thanks in advance..
    Srikanth

    XSLs displayed are controlled by the StyleCookie. So if you can set the value of this cookie to be different front customers and employees, they will see different styles.
    You can do this in various locations -> from the web server, from the url, custom plugins, etc....
    -Raj

  • Moving user profiles from Server 2012 with RDS services to User profile disks Server 2012R2

    Hello i have a question about moving my C:\users profiles.
    My current settings on the servers are:
    AD-Server 2012
    SQL-Server 2012
    TS- server with RDS roles (RDwebacces, RDs broker, RD session host) 2012
    everything about user profiles is now in C:\Users
    My new settings for the server will be:
    AD-ActiveDirectory - server
    SQL-Server
    TS1- RDS (RDwebacces, broker, RDS server group management) 2012R2 (I have enabeld userProfileDisks to Filesistem server)
    TS2- RDS(Session host) load balance 2012R2
    TS3- RDS (Session host) load balance 2012
    FileSistem - server ( here i will have on E: partition the new functionality UserProfileDisks) 2012R2
    So is there a way to move profiles from TS - C:\Users to FileSistem - E:\UserProfileDisks
    I am new to this so any idea wil be helpful.

    Hi,
    If the UPD is configured on the server which holds existing user profiles, just select the option:
    store all user settings and data inside the profile disk.
    Since you are moving user profiles between different servers, then user profile contents need to be migrated manually.
    Best Regards,
    Amy
    Please remember to mark the replies as answers if they help and un-mark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Shopping cart Creation Time is different from system time

    Hi ,
    Shopping Cart Creation Time is Different from System time.
    Could you tell me,        to which time it is refering to.
    How to change it.
    Create By is      webseruser
    Where can I find the required settings for the same
    Thanks In advance

    Hello,
    Are you checking this in BBP_PD?
    If you go to SU01 and check parameter "Personal Time Zone" -> "of the user", this time will appear to end user when creating document (document header in web).
                                                                                    If you do not have informed any value, it will be populated the pattern system timezone, defined in SU01 as well.
                                                                                    - I created a RFX in my test system with a user who's timezone (in tx SU01) is set as:
    Sys. Time Zone     CET                                                                 
    of the User        INDIA                                                                               
    - CET time  was 20:01:55                                                              
    - GMT time was 18:01:55                                                              
    - India time was 23:31:55                                                                               
    Looking at this RFX in BBP_PD I see the following:                                     
    Same user (India timezone and CET as "Sys. Time Zone"):                                
    Created_At: 20:01:55                                                                   
    Changed_at: 20:01:55                                                                   
    DETAILS (header):
    Created at: 18:01:55                                                                   
    Changed at: 18:01:55                                                                   
    RFX header (description): 23:31:55                                                     
    So, for end users, you should populate field "of the user" in SU01.
    In BBP_PD header details, you will have the GMT time (which is stored in internal tables).
    In BBP_PD created_at and changed_at you will have the system time zone, as defined in SU01.
    Regards,
    Ricardo

  • Exceptions at the time of downloading jars from server to client PC-Help !!

    Always getting some exceptions in my log file at the time of downloading the jar files from server to my client PC. Actually our appln contains different functionalities and one of the functionality is this stanalone appln. When i click on some links into my appln request will go to the server and then download some jars into client PC. After that it works as a stanalone appln.
    i am attaching my stack trace along with this query. Plse reply ----
    2006-04-06 05:48:58 StandardWrapperValve[default]: Servlet.service() for servlet default threw exception
    java.io.IOException: There is no process to read data written to a pipe.
    at java.net.SocketOutputStream.socketWrite(Native Method)
    at java.net.SocketOutputStream.write(SocketOutputStream.java(Compiled Code))
    at org.apache.catalina.connector.ResponseBase.flushBuffer(ResponseBase.java(Compiled Code))
    at org.apache.catalina.connector.ResponseBase.write(ResponseBase.java(Compiled Code))
    at org.apache.catalina.connector.ResponseBase.write(ResponseBase.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpResponseStream.write(HttpResponseStream.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpResponseStream.write(HttpResponseStream.java(Compiled Code))
    at org.apache.catalina.servlets.DefaultServlet.copyRange(DefaultServlet.java(Compiled Code))
    at org.apache.catalina.servlets.DefaultServlet.copy(DefaultServlet.java(Compiled Code))
    at org.apache.catalina.servlets.DefaultServlet.serveResource(DefaultServlet.java(Compiled Code))
    at org.apache.catalina.servlets.DefaultServlet.doGet(DefaultServlet.java(Compiled Code))
    at javax.servlet.http.HttpServlet.service(HttpServlet.java(Compiled Code))
    at javax.servlet.http.HttpServlet.service(HttpServlet.java(Compiled Code))
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java(Compiled Code))
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java(Compiled Code))
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java(Compiled Code))
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardContext.invoke(StandardContext.java(Compiled Code))
    at org.apache.catalina.core.StandardContext.invoke(StandardContext.java(Compiled Code))
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java(Compiled Code))
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java(Compiled Code))
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java(Compiled Code))
    at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java(Compiled Code))
    at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java(Compiled Code))
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpProcessor.process(HttpProcessor.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpProcessor.run(HttpProcessor.java(Compiled Code))
    at java.lang.Thread.run(Thread.java:498)
    2006-04-06 05:48:59 ErrorDispatcherValve[localhost]: Exception Processing ErrorPage[exceptionType=java.lang.Exception, location=/error]
    java.lang.IllegalStateException
    at org.apache.catalina.connector.ResponseFacade.reset(ResponseFacade.java(Compiled Code))
    at org.apache.catalina.valves.ErrorDispatcherValve.custom(ErrorDispatcherValve.java(Compiled Code))
    at org.apache.catalina.valves.ErrorDispatcherValve.throwable(ErrorDispatcherValve.java:250)
    at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java(Compiled Code))
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java(Compiled Code))
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java(Compiled Code))
    at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java(Compiled Code))
    at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java(Compiled Code))
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpProcessor.process(HttpProcessor.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpProcessor.run(HttpProcessor.java(Compiled Code))
    at java.lang.Thread.run(Thread.java:498)
    2006-04-06 05:48:59 StandardWrapperValve[default]: Servlet.service() for servlet default threw exception
    java.io.IOException: There is no process to read data written to a pipe.
    at java.net.SocketOutputStream.socketWrite(Native Method)
    at java.net.SocketOutputStream.write(SocketOutputStream.java(Compiled Code))
    at org.apache.catalina.connector.ResponseBase.flushBuffer(ResponseBase.java(Compiled Code))
    at org.apache.catalina.connector.ResponseBase.write(ResponseBase.java(Compiled Code))
    at org.apache.catalina.connector.ResponseBase.write(ResponseBase.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpResponseStream.write(HttpResponseStream.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpResponseStream.write(HttpResponseStream.java(Compiled Code))
    at org.apache.catalina.servlets.DefaultServlet.copyRange(DefaultServlet.java(Compiled Code))
    at org.apache.catalina.servlets.DefaultServlet.copy(DefaultServlet.java(Compiled Code))
    at org.apache.catalina.servlets.DefaultServlet.serveResource(DefaultServlet.java(Compiled Code))
    at org.apache.catalina.servlets.DefaultServlet.doGet(DefaultServlet.java(Compiled Code))
    at javax.servlet.http.HttpServlet.service(HttpServlet.java(Compiled Code))
    at javax.servlet.http.HttpServlet.service(HttpServlet.java(Compiled Code))
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java(Compiled Code))
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java(Compiled Code))
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java(Compiled Code))
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardContext.invoke(StandardContext.java(Compiled Code))
    at org.apache.catalina.core.StandardContext.invoke(StandardContext.java(Compiled Code))
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java(Compiled Code))
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java(Compiled Code))
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java(Compiled Code))
    at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java(Compiled Code))
    at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java(Compiled Code))
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpProcessor.process(HttpProcessor.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpProcessor.run(HttpProcessor.java(Compiled Code))
    at java.lang.Thread.run(Thread.java:498)
    2006-04-06 05:49:00 ErrorDispatcherValve[localhost]: Exception Processing ErrorPage[exceptionType=java.lang.Exception, location=/error]
    java.lang.IllegalStateException
    at org.apache.catalina.connector.ResponseFacade.reset(ResponseFacade.java(Compiled Code))
    at org.apache.catalina.valves.ErrorDispatcherValve.custom(ErrorDispatcherValve.java(Compiled Code))
    at org.apache.catalina.valves.ErrorDispatcherValve.throwable(ErrorDispatcherValve.java:250)
    at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java(Compiled Code))
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java(Compiled Code))
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java(Compiled Code))
    at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java(Compiled Code))
    at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java(Compiled Code))
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpProcessor.process(HttpProcessor.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpProcessor.run(HttpProcessor.java(Compiled Code))
    at java.lang.Thread.run(Thread.java:498)
    2006-04-06 05:49:00 StandardWrapperValve[default]: Servlet.service() for servlet default threw exception
    java.io.IOException: There is no process to read data written to a pipe.
    at java.net.SocketOutputStream.socketWrite(Native Method)
    at java.net.SocketOutputStream.write(SocketOutputStream.java(Compiled Code))
    at org.apache.catalina.connector.ResponseBase.flushBuffer(ResponseBase.java(Compiled Code))
    at org.apache.catalina.connector.ResponseBase.write(ResponseBase.java(Compiled Code))
    at org.apache.catalina.connector.ResponseBase.write(ResponseBase.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpResponseStream.write(HttpResponseStream.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpResponseStream.write(HttpResponseStream.java(Compiled Code))
    at org.apache.catalina.servlets.DefaultServlet.copyRange(DefaultServlet.java(Compiled Code))
    at org.apache.catalina.servlets.DefaultServlet.copy(DefaultServlet.java(Compiled Code))
    at org.apache.catalina.servlets.DefaultServlet.serveResource(DefaultServlet.java(Compiled Code))
    at org.apache.catalina.servlets.DefaultServlet.doGet(DefaultServlet.java(Compiled Code))
    at javax.servlet.http.HttpServlet.service(HttpServlet.java(Compiled Code))
    at javax.servlet.http.HttpServlet.service(HttpServlet.java(Compiled Code))
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java(Compiled Code))
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java(Compiled Code))
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java(Compiled Code))
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardContext.invoke(StandardContext.java(Compiled Code))
    at org.apache.catalina.core.StandardContext.invoke(StandardContext.java(Compiled Code))
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java(Compiled Code))
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java(Compiled Code))
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java(Compiled Code))
    at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java(Compiled Code))
    at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java(Compiled Code))
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpProcessor.process(HttpProcessor.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpProcessor.run(HttpProcessor.java(Compiled Code))
    at java.lang.Thread.run(Thread.java:498)
    2006-04-06 05:49:00 ErrorDispatcherValve[localhost]: Exception Processing ErrorPage[exceptionType=java.lang.Exception, location=/error]
    java.lang.IllegalStateException
    at org.apache.catalina.connector.ResponseFacade.reset(ResponseFacade.java(Compiled Code))
    at org.apache.catalina.valves.ErrorDispatcherValve.custom(ErrorDispatcherValve.java(Compiled Code))
    at org.apache.catalina.valves.ErrorDispatcherValve.throwable(ErrorDispatcherValve.java:250)
    at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java(Compiled Code))
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java(Compiled Code))
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java(Compiled Code))
    at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java(Compiled Code))
    at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java(Compiled Code))
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpProcessor.process(HttpProcessor.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpProcessor.run(HttpProcessor.java(Compiled Code))
    at java.lang.Thread.run(Thread.java:498)
    2006-04-06 05:49:02 StandardWrapperValve[default]: Servlet.service() for servlet default threw exception
    java.io.IOException: There is no process to read data written to a pipe.
    at java.net.SocketOutputStream.socketWrite(Native Method)
    at java.net.SocketOutputStream.write(SocketOutputStream.java(Compiled Code))
    at org.apache.catalina.connector.ResponseBase.flushBuffer(ResponseBase.java(Compiled Code))
    at org.apache.catalina.connector.ResponseBase.write(ResponseBase.java(Compiled Code))
    at org.apache.catalina.connector.ResponseBase.write(ResponseBase.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpResponseStream.write(HttpResponseStream.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpResponseStream.write(HttpResponseStream.java(Compiled Code))
    at org.apache.catalina.servlets.DefaultServlet.copyRange(DefaultServlet.java(Compiled Code))
    at org.apache.catalina.servlets.DefaultServlet.copy(DefaultServlet.java(Compiled Code))
    at org.apache.catalina.servlets.DefaultServlet.serveResource(DefaultServlet.java(Compiled Code))
    at org.apache.catalina.servlets.DefaultServlet.doGet(DefaultServlet.java(Compiled Code))
    at javax.servlet.http.HttpServlet.service(HttpServlet.java(Compiled Code))
    at javax.servlet.http.HttpServlet.service(HttpServlet.java(Compiled Code))
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java(Compiled Code))
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java(Compiled Code))
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java(Compiled Code))
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardContext.invoke(StandardContext.java(Compiled Code))
    at org.apache.catalina.core.StandardContext.invoke(StandardContext.java(Compiled Code))
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java(Compiled Code))
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java(Compiled Code))
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java(Compiled Code))
    at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java(Compiled Code))
    at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java(Compiled Code))
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpProcessor.process(HttpProcessor.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpProcessor.run(HttpProcessor.java(Compiled Code))
    at java.lang.Thread.run(Thread.java:498)
    2006-04-06 05:49:02 ErrorDispatcherValve[localhost]: Exception Processing ErrorPage[exceptionType=java.lang.Exception, location=/error]
    java.lang.IllegalStateException
    at org.apache.catalina.connector.ResponseFacade.reset(ResponseFacade.java(Compiled Code))
    at org.apache.catalina.valves.ErrorDispatcherValve.custom(ErrorDispatcherValve.java(Compiled Code))
    at org.apache.catalina.valves.ErrorDispatcherValve.throwable(ErrorDispatcherValve.java:250)
    at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java(Compiled Code))
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java(Compiled Code))
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java(Compiled Code))
    at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java(Compiled Code))
    at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java(Compiled Code))
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpProcessor.process(HttpProcessor.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpProcessor.run(HttpProcessor.java(Compiled Code))
    at java.lang.Thread.run(Thread.java:498)
    2006-04-06 05:49:04 StandardWrapperValve[default]: Servlet.service() for servlet default threw exception
    java.io.IOException: There is no process to read data written to a pipe.
    at java.net.SocketOutputStream.socketWrite(Native Method)
    at java.net.SocketOutputStream.write(SocketOutputStream.java(Compiled Code))
    at org.apache.catalina.connector.ResponseBase.flushBuffer(ResponseBase.java(Compiled Code))
    at org.apache.catalina.connector.ResponseBase.write(ResponseBase.java(Compiled Code))
    at org.apache.catalina.connector.ResponseBase.write(ResponseBase.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpResponseStream.write(HttpResponseStream.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpResponseStream.write(HttpResponseStream.java(Compiled Code))
    at org.apache.catalina.servlets.DefaultServlet.copyRange(DefaultServlet.java(Compiled Code))
    at org.apache.catalina.servlets.DefaultServlet.copy(DefaultServlet.java(Compiled Code))
    at org.apache.catalina.servlets.DefaultServlet.serveResource(DefaultServlet.java(Compiled Code))
    at org.apache.catalina.servlets.DefaultServlet.doGet(DefaultServlet.java(Compiled Code))
    at javax.servlet.http.HttpServlet.service(HttpServlet.java(Compiled Code))
    at javax.servlet.http.HttpServlet.service(HttpServlet.java(Compiled Code))
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java(Compiled Code))
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java(Compiled Code))
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java(Compiled Code))
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardContext.invoke(StandardContext.java(Compiled Code))
    at org.apache.catalina.core.StandardContext.invoke(StandardContext.java(Compiled Code))
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java(Compiled Code))
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java(Compiled Code))
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java(Compiled Code))
    at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java(Compiled Code))
    at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java(Compiled Code))
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpProcessor.process(HttpProcessor.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpProcessor.run(HttpProcessor.java(Compiled Code))
    at java.lang.Thread.run(Thread.java:498)
    2006-04-06 05:49:04 ErrorDispatcherValve[localhost]: Exception Processing ErrorPage[exceptionType=java.lang.Exception, location=/error]
    java.lang.IllegalStateException
    at org.apache.catalina.connector.ResponseFacade.reset(ResponseFacade.java(Compiled Code))
    at org.apache.catalina.valves.ErrorDispatcherValve.custom(ErrorDispatcherValve.java(Compiled Code))
    at org.apache.catalina.valves.ErrorDispatcherValve.throwable(ErrorDispatcherValve.java:250)
    at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java(Compiled Code))
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java(Compiled Code))
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java(Compiled Code))
    at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java(Compiled Code))
    at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java(Compiled Code))
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java(Compiled Code))
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpProcessor.process(HttpProcessor.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpProcessor.run(HttpProcessor.java(Compiled Code))
    at java.lang.Thread.run(Thread.java:498)
    2006-04-06 05:49:05 StandardWrapperValve[default]: Servlet.service() for servlet default threw exception
    java.io.IOException: There is no process to read data written to a pipe.
    at java.net.SocketOutputStream.socketWrite(Native Method)
    at java.net.SocketOutputStream.write(SocketOutputStream.java(Compiled Code))
    at org.apache.catalina.connector.ResponseBase.flushBuffer(ResponseBase.java(Compiled Code))
    at org.apache.catalina.connector.ResponseBase.write(ResponseBase.java(Compiled Code))
    at org.apache.catalina.connector.ResponseBase.write(ResponseBase.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpResponseStream.write(HttpResponseStream.java(Compiled Code))
    at org.apache.catalina.connector.http.HttpResponseStream.write(HttpResponseStream.java(Compiled Code))
    at org.apache.catalina.servlets.DefaultServlet.copyRange(DefaultServlet.java(Compiled Code))
    at org.apache.catalina.servlets.DefaultServlet.copy(DefaultServlet.java(Compiled Code))
    at org.apache.catalina.servlets.DefaultServlet.serveResource(DefaultServlet.java(Compiled Code))
    at org.apache.catalina.servlets.DefaultServlet.doGet(DefaultServlet.java(Compiled Code))
    at javax.servlet.http.HttpServlet.service(HttpServlet.java(Compiled Code))
    at javax.servlet.http.HttpServlet.service(HttpServlet.java(Compiled Code))
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java(Compiled Code))
    at org.apache.catalina.core.ApplicationFilterChain.doFil

    cross posting idiot well, im sorry for that..I posted it here now cause it concerns more bout servlet..

  • How to run report from multiple user same time

    Hi,
    We are using oracle database 11g R2
    Oracle Forms & reports : 11.1.2
    O.S : Windows & Professional
    We have install oracle database, Oracle forms & reports in server. Near about 25 users are accessing that database, forms & reports from server through browser.
    I have one problem, when users runs a report there report goes in queue and runs one by one in FIFO manner.
    If one user has a report that take long time other users has to wait for that time.
    Can it is possible to run reports in multitasking manner, i.e multiple report can be run simultaneously.
    http://servername:7001/reports/rwservlet/showjobs?
    Using above url am able to see jobs in queue.
    Thanks in advance.

    Hi Denie,
    I am new to it and don't know how to add engines to server.conf , can you please tell me how to add engine to it.
    I search server.conf file but i did't found it.
    Please help..
    Thanks in advance.

  • Mapviewer displaying maps differently from the client than from the server

    Can anyone explain to me why this is happening. I have been deploying my java server page to the server, and the way it works is to have multiple base routes which are not originally shown, but the user can 'check' them and they will display. On the server this works as one would expect, but on the client
    I originally couldn't get this to work through Jdeveloper, but now it works -- that's another story :(
    all of my base maps are displayed when the map first comes up. I don't want this to occur because it takes too long. Anyway, does anyone know why the map is working different from the client than it does when I deploy it to the server? Here is the significant code:
    var basemap1 = new MVBaseMap("ds_prod.prod_rdlg_qry");
    var basemap2 = new MVBaseMap("ds_prod.interstate", "", true);
    basemap2.setTransparent(true);
    var basemap3 = new MVBaseMap("ds_prod.primary", "", true);
    basemap3.setTransparent(true);
    mapview = new MVMapView(document.getElementById("map"), baseURL);
    mapview.addBaseMapLayer(basemap1);
    mapview.addBaseMapLayer(basemap2);
    mapview.addBaseMapLayer(basemap3);
    basemap1.setVisible (true);
    basemap2.setVisible (false);
    basemap3.setVisible (false);
    Any suggestions would be appreciated. Thanks.

    Hi
    Whitch version of mapviewer are you using? (MVBaseMap/addBaseMapLayer is for older versions, and in newer there is MVMapTileLayer/addMapTileLayer)
    I had similar difficulties displaying multiple tile layers in application with mapviewer ver. B080618. (not sute, may be in newer versions this works different)
    When adding all tile layers initially and then setting theig Visible properties, browser fetches from server data for ALL the layers (even if they were set to visible -> false)
    the workaround was to add aditional layers ony when this is needed.
    Michael

  • HA-VMM cannot be installed : HAVMM name in db is differs from the user specified HAVMM name

    I have a two node HA VMM cluster.  This is working correctly and has been for while.  I am now attempting to add an additional node to the cluster.
    I joined the node to the cluster and then start the VMM install and follow the wizard till it gets to the Database Configuration Page.  When I Click Next here nothing happens.
    If I check the C:\ProgramData\VMMLogs\SetupWizard.log file I see the following error as the last item.
    HA-VMM cannot be installed : HAVMM name in db is differs from the user specified HAVMM name
    If I check the S
    CVMMCDB01 I find the HAVMMName property with a value of SCVMMC01.domainname  This is the same value that is returned when using powershell with Get-SCVMMServer
    When I check the cluster configuration it is the same story.  I connect to the  cluster name scvmmc01.
    Even if I look at Cluster Manager I can see the name is tied correctly.
    Any ideas would be great as I am effectively now stuck and cannot install another node.

    Greetings!
    It happened because you renamed your VMM cluster after first node installation.
    Juts update HAVMMName value in dbo.tbl_VMM_GlobalSetting. Start SQL Server Management Studio, connect to your VMM DB, and Edit table.

  • Can remote users use Time Machine to back up to the server?

    We have 4 Mac users in our office, and a 5th remote Mac user. All 5 users are using a Mac Mini Server at our office for file sharing services. The 4 local users are all set up for Time Machine backups to the server. I wasn't able to set up the remote user - although she can 'see' the Backups share point when she connects to the server by afp, the Backups device can't be selected from her Time Machine settings in System Preferences.
    Am I going about this wrong? Or are remote backups not supported? I'm aware they may be very slow over a regular internet connection...
    PS - All 5 users are on 10.6

    Sorry for the late reply. There's a slight difference for the minimum system requirements for what Leopard CAN run on vs. what it SHOULD be run on. Although a 667MHz G4-based machine with 512MB RAM may suffice technically, I would propose that a reasonable minimum from a performance perspective is a 1GHz PPC processor (or any Intel processor), with 1GB minimum RAM. Thus, the 1GHz eMac with 1GB RAM is probably the cheapest way you could reasonably run Leopard.
    One of the issues with Finder and iTunes is that Apple is increasingly making use of "Cover Flow" and other sophisticated graphics. These will run slowly (if at all) on systems with PPC processors under 1GHz. You don't want to choke your processor, especially if there's a single PPC processor in your system.

  • How a administrator user is different from read-write user in Aruba Central?

    Q: How a administrator user is different from read-write user in Aruba Central?
    A: Aruba Central allows administrator to create multiple user of different access levels to help manage the system.  This access levels include:
    read only
    read/write
    guest operator
    NOTE: These access levels can be imposed on a specific "ap group" or a set of "ap groups" or all of them.
    Therefore looking at the roles, many of the aruba central customers, had a question of how a administrator user is different from read-write user. 
    Administrator is the only user who can move access points between groups. Read/Write user Do Not Have Permission to execute this action.

    Hi,
    I've managed to get what I needed by using a shift register + event structure as suggested by Adnan. However, I face another problem after implementing SR+event. I've attached two files, first the original program and second the updated program using SR + event. (it's only the jpg file as I've forgotten to save the labview program, will upload the program by tomorrow.
    In the original program, I have an elapsed time that is able to run continuously when I run the program. In the updated program, my elapsed time don't seem to run continuously when I run the program (as shown by elapsed time indicator). I need the elapsed time to run continuously as a input to calculate my motor profile.
    I suppose this is caused by the introduction of the event structure, will adding a case structure to wrap the event structure solve the problem or is there another way to get pass this. Appreciate if someone could drop me a pointer or two.
    Thanks
    Attachments:
    Mar 16 - continuous elapsed time.png ‏12 KB
    Mar 16 - elapsed time not continuous after introducing shift register + event structure.png ‏17 KB

  • Can the SidHistory attribute be moved from one User account to a different User account in the same Forest/Domain?

    Hello,
    Can the SidHistory attribute be moved from one User account to a different User account in the same Forest/Domain manually with  Active Directory Users and Computers or with something like Powershell?  it would seem to me this is a safe operation.
    Thanks for your help! SdeDot

    Hi,
    In addition, please also take a look at the below thread:
    copy SIDHistory from one account to another in the same domain
    http://social.technet.microsoft.com/Forums/en-US/2ca8727c-b3fd-4ef8-9747-99295f0cd61c/copy-sidhistory-from-one-account-to-another-in-the-same-domain?forum=winserverDS
    Hope this helps
    Best regards
    Michael
    If you have any feedback on our support, please click
    here.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • How to allow the user to upload a file from their desktop to MII Server?

    Hi,
    Is there a way for the user to specify a file on their local computer to upload to the MII server for processing?  We have a method that works for uploading from a shared network drive, but now the need/desire is to allow the user to upload a file from their desktop.
    Ideally, this would be a file browser that the user would click on to browse their local desktop and select the file and click "Upload" but not sure what's possible?
    This is using 12.1 SP4.
    Thanks for the help.
    Kerby

    [Uploading Documents|Uploading Documents]

Maybe you are looking for

  • SAP PS Module Report, Help needed for the Right Logic.

    Hi,          I have to develop a  PS module Report . This spec of this  report is when you enter , project # , month , date , proj type it should  display all the projects  and only the billing levels  with  different  fiels  like ITD cost, ITD sales

  • Problem in JDBC Reciver Channel

    Hi Experts,           My scenario is , transfer records from one table to another table in MS SQL Server.For that I have created a JDBC to JDBC Scenario. I am using same Business System for both Sender and Reciver Communication Channels.  I have crea

  • Connect BPCS with R/3

    Hi, does anybody have experience connecting BPCS (automotive supply industry) software with R/3 over XI? A documentation or a link would be very helpful, Regards, Udo

  • Getting Error in MIRO

    Hi Gurus, I am Doing 3rd Party Scenarion in IDES system on 4.6C ,when i tried to MIRO based on PO, system gives the following Error, For Object RF_BELEG (COMPANY CODE XXXX),number Range intervals 51 does not exit. Diagnosis. The Database table NRIV h

  • Flash crashes on "initializing tools"

    We just bought 5 CS5 licences. Installed them all to our designers machines. All of them crash on startup..on "initializing tools". Any thoughts? Have tried under a different profile. No luck. These are all XP machines.....all fully updated, both Win