Cannot start Web Client

Hi,
I recently installed Oracle Hyperion Data Relationship Management, Fusion Edition.
Ive created a new application and repository using the management console succesfully, however when I try to run the Web Client, I get:
--------================================
Internet Explorer cannot display the webpage
Most likely causes:
You are not connected to the Internet.
The website is encountering problems.
There might be a typing error in the address.
What you can try:
Diagnose Connection Problems
More information =============================-------------
The url generated is http://localhost/drm-web-client
I am running on windows 7, 64bit and XP respectively with the same results.
Regards,
Olu

It sounds like you are trying to access the file as if your JNLP application were running on the server. The JNLP app is running on the client machine, so you will need to use a URL to open the file. Take a look at the JavaDocs for the following:
     java.net.URL
     java.net.URI
     java.net.File
You also need to be sure your server is configured to serve the file. For example, you ought to be able to access the file through your browser using something like http://www.myco.com/myapp/myfile.txt. (How you configure your server is a topic for a different forum.)
You probably also want to look into JavaWS security, and even Java security in general to determine if you need to sign your app or not. Here are some links to get you started:
        http://java.sun.com/j2se/1.5.0/docs/guide/javaws/developersguide/development.html#security
        http://java.sun.com/j2se/1.5.0/docs/guide/deployment/deployment-guide/security.html
        http://java.sun.com/sfaq/
        http://java.sun.com/j2se/1.5.0/docs/guide/security/permissions.html
        http://java.sun.com/j2se/1.5.0/docs/guide/security/index.html
Mike.

