Appletviewer: Yes - Browser: No

Please help, I'm just starting out with Java but can't even manage to say "Hello World". Which reminds me, manners!
Hello World (not quite as impressive as I hoped for but it will do for now),
From the appletviewer, it works fine but when I use the same HTML page and load that into Internet Explorer, nothing happens. When I hover the mouse over the area where I guess the applet should be I get an error message in the task bar that says, "class HelloWorld not found".
Here's some detailed information regarding my settings:
Win2000, Internet Explorer ver 6 (settings for internet and intranet RE Java are both "low")
Java Version: J2ee-1.4
I've got the J2EE server up and running but think this has got nothing to do with applets and is used for testing server side java code.
The html wrapper for the applet is in the same directory "c:\temp" as the HelloWorld.class file.
The HelloWorld.java (source) was compiled with the javac compiler that comes with J2-1.4
Here's the HTML content:
<HTML><HEAD><TITLE>Hello World</TITLE></HEAD>
<BODY>
<P>Testing, testing...</P>
<applet code="HelloWorld.class" width=150 height=100 alt="God Jam It!"></applet>
</BODY>
</HTML>
Here's the output from the Java Console:
Error loading class: HelloWorld
java.lang.NoClassDefFoundError
java.lang.ClassNotFoundException: HelloWorld
     at com/ms/vm/loader/URLClassLoader.loadClass
     at com/ms/vm/loader/URLClassLoader.loadClass
     at com/ms/applet/AppletPanel.securedClassLoad
     at com/ms/applet/AppletPanel.processSentEvent
     at com/ms/applet/AppletPanel.processSentEvent
     at com/ms/applet/AppletPanel.run
     at java/lang/Thread.run
Is this some kind of typical Microsoft Sabotage? Could someone please tell me what I have to do to run this under Explorer? Update the run-time interpreter somehow? Am I missing something really obvious?
As a sidenote, I see that Microsoft has created J#. Apart from trying to derail Sun's Java with fragmented and incompatible standards, does anyone see any real benefits to J# (guess the answers might be a little biased coming from a Sun forum)?

