JNI double trouble

Hi,
I have written a java application which sucessfully access the cryptoAPI functions. I am trying to convert it inot an applet. I get the following error when i open it in IE.
before
java.lang.UnsatisfiedLinkError: no Msgimpl in java.library.path
at java.lang.ClassLoader.loadLibrary(Unknown Source)
at java.lang.Runtime.loadLibrary0(Unknown Source)
at java.lang.System.loadLibrary(Unknown Source)
at cryptoJNI.<clinit>(cryptoJNI.java:20)
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
at java.lang.reflect.Constructor.newInstance(Unknown Source)
at java.lang.Class.newInstance0(Unknown Source)
at java.lang.Class.newInstance(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)
The following were the steps that i followed
1.javac cryptoJNI.java
2javah -jni cryptoJNI
3.cl -IC:\Amsapps\WebSphere\AppServer\java\include -I"C:\Program Files\Microsoft SDK\include" -LD CryptoJNIImp.c advapi32.lib crypt32.lib -FeMsgimpl.dll
4.jar cvf cryptoJNI.jar cryptoJNI.class
5.jarsigner -keystore jnikeystore -storepass password -keypass passwd12 -signedjar scryptoJNI.jar cryptoJNI.jar jnikeyalias
6.start cryptoJNI.html
In step number 4, should the dll be also added to the jar?
My current working directory is c:\vivek work\signedcode. I am pasting the java and the HTML file for your reference. PLease help
cryptoJNI.java
import java.awt.*;
import java.io.*;
import java.lang.*;
import java.applet.*;
public class cryptoJNI extends Applet {
public void init(){
cryptoJNI app = new cryptoJNI();
app.crypto("My");
private native void crypto(String store);
static {
System.out.println("before");
System.loadLibrary("Msgimpl");
System.out.println("After");
public void paint(Graphics g) {
g.setColor(Color.blue);
g.setColor(Color.magenta);
// g.drawString(test(), 120, 50);
g.drawString("Signed 123", 120, 80);
cryptoJNI.html
<html>
<title> CRYPTO JNI</title>
<h1> Calling the keystore </h1>
<hr>
<APPLET CODE = cryptoJNI.class archive="scryptoJNI.jar" WIDTH=500 HEIGHT=500>
</APPLET>
<hr>
</html>
I have tried putting the MSgimpl.dll in c:\winnt\system32, but it did not work!!

My java.library.path points to
C:\WINNT\SYSTEM32;.;C:\WINNT\system32;C:\WINNT;C:\WINNT\SYSTEM32;C:\WINNT;C:\WIN
NT\SYSTEM32\WBEM;C:\PROGRAM FILES\LOTUS\NOTES;C:\DMI\WIN32\BIN;c:\Program Files\
Common Files\Adaptec Shared\System;C:\Program Files\Rational\common;C:\Amsapps\W
ebSphere\AppServer\java\bin;C:\Program Files\Microsoft Visual Studio\Common\Tool
s\WinNT;C:\Program Files\Microsoft Visual Studio\Common\MSDev98\Bin;C:\Program F
iles\Microsoft Visual Studio\Common\Tools;C:\Program Files\Microsoft Visual Stud
io\VC98\bin
I tried putting Msgimpl.dll in one of the directories, i still get the same error. The code works perfectly if it is a non applet. DO u think this is something because of the "static" in my applet? I have pasted my applet code previously for people to have a look.

Similar Messages

  • Re: [iPlanet-JATO] Double Trouble

    Looks like the attachment will not be inlined by egroup's mailer so here is
    the table i was trying to send before:
    Current Type mapping (appologies for lousy formatting)
    ND ColumnDataType DATA_FIELD_TYPE_MAP
    DATA_FIELD_SQL_TYPE_MAP
    NO_TYPE String
    java.sql.Types.VARCHAR
    CHAR_TYPE String
    java.sql.Types.CHAR
    UNSIGNED_CHAR_TYPE String
    java.sql.Types.CHAR
    TINY_TYPE Short
    java.sql.Types.SMALLINT
    UNSIGNED_TINY_TYPE Short
    java.sql.Types.SMALLINT
    SHORT_TYPE Short
    java.sql.Types.SMALLINT
    UNSIGNED_SHORT_TYPE Short
    java.sql.Types.SMALLINT
    INT_TYPE Integer
    java.sql.Types.INTEGER
    UNSIGNED_INT_TYPE Integer
    java.sql.Types.INTEGER
    LONG_TYPE Long
    java.sql.Types.BIGINT
    UNSIGNED_LONG_TYPE Long
    java.sql.Types.BIGINT
    FLOAT_TYPE Float
    java.sql.Types.FLOAT
    DOUBLE_TYPE Double
    java.sql.Types.DOUBLE
    DECIMAL_TYPE java.math.BigDecimal
    java.sql.Types.DECIMAL
    DATE_TYPE java.sql.Date
    java.sql.Types.DATE
    DATETIME_TYPE java.sql.Timestamp
    java.sql.Types.TIMESTAMP
    DURATION_TYPE DONT_KNOW_CLASS_TYPE
    DONT_KNOW_CLASS_TYPE
    STRING_TYPE String
    java.sql.Types.VARCHAR
    BLOB_TYPE Object
    java.sql.Types.BLOB
    UNQUOTED_STRING_TYPE DONT_KNOW_CLASS_TYPE DONT_KNOW_CLASS_TYPE
    BOOLEAN_TYPE Boolean
    java.sql.Types.BINARY
    USER_DEFINED_TYPE DONT_KNOW_CLASS_TYPE
    java.sql.Types.JAVA_OBJECT
    Translation Tool Type Mapping Structures
    The current code generation structures that are responsible for supporting
    these type mappings at translation times are as follows:
    CodeGeneration.DATA_FIELD_TYPE_MAP
    The map is constructed from two arrays:
    CodeGeneration. ND_DATA_FIELD_DATA_TYPES
    CodeGeneration. MIGRATION_MODEL_DATA_TYPES
    CodeGeneration. DATA_FIELD_SQL_TYPE_MAP
    The map is constructed from two arrays:
    CodeGeneration. ND_DATA_FIELD_DATA_TYPES
    CodeGeneration. MIGRATION_MODEL_DATA_TYPES
    JATO Type Values
    The following JATO field values or member types are generated at translation
    time based on the type mappings:
    Model Field typing
    Model.member field type - drawn from CodeGeneration .DATA_FIELD_TYPE_MAP
    Descriptor typing
    QueryFieldDescriptor.fieldClass
    - drawn from CodeGeneration .DATA_FIELD_TYPE_MAP
    StoredProcParameterDescriptor.fieldClass
    - drawn from CodeGeneration .DATA_FIELD_TYPE_MAP
    StoredProcParameterDescriptor.sqlType
    - drawn from CodeGeneration.DATA_FIELD_SQL_TYPE_MAP
    ----- Original Message -----
    From: Mike Frisino <Michael.Frisino@S...>
    Sent: Thursday, January 04, 2001 12:19 PM
    Subject: Re: [iPlanet-JATO] Double Trouble
    Thanks John,
    Can you provide some more information that would help resolve this issue.
    It could be that the mapping rules we use during the translation need tobe
    adjusted.
    Specifically, what were the following ND property values you had for the
    field in question:
    ND Datafield property "ColumnDataType"
    ND Datafield property "ColumnDataTypeText"
    ND Datafield property "NativeType"
    ND Datafield property "NativeTypeText"
    You see, during the translation we had to choose to map from the originalND
    type information to a corresponding java or java.sql type.
    We were not certain whether to favor ND's "ColumnDataType" or ND's
    "NativeType" value.
    We came up with rules based on mapping ND's ColumnDataType. Those rulesare
    detailed in the attachment.
    ----- Original Message -----
    From: <john.teceno@b...>
    Sent: Thursday, January 04, 2001 7:33 AM
    Subject: [iPlanet-JATO] Double Trouble
    Hey Guys,
    I've run across a problem retrieving Doubles back from an Oracle
    Database. The field is defined as a Number. When we converted the
    program from NetD, it was created with return values of Double. What
    is returned is not the correct value. For example, in the table the
    value is 123456, when I do a getInternalID(), it is returning 2.0. I
    am working on a work around, but I thought that I would post this
    anyway.
    John Teceno
    Back Bay Technologies
    [email protected]
    [Non-text portions of this message have been removed]
    [email protected]

    Thank you - Jin and Todd.
    Will try that.
    Atul
    --- In iPlanet-JATO@y..., Byung Jin Chun <bchun@n...> wrote:
    try using kregedit and modify the key for the jvm args, using the -x
    parameters for the 1.2 runtime
    Jin
    -----Original Message-----
    From: Todd Fast [mailto:<a href="/group/SunONE-JATO/post?protectID=101233080150035167169232031248066208071048">Todd.Fast@S...</a>]
    Sent: Tuesday, February 19, 2002 8:40 PM
    Subject: Re: [iPlanet-JATO] Re: OutOfMemoryError
    Atul--
    Out of curiosity - How do you modify the memory parameters for
    the container's VM ?? I know I should try to do some research but
    figured you may already have some insight and willingness to
    share.
    Please consider this as low priority.It differs by container; I don't remember details of any particular one.
    >
    Todd
    For more information about JATO, including download information, please
    visit:
    http://developer.iplanet.com/tech/appserver/framework/index.jsp
    <http://developer.iplanet.com/tech/appserver/framework/index.jsp>
    [Non-text portions of this message have been removed]

  • Double layer = double trouble

    Using iDVD 6 with latest updates and an MCE-branded Pioneer 8x DL drive.....Have previously burned successful double layer projects with this drive, including one that was 2.5 hrs long.
    My current DL project is a 4.4 Gb movie for my kid's kindergarten class with 15 chapters, plus an Extras section with a short 12 min clip (no chapters) and a 320-picture iPhoto slideshow (exported as QT movie to iDVD)
    Everything burns fine, but early into Chapter 12, playback sputters and then freezes. Completely unable to move past it with my set top DVD player's remote. Have duplicated this playback error on 5 other DVD players.
    To date I have re-burned this project using all combinations of Best Performance, Best Quality, +R DL, and -R DL. No matter what I try, I get the same playback freeze. It's not always in the same spot, but the symptoms are identical. IIRC, the error also replicates when I'm playing the project back in iDVD.
    So my question is....could the large number of chapters be responsible for this, or maybe the theme I used (the white reflection theme from 6.0)? I've completely run out of ideas, not to mention the fact that I've wasted $40 worth of DL DVDs (all Verbatim media BTW) trying to experiment with different settings.
    Breaking news.....I finally got fed up and just deleted the slideshow, making the project size small enough to fit on a single-layer -R. Guess what: it plays back perfectly. Something about this project, it seems, makes it toxic to double layer. Too bad, because except for the freeze it looked gorgeous. Any ideas??
    G5 Dual 2 GHz   Mac OS X (10.4.3)   MCE 8x DL Superdrive

    By this, are you referring to a double-layer +R?
    Yes. I forgot the DL.
    Are you saying these fears are unwarranted?
    I have had zero trouble creating and burning DL images.
    Also, how do you specify particular burn speeds (ie 2x) in iDVD?
    You have to burn with Disk Utility or Toast. You can control the speed there. I use Toast.
    Suggest you create a disc image and then burn the DVD. File/Save as Disc Image...
    http://docs.info.apple.com/article.html?path=iDVD/6.0/en/18.html
    This will isolate any encoding/burning issues you may encounter. Once the disc image is created, double-click the .img and burn the virtual disc that should appear on your desktop, using Toast to burn the DVD. Disk Utility to burn the .img file. Usually, you can select a burning speed in Disk Utility.
    There are variations to this process based on which OS X you are using...
    Open Disk Utility (in Utilities folder in Applications folder), click on the virtual disc (maybe the .img) in the left-hand window. Click the Burn icon. A new window should drop down and your SuperDrive tray will open after clicking the Burn icon. Insert a recordable DVD. (Verbatim DVD-R preferred by me.) Click the Close button. Wait. Select a burn speed. If you hold your mouse cursor over the pop-up it says: "Select a slower speed to work around burn failures," so select 4x or slower for best results. Then click the Burn button.
    -->If the virtual disk selection won't allow you to click the Burn icon, use the .img file instead. This may have changed in 10.3.9 and did change in Tiger.
    Also, you can use DVD Player to play the virtual disk to check your iDVD project before burning to DVD. Launch DVD Player. File/Open VIDEO_TS (Open DVD Media... in Player 4.6). Find the VIDEO_TS folder and open that. (The audio folder is for DVD-Audio disks.)
    http://docs.info.apple.com/article.html?artnum=93006

  • Double trouble

    Sorry about the pun, I blame bad TV. Anyway, I am having some problems converting doubles. I have written a c app that runs as a daemon, and my java app communicates with it over a tcp connection. The c app occasionally needs to send double values to the java app over the net connection. It does this by simply using memcpy to copy the double into a certain position in a byte array, which is then sent as a packet. Receiving this double is painfully simple for other c apps, and even VB because they can memcpy them back to a double. Java has no such ability. How do I take these 8 bytes and turn them back into a usable double value in java? I'm using the getInputStream().read(byte[]) method of a socket to receive the packet.
    I've tried:
    Double.longBitsToDouble(Pong[i] | Pong[i+1]<<8 | Pong[i+2]<<16 | Pong[i+3]<<24 | Pong[i+4]<<32 | Pong[i+5]<<40 | Pong[i+6]<<48 | Pong[i+7]<<56)
    I also tried reversing the order of the bytes.
    -DH

    RadcliffePike You think I should pass it through
    htonl() before I put it in my packet? I have no
    problem with that if it will make it easier on java.
    I just stuck with memcpy because it was fast and it
    t worked. I didn't originaly plan on bringing java
    in to this.
    -DHIts not necessarily that it will make it easier on Java, it can handle either ordering (see jsalonen's example for how to specify the order with nio). The reason to observe network byte ordering is precisely because of your last sentence. I'm sure there have been many times where a windows programmer has said "I don't plan on bringing Solaris into this" (and vice versa), but when you change your plans you start seeing odd problems that can be difficult to debug.
    Also, I think htonl is for 32 bit ints... I'm not sure if there is a library call for 64bit values, but it shouldn't be too difficult to roll your own htonll...
    Good luck.

  • Pal/NTSC - double trouble?

    I'm creating a DVD for use both in the UK (Pal) and in Canada (NTSC). Do I need two different video files - one in Pal, the other NTSC - or can the DVD play if it's set to multi-region?

    Ideally, you need one in PAL and the other in NTSC. The region coding is a different issue, but yes, you should set this to be region all (i.e. check all of the region code boxes) if you are distributing this on DVD-R. If you are replicating, then you can decide if you want to restrict it to region 1 & 2 if you like...
    Playing PAL in NTSC land seems more problematic than playing NTSC over here in the UK - many modern TVs are now able to handle NTSC natively, but not all are. All players will handle NTSC discs, mind you - it's the TV that's the weak link in the equation.
    If playback is for a computer, then PAL/NTSC is immaterial... computers don't conform to those standards and both will play equally, as long as the region info is OK.
    You cannot put PAL and NTSC on the same side of a DVD, but you can use double sided discs (although you can't get any label info on these, except in the hub ring area), or you'll be doing a two disc set... setting up two projects in DVDSP and encoding two sets of assets, etc, etc, etc!

  • CS4 Master Collection - double trouble

    I bought the CS4 Master Collection in 2009, I then installed it on my work station. Some months later I bought a laptop and then installed the sofware on that as well. After a while I was forced to re-format my work station that had the first innstallation on it, I then of course re-innstalled the Master Collectionon it. When I now try to open any Adobe application on the laptop I get stopped by a message saying I´have used the maximum amount of registrations (2) for this software. Well, I have NOT used more than two registrations so this is obvioulsy wrong. The other stationary machine is stored at a seperate location cause I am moving abroad, so now I can´t get to that either. What to do? This Adobe registration error is driving me mad! I payed big buck for the Master Collection and beacause of some technical error I can´t use it. Adobe has no number to call and the support is as we all know ZERO.
    I am very tempted to download cracked software cause of this.

    For the best assistance, I recommend our chat support at http://adobe.ly/v6wfLL.  Our chat representatives can provide a personalized experience to resolve the issues you describe.
    The number to call is 866-772-3623, if you prefer calling. See all options of contacting adobe at: http://www.adobe.com/aboutadobe/contact.html

  • Double trouble with video files...

    1) I can't watch any video stream unless I'm root. Here's the groups root resp. riwa are in.
    075607/home/riwa/# groups
    root bin daemon sys adm disk wheel log audio optical
    075724~$ groups
    video audio optical users
    2) Also the video and sound lag terribly (the sound works perfectly with xmms). I'm using xine-ui and've tried mplayer which doesn't lag but neither launches as regular user.
    080432/home/riwa/video$ mplayer Ali_G_interviews_Jenna_Jameson.mpg
    MPlayer 1.0pre7try2-4.0.3 (C) 2000-2005 MPlayer Team
    CPU: Advanced Micro Devices (Family: 8, Stepping: 2)
    Detected cache-line size is 64 bytes
    CPUflags: MMX: 1 MMX2: 1 3DNow: 1 3DNow2: 1 SSE: 1 SSE2: 1
    Compiled with runtime CPU detection - WARNING - this is not optimal!
    To get best performance, recompile MPlayer with --disable-runtime-cpudetection.
    85 audio & 196 video codecs
    Linux RTC init error in ioctl (rtc_irqp_set 1024): Permission denied
    Try adding "echo 1024 > /proc/sys/dev/rtc/max-user-freq" to your system startup scripts.
    Playing Ali_G_interviews_Jenna_Jameson.mpg.
    File not found: 'Ali_G_interviews_Jenna_Jameson.mpg'
    Failed to open Ali_G_interviews_Jenna_Jameson.mpg
    Exiting... (End of file)
    /Richard
    [EDIT]
    BTW: This is the output for launcing mplayer as root. No lag or anything but no menu (ie no subs, fullscreen etc)
    081337/home/riwa/video/~MegaNova.Org~ - [V-A] Hellsing 01-13# mplayer *8*
    MPlayer 1.0pre7try2-4.0.3 (C) 2000-2005 MPlayer Team
    CPU: Advanced Micro Devices (Family: 8, Stepping: 2)
    Detected cache-line size is 64 bytes
    CPUflags: MMX: 1 MMX2: 1 3DNow: 1 3DNow2: 1 SSE: 1 SSE2: 1
    Compiled with runtime CPU detection - WARNING - this is not optimal!
    To get best performance, recompile MPlayer with --disable-runtime-cpudetection.
    85 audio & 196 video codecs
    Playing [V-A]_Hellsing_01_[F3F78592].mkv.
    [mkv] Track ID 1: video (V_MS/VFW/FOURCC), -vid 0
    [mkv] Track ID 2: audio (A_VORBIS), -aid 0, -alang jpn
    [mkv] Track ID 3: audio (A_VORBIS), -aid 1, -alang eng
    [mkv] Track ID 4: subtitles (S_TEXT/SSA), -sid 0, -slang eng
    [mkv] Track ID 5: subtitles (S_TEXT/UTF8), -sid 1, -slang eng
    [mkv] Will play video track 1
    [mkv] Will play audio track 2
    Matroska file format detected.
    VIDEO: [DX50] 640x480 24bpp 23.976 fps 0.0 kbps ( 0.0 kbyte/s)
    ==========================================================================
    Opening audio decoder: [libvorbis] Ogg/Vorbis audio decoder
    AUDIO: 48000 Hz, 2 ch, s16le, 128.0 kbit/8.33% (ratio: 16000->192000)
    Selected audio codec: [vorbis] afm:libvorbis (OggVorbis Audio Decoder)
    ==========================================================================
    vo: X11 running at 1024x768 with depth 16 and 16 bpp (":0.0" => local display)
    It seems there is no Xvideo support for your video card available.
    Run 'xvinfo' to verify its Xv support and read DOCS/HTML/en/video.html#xv!
    See 'mplayer -vo help' for other (non-xv) video out drivers. Try -vo x11
    ==========================================================================
    Opening video decoder: [ffmpeg] FFmpeg's libavcodec codec family
    Selected video codec: [ffodivx] vfm:ffmpeg (FFmpeg MPEG-4)
    ==========================================================================
    Checking audio filter chain for 48000Hz/2ch/s16le -> 48000Hz/2ch/s16le...
    AF_pre: 48000Hz/2ch/s16le
    AO: [oss] 48000Hz 2ch s16le (2 bps)
    Building audio filter chain for 48000Hz/2ch/s16le -> 48000Hz/2ch/s16le...
    Starting playback...
    VDec: vo config request - 640 x 480 (preferred csp: Planar YV12)
    VDec: using Planar YV12 as output csp (no 0)
    Movie-Aspect is 1.33:1 - prescaling to correct movie aspect.
    VO: [x11] 640x480 => 640x480 Planar YV12
    SwScaler: using unscaled Planar YV12 -> BGR 16-bit special converter
    No bind found for key MOUSE_BTN2 1.4% 1 0
    No bind found for key MOUSE_BTN2 1.4% 1 0
    No bind found for key MOUSE_BTN2 1.4% 1 0
    No bind found for key MOUSE_BTN1 1.4% 1 0
    No bind found for key MOUSE_BTN0 1.4% 1 0
    No bind found for key MOUSE_BTN2 1.4% 1 0
    No bind found for key MOUSE_BTN0 1.4% 1 0
    No bind found for key MOUSE_BTN2 1.4% 1 0
    No bind found for key MOUSE_BTN2 1.4% 1 0
    No bind found for key MOUSE_BTN0 1.4% 1 0
    XIO: fatal IO error 104 (Connection reset by peer) on X server ":0.0"
    after 4101 requests (4099 known processed) with 0 events remaining.
    [/EDIT]

    Hi Bazookajoe117,
    As already suggested by Jacumba your symptoms point to a lack of required codec in your system.
    Take a look at below post to find out the commonly used codecs in QT that would allow you to play the files without any issue.
    QuickTime Codecs Installation
    Regards,
    ---Javier
    I may receive some form of compensation, financial or otherwise, from my recommendation or link.

  • Double trouble: email design and re Captcha

    Hi,
    I usually can do anything I need in Muse and now I hit a point where I don't know what to do. I got two problems and both are connected with Muse's email forms.
    1) The design of the email I receive from my form.
    I found the templates for the auto notification emails the form's sender receives after submitting the form and I was able to re-design the template. Now I want to re-design the email I receive from the form. Until now, I always get the Business Catalyst pre-styled email, two gray bars with the form's content in between. Since I am building the site for a customer and do not want to have them read the Business Catalyst "ads" in the mail, I would like to be able to re-design this email in the same style I did with the auto responder. Where can I do that?
    2) Ever since I re-designed my auto-responder, re Captcha quit working. When I was using the form "as is" with Adobe's pre-formatted email templates, re Captcha worked fine. Now, with the changed auto responder template, I get the re Captcha error message every time I try to submit the form. I switched to BC Captcha and everything works fine, but I really want to use re Captcha.
    Funny thing is: When submitting with re Captcha, the page itself disappears, I am redirected to my auto response email template where the re Captcha error message is displayed instead of the form's texts. I already trried reloading the re Captcha, the whole page, even quit and restarted my browser. As soon as I change the auto responder template, re Captcha does not work anymore.
    Any help and ideas would be greatly appreciated!

    Hi Aish,
    since it is a client's website, I cannot link it publicly yet. But I can paste the template code I inserted:
    <style type="text/css">
    .mail {
        color: #0B3144;
        font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, serif;
    .logo {
        vertical-align:top;
    </style>
    <table width="100%" border="0" cellspacing="3" cellpadding="3">
      <tbody>
        <tr>
          <td align="left" class="mail"><p><strong>Customer's Name</strong><br>
              address
          <p> </p></td>
          <td align="right" class="logo"><img src="images/logo_email-01.png" width="250" height="75" alt=""/></td>
        </tr>
      </tbody>
    </table>
    <table width="100%" border="0" cellspacing="3" cellpadding="3">
      <tbody>
        <tr>
          <td class="mail">{tag_pagecontent}</td>
        </tr>
      </tbody>
    </table>
    I can't see anything that should disturb re-Captcha. Do you?

  • Double trouble: another external Creative Labs soundcard hits the d

    A few weeks ago I reported that my Audigy NX2 packed up. In essence, after about 8 months use it died. I wasn't sure if it was the power supply or the internal works, but it definitely wouldn't work after trying all the standard remedies. I took it back to the retailer and got a full refund as the fault was so obvious.
    The NX2 is now discontinued in the UK, so I took instead the Soundblaster Li've 24 which I have had for about 3 weeks.
    Incredibly, this Soundblaster Li've 24 has now packed up. It gives really massi've distortion in the upper frequency range, which is so terrible it's like the tweeters on the speakers have blown. There is absolutely nothing wrong with any of my other kit (amplifier, speakers etc). I have tried all the obvious cures but nothing works. It's clearly a fault in the Soundblaster as by switching it off and software re-instating the PC's own original sound card the fault disappears completely. Clearly, some of the DACs have burned out or something like that.
    Unlike many threads on this Board, this isn't some complex installation problem. It's simply a case of rubbish equipment.Message Edited by monitor on 04-0-20070:37 AM

    A few weeks ago I reported that my Audigy NX2 packed up. In essence, after about 8 months use it died. I wasn't sure if it was the power supply or the internal works, but it definitely wouldn't work after trying all the standard remedies. I took it back to the retailer and got a full refund as the fault was so obvious.
    The NX2 is now discontinued in the UK, so I took instead the Soundblaster Li've 24 which I have had for about 3 weeks.
    Incredibly, this Soundblaster Li've 24 has now packed up. It gives really massi've distortion in the upper frequency range, which is so terrible it's like the tweeters on the speakers have blown. There is absolutely nothing wrong with any of my other kit (amplifier, speakers etc). I have tried all the obvious cures but nothing works. It's clearly a fault in the Soundblaster as by switching it off and software re-instating the PC's own original sound card the fault disappears completely. Clearly, some of the DACs have burned out or something like that.
    Unlike many threads on this Board, this isn't some complex installation problem. It's simply a case of rubbish equipment.Message Edited by monitor on 04-0-20070:37 AM

  • Vlc (Actually .avi) not working... [CHECK: DOUBLE TROUBLE..]

    I can hear the sound but no video. I get an error message to.
    VLC media player 0.8.4a Janus
    [00000260] main dialogs provider error: no dialogs provider module matched "any"[00000257] skins2 interface error: No suitable dialogs provider found (hint: compile the wxWidgets plugin, and make sure it is loaded properly)
    [00000257] skins2 interface: skin: VLC OSX Interface author: BigBen
    [00000298] main decoder error: no suitable decoder module for fourcc `WMV3'.
    VLC probably does not support this sound or video format.
    [00000251] main playlist: stopping playback
    And vlc must be able to play wmv right?
    /Richard

    http://bugs.archlinux.org/task/4344
    Is the bug for the first 2 errors you have there.
    Now is this on every avi?  Is there an example one you can post up for us to see if we have the same problem on our systems?  And if this is confirmed, please put it in the bug tracker.

  • SAP script and External docs - print in PDF

    Hello,
    We are printing maintanence orders (SAP script) through IW32 and recently we have added custom logic to print the external docs(word or excel) attached to the maintanence orders. So if we print a maintanence order with two attachments, we would get Order, Attach_1 and Attach_2 printouts. This functionality is working fine but when we print several orders at the same time all prints are getting mixed up. I was wondering if somthing like this would be possible.... Let's say we have a order of one page with two attachments, Attach_1 & Attach_2, of one page each and we create one single PDF document with these three pages in the print program and print this PDF at the end of the print program so that all the prints associated with one order come out as a single doc.
    Any ideas / sample code is appreciated. Thanks.

    Hi Raju,
    You are in double-trouble   ... another moderator rejected your other post while I was locking this one here. But I did read your comment in it.
    Please resist the temptation to cross-post. It messes up the forums and is unfair on those who take the time to answer your questions.
    I'll make a deal with you: If you go back and close all your 115 unresolved questions which can be closed (or no longer need to be open) and assign ponits accordingly (note: you do not need to post anything to close it, the "post comment" field is not mandatory ) then I will unlock this thread for you and we can carry on.
    It will take you an hour or two, but people will respect you for it.
    Let me know (I will be watching your resolved posts number).
    Cheers,
    Julius
    PS: Top right hand corner => "Your Questions"...
    Edited by: Julius Bussche on Sep 15, 2008 10:45 PM

  • Operation on internal table

    Dear experts,
    I have 2 internal table , 1 inernal table have 4 fields and 10 records in that and the other hv 3 fields and 10 records in each field in that . My task is to transfer the 4th field and records of that of 1st table to 2nd field. Need some help on that..
    Table 1 Table 2
    fields- F1 F2 F3 F4 I1 I2 I3 I4
    A1 B1 C1 D1 A1 P1 Q1
    A2 B2 C2 D2 A2 P2 Q2
    A10 B10 C10 D10 A10 P10 Q10
    Here i want records of f4 in i4. Is insert syntax is the way or any other way we can insert the data from table 1 to table 2.
    Loop at Internal table1 into worka area1.
    modify Internaltable2 from work area1 transporting internaltable2-2nd filed = work area1-4th field.
    endloop.
    i tryed with the above  query but i am getting the following error.
    "No component exist with the name internaltable2-2nd filed".
    Thanks And regards.
    Sumeet
    Moderator Message: Duplicate question from a different ID => Double Trouble.
    Edited by: kishan P on Mar 1, 2011 2:15 PM

    REPORT  ZTEST.
    DATA: BEGIN OF IT_TBL OCCURS 0,
            LINE TYPE I,
          END OF IT_TBL.
    DATA: LV_CNT TYPE I.
    DO 20 TIMES.
      LV_CNT = LV_CNT + 1.
      IT_TBL-LINE = LV_CNT.
      APPEND IT_TBL.
    ENDDO.
    delete it_tbl INDEX 5.
    delete it_tbl INDEX 7.
    delete it_tbl INDEX 12.
    LOOP AT IT_TBL.
      WRITE: / IT_TBL-LINE.
    ENDLOOP.

  • How to create and place a slideshow into an exiting webpage

    I am using DW CC and want to create a slideshow and place it into an existing webpage displaying product images. My initial thought was to use Lightroom to create the HTML or Flash file and place it as an iFrame but I think that may be a clunky and outdated way to do it. Even though I've been using DW for a while, I consider myself an amateur and I'm learning as I go.
    Message was edited by: STEPHANIE SMITH:
    I'm actually trying to create a WebGallery in lightroom so there are thumbnail images that can be clicked to show enlarged image.

    My initial thought was to use Lightroom to create the HTML or Flash file and place it as an iFrame...
    No. Flash is a dead web technology because most mobile devices don't support it (iPhone, iPad, iTouch, Android, etc...).  And iframes are problematic.  So that's double-trouble.
    A simple jQuery slideshow is probably all you need.  This one uses Cycle2 plugin.  Copy & paste code into a new, blank document.  SaveAs test.html and preview in browsers.  Replace images with your own.
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>HTML5 with Cycle2</title>
    <!--help for older IE browsers-->
    <!--[if lt IE 9]>
    <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->
    <!--Latest jQuery Core Library-->
    <script src="http://code.jquery.com/jquery-latest.min.js">
    </script>
    <!--Cycle2 Slideshow Plugin-->
    <script src="http://cdnjs.cloudflare.com/ajax/libs/jquery.cycle2/20130409/jquery.cycle2.min.js"></script>
    <style>
    /**CSS Reset**/
    padding:0;
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
    /**Slideshow**/
    .cycle-slideshow {
        position: relative;
        z-index: 1;
        width: 50%; /**adjust width as required**/
        margin:0 auto;
        text-align: center;
    .cycle-slideshow img { max-width: 100% }
    .center {text-align:center}
    /**END SLIDESHOW STYLES**/
    </style>
    </head>
    <body>
    <h1><a href="http://jquery.malsup.com/cycle2/">JQuery Cycle2</a></h1>
    <!--begin slideshow-->
    <div class="cycle-slideshow"
        data-cycle-fx="scrollHorz"
        data-cycle-speed="700"
        data-cycle-prev="#prev"
        data-cycle-next="#next"
        >
    <!--insert your images below-->
        <img src="http://malsup.github.io/images/p1.jpg">
        <img src="http://malsup.github.io/images/p2.jpg">
        <img src="http://malsup.github.io/images/p3.jpg">
        <img src="http://malsup.github.io/images/p4.jpg">
    <div class="center">
        <a href=# id="prev">Prev</a>
        <a href=# id="next">Next</a>
    </div>
    </div>
    <!--end slideshow-->
    </body>
    </html>
    Nancy O.

  • 128MB Video Cards ....

    Hi,
    I know for best results you really should have a 256MB video card, but for right now i need a temporary solution until i want to upgrade to a macpro. I'm debating between 2 G5s. I have the choice between a G5 with a 9600, or a newer G5 with a 6600.
    Which would give me better results? I've read some distressing things about the 6600 in the 'late 2005 G5', but would it still perform better than the older Radeon 9600 card in the 'Early 2005 G5' model?
    Both are 128MB cards. Both are dual 2ghz, However the newer G5 is a dual core....not sure how much better performance that will give.

    Rui,
    Unfortunately i cannot comment on the 9600 card, but i occasionally do on the 6600 :->
    It is a waste of time in Aperture and would not advise getting a dual-core with it installed. Double trouble because you cannot get an upgrade either. So if you want a dual-core i'd suggest ebay and wait for 7800 configs, there were a few in the uk recently.
    Barefeats do benchmarking of varying mixes see this to see how bad the 6600 is from the 7800. You will also see a comparison to a dual 2,7 & 9650 which is slower than the 6600 (there is something i never thought i'd say!)
    http://www.barefeats.com/quad03.html
    Perhaps if your going dual-proc you'd want a better card. Seems PCI-X G5's have the indulgent luxury of choices in video cards, but i'm no expert in these machines.
    On dual-core vs dual-proc, i think the dual-cores work out marginally faster and remember the dual 2 is 2 x 2GHz of juice whereas a 2GHz dual-core = 2x2x2GHz of total juice so more horses under the bonnet. Critically you have identified the critical Aperture-centric hardware - graphic card. Good luck. Are you waiting for clovertowns on the MP ?

  • Why doesn't my iMac recognize my external hard drive?

    I updated my imac from leopard to snow leopard to lion. I plugged in MY Book external hard drive, which had been working, but now it is not recognized. I went to the disk utility but all the First Aid buttons are greyed out and I can't do anything. I can't back it up anyplace because its not recognized. What do I do??
    How do I upgrade the Firmware, which is one suggestion I read in the forum?  The My Book was separated into to sections, but I also upgraded my Mac Book Pro to Lion, so it doesn't work there either. Double trouble!!

    Go to finder .
    Apps
    You see 1 app or nothing like bootcam or idisc
    put your mouse behind apps and you see hide klick whith your mouse on this and enjoy.now you see idisc and
    Your computer.
    Greetings Hans

Maybe you are looking for

  • To delete the transport request.

    when i'm trying to delete the transport request by using se09, it responses with " Request/task BWDK916118 cannot be deleted because it contains locked objects." That request is created by me. It showing same name but it will not allow me to delete.

  • Refcursor output in sqldeveloper

    Hi, Can you pls let me know how to view the refcursor output using sqldeveloper? Regards,

  • Using aftermarket chargers, USB cables

    Has anyone had any issues using aftermarket home / car chargers and USB cables to charge their ipods? Or, heard of any horror stories? I bought a kit off ebay that comes with a retractable USB cable, car charger, and home charger that comes with all

  • Installing SW CompactRIO Error 56

    I want to install software on my CompactRIO (cRIO-9004), so I formatted the drive and gave it a new IP address in teh MAX explorer. By right-clicking 'Software' I can choose 'add remove software'. But after a while I get the error 56 which says that

  • Error while updating Infotype

    Hi I am currently hiring an employee Through PA30  by maintaining IT-0000,IT-0001 and IT-0002 . Now what I want is that if I get an error in maintaining any of these Infotypes I want either all to get updated at once or none at all. So if I get an er