Similar Messages

  • Cannot start OWB Client

    My OWB Client was working fine earlier today. When I try to start now I get the OWB Logo screen but I never get to the login screen. When I run owbclient.bat i get the following:
    C:\oracle\ora92\owb\bin\win32>call setowbenv
    JVM LIMIT SET TO: 384M
    Exception in thread "main" java.lang.ExceptionInInitializerError: java.lang.Secu
    rityException: Cannot set up certs for trusted CAs
    at javax.crypto.b.<clinit>([DashoPro-V1.2-120198])
    at javax.crypto.Mac.getInstance([DashoPro-V1.2-120198])
    at oracle.wh.repos.impl.mcm.foundation.MCMHash.<init>(MCMHash.java:44)
    at oracle.wh.repos.impl.mcm.foundation.MCMHash.getInstance(MCMHash.java:
    29)
    at oracle.wh.repos.impl.mcm.MCMServiceImpl.<init>(MCMServiceImpl.java:16
    4)
    at oracle.wh.repos.impl.mcm.MCMServiceImpl.getInstance(MCMServiceImpl.ja
    va:171)
    at oracle.wh.repos.impl.APIController.init(APIController.java:107)
    at oracle.wh.util.ControllerInitializer.initControllers(ControllerInitia
    lizer.java:118)
    at oracle.wh.util.ControllerInitializer.initBackendControllers(Controlle
    rInitializer.java:36)
    at oracle.wh.util.ControllerInitializer.initAllControllers(ControllerIni
    tializer.java:22)
    at oracle.wh.ui.framework.StaticLoader.main(StaticLoader.java:114)
    Any help provided would be much appreciated.
    Alan

    I'm working now. The solution is given in thread
    Re: OWB client not working by Patrick
    I'll copy it here:
    1. Download the JCE 1.2.2 package from the following web page:
    http://java.sun.com/products/jce/index-122.html
    2. Either reboot your Client machine or Stop all Oracle software.
    3. Rename or remove the following files :
    $OWB92_CLIENT_HOME/jdk/jre/lib/ext/US_export_policy.jar
    $OWB92_CLIENT_HOME/jdk/jre/lib/ext/jce1_2_1.jar
    $OWB92_CLIENT_HOME/jdk/jre/lib/ext/local_policy.jar
    $OWB92_CLIENT_HOME/jdk/jre/lib/ext/sunjce_provider.jar
    4. Copy the following files from the JCE 1.2.2 package to the directory OWB92_CLIENT_HOME/jdk/jre/lib/ext/ :
    jce1.2.2/lib/US_export_policy.jar
    jce1.2.2/lib/jce1_2_2.jar
    jce1.2.2/lib/local_policy.jar
    jce1.2.2/lib/sunjce_provider.jar
    5. Rename jce1_2_2.jar as jce1_2_1.jar
    6. Now try launching OWB 9.2 client.

  • Cannot start web server on executable

    Hi
    We have an interesting problem with a webserver - we cannot get it to initialise using property nodes or the ini file on a compiled executable.
    As part of our application we start the webserver to publish a status page to be viewed remotely. This works fine when we are running in the development environment and also when we are running an executable on a PC with the development environment installed, however it will not initialise on a PC with just the runtime engine installed.
    I've attached a portion of code which functionally does exactly the same as in our main application. I've been using this as my tester code and built it into an exe while trying many different things to fix it.
    When executed:
    The code will sit in the while loop until I press stop.
    Web server: Server Active = FALSE
    error out = NO ERROR
    In the full application the while loop waits for a couple of seconds before throwing an error if the server has not started. In this example I can leave the loop running for some time without it starting. Normally startup time is <50ms when succesful.
    This is the ini file for the executable:
    [WebTest]
    server.app.propertiesEnabled=True
    server.ole.enabled=True
    server.tcp.serviceName="My Computer/VI Server"
    server.vi.propertiesEnabled=True
    WebServer.Enabled=True
    WebServer.TcpAccess="+*"
    WebServer.ViAccess="+*"
    DebugServerEnabled=False
    DebugServerWaitOnLaunch=False
    And this is the webserver config file:
    ErrorLog "$LVSERVER_ROOT/logs/error.log"
    LogLevel 3
    ServerName default
    DocumentRoot "$LVSERVER_ROOT/../../www"
    Listen 8000
    ThreadLimit 10
    TypesConfig "$LVSERVER_ROOT/mime.types"
    DirectoryIndex index.html
    LoadModulePath "$LVSERVER_ROOT/modules" "$LVSERVER_ROOT/LVModules" "$LVSERVER_ROOT/.."
    LoadModule LVAuth lvauthmodule
    LoadModule LVSnapshot lvsnapshotmodule
    LoadModule LVRFP lvrfpmodule
    LoadModule dir libdirModule
    LoadModule copy libcopyModule
    AddHandler LVAuthHandler
    AddHandler LVSnapshotHandler .snap
    AddHandler LVRFPHandler
    AddHandler dirHandler
    AddHandler copyHandler
    CustomLog "$LVSERVER_ROOT/logs/access.log" "%h %l %u %t \"%r\" %>s %b"
    KeepAlive on
    KeepAliveTimeout 60
    Timeout 60
    As a side note, can anybody tell me where the $LVSERVER_ROOT variable is configured?
    Things I have tried:
    Copying a new config file from the default location before initialisation
    Writing a pre-defined (hard-coded) config file before initialisation
    Setting root directory locaitons before initialisation (this one actually throws an error because the server isn't active...)
    Setting WebServer.Active = TRUE repeatedly inside the while loop
    Enabled/disabled the web server in the ini file
    System:
    Labview 2010
    PC's with running Windows 7
    Thanks for any help because this is driving me slowly mad!
    Ben
    Solved!
    Go to Solution.

    Hi Marco, thanks for replying.
    I had looked at that guide previously and had done everything in it but one small section did give me a hint of something to try and I have solved my problem, so thanks!
    Here is the issue if anyone is interested:
    The DocumentRoot folder in the config has to exist otherwise the webserver cannot be started. So basically, make sure that the file points to a folder that exists!
    This does leave two slight annoying issues though - you can't see if the folder exists (and then create it) before starting the webserver because you can't query the folder path without the webserver running.
    AND
    You can't really set the config file programatically because the settings from the file are loaded on execution, not on webserver start.
    The result of this is that the config file and the document root folder should be created (and matching of course...) when the executable is built / installed on the system. Not a massive headache but it means remembering to put things into the build spec and not rely on the software to do the work on boot

  • Cannot start Web Cache in Oracle 10g App Server

    Hi,
    Our Application runs on Oracle10g App Server,
    When it tried to start WebCache using the command
    opmnctl startproc ias-component=WebCache process-type=WebCache
    it shows the error...
    opmn id=oracle10g:6200
    no enabled components for this request
    When i tried to enable WebCache using Enable/Disable Component in Oracle 10g Enterprise manager - I can't see WebCache component it to enabe or disable it.
    When i tried opmnctl status., it shows
    ------------------------------------------------+---------
    ias-component | process-type | pid | status
    ------------------------------------------------+---------
    HTTP_Server | HTTP_Server | 7276 | Alive
    LogLoader | logloaderd | N/A | Down
    dcm-daemon | dcm-daemon | N/A | Down
    OC4J | home | 7684 | Alive
    OC4J | rhs | N/A | Down
    OC4J | instaremit | 5880 | Alive
    OC4J | insta_test_apr_02 | 7100 | Alive
    WebCache is not running, also as the WebCache is not listed in Oracle 10g Enterprise manager, i can' enable or disable it.
    Plz Help me over this.,
    Regards.,
    Deepak.C

    Hi.,
    Thanks again !!!
    Yes, My Oracle HTTP Server is listening on port 80.
    I am not clear, may i know why should the ports be changed for the request to go through Web Cache ???
    Can i assign port 80 for Web Cache and 7778 for HTTP Server ?
    Also In Oracle Enterprise Manager, Web Cache is not available...
    home, HTTP Server, management alll these are there...
    Also for HTTP Server, it's not showing any metric info, 'Not Yet Available' is shown even though the HTTP Server is running, how can i get metric info about Oracle HTTP Server, i have also used dmstool -t ohs_server, its not working
    It's showing... FLEXMON ERROR : detected invalid table name ohs_server
    dmstool -l -t also does'nt lists ohs_server
    Hellp me over this.....
    Deepak.C

  • Cannot Start Web Services

    Hi, I've simply rebooted our server last night and now everything starts but Web Services.
    Here are the last bits of the error.log and system.log for the past 36 hours:
    All help very welcome
    error.log
    Processing config directory: /etc/httpd/sites/*.conf
    Processing config file: /etc/httpd/sites/0000any_80localhost.conf
    Processing config file: /etc/httpd/sites/0001any_80personalcomment.com.conf
    Processing config file: /etc/httpd/sites/0002any_80jrpserver.co.uk.conf
    Processing config file: /etc/httpd/sites/0003any_80iphotoreference.com.conf
    Processing config file: /etc/httpd/sites/0004any_80jrpshop.co.uk.conf
    Processing config file: /etc/httpd/sites/virtualhostglobal.conf
    [Wed Jun 27 08:39:48 2007] [notice] Apache/1.3.33 (Darwin) mod_jk/1.2.6 DAV/1.0.3 mod_ssl/2.8.24 OpenSSL/0.9.7l PHP/4.4.4 mod_perl/1.29 configured -- resuming normal operations
    [Wed Jun 27 08:39:48 2007] [notice] Accept mutex: flock (Default: flock)
    [Wed Jun 27 08:39:48 2007] [warn] long lost child came home! (pid 16987)
    [Wed Jun 27 08:39:48 2007] [warn] long lost child came home! (pid 16986)
    [Wed Jun 27 08:39:48 2007] [warn] long lost child came home! (pid 16985)
    [Wed Jun 27 08:39:48 2007] [warn] long lost child came home! (pid 16984)
    [Wed Jun 27 08:40:32 2007] [notice] caught SIGTERM, shutting down
    Processing config directory: /etc/httpd/sites/*.conf
    Processing config file: /etc/httpd/sites/0000any_80localhost.conf
    Processing config file: /etc/httpd/sites/0001any_80personalcomment.com.conf
    Processing config file: /etc/httpd/sites/0002any_80jrpserver.co.uk.conf
    Processing config file: /etc/httpd/sites/0003any_80iphotoreference.com.conf
    Processing config file: /etc/httpd/sites/0004any_80jrpshop.co.uk.conf
    Processing config file: /etc/httpd/sites/virtualhostglobal.conf
    [Wed Jun 27 08:40:42 2007] [notice] Apache/1.3.33 (Darwin) mod_jk/1.2.6 DAV/1.0.3 mod_ssl/2.8.24 OpenSSL/0.9.7l PHP/4.4.4 mod_perl/1.29 configured -- resuming normal operations
    [Wed Jun 27 08:40:42 2007] [notice] Accept mutex: flock (Default: flock)
    [Wed Jun 27 08:54:04 2007] [notice] child pid 17024 exit signal Bus error (10)
    [Wed Jun 27 08:54:12 2007] [notice] child pid 17032 exit signal Bus error (10)
    [Wed Jun 27 08:54:20 2007] [notice] child pid 17023 exit signal Bus error (10)
    [Fri Jun 29 16:56:18 2007] [notice] child pid 17034 exit signal Bus error (10)
    [Mon Jul 9 00:49:07 2007] [notice] child pid 17213 exit signal Bus error (10)
    [Mon Jul 9 21:10:05 2007] [notice] child pid 17234 exit signal Bus error (10)
    [Tue Jul 10 03:32:24 2007] [notice] child pid 17033 exit signal Bus error (10)
    [Wed Jul 18 18:01:19 2007] [notice] child pid 17211 exit signal Bus error (10)
    [Sun Jul 22 22:12:11 2007] [warn] child process 602 still did not exit, sending a SIGTERM
    [Sun Jul 22 22:12:16 2007] [notice] caught SIGTERM, shutting down
    [Mon Jul 23 08:20:27 2007] [alert] moduniqueid: unable to gethostbyname("data.jrpinhouse.com")
    [Mon Jul 23 10:26:54 2007] [alert] moduniqueid: unable to gethostbyname("data.jrpinhouse.com")
    [Mon Jul 23 10:29:22 2007] [alert] moduniqueid: unable to gethostbyname("data.jrpinhouse.com")
    [Mon Jul 23 10:32:18 2007] [alert] moduniqueid: unable to gethostbyname("data.jrpinhouse.com")
    [Mon Jul 23 14:02:18 2007] [alert] moduniqueid: unable to gethostbyname("data.jrpinhouse.com")
    [Mon Jul 23 14:08:14 2007] [alert] moduniqueid: unable to gethostbyname("data.jrpinhouse.com")
    [Mon Jul 23 14:10:47 2007] [alert] moduniqueid: unable to gethostbyname("data.jrpinhouse.com")
    [Mon Jul 23 14:12:59 2007] [alert] moduniqueid: unable to gethostbyname("data.jrpinhouse.com")
    [Mon Jul 23 14:15:54 2007] [alert] moduniqueid: unable to gethostbyname("data.jrpinhouse.com")
    [Mon Jul 23 14:17:19 2007] [alert] moduniqueid: unable to gethostbyname("data.jrpinhouse.com")
    [Mon Jul 23 14:20:21 2007] [alert] moduniqueid: unable to gethostbyname("data.jrpinhouse.com")
    [Mon Jul 23 14:25:54 2007] [alert] moduniqueid: unable to gethostbyname("data.jrpinhouse.com")
    [Mon Jul 23 14:28:40 2007] [alert] moduniqueid: unable to gethostbyname("data.jrpinhouse.com")
    system.log
    Jul 23 14:01:00 localhost mDNSResponder: Adding browse domain local.
    Jul 23 14:01:00 localhost kernel[0]: hfs mount: enabling extended security on File Server OS X BU
    Jul 23 14:01:00 localhost diskarbitrationd[71]: disk0s10 hfs 30AE8237-63C0-3E12-A66E-37DDF143A997 File Server OS X BU /Volumes/File Server OS X BU
    Jul 23 14:01:01 localhost kernel[0]: BMacEnet: Ethernet address 00:50:e4:6e:38:19
    Jul 23 14:01:04 localhost lookupd[144]: lookupd (version 369.5) starting - Mon Jul 23 14:01:04 2007
    Jul 23 14:01:05 localhost kernel[0]: AppleCuda_AutoRestartOnPowerLossSetting - entered
    Jul 23 14:01:05 localhost ctl_cyrusdb[87]: verifying cyrus databases
    Jul 23 14:01:05 localhost ctl_cyrusdb[87]: skiplist: recovered /var/imap/mailboxes.db (13 records, 2528 bytes) in 0 seconds
    Jul 23 14:01:05 localhost ctl_cyrusdb[87]: skiplist: recovered /var/imap/annotations.db (0 records, 144 bytes) in 0 seconds
    Jul 23 14:01:06 localhost kernel[0]: BMacEnet::monitorLinkStatus: Link up at 100 Mbps - Half Duplex
    Jul 23 14:01:06 localhost configd[68]: AppleTalk startup
    Jul 23 14:01:06 data configd[68]: setting hostname to "data.jrpinhouse.com"
    Jul 23 14:01:07 data java: Java is generating its shared archive, version 1.5
    Jul 23 14:01:07 data java: Java is generating its shared archive, version 1.5
    Jul 23 14:01:08 data launchd: Server 490f in bootstrap 1103 uid 0: "/usr/sbin/lookupd"[144]: exited abnormally: Hangup
    Jul 23 14:01:08 data configd[68]: executing /System/Library/SystemConfiguration/Kicker.bundle/Contents/Resources/enable-net work
    Jul 23 14:01:08 data configd[68]: posting notification com.apple.system.config.network_change
    Jul 23 14:01:08 data lookupd[149]: lookupd (version 369.5) starting - Mon Jul 23 14:01:08 2007
    Jul 23 14:01:15 data configd[68]: AppleTalk startup complete
    Jul 23 14:01:16 data kernel[0]: ATY,Rage128y: vram [86000000:01000000]
    Jul 23 14:01:21 data mountd[195]: /usr/sbin/slp_reg exit status 57
    Jul 23 14:01:24 data mountd[195]: path contains symlinks: /Volumes/Server NetBoot/Library/NetBoot/NetBootSP0
    Jul 23 14:01:24 data mountd[195]: Error processing exports list line: /Volumes/Server\ NetBoot/Library/NetBoot/NetBootSP0 -ro
    Jul 23 14:01:30 data configd[68]: target=enable-network: disabled
    Jul 23 14:01:31 data /usr/sbin/serialnumberd[293]: serialnumberd: Firewall rule #1 added to allow port 626.
    Jul 23 14:01:34 data ctl_cyrusdb[87]: done verifying cyrus databases
    Jul 23 14:01:40 data kernel[0]: nmbd[360] uses send/recv on a pipe
    Jul 23 14:01:40 data servermgrd: servermgr_dns: Reloaded named
    Jul 23 14:01:41 data servermgrd: servermgr_dns: configured name and reverse DNS name do not match (data.jrpinhouse.com != server.jrp.inhouse), various services may not function properly - use changeip to repair and/or correct DNS
    Jul 23 14:01:42 data master[63]: ready for work
    Jul 23 14:01:42 data ctl_cyrusdb[386]: checkpointing cyrus databases
    Jul 23 14:01:43 data ctl_cyrusdb[386]: done checkpointing cyrus databases
    Jul 23 14:01:56 data /usr/sbin/serveradmin: servermgr_ipfilter:ipfw config:Notice:Disabled firewall
    Jul 23 14:02:00 data /usr/sbin/AppleFileServer: TIME-CHECK: NSLXStandardRegisterService took 4.026076 seconds!\n
    Jul 23 14:02:03 data /usr/sbin/serveradmin: servermgr_nat: nat config:Notice:natd launch requested
    Jul 23 14:02:04 data /usr/sbin/serveradmin: servermgr_nat: nat config:Notice:nat divert rule for interface 'en0' added to firewall
    Jul 23 14:02:14 data ARDAgent [400]: ******ARDAgent Launched******
    Jul 23 14:02:15 data /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow: Login Window Application Started
    Jul 23 14:02:17 data ARDAgent [400]: ******ARDAgent Ready******
    Jul 23 14:02:18 data ARDAgent [400]: call logout from LoginLogoutProxyCallBackFunction
    Jul 23 14:02:18 data kernel[0]: AppleCuda_AutoRestartOnPowerLossSetting - entered
    Jul 23 14:02:19 data loginwindow[399]: Login Window Started Security Agent
    Jul 23 14:02:25 data ARDAgent [418]: ******ARDAgent Launched******
    Jul 23 14:02:26 data ARDAgent [418]: ******ARDAgent Ready******
    Jul 23 14:08:14 data servermgrd: servermgr_web: Could not start httpd. Check httpd error log..
    Jul 23 14:10:47 data servermgrd: servermgr_web: Could not start httpd. Check httpd error log..
    Jul 23 14:12:43 data launchd: Server 0 in bootstrap 1103 uid 0: "/usr/sbin/lookupd"[149]: exited abnormally: Hangup
    Jul 23 14:12:43 data configd[68]: posting notification com.apple.system.config.network_change
    Jul 23 14:12:44 data lookupd[599]: lookupd (version 369.5) starting - Mon Jul 23 14:12:44 2007
    Jul 23 14:12:59 data servermgrd: servermgr_web: Could not start httpd. Check httpd error log..
    Jul 23 14:14:05 data servermgrd: servermgr_filebrowser: kSelectorAllAvailableData failed with status -108. path: /Volumes/File Server OS X/var/log/httpd/error_log.1170288000.gz
    Jul 23 14:14:05 data servermgrd: servermgr_filebrowser: kSelectorAllAvailableData failed with status -108. path: /Volumes/File Server OS X/var/log/lpr.log.2.gz
    Jul 23 14:14:05 data servermgrd: servermgr_filebrowser: kSelectorAllAvailableData failed with status -108. path: /Volumes/File Server OS X/var/log/httpd/error_log.1170288000.gz
    Jul 23 14:14:05 data servermgrd: servermgr_filebrowser: kSelectorAllAvailableData failed with status -108. path: /Volumes/File Server OS X/var/log/httpd/error_log.1170288000.gz
    Jul 23 14:14:05 data servermgrd: servermgr_filebrowser: kSelectorAllAvailableData failed with status -108. path: /Volumes/File Server OS X/var/xgrid
    Jul 23 14:14:05 data servermgrd: servermgr_filebrowser: kSelectorAllAvailableData failed with status -108. path: /Volumes/File Server OS X/var/log/lpr.log.3.gz
    Jul 23 14:15:09 data launchd: Server 0 in bootstrap 1103 uid 0: "/usr/sbin/lookupd"[599]: exited abnormally: Hangup
    Jul 23 14:15:09 data configd[68]: posting notification com.apple.system.config.network_change
    Jul 23 14:15:10 data lookupd[626]: lookupd (version 369.5) starting - Mon Jul 23 14:15:10 2007
    Jul 23 14:15:54 data servermgrd: servermgr_web: Could not start httpd. Check httpd error log..
    Jul 23 14:17:06 data named[651]: starting BIND 9.3.4 -f
    Jul 23 14:17:06 data named[651]: command channel listening on 127.0.0.1#54
    Jul 23 14:17:19 data servermgrd: servermgr_web: Could not start httpd. Check httpd error log..
    Jul 23 14:17:55 data ARDAgent [675]: ******ARDAgent Launched******
    Jul 23 14:17:55 data ARDAgent [675]: ******ARDAgent Ready******
    Jul 23 14:17:58 data ARDAgent [675]: call logout from LoginLogoutProxyCallBackFunction
    Jul 23 14:17:58 data shutdown: reboot by admin:
    Jul 23 14:18:01 data SystemStarter[681]: authentication service (725) did not complete successfully
    Jul 23 14:18:02 data SystemStarter[681]: IP Failover (737) did not complete successfully
    Jul 23 14:18:03 data ARDAgent [788]: ******ARDAgent Launched******
    Jul 23 14:18:04 data ARDAgent [788]: ******ARDAgent Ready******
    Jul 23 14:18:56 localhost kernel[0]: standard timeslicing quantum is 10000 us
    Jul 23 14:18:55 localhost memberd[55]: memberd starting up
    Jul 23 14:18:56 localhost kernel[0]: vmpagebootstrap: 173782 free pages
    Jul 23 14:18:55 localhost named[48]: starting BIND 9.3.4 -f
    Jul 23 14:18:56 localhost kernel[0]: migtable_maxdispl = 70
    Jul 23 14:18:55 localhost mDNSResponder-108.5 (May 9 2007 16: 57:18)[36]: starting
    Jul 23 14:18:56 localhost kernel[0]: 70 prelinked modules
    Jul 23 14:18:56 localhost kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    Jul 23 14:18:56 localhost kernel[0]: The Regents of the University of California. All rights reserved.
    Jul 23 14:18:55 localhost master[45]: process started
    Jul 23 14:18:56 localhost kernel[0]: using 1802 buffer headers and 1802 cluster IO buffer headers
    Jul 23 14:18:55 localhost lookupd[53]: lookupd (version 369.5) starting - Mon Jul 23 14:18:55 2007
    Jul 23 14:18:56 localhost kernel[0]: FireWire (LYNX) built-in rev 2 now active, GUID 0050e4ff fe6e3819; max speed s400.
    Jul 23 14:18:56 localhost kernel[0]: Security auditing service present
    Jul 23 14:18:56 localhost kernel[0]: BSM auditing present
    Jul 23 14:18:56 localhost DirectoryService[58]: Launched version 2.1 (v353.6)
    Jul 23 14:18:56 localhost kernel[0]: disabled
    Jul 23 14:18:56 localhost kernel[0]: rooting via boot-uuid from /chosen: 6F169A87-E09E-39FA-B932-E1B3AB295133
    Jul 23 14:18:56 localhost kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    Jul 23 14:18:56 localhost named[48]: command channel listening on 127.0.0.1#54
    Jul 23 14:18:56 localhost kernel[0]: ADB present:0
    Jul 23 14:18:56 localhost kernel[0]: Got boot device = IOService:/GossamerPE/pci@80000000/AppleGracklePCI/pci-bridge@D/IOPCI2PCIBridge /pci-ata@1/CMD646Root/ata-4@0/CMD646ATA/ATADeviceNub@1/IOATABlockStorageDriver/I OATABlockStorageDevice/IOBlockStorageDriver/IBM-IC35L060AVER07-0 Media/IOApplePartitionScheme/AppleHFS_Untitled5@12
    Jul 23 14:18:56 localhost kernel[0]: BSD root: disk1s12, major 14, minor 20
    Jul 23 14:18:56 localhost kernel[0]: hfs mount: enabling extended security on File Server OS X
    Jul 23 14:18:56 localhost kernel[0]: Jettisoning kernel linker.
    Jul 23 14:18:56 localhost kernel[0]: Resetting IOCatalogue.
    Jul 23 14:18:56 localhost kernel[0]: Matching service count = 0
    Jul 23 14:18:56 localhost kernel[0]: Matching service count = 1
    Jul 23 14:18:56 localhost kernel[0]: Matching service count = 1
    Jul 23 14:18:56 localhost kernel[0]: Matching service count = 1
    Jul 23 14:18:56 localhost kernel[0]: Matching service count = 1
    Jul 23 14:18:56 localhost kernel[0]: Matching service count = 1
    Jul 23 14:18:56 localhost kernel[0]: ROM ndrv for ATY,Rage128y is too old (0xb3383430)
    Jul 23 14:18:58 localhost kernel[0]: BMacEnet: Ethernet address 00:50:e4:6e:38:19
    Jul 23 14:18:59 localhost launchd: Server 3307 in bootstrap 1103 uid 0: "/usr/sbin/lookupd"[53]: exited abnormally: Hangup
    Jul 23 14:18:59 localhost kernel[0]: AppleCuda_AutoRestartOnPowerLossSetting - entered
    Jul 23 14:18:59 localhost java: Java is generating its shared archive, version 1.5
    Jul 23 14:18:59 localhost java: Java is generating its shared archive, version 1.5
    Jul 23 14:19:00 localhost lookupd[95]: lookupd (version 369.5) starting - Mon Jul 23 14:19:00 2007
    Jul 23 14:19:02 localhost mDNSResponder: Adding browse domain local.
    Jul 23 14:19:02 localhost kernel[0]: BMacEnet::monitorLinkStatus: Link up at 100 Mbps - Half Duplex
    Jul 23 14:19:02 localhost configd[50]: AppleTalk startup
    Jul 23 14:19:02 data configd[50]: setting hostname to "data.jrpinhouse.com"
    Jul 23 14:19:02 data ctl_cyrusdb[61]: verifying cyrus databases
    Jul 23 14:19:02 data ctl_cyrusdb[61]: skiplist: recovered /var/imap/mailboxes.db (13 records, 2528 bytes) in 0 seconds
    Jul 23 14:19:02 data ctl_cyrusdb[61]: skiplist: recovered /var/imap/annotations.db (0 records, 144 bytes) in 0 seconds
    Jul 23 14:19:04 data launchd: Server 3343 in bootstrap 1103 uid 0: "/usr/sbin/lookupd"[95]: exited abnormally: Hangup
    Jul 23 14:19:04 data configd[50]: executing /System/Library/SystemConfiguration/Kicker.bundle/Contents/Resources/enable-net work
    Jul 23 14:19:04 data configd[50]: posting notification com.apple.system.config.network_change
    Jul 23 14:19:04 data ctl_cyrusdb[61]: done verifying cyrus databases
    Jul 23 14:19:04 data lookupd[109]: lookupd (version 369.5) starting - Mon Jul 23 14:19:04 2007
    Jul 23 14:19:07 data diskarbitrationd[52]: disk1s12 hfs 6F169A87-E09E-39FA-B932-E1B3AB295133 File Server OS X /
    Jul 23 14:19:07 data kernel[0]: hfs mount: enabling extended security on Server Data
    Jul 23 14:19:07 data diskarbitrationd[52]: disk0s10 hfs F73513A7-B484-3296-BFFE-C28BF1078604 Server Data /Volumes/Server Data
    Jul 23 14:19:07 data kernel[0]: hfs mount: enabling extended security on File Server OS X BU
    Jul 23 14:19:07 data diskarbitrationd[52]: disk1s10 hfs 30AE8237-63C0-3E12-A66E-37DDF143A997 File Server OS X BU /Volumes/File Server OS X BU
    Jul 23 14:19:07 data diskarbitrationd[52]: disk2s10 hfs C7B541A1-2E30-308F-8A64-FA74EA1B96BB JRP 250GB 01 /Volumes/JRP 250GB 01
    Jul 23 14:19:08 data configd[50]: AppleTalk startup complete
    Jul 23 14:19:12 data mountd[168]: path contains symlinks: /Volumes/Server NetBoot/Library/NetBoot/NetBootSP0
    Jul 23 14:19:12 data mountd[168]: Error processing exports list line: /Volumes/Server\ NetBoot/Library/NetBoot/NetBootSP0 -ro
    Jul 23 14:19:13 data servermgrd: servermgr_dns: configured name and reverse DNS name do not match (data.jrpinhouse.com != server.jrp.inhouse), various services may not function properly - use changeip to repair and/or correct DNS
    Jul 23 14:19:14 data kernel[0]: ATY,Rage128y: vram [86000000:01000000]
    Jul 23 14:19:14 data configd[50]: target=enable-network: disabled
    Jul 23 14:19:14 data vpnd[39]: Server 'com.apple.ppp.pptp' starting...\n
    Jul 23 14:19:14 data vpnd[39]: Loading plugin /System/Library/Extensions/PPTP.ppp\n
    Jul 23 14:19:15 data vpnd[38]: Server 'com.apple.ppp.l2tp' starting...\n
    Jul 23 14:19:15 data vpnd[38]: Loading plugin /System/Library/Extensions/L2TP.ppp\n
    Jul 23 14:19:16 data master[45]: ready for work
    Jul 23 14:19:16 data ctl_cyrusdb[210]: checkpointing cyrus databases
    Jul 23 14:19:16 data ctl_cyrusdb[210]: done checkpointing cyrus databases
    Jul 23 14:19:22 data /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow: Login Window Application Started
    Jul 23 14:19:27 data kernel[0]: AppleCuda_AutoRestartOnPowerLossSetting - entered
    Jul 23 14:19:28 data loginwindow[216]: Login Window Started Security Agent
    Jul 23 14:19:29 data kernel[0]: PPTP domain init
    Jul 23 14:19:29 data vpnd[39]: Listening for connections...\n
    Jul 23 14:19:29 data kernel[0]: L2TP domain init
    Jul 23 14:19:29 data kernel[0]: L2TP domain init complete
    Jul 23 14:19:29 data vpnd[38]: Listening for connections...\n
    Jul 23 14:19:36 data /usr/sbin/serialnumberd[229]: serialnumberd: Firewall rule #1 added to allow port 626.
    Jul 23 14:19:48 data /usr/sbin/serveradmin: servermgr_ipfilter:ipfw config:Notice:Disabled firewall
    Jul 23 14:19:53 data /usr/sbin/serveradmin: servermgr_nat: nat config:Notice:natd launch requested
    Jul 23 14:19:54 data /usr/sbin/serveradmin: servermgr_nat: nat config:Notice:nat divert rule for interface 'en0' added to firewall
    Jul 23 14:19:58 data kernel[0]: nmbd[389] uses send/recv on a pipe
    Jul 23 14:19:58 data ARDAgent [386]: ******ARDAgent Launched******
    Jul 23 14:20:01 data ARDAgent [386]: ******ARDAgent Ready******
    Jul 23 14:25:54 data servermgrd: servermgr_web: Could not start httpd. Check httpd error log..
    Jul 23 14:28:40 data servermgrd: servermgr_web: Could not start httpd. Check httpd error log..

    It was something to do with DNS settings.
    I had to revert to an older DNS settings of 'data.xxxxxxxx.com' as after reboot for a new DNS of 'server.aaaaaaaa.inhouse' www kept asking for 'data.xxxxxxxx.com' in the error log file.
    Seems that OS X Server's DNS settings do not like being changed through the Server Admin application. Though isn't that why we have a Server Admin app and nice OS X front ends?!

  • Cannot start NM client and register on N97

    I have N97 with up-to-date firmware. I installed NM, as per instructions on email.nokia.com through the phone browser - no problems there. When I start Email application (from Menu/Applications/Menu) it goes though email setup process which ends with successful creation of an email account in Messaging folder. Once set up is completed and Email client application is run again, it goes again to email setup and does not start nokia email client.
    Within the whole process, there was no option to register to Nokia Messaging account.
    I can receive and send emails, but through basic SMS-type client. How can I get NM client running?

    What version of firmware is device running? Also, which country and which operator are you using? Are you able to log into your account at email.nokia.com?
    Chris McK - Nokia Messaging/Social Product Marketing

  • Cannot start web proxy 4.07 admin server

    I just installed web proxy 4.06 on Solaris 9, but when I try to start admin server it just says:
    % ./start
    ./start: test: argument expected
    Any ideas how to fix this?

    how do i fix the problemIIRC, in your domain's config directory, look for domain.xml. It contains the configuration, which you may modify (after checking the documentation).
    x

  • Spring Tools Suite and vSphere Web Client plugins

    Hi, I am new to this environment.  I am developing VMware vSphere Web Client plugins.  In the setup for vSphere Web Client plugins, it is indicated that the preferred tools include Spring Tools Suite, which is a derivative of Eclipse.  It is an optional component to use the FlashBuilder tool.  Optionally, the VMware documentation indicates that you can use Eclipse instead of the Spring Tools Suite, but different setup is needed.
    I am posting here (instead of VMware/STS) for the following reasons.  I am able to set up the environment without the FlashBuilder tool.  I am able to develop Web Client plugins without the FlashBuilder tool.  However, I believe the FlashBuilder tool will make development easier.  When I try to get the FlashBuilder to load, I no longer can get things to work; I cannot develop Web Client plugins.  Lastly, the FlashBuilder tool is the only piece of the puzzle that is a licensed product, and therefore, I will not be able to purchase the product if I cannot get the trial version to work.
    FlashBuilder has a plugin installer for Eclipse.  I have tried to install the plugin to Spring Tools Suite, and I have tried to install the plugin to a regular version of Eclipse.  In either case, the problem I run into is that I cannot locate the VMware files, and doesn't have the virgo service which is present when I did not have the FlashBuilder plugin installed.
    Does anyone have any experience or familiarity in getting FlashBuilder to work in this type of setup?  Clearly it is doable, but using all of the documentation that I can find online, I cannot get FlashBuilder to work in my environment.
    Thank you for any help or suggestions you might have.

    Oh sorry, I thought that I had. I had gone to "contact adobe" and clicked on "customer service".  It then told me to "select a product", to which I chose "Flash Builder".  I then had to tell it that the question was in regard to "downloading, installing, setup" (of said Flash Builder).  From there it told me I can ask the community or call a representative... when I clicked "community" I thought the initial "Flash Builder" setting that I chose would apply to where the question got posted, but it seems it did not.

  • Configured Oracle Web Tier, cannot start opmn

    Hi,I am new to server technologies.
    I have installed WebCenter Suite. Now I want to config OAM to use SSO. Refering to Administrator's Guide for Oracle WebCenter I should install Oracle Web Tier first.
    But when I Configured Oracle Web Tier ( address ), I cannot start opmn.
    Appreciate your help
    Best Regards,
    Sunny.Zhang
    Edited by: Sunny.Zhang on 2009-9-21 上午11:46

    Hi Sunny
    Hope you had successfully installed the WebTier. I tried 2,3 times to install it on WINDOWS SERVER 2003 but it is throwing following exception during "Create and Start OHS Component) at configuration stage. Did you get similar type of exception?
    Not sure it was due to any conflicts with any of already installed Database 11g, Web Logic, SOA Suite.
    Help is appreciated.
    Trying to Reload OPMN **************
    [2009-09-23T21:06:39.828-04:00] [as] [NOTIFICATION] [] [oracle.as.install.config] [tid: 17] [ecid: 0000IFd_KuTDwWWFLzqIOA1AigEL000008,0] *************** Executing Command **************
    [2009-09-23T21:06:39.828-04:00] [as] [NOTIFICATION] [] [oracle.as.install.config] [tid: 17] [ecid: 0000IFd_KuTDwWWFLzqIOA1AigEL000008,0] cmd /c D:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\reloadOpmn1253754399828.bat
    [2009-09-23T21:06:39.828-04:00] [as] [NOTIFICATION] [] [oracle.as.install.config] [tid: 17] [ecid: 0000IFd_KuTDwWWFLzqIOA1AigEL000008,0] ***************************************************
    [2009-09-23T21:06:48.031-04:00] [as] [WARNING] [] [oracle.as.config] [tid: 17] [ecid: 0000IFd_KuTDwWWFLzqIOA1AigEL000008,0] Failed to start component WTohs1[[
    oracle.as.config.ProvisionException: HTTP status code = 204 : 0 of 1 processes started.
         at oracle.as.config.impl.OracleASComponentBaseImpl.manageProcess(OracleASComponentBaseImpl.java:892)
         at oracle.as.config.impl.OracleASComponentBaseImpl.start(OracleASComponentBaseImpl.java:1011)
         at oracle.as.install.webtiercd.webtierconfig.util.CreateComponent.createOHSComponentWrapper(CreateComponent.java:153)
         at oracle.as.install.webtiercd.webtierconfig.util.CreateComponent.createStandaloneOHSComponent(CreateComponent.java:82)
         at oracle.as.install.webtiercd.webtierconfig.actions.WebtierConfigurationAction.configureOHSStandalone(WebtierConfigurationAction.java:550)
         at oracle.as.install.webtiercd.webtierconfig.actions.WebtierConfigurationAction.configureStandalone(WebtierConfigurationAction.java:448)
         at oracle.as.install.webtiercd.webtierconfig.actions.WebtierConfigurationAction.doExecute(WebtierConfigurationAction.java:179)
         at oracle.as.install.engine.modules.configuration.client.ConfigAction.execute(ConfigAction.java:335)
         at oracle.as.install.engine.modules.configuration.action.TaskPerformer.run(TaskPerformer.java:87)
         at oracle.as.install.engine.modules.configuration.action.TaskPerformer.startConfigAction(TaskPerformer.java:104)
         at oracle.as.install.engine.modules.configuration.action.ActionRequest.perform(ActionRequest.java:15)
         at oracle.as.install.engine.modules.configuration.action.RequestQueue.perform(RequestQueue.java:63)
         at oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager.start(StandardConfigActionManager.java:158)
         at oracle.as.install.engine.modules.configuration.boot.ConfigurationExtension.kickstart(ConfigurationExtension.java:81)
         at oracle.as.install.engine.modules.configuration.ConfigurationModule.run(ConfigurationModule.java:82)
         at java.lang.Thread.run(Thread.java:619)

  • Cannot start default web site

    I was being a nice husband and moving my wife to a new machine while she is in India on business. I went to join the machine using the connector and the connector install failed. During the troubleshooting of this issue I installed patches and rebooted.
    I do not often patch so there were a few. Upon reboot I am unable to start the default website. I get the error This website cannot be started. Another website may be using the same port. I also did a netstat –o to see if anything was running on port 80. Can
    anyone assist me?
     C:\Users\Administrator>netstat -o
     Active Connections
     Proto Local Address Foreign Address State PID
     TCP 10.0.0.114:389 whs:61103 ESTABLISHED 516
     TCP 10.0.0.114:445 10.0.0.88:55375 ESTABLISHED 4
     TCP 10.0.0.114:445 10.0.0.118:49169 ESTABLISHED 4
     TCP 10.0.0.114:3389 10.0.0.118:54357 ESTABLISHED 3260
     TCP 10.0.0.114:6602 10.0.0.88:51644 ESTABLISHED 1696
     TCP 10.0.0.114:6602 10.0.0.88:51656 ESTABLISHED 1696
     TCP 10.0.0.114:6602 10.0.0.118:49159 ESTABLISHED 1696
     TCP 10.0.0.114:6602 10.0.0.118:49163 ESTABLISHED 1696
     TCP 10.0.0.114:61103 whs:ldap ESTABLISHED 3268
     TCP 127.0.0.1:49175 whs:65532 ESTABLISHED 3060
     TCP 127.0.0.1:49177 whs:65532 ESTABLISHED 3060
     TCP 127.0.0.1:49178 whs:65532 ESTABLISHED 3060
     TCP 127.0.0.1:49179 whs:65532 ESTABLISHED 3060
     TCP 127.0.0.1:49191 whs:65532 ESTABLISHED 3204
     TCP 127.0.0.1:49193 whs:65532 ESTABLISHED 3204

    Hi,
    What's your mean of "cannot start default web site"?
    If you mean that the client can't access the website, please follow the troubleshooting steps below:
    Please try to ping an external IP address. If timeout occurs, this is a connectivity issue. You need to check the IP address, netmask, gateway, DNS.
    Please try to run nslookup www.microsoft.com. If this website can't be resolved, this is a DNS issue. Please check the DNS settings and the firewall settings.
    If all these tests passed, please try to reset your Internet Explorer.
    If you mean that the server can't start the website in IIS, please check if there is any warning or error in the event viewer of the server. Besides, please try to start the IIS manually. If any error pops up, please post it here. It may give some hints.
    Best regards.
    Steven Lee Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Long time to start Java Web Client (Analyzer 6.2.1)??

    Does anyone know why Analyzer(6.2.1) takes a long time to start Java Web Client. Sometime it's even take more than 5 minutes. I think it is the Java Plug-in starting on the client computer. Any solution?

    The key to Analyzer 6.2.1 running correctly is the version of Sun Java Plugin. The ideal version (most optimal) is 1.3.0_02.Secondary to this if Analyzer performs OK once you are logged in then it could be down to the speed of your connection. The applet compiles at runtime (unlike Analyzer 5 which was a one time download). The delay in getting to the login screen could be this download.Hope this helps.Paul ArmitageAnalitica Ltd.www.analitica.co.uk

  • Error starting Web Start App: automation server cannot create object

    When starting Web Start Application without java installation just by starting javaws xyz.jnlp in Windows2000 there comes 2 times the Error Message "Microsoft JScript: automation server cannot create object", but the application starts nevertheless.
    Where does this error come from?
    How can we avoid it?

    see:
    http://forum.java.sun.com/thread.jspa?threadID=639218&tstart=10
    this dialog is thrown from the IE javascript engine when Java Web Start tries to invoke it to resolve the correct proxy for a given URL using the configured PAC file.
    /Andy

  • Web Analysis cannot start

    Hi,
    When I'm trying to start the Web Analysis, the system seems to stop at the loading screen and cannot start. It neither prompt me for installing the Java runtime nor returning any error message.
    Would any experts here be kind enough to advise what might be the problem and how I can solve it.
    Thanks,
    Francis

    Try these option-
    1) Allow the pop up to come (change the popup setting)
    2) Add the webAnalysis address in trusted sites
    Thanks & Regards,
    Mohit Jain

  • Web cahce cannot start

    I failed to start web cache on solaris.
    Some info in log:
    04/Sep/2001:17:54:41 -0500 -- Error: Could not increase number of file/socket descriptors to 1050.
    04/Sep/2001:17:54:41 -0500 -- Error: Failed to start the server.
    Does anyone give a suggestion?
    Thanks
    Eric

    See section 5 of the v2.0.0.0 or v2.0.0.1 readme. It says:
    5.0 Connection Limitations
    5.1 Unix
    On most UNIX platforms there is a hard limit to how many file descriptors a process can open. This number is normally 1024 but is configurable. To be able to
    change this default to a higher one, you have to be root or run the process as root. The other way is to set the setuid bit for the process to root. The procedure for
    doing this is the same as listed below in section 10.0 "How to Configure Oracle Web Cache to Listen on Port <1024".
    In this release, Oracle Web Cache calculates the maximum number of file descriptors to be used by using the following simple formula:
    Max number of file descriptors to be used = Current Maximum Incoming Connections (specified in the webcache.xml through the Web Cache Manager
    interface) + sum of Capacity for all the configured origin Web Server instances + 20 (reserved for internal use).
    Based on the above formula the Web Cache server tries to reserve this many file descriptors at startup time. In case it fails to do so, it doesn't default to a lower
    value but logs an error message and fails to start. In case the Web Cache server fails to start because the number of file descriptors required is more that 1024,
    either run it as root or setuid the execuable to root.
    Also, always set the "Current Maximum Incoming Connections" in Web Cache Manager to reflect correctly the maximum number of clients you intend to serve
    concurrently at any given time. The value should not be set to an arbitrary high value, as Web Cache sets aside some resources for each and the performance
    would be adversely affected.
    5.2 Windows
    On Windows NT Server and Windows 2000, the number of file handles as well as socket handles is limited only by available kernel resources, more precisely, by
    the size of paged and non-paged pools. But the number of active TCP/IP connections is limited. In Windows NT the system starts to reuse TCP Control Blocks in
    TIME-WAIT when the number of active connections goes over 1000. Windows NT 4.0 Service Pack 3 increased this threshold to 2000.
    Windows NT Workstation is limited to 5 concurrent connections. Oracle Web Cache is not designed to run on Windows NT Workstation.

  • Multiple LV instances, web server cannot start, port already in use

    Hi there,
    I have a general question about webserving VIs in case either
    a) multiple instances of the LV development environment are running (this is possible in windows XP for instance when "switch users" is allowed and each user launches LV)
    b) multiple compiled LV executables are run by the same user
    c) any mixture of the two above
    I have an application case when either of the three above would be a very good solution, was not for the problem encountered. Say, b): the user is given two deployed executables, and can decide to run either or both concurrently. Moreover, I want these applications to be visible on the web, so they are compiled with the webserver turned on, default settings.
    The problem I've seen (LV8.5.1, winXp for sure, but I think I've seen it as well in linux and other versions as well) is that each new instance of the LV engine tries to get hold of the tcp port (default 80), so that all instances beyond the first complain about "The Web Server cannot start. Is the Web Server port already in use?"
    While I can understand the origin of the message, and found some posts on the forums somehow related to it, I don't like it too much. 
    I could think only of two workarounds here: 1) set different web server ports for each LV instance, and instruct the remote users to direct their browsers to a webserverort link to access each VI; 2) run all the applications from the same instance of the LV dev system. The latter is not so convenient for me, due to conflicts in global VIs between all instances of the applications [compiling executables IS a way to privatize memory spaces in this case, AND global variables are imho well justified for the fairly complex application I have in mind here].
    Is there a third, more elegant solution perhaps, which I'm missing?
    Thanks, Enrico

    NathanK wrote:
    What is it in particular that you dislike about the message?
    How would you like LabVIEW to behave in this case?
    No problem with the message, but I'd just be very happy if a single
    web server would serve all my instances of the executables on the same
    port. I.e., if 2.exe is open and wants to start another server on the
    same port used already by 1.exe, then 2.exe becomes served by the
    server already opened. Am I demanding too much? Am I missing some
    necessary logic?
    At the moment, anyway, I'm stuck with the vi being served correctly,
    but not the compiled application, and I can't figure out why. It's
    LV8.5.1, and yes, I have in the .ini
    WebServer.DirectoryIndex="index.htm"
    WebServer.LogPath=C:\Program Files\National Instruments\LabVIEW 8.5\www.log
    WebServer.MimeTypes="htm;text/html;gif;image/gif;j​pg;image/jpeg;png;image/png;txt;text/plain;html;te​xt/html;jpeg;image/jpeg;css;text/css;llb;applicati​on/x-labview-llb;vi;application/x-labview-vi;doc;a​pplication/msword;dot;application/msword;bin;appli​cation/octet-stream;exe;application/octet-stream;r​tf;application/rtf;pdf;application/pdf;ai;applicat​ion/postscript;eps;application/postscript;ps;appli​cation/postscript;csh;application/x-csh;gtar;appli​cation/x-gtar;gz;application/x-gz;sh;application/x​-sh;tar;application/x-tar;zip;application/zip;hqx;​application/mac-binhex40;ua;audio/basic;wav;audio/​wav;tif;image/tiff;tiff;image/tiff;xbm;image/x-xbi​tmap;rtx;text/richtext;qt;video/quicktime;mov;vide​o/quicktime;avi;video/x-msvideo;movie;video/x-sgi-​movie;aif;audio/aif;aifc;audio/aif;aiff;audio/aif;​aim;application/x-aim;dif;video/x-dv;div;video/x-d​v;js;application/x-javascript;pntg;image/x-macpain​t;xlb;application/vnd.ms-excel;xls;application/vnd​.ms-excel;ppa;application/vnd.ms-powerpoint;ppt;ap​plication/vnd.ms-powerpoint;pps;application/vnd.ms​-powerpoint;pot;application/vnd.ms-powerpoint;pwz;​application/vnd.ms-powerpoint;mid;audio/mid;midi;a​udio/mid;enc;video/mpeg;m1v;video/mpeg;mp2;video/m​peg;mpa;video/mpeg;mpe;video/mpeg;mpeg;video/mpeg;​mpg;video/mpeg;psd;image/x-photoshop;bmp;image/bmp​;pic;image/pic;ra;audio/vnd.rn-realaudio;rf;image/​vnd.rf-realflash;rm;application/vnd.rn-realmedia;r​p;image/vnd.rn-realpix;ram;audio/x-pn-realaudio;rm​m;audio/x-pn-realaudio;rnx;application/vnd.rn-real​player;rt;text/vnd.rn-realtext;rv;video/vnd.rn-rea​lvideo;smi;application/smil;ssm;application/stream​ingmedia;sithqx;application/mac-binhex40;sit;appli​cation/x-stuffit"
    WebServer.Port=80  [### or 8000]
    WebServer.Enabled=True
    WebServer.RootPath=C:\Program Files\National Instruments\LabVIEW 8.5\www
    WebServer.TcpAccess="c+*"
    WebServer.ViAccess="+*"
     [hints welcome here]. That is, I'm at the moment unable to use even my workaround 1 above.
    Enrico

Maybe you are looking for

  • Is anyone having difficulties with the new yahoo mail and mac 10.8.5?

    I am using an older intel based imac desktop...it is updated to 10.8.5    I use Safari to browse.   I use Yahoo for my email.  I know...don't say it.  Please.  LOL Anyway, it seems that Yahoo has changed their email system (again) and I am having all

  • List of Roles avaliable in BW

    Hi Is there any Table avaliable in BI from where we can have all the list of roles starts with Z** and the role names so that i can down load/export to a excel Thanks

  • "Relevant Only" attributes in web service decision report

    Is there a way to only get "Relevant Only" attributes evaluation in a web service decision report especially leveraging the Siebel Connector. I noticed that whether we could "Base" or "Full" the decision report contains more items than we would notic

  • Mass meter reading result changes

    Hi , Is there any functional module or bapi or user exits for the mass meter reading results changes. Please let me know. Thanks in advnace ... Regards, Santhosh.

  • Multiple installs on software update?

    Hi...can anyone tell me why when I do a 'software update' I keep seeing I need to update my firmware 1.5.1? It looks like I've also installed it 7 times now! (see system log below): 2008-04-23 07:34:32 -0400: Installed "MacBook Pro EFI Firmware Updat