Managed to sort it out. I posted before reading the forum, sorry. In my defence I spent a few hours playing around with this and got more and more frustrated, so I threw my hands up and asked for help.
It turns out that I needed to upgrade the vm, it was running under the default Microsoft version, with no mention of Sun in the advanced tab. After downloading Sun's vm, everything now works. This has been the most satisfying "Hello World" program I've ever written.
My next project is to write a little java replacement for the HTML HR (horizontal ruler). I want to do a little fractal, l-system like divider, perhaps with a green background and yellow lines (or user defined would be even better, with these colours as a default). Introduce a little randomness into it, should be cool.
Anyway, it's good to be here. I like software that's not from Big Brother. Sorry once again for jumping the gun.
Shambolica (It's American-Indian, means he whose life is a shambles)

Similar Messages

  • Appletviewer and browser diff

    I used getParameter("somename") to obtain the value of some parameter from the html file, this value has some line separators. I use StringTokenizer with "/n/r" to parse the value. When I run the html file on appletviewer, the value was parsed correctly. However when I run it on a browser(either with ms jvm or jvm1.3 from sun), getParameter just returns the string without any line separators, hence I can't parse it correctly.
    why is this happening? my appletviewer is also 1.31. can someone help?
    thanks

    I'd be surprised if line separators were allowed in html entity attribute values.

  • Can't get browser.cache.disk.parent_directory to work

    I've tried to use the browser.cache.disk.parent_directory method to move my disk cache, but this isn't working.
    Details:
    I did a clean install of Firefox 22 on Vista, and then, following instructions, went into about:config, created the browser.cache.disk.parent_directory key, and gave it the value of a directory I had created.
    I then visited many different sites (no, not in private browsing mode), and noticed nothing was being saved there. In fact, the new directory is absolutely empty (no hidden folders either).
    Looking at about:cache, I am informed:
    Offline cache device
    Number of entries: 0
    Maximum storage size: 512000 KiB
    Storage in use: 0 KiB
    Cache Directory: C:\Users\XXX\AppData\Local\Mozilla\Firefox\Profiles\XXX.default\OfflineCache
    And yes, browser.cache.disk.enable is set to true.
    This is true regardless of whether I am using my admin account with no extensions or my standard user account with several extensions.
    Advice?

    the-edmeister, I carefully read the material in your link before making the changes, and then again before posting this question, and yet again now. I hate to be snide, but can you point out what there is in this link that addresses my question? (And yes, browser.cache.disk.capacity is obviously set to a positive value.)
    If it helps, I'm attaching a screencap from about:config.

  • Question about Java Applet Jar file signing.

    These questions pertain to Java 6 Standard Edition 1.6.0_22-b04 and later.
    I have gone through the Oracle Java Tutorial for generate public and private key information
    to sign a jar file, and how to sign the jar itself, all at
    [http://java.sun.com/developer/onlineTraining/Programming/JDCBook/signed.html|http://java.sun.com/developer/onlineTraining/Programming/JDCBook/signed.html]
    , and seek some clarification on the following related questions:
    -In order to "escape" the java applet sandbox that exists around the client's
    copy of the applet running in their web browser, ie.
    (something forbidden by default), is verification of the signed applet enough, or is a policy file required
    to stipulate these details?
    -using the policytool policy file generator, what do I need to add under "Principals"
    (if anything) when dealing with a Java applet? Are Codebase and SignedBy simply author information?
    -If I choose to use a java.security.Permission subclass object set up in equivalent fashion within the Applet,
    which class within the Applet jar do I instantiate that object in? Does it need to be mentioned
    in the applet's jar Manifest.MF file?
    -Is the "keystore database" a java language service/process which runs in
    the Server's memory and is simply accessed and started by default
    by the client verifier program (appletview/web browser)?
    -The public key certificate file (*.cer) is put in the webserver directory holding
    the Applet jar file (ie. Apache Tomcat, for example).
    -Presumably, the web browser detects the signed jar
    and certificate file, and provides the browser pop up menu asking the user
    about a new, non recognised certificate (initially).
    Is this so?
    -With this being the case, can the applet now escape
    the sandbox, be it with or without the stipulated
    policy permissions?

    848439 wrote:
    -In order to "escape" the java applet sandbox that exists around the client's
    copy of the applet running in their web browser, ie.
    (something forbidden by default), is verification of the signed applet enough, or is a policy file required
    to stipulate these details?Just sign the applet, the policy file is not necessary.
    -Is the "keystore database" a java language service/process which runs in
    the Server's memory and is simply accessed and started by default
    by the client verifier program (appletview/web browser)?No.
    -The public key certificate file (*.cer) is put in the webserver directory holding
    the Applet jar file (ie. Apache Tomcat, for example).No. For a signed Jar, all the information is contained inside the Jar.
    -Presumably, the web browser detects the signed jar
    and certificate file, and provides the browser pop up menu asking the user
    about a new, non recognised certificate (initially).
    Is this so?No. It is the JVM that determines when to pop the confirmation dialog.
    -With this being the case, can the applet now escape
    the sandbox, ..Assuming the end-user OK's the trust prompt, yes.
    ..be it with or without the stipulated
    policy permissions?Huh?

  • [Solved] Ncmpcpp Visualizer Failed To Load (Blank)

    I've install ncmpcpp and mpd and I've followed each guide to enable visualization. Unfortunately I don't know what have cause it to failed to load.
    Everytime I hit '9' to reveal it, it just showing blank terminal..for your information all of my songs just played fine.
    I used config from one of our member via this thread. here is my .ncmpcpp/config:
    ##### connection settings #####
    mpd_host = "localhost"
    mpd_port = "6600"
    mpd_music_dir = "/home/drfreddy/Music"
    mpd_connection_timeout = "5"
    mpd_crossfade_time = "1"
    mpd_communication_mode = "notifications" (polling/notifications)
    visualizer_fifo_path = "/tmp/mpd.fifo"
    visualizer_output_name = "my_fifo"
    visualizer_sync_interval = "1"
    visualizer_type = "wave" (spectrum/wave)
    system_encoding = "utf-8"
    ##### delays #####
    playlist_disable_highlight_delay = "5"
    message_delay_time = "4"
    # Playlist
    song_columns_list_format = "(7f)[cyan]{l} (25)[blue]{a} (40)[red]{t|f} (30)[magenta]{b}"
    song_list_format = "{$3[%l]$9} {$5%a$9} - {$2%t$9} - {$6%f$9}"
    now_playing_prefix = "$b$1» "
    now_playing_suffix = "$/b"
    playlist_display_mode = "columns" (classic/columns)
    autocenter_mode = "yes"
    centered_cursor = "yes"
    cyclic_scrolling = "yes"
    mouse_list_scroll_whole_page = "no"
    # # Bars
    song_status_format = "{%a - }{%t - }{%b}"
    progressbar_look = "─╼ "
    titles_visibility = "no"
    header_visibility = "no"
    statusbar_visibility = "yes"
    # Browser
    browser_playlist_prefix = "$2plist »$9 "
    browser_display_mode = "classic" (classic/columns)
    # Colors
    discard_colors_if_item_is_selected = "yes"
    header_window_color = "default"
    volume_color = "cyan"
    state_line_color = "white"
    state_flags_color = "green"
    main_window_color = "default"
    color1 = "cyan"
    color2 = "black"
    main_window_highlight_color = "red"
    progressbar_color = "cyan"
    statusbar_color = "white"
    active_column_color = "red"
    visualizer_color = "cyan"
    # Others
    song_window_title_format = "MPD: {%a > }{%t}|{%f}"
    search_engine_display_mode = "columns" (classic/columns)
    follow_now_playing_lyrics = "yes"
    display_screens_numbers_on_start = "no"
    user_interface = "alternative" (classic/alternative)
    And here is my .mpdconf:
    # An example configuration file for MPD
    # See the mpd.conf man page for a more detailed description of each parameter.
    # Files and directories #######################################################
    # This setting controls the top directory which MPD will search to discover the
    # available audio files and add them to the daemon's online database. This
    # setting defaults to the XDG directory, otherwise the music directory will be
    # be disabled and audio files will only be accepted over ipc socket (using
    # file:// protocol) or streaming files over an accepted protocol.
    music_directory "/home/drfreddy/Music/"
    # This setting sets the MPD internal playlist directory. The purpose of this
    # directory is storage for playlists created by MPD. The server will use
    # playlist files not created by the server but only if they are in the MPD
    # format. This setting defaults to playlist saving being disabled.
    playlist_directory "~/.mpd/playlists"
    # This setting sets the location of the MPD database. This file is used to
    # load the database at server start up and store the database while the
    # server is not up. This setting defaults to disabled which will allow
    # MPD to accept files over ipc socket (using file:// protocol) or streaming
    # files over an accepted protocol.
    db_file "~/.mpd/database"
    # These settings are the locations for the daemon log files for the daemon.
    # These logs are great for troubleshooting, depending on your log_level
    # settings.
    # The special value "syslog" makes MPD use the local syslog daemon. This
    # setting defaults to logging to syslog, otherwise logging is disabled.
    #log_file "~/.mpd/log"
    # This setting sets the location of the file which stores the process ID
    # for use of mpd --kill and some init scripts. This setting is disabled by
    # default and the pid file will not be stored.
    #pid_file "~/.mpd/pid"
    # This setting sets the location of the file which contains information about
    # most variables to get MPD back into the same general shape it was in before
    # it was brought down. This setting is disabled by default and the server
    # state will be reset on server start up.
    #state_file "~/.mpd/state"
    # The location of the sticker database. This is a database which
    # manages dynamic information attached to songs.
    #sticker_file "~/.mpd/sticker.sql"
    # General music daemon options ################################################
    # This setting specifies the user that MPD will run as. MPD should never run as
    # root and you may use this setting to make MPD change its user ID after
    # initialization. This setting is disabled by default and MPD is run as the
    # current user.
    user "drfreddy"
    # This setting specifies the group that MPD will run as. If not specified
    # primary group of user specified with "user" setting will be used (if set).
    # This is useful if MPD needs to be a member of group such as "audio" to
    # have permission to use sound card.
    #group "nogroup"
    # This setting sets the address for the daemon to listen on. Careful attention
    # should be paid if this is assigned to anything other then the default, any.
    # This setting can deny access to control of the daemon.
    # For network
    bind_to_address "any"
    # And for Unix Socket
    #bind_to_address "~/.mpd/socket"
    # This setting is the TCP port that is desired for the daemon to get assigned
    # to.
    port "6600"
    # This setting controls the type of information which is logged. Available
    # setting arguments are "default", "secure" or "verbose". The "verbose" setting
    # argument is recommended for troubleshooting, though can quickly stretch
    # available resources on limited hardware storage.
    log_level "default"
    # If you have a problem with your MP3s ending abruptly it is recommended that
    # you set this argument to "no" to attempt to fix the problem. If this solves
    # the problem, it is highly recommended to fix the MP3 files with vbrfix
    # (available from <http://www.willwap.co.uk/Programs/vbrfix.php>), at which
    # point gapless MP3 playback can be enabled.
    gapless_mp3_playback "yes"
    # Setting "restore_paused" to "yes" puts MPD into pause mode instead
    # of starting playback after startup.
    #restore_paused "no"
    # This setting enables MPD to create playlists in a format usable by other
    # music players.
    #save_absolute_paths_in_playlists "no"
    # This setting defines a list of tag types that will be extracted during the
    # audio file discovery process. The complete list of possible values can be
    # found in the mpd.conf man page.
    #metadata_to_use "artist,album,title,track,name,genre,date,composer,performer,disc"
    # This setting enables automatic update of MPD's database when files in
    # music_directory are changed.
    auto_update "yes"
    # Limit the depth of the directories being watched, 0 means only watch
    # the music directory itself. There is no limit by default.
    #auto_update_depth "3"
    # Symbolic link behavior ######################################################
    # If this setting is set to "yes", MPD will discover audio files by following
    # symbolic links outside of the configured music_directory.
    #follow_outside_symlinks "yes"
    # If this setting is set to "yes", MPD will discover audio files by following
    # symbolic links inside of the configured music_directory.
    #follow_inside_symlinks "yes"
    # Zeroconf / Avahi Service Discovery ##########################################
    # If this setting is set to "yes", service information will be published with
    # Zeroconf / Avahi.
    #zeroconf_enabled "yes"
    # The argument to this setting will be the Zeroconf / Avahi unique name for
    # this MPD server on the network.
    #zeroconf_name "Music Player"
    # Permissions #################################################################
    # If this setting is set, MPD will require password authorization. The password
    # can setting can be specified multiple times for different password profiles.
    #password "password@read,add,control,admin"
    # This setting specifies the permissions a user has who has not yet logged in.
    #default_permissions "read,add,control,admin"
    # Input #######################################################################
    input {
    plugin "curl"
    # proxy "proxy.isp.com:8080"
    # proxy_user "user"
    # proxy_password "password"
    # Audio Output ################################################################
    # MPD supports various audio output types, as well as playing through multiple
    # audio outputs at the same time, through multiple audio_output settings
    # blocks. Setting this block is optional, though the server will only attempt
    # autodetection for one sound card.
    # See <http://mpd.wikia.com/wiki/Configuration#Audio_Outputs> for examples of
    # other audio outputs.
    # An example of an ALSA output:
    audio_output {
    type "alsa"
    name "Beats by Dr. Freddy"
    device "hw:0,0" # optional
    format "44100:16:2" # optional
    mixer_type "software" # optional
    mixer_device "default" # optional
    mixer_control "PCM" # optional
    mixer_index "0" # optional
    # An example of an OSS output:
    #audio_output {
    # type "oss"
    # name "My OSS Device"
    ## device "/dev/dsp" # optional
    ## format "44100:16:2" # optional
    ## mixer_type "hardware" # optional
    ## mixer_device "/dev/mixer" # optional
    ## mixer_control "PCM" # optional
    # An example of a shout output (for streaming to Icecast):
    #audio_output {
    # type "shout"
    # encoding "ogg" # optional
    # name "My Shout Stream"
    # host "localhost"
    # port "8000"
    # mount "/mpd.ogg"
    # password "hackme"
    # quality "5.0"
    # bitrate "128"
    # format "44100:16:1"
    ## protocol "icecast2" # optional
    ## user "source" # optional
    ## description "My Stream Description" # optional
    ## url "http://example.com" # optional
    ## genre "jazz" # optional
    ## public "no" # optional
    ## timeout "2" # optional
    ## mixer_type "software" # optional
    # An example of a recorder output:
    #audio_output {
    # type "recorder"
    # name "My recorder"
    # encoder "vorbis" # optional, vorbis or lame
    # path "/var/lib/mpd/recorder/mpd.ogg"
    ## quality "5.0" # do not define if bitrate is defined
    # bitrate "128" # do not define if quality is defined
    # format "44100:16:1"
    # An example of a httpd output (built-in HTTP streaming server):
    #audio_output {
    # type "httpd"
    # name "My HTTP Stream"
    # encoder "vorbis" # optional, vorbis or lame
    # port "8000"
    # bind_to_address "0.0.0.0" # optional, IPv4 or IPv6
    ## quality "5.0" # do not define if bitrate is defined
    # bitrate "128" # do not define if quality is defined
    # format "44100:16:1"
    # max_clients "0" # optional 0=no limit
    # An example of a pulseaudio output (streaming to a remote pulseaudio server)
    #audio_output {
    # type "pulse"
    # name "My Pulse Output"
    ## server "remote_server" # optional
    ## sink "remote_server_sink" # optional
    ## Example "pipe" output:
    #audio_output {
    # type "pipe"
    # name "my pipe"
    # command "aplay -f cd 2>/dev/null"
    ## Or if you're want to use AudioCompress
    # command "AudioCompress -m | aplay -f cd 2>/dev/null"
    ## Or to send raw PCM stream through PCM:
    # command "nc example.org 8765"
    # format "44100:16:2"
    ## An example of a null output (for no audio output):
    #audio_output {
    # type "null"
    # name "My Null Output"
    # mixer_type "none" # optional
    # This setting will change all decoded audio to be converted to the specified
    # format before being passed to the audio outputs. By default, this setting is
    # disabled.
    #audio_output_format "44100:16:2"
    # If MPD has been compiled with libsamplerate support, this setting specifies
    # the sample rate converter to use. Possible values can be found in the
    # mpd.conf man page or the libsamplerate documentation. By default, this is
    # setting is disabled.
    #samplerate_converter "Fastest Sinc Interpolator"
    # Normalization automatic volume adjustments ##################################
    # This setting specifies the type of ReplayGain to use. This setting can have
    # the argument "off", "album" or "track". See <http://www.replaygain.org>
    # for more details. This setting is off by default.
    #replaygain "album"
    # This setting sets the pre-amp used for files that have ReplayGain tags. By
    # default this setting is disabled.
    #replaygain_preamp "0"
    # This setting enables on-the-fly normalization volume adjustment. This will
    # result in the volume of all playing audio to be adjusted so the output has
    # equal "loudness". This setting is disabled by default.
    #volume_normalization "no"
    # MPD Internal Buffering ######################################################
    # This setting adjusts the size of internal decoded audio buffering. Changing
    # this may have undesired effects. Don't change this if you don't know what you
    # are doing.
    #audio_buffer_size "2048"
    # This setting controls the percentage of the buffer which is filled before
    # beginning to play. Increasing this reduces the chance of audio file skipping,
    # at the cost of increased time prior to audio playback.
    #buffer_before_play "10%"
    # Resource Limitations ########################################################
    # These settings are various limitations to prevent MPD from using too many
    # resources. Generally, these settings should be minimized to prevent security
    # risks, depending on the operating resources.
    #connection_timeout "60"
    #max_connections "10"
    #max_playlist_length "16384"
    #max_command_list_size "2048"
    #max_output_buffer_size "8192"
    # Client TCP keep alive #######################################################
    # For clients connected by TCP on supported platforms.
    # Allows detection of dangling connections due to clients disappearing from
    # the network without closing their connections.
    # This is not usually necessary but can be useful in cases such as wifi connectected
    # clients that go in and out of network range or turn off wifi without closing their
    # connections. Combined with low max_connections this can soon cause clients to not
    # be able to connect.
    # Enable tcp keepalive on new client connections (default is "no")
    #tcp_keep_alive "no"
    # Time in seconds since the last communication on the connection and before
    # the keepalive probing is started. (default is 7200 seconds)
    #tcp_keep_alive_idle "7200"
    # Interval in seconds between keepalive probes, once a probe started.
    # (default is 75 seconds)
    #tcp_keep_alive_interval "75"
    # Number of failed probes before the connection is pronounced dead and
    # the connection is closed. (default is 9 times)
    #tcp_keep_alive_count "9"
    # Character Encoding ##########################################################
    # If file or directory names do not display correctly for your locale then you
    # may need to modify this setting.
    #filesystem_charset "UTF-8"
    # This setting controls the encoding that ID3v1 tags should be converted from.
    #id3v1_encoding "ISO-8859-1"
    # SIDPlay decoder #############################################################
    # songlength_database:
    # Location of your songlengths file, as distributed with the HVSC.
    # The sidplay plugin checks this for matching MD5 fingerprints.
    # See http://www.c64.org/HVSC/DOCUMENTS/Songlengths.faq
    # default_songlength:
    # This is the default playing time in seconds for songs not in the
    # songlength database, or in case you're not using a database.
    # A value of 0 means play indefinitely.
    # filter:
    # Turns the SID filter emulation on or off.
    #decoder {
    # plugin "sidplay"
    # songlength_database "/media/C64Music/DOCUMENTS/Songlengths.txt"
    # default_songlength "120"
    # filter "true"
    audio_output {
    type "fifo"
    name "my_fifo"
    path "/tmp/mpd.fifo"
    Can somebody tell me how to enable the visualization? Am I missing something?
    Last edited by Archer1X (2013-02-07 10:48:34)

    Nevermind..got it working after configured that I have to put this line in .ncmpcpp/config:
    visualizer_look = "+|"
    Anybody have a better look for the visualizer?
    I also have tried several figures like "=="..hmm..kinda like it..
    Last edited by Archer1X (2013-02-07 10:49:13)

  • IOS 4.2 just killed my iPod...I guess contacting support's my only option?

    So I just tried to update to 4.2 today, and iTunes sat for ages on a screen that said "verifying download with Apple" or something like that, with the iPod displaying an Apple with a progress bar that isn't filled at all... iTunes eventually timed out and said something like an unknown error has occurred, and then...that's it.
    If I disconnect and reconnect the iPod, Windows makes the sound that it's recognized a new USB device, but iTunes doesn't 'see' it.
    Is there a way to force a firmware update or something? Is sending it to Apple the only option?

    I am a first time Apple iPod user. I've owned the iTouch 4th gen since early October.
    iTunes asked to do its update, I clicked yes, browsed then net for a bit and then iTunes told me that it's update had failed. Since then, iTunes won't register nor recognize it as an iPod. Running Windows Vista currently and my system tries to install what information that the iPod should be holding. Also asks for a disc, but it never came with a disc. So now, it has been stuck on the USB/iTunes screen for about 4 hours now.
    Yes I have tried all tips noted in this thread. For the time being, I shall be checking back every now and then to see if anything new pops up here and I am going to give Apple's Tech support a call tomorrow morning.

  • 5800 XM Few Issue

     I purchased my 5800XM 2 days ago....so i wanted to update its firmware
    After Reading all the problem with v20 i have decided not to get FM update...
    But i have some problem with my v11..
    1. when i forward a msg it is sent in three part althouth it is only one msg...
    2. my handwriting feature was removed from the msg writing feature so i did a *#7370# after that i am not able to play all the music files that were preloded in the card..when i click on them its says licence error get the licence? when i click on yes browser opens but nothing happened( all wap setting are ok i have no problem using it otherwise)
    3. the preloaded video are not playing properly when i seek them they stop or the i get a very dirty and crippled video....
    4. some time my friend complaint my number is busy although i was not using my cell so i checked it several time and some the problem do happens and when i press red button on the cell it start working that means i start getting calls...
    --->and is there any nokia made theme for these handset...if yes where i can get...
    --->I want to convet videos using non nokia video converder what setting do i use to get best result..like resolution framerate,videobit rate, audio bitrate, audio format... 

    Hi Ranjeet,
    Looks like yours is nasty issues.... I got a call form Nokia Costumer care regarding satisfaction survey (exactly after one month). After listening to my problems (surely she did not understood anything), Costumer care lady gave me nearest Nokia Care number and address.
    i'm yet to visit them, although not very hopeful, but I'll update you on response.
    I suggest you to visit Nokia care.
    -anm

  • Windows not gaining focus...

    Hello!
    After recent update (I can't recall having this issue before) windows that previously had focus, but lost it after I opened a new window, do not gain focus after I close the new window. This is very irritating, because now I have to click on the old window all the time, even though it is the top window, to give commands to it.
    The same thing happens also when switching spaces - if I have a window with focus in one space, quickly switch to another to check something (without clicking anywhere) and then go back to the first one, I have to click in the window otherwise I can't write or send commands to it. Even though the cursor is in the window and blinking as if it had focus (if it is an input field).
    A concrete example:
    I am writing this text in Firefox in a textbox on a webpage. I switch spaces forth and back. The cursor is still in the textbox and blinking, but whatever I press nothing happens. Firefox is still the active application (it has the menubar).
    I've tried searching, but wasn't lucky to find anything, is it just me?
    BR,
    stormmind

    It work well in my system. Either on appletview and browser.
    Firefox 3 on Debian Lenny, java 1.6.0_07-b06

  • Newsbeuter:custom colors show fine in urxvt alone -tmux just blk+white

    hoping my lack of detail here isn't foolish.
    I'm running a fairly minimalistic DWM system and as the subject tried to say,
    in urxvt newsbeuter observes the custom colors I've set in it's conf.
    Yet, when a tumx instance (in urxvt) is used loading newsbeuter results in
    just white text on the usual black background.
    obvious? love to know.
    Last edited by tweed (2012-07-03 23:24:07)

    hugely appreciated!
    search for 'term' and 'variable' in mine and not there.
    using mostly this:
    http://jasonwryan.com/blog/2010/01/07/t … ltiplexer/
    wondering though doubting it's my newsbeuter conf:
    auto-reload yes
    browser "dwb %u &>/dev/null &"
    confirm-exit yes
    feed-sort-order firsttag
    feedlist-format " %n %4i - %11u -%> %t"
    max-items 8000
    notify-beep yes
    reload-time 30
    text-width 220
    datetime-format ""
    feed-sort-order firsttag
    html-renderer "w3m -dump -T text/html"
    show-read-feeds yes
    unbind-key R
    bind-key ^R reload-all
    unbind-key q
    bind-key i quit
    unbind-key j
    unbind-key k
    bind-key k up
    bind-key j down
    bind-key k up
    bind-key J pagedown
    bind-key K pageup
    color background default default
    color listnormal color248 default
    color listfocus color255 color94
    color info color232 color64
    color article color252 default
    Perhaps the colors that the bottom of the above code post are bad and I'm defaulting to white text?
    the colors are great in urxvt alone as mentioned of course.
    Last edited by tweed (2012-07-03 23:54:38)

  • OBIEE 10.1.3.4 - Selection of reports based on prompts

    I have reports (requests) say 1,2,3 under category 'A', Reports (requests) 4,5,6 under category 'B'. Based on the dashboard prompt for Category, I need to display the corresponding reports(requests) in the dashboard. Can someone please help me do this.

    Hi,
    Can do this with guided navigation.
    Take two sections.Place reports 1,2,3 in section1 and reports 4,5,6 in section2.Create two intermediate report(Report1 & Report2)with only one column Category.
    Report1 - Add filter Category is not equal to B and Category is prompted in the report created and save it.
    Report2 - Add filter Category is not equal to A and Category is prompted in the report created and save it.
    Under Section1 Properties->Guided navigation->Select Reference Source Request to Yes->Browse and select the intermediate report Report1->Select Show Section to If request returns rows
    Under Section2 Properties->Guided navigation->Select Reference Source Request to Yes->Browse and select the intermediate report Report2->Select Show Section to If request returns rows
    Save it and run.
    Regarding guided navigation - http://bischool.wordpress.com/category/guided-navigation/
    http://gerardnico.com/wiki/dat/obiee/guided_navigation
    Regards,
    Srikanth

  • Pacman slow in Arch, but fast in Ubuntu

    Hello
    I searched among Pacman related topics on this forum, but I didn't find anything related to problem I have. It takes Pacman very long time to download many small files. Bandwidth isn't the case, but the time it takes Pacman to start downloading next package. My average ping to http://mir.archlinux.fr is about 70ms. When Pacman completes downloading packageN there's a few second lag till it will start downloading packageN+1. There's no such lag when I run Arch Linux in Ubuntu under KVM and using the same mirror.
    PS. I have ipv6 disabled.
    Last edited by Pawlerson (2010-10-09 13:41:19)

    Allan wrote:Have you set up /etc/hosts properly?
    Yes, browsing the web is very fast. My hosts file:
    127.0.0.1               localhost.localdomain   localhost desktop

  • Query doesnot show data

    Hi experts
    we have one data validation query where I am trying to see data according to Request numbers...For every year we have two requests...one Base data request and other Restated data request...
    Like that for 2009..its showing data for Base data request but not Restated data request
    ITS same problem with 2010 data requests...
    Do you know how to fix this problem?
    Thanks in advance.
    S Hayward.

    Couple of things:
    1. Are both the request kept in same cube?
       If yes, browse the cube data and see if you are able to see the request ID there.
       If no, then check the filter in the query and make sure that result is not filtered by infoprovider.
    2. Is your query running on cube directly or running on multiprovider?
       If not, check the multiprovider definition. You can try browing the data from multiprovider and see if you are getting desired result.
    - Danny

  • Error -6602 while connecting to samba shares.

    Hi everyone, i have some problems with samba client on MacOSX 10.5.8, the problem is that it connects to some shares and some not, and I don't know why, please help.
    Here is my samba configurations on Ubuntu server, the problem starts after logging as a user kuba with password, it shows Erro -6602. Login and pass are correct, I use them with a parallel desktops windows xp, and it works. Mac is working with other server which stands on PLD Linux. I don't know if it will be usefull but if i can tell you that password doesn't contain any special chars, the only one is undescore char. The same password and user with some additional letters works on PLD.
    I can connect to samba shares on this server with smbtree command, if I use
    smbclient //server/share -U user with a password authentication it shows a wrong password (but it's correct).
    When I delete the valid user definition I can connect to samba, but only with a readonly mode...
    [global]
    netbios name = ubunteon
    server string = ubunteon
    workgroup = *********
    announce as = NT Server
    announce version = 4.9
    security = share
    encrypt passwords = yes
    update encrypted = no
    unix password sync = no
    smb passwd file = /etc/samba/smbpasswd
    logon script = startup.bat
    logon drive =
    add user script = sudo /usr/sbin/useradd -g smbusers %u
    delete user script = sudo /usr/sbin/userdel -r %u
    add group script = sudo /usr/sbin/groupadd %g
    delete group script = sudo /usr/sbin/groupdel %g
    add user to group script = sudo /usr/sbin/usermod -G %g %u
    add machine script = sudo /usr/sbin/useradd -g smbmachines -c 'Konto komputera %I' -s /bin/false -d /var/lib/samba/nobody %u
    passwd chat debug = no
    passwd chat = New*UNIX*password %n\n ReType*new*UNIX*password %n\n passwd:*all*authentication*tokens*updatedsuccess fully*
    passwd program = /usr/bin/smbpasswd -L -a %u
    nt acl support = no
    nt pipe support = yes
    map to guest = Bad User
    log file = /var/log/samba/log.%m
    max log size = 50
    log level = 1
    os level = 255
    domain logons = no
    preferred master = yes
    domain master = yes
    local master = yes
    time server = yes
    browse list = yes
    enhanced browsing = yes
    idmap uid = 16777216-33554431
    idmap gid = 16777216-33554431
    winbind enum groups = yes
    winbind enum users = yes
    winbind use default domain = no
    winbind separator = +
    unix charset = UTF8
    display charset = UTF8
    dos charset = CP852
    wins support = yes
    read raw = yes
    write raw = yes
    oplocks = no
    level2 oplocks = no
    max xmit = 65535
    getwd cache = yes
    dos filetimes = yes
    dos filemode = yes
    dos filetime resolution = yes
    deadtime = 15
    default case = lower
    preserve case = yes
    short preserve case = yes
    case sensitive = no
    socket options = TCP_NODELAY IPTOS_LOWDELAY SO_SNDBUF=16384 SO_RCVBUF=16384
    dns proxy = no
    name resolve order = hosts lmhosts wins bcast
    guest account = guest
    admin users = smbroot
    invalid users = root
    load printers = yes
    printing = cups
    printcap name = cups
    [www]
    comment = Webpages
    path = /home/user/public_html
    public = no
    read only = no
    browseable = no
    create mask = 0755
    directory mask = 0755
    valid users = user
    browseable = yes
    writeable = yes
    #printable = yes
    [devel]
    comment = Development Zone
    path = /home/user/0-Developement
    public = no
    read only = no
    browseable = no
    create mask = 0755
    directory mask = 0755
    valid users = user
    browseable = yes
    writeable = yes
    #printable = yes
    [pdfprints]
    comment = Development Zone
    path = /home/user/PDF
    public = no
    read only = no
    browseable = no
    create mask = 0755
    directory mask = 0755
    valid users = user
    browseable = yes
    writeable = yes
    #printable = yes
    [home]
    comment = Home
    path = /home/user
    public = no
    read only = no
    browseable = yes
    writeable = yes
    valid users = user
    [oferty]
    comment = Oferty
    path = /home/user/public_html/2-Oferty
    public = no
    read only = no
    browseable = yes
    writeable = yes
    valid users = user
    #udostepnienia widziane przez wszystkich
    #drukarki
    [printers]
    comment = Drukarki sieciowe
    browseable = no
    path = /var/spool/samba
    printable = yes
    writable = no
    create mode = 0700
    #drivery do drukarek sieciowych
    [print$]
    path = /srv/samba/printers
    guest ok = yes
    browseable = no
    read only = yes
    write list = smbroot
    #katalog domowy
    --------------------------------------------------------------

    Hi Ramya,
    Following checks may help to resolve the issue.
    1) Whether Port 21 is open and allowed to connect with FTP.
    2) Ping, FTP and telnet possible from PI box to FTP.
    3) User mentioned in Communication channel have authorization for read and write on FTP server.
    4) FTP ports are open.
    5) Firewall setting done properly.

  • About Applet

    Does a class extends java.applet.Applet can be declared with no access modifiers,that is
    friendly or default.
    If not,why and why it compiles correctly but throws "load: xxx.class is not public or has no public constructor."
    at runtime.

    It compiles okay because in java you can have a class with a default scope, BUT when you try to load it through the appletviewer or browser, the JVM tries to load the class BUT the class loader does NOT have access to it as the access modifier is set to default; meaning that only classes in the package where your applet is declaired can access it.
    Hope this makes sence :-)
    Regards
    Omer

  • AccessControlException on localhost??

    hi there!
    i have big problems with my applet.
    1. I want to resize pictures, save them in a file on the clientcomputer...
    Now when I start the client (in a signed jar file) with appletviewer (or browser) I get the following Exception:
    java.security.AccessControlException: access denied (java.io.FilePermission \gui\DBTool.class read)When I start the applet (not packed in jar) I get no exception and everything works fine.
    2. how to do the policy settings and import them?? I�m new to this theme.
    thanx for your help

    Why do i need an inputStream when I call the applet from a html file? Isnt this the job from the java vm? please give me more information.
    the DBTool.class extends applet. here is the full output of the error:
    java.security.AccessControlException: access denied (java.io.FilePermission \gui\DBTool.class read)
         at java.security.AccessControlContext.checkPermission(Unknown Source)
         at java.security.AccessController.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkRead(Unknown Source)
         at java.io.File.isDirectory(Unknown Source)
         at sun.net.www.protocol.file.FileURLConnection.connect(Unknown Source)
         at sun.net.www.protocol.file.FileURLConnection.initializeHeaders(Unknown Source)
         at sun.net.www.protocol.file.FileURLConnection.getContentLength(Unknown Source)
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)jar -tf dbtool.jar lists:
    class/./gui/applet/ValueSaver.class
    class/./gui/DBTool$1.class
    class/./gui/DBTool$2.class
    class/./gui/DBTool$3.class
    class/./gui/DBTool$4.class
    class/./gui/DBTool.class
    I think the Problem is in my <applet>-tag or in my .jar file. When I use htmlconverter i get the same error. When I dont use it in a jar-file it works fine. do you have other ideas?
    jules

Maybe you are looking for

  • Ceating Sets for Cost Centers in GS01

    Could someone please guide me in the steps to take for creating a set for cost centers so when DP90 (Billing Request fro service order) is generated it looks at all cost centers... I went to GS01 created a name of Cost Center used table AD01ATTR and

  • Standard Trial Balance Sheet Template

    Hi.. What is the Standard Trial Balance Sheet Template available in SAP B1. Also pls let me know from where i can fetch this template from wihtin the system ? Regards Rahul

  • BEx Query via ABAP Programm (without Querydesigner) ???

    hello friends, is there anybody who knows a solution to gernerate a BEx Query without using the BEx Querydesigner, with ABAP coding, only!? I´m looking for a solution, whre f.e. the customer selected character, keyfigures and selections in an externa

  • Help required installing adobe reader

    I have tried un-succesfully many times to install adobe reader but keep getting error1321. I am not the most gifted of IT users so explanations seem complicated. Is there an easy solution to this problem?

  • Problem with grep and awk...

    mplayer -nosound -vo null -frames 1 movie.avi My last serveral line of output is: VDec: vo config request - 720 x 540 (preferred colorspace: Planar YV12) VDec: using Planar YV12 as output csp (no 0) Movie-Aspect is 1.33:1 - prescaling to correct movi