Problem Getting An Applet To Work

Hi,
I hope there is someone out there that can help me with this problem.
I'm trying to get an applet to work inside of IE6 and I'm getting the following error message via Java Console,
Error loading class: demo
java.lang.ClassFormatError
java.lang.ClassNotFoundException: demo
     at com/ms/vm/loader/URLClassLoader.loadClass
     at com/ms/vm/loader/URLClassLoader.loadClass
     at com/ms/applet/AppletPanel.processSentEvent
     at com/ms/applet/AppletPanel.processSentEvent
     at com/ms/applet/AppletPanel.run
     at java/lang/Thread.run
The java code is as follows,
import java.applet.*;
import java.awt.*;
public class demo extends Applet {
public void init() {
public void paint(Graphics g) {
g.drawString("Hello World", 50, 50);
And the html (demo.htm) is
<html>
<head>
</head>
<body bgcolor="#00DCFF">
<applet name="demo" code="demo.class" width="300" height="200">
</applet>
</body>
</html>
Both demo.htm and demo.class are both in the same directory. I used the Sun Java SDK version 1.4.1 to produce the class.
I can get it to work if I enable
Java (Sun)
Use Java 2 v1.4.1 for applet
within the Advanced options of IE6, but I don't want to have to force the user to have to either load the the SDK or the plug-in (by using OBJECT/EMBED) due to their size.
thanks in advance,
Wayne

>
Error loading class: demo
java.lang.ClassFormatError
java.lang.ClassNotFoundException: demoIf you load it into Netscape it'll work fine - I cant see any errors with ur code. Have u tried it in the appletviewer?

Similar Messages

  • Problems getting an applet to work on i-net

    i tried to load my (in browser working applet) on my
    net account. after loading most of the image resources i get.
    java.util.zip.ZipException: invalid stored block lengths
    at java.util.zip.InflaterInputStream.read(InflaterInputStream.java:142)
    at java.io.BufferedInputStream.fill(BufferedInputStream.java:186)
    at java.io.BufferedInputStream.read1(BufferedInputStream.java:225)
    at java.io.BufferedInputStream.read(BufferedInputStream.java:283)
    at java.io.DataInputStream.readFully(DataInputStream.java:213)
    at com.sun.imageio.plugins.png.PNGImageReader.decodePass(PNGImageReader.jav a:1174)
    at com.sun.imageio.plugins.png.PNGImageReader.decodeImage(PNGImageReader.ja va:1278)
    at com.sun.imageio.plugins.png.PNGImageReader.readImage(PNGImageReader.java :1364)
    at com.sun.imageio.plugins.png.PNGImageReader.read(PNGImageReader.java:1532 )
    at javax.imageio.ImageIO.read(ImageIO.java:1317)
    at javax.imageio.ImageIO.read(ImageIO.java:1283)
    at ImageLoader.<init>(ImageLoader.java:69)
    at Memory.init(Memory.java:45)
    at sun.applet.AppletPanel.run(AppletPanel.java:344)
    at java.lang.Thread.run(Thread.java:539)
    An image file could not be read: 
    javax.imageio.IIOException: Error reading PNG image data
    java.lang.IndexOutOfBoundsException: Index: 39, Size: 37
    at java.util.ArrayList.RangeCheck(ArrayList.java:503)
    at java.util.ArrayList.get(ArrayList.java:315)
    at ImageLoader.getStrip(ImageLoader.java:217)
    at HighScoreMenu.<init>(HighScoreMenu.java:20)
    at Memory.init(Memory.java:46)
    at sun.applet.AppletPanel.run(AppletPanel.java:344)
    at java.lang.Thread.run(Thread.java:539) * the line "ImageLoader 69" is : img = ImageIO.read(getClass().getResource("tiles/drehung.png"));* ImageLoader.getStrip() would only return an animationstrip created on base of the loaded images.
    because it throws an indexoutofboundexception i assume that the images arent loaded properly
    the applet isnt packed in a jar. all images are tested on the server, all applet files are properly transferred.
    then i wrote a little applet which does nothing more than displaying an image usinf ImageIO.read same way i use it in my target-applet. all works fine.
    i have no clue ...

    Use the method getDocumentBase() (or getCodeBase()) from Applet-Class to find out where exactly is your Applet located and then add "tiles/drehung.png" to it.

  • Having a real problem getting my vi to work - great difficulty running sequence as desired

    Hi
    I am have a real problem getting my vi to work as required.
    I would like the my vi (EXAMPLE.vi in the vi library attached) to run continuously.  It should update the graphs on the front pannel and also save data to file when requested using the  save data to file button. (I have written a sub vi. to deal with this data handling and file saving which run in two while loops with the vi as can be seen on inspection of the block diagram)
    Now, what I would like is for the updating to pause whenever I change any of the settings on the front panel (which are controls in the first half of the sequence of the vi) so the hardware is reset.  As it is at the moment I have to stop the vi to change the front panel settings and then restart it in order for the first part of the sequence to run and re-set the values on the hardware.
    I guess I need to use some kind of event driven programming an event stucture or something like that. This is quite advanced and I don't know how to implement it. 
    Can anybody offer any Ideas. 
    Many many thanks
    Ashley
    Attachments:
    test library.llb ‏470 KB

    Hi,
    If you are new to event structures then you may find the following tutorial useful:
    Event-Driven Programming in LabVIEW
    http://zone.ni.com/devzone/conceptd.nsf/webmain/E5F8474BDA20C97786256B5A0066968B?opendocument
    A powerful New Tool for UI Programming--User Interface Event Programming
    http://zone.ni.com/devzone/conceptd.nsf/webmain/2a8ab43b28bbde1086256b830059875c
    Advanced Event Handling with LabVIEW 7 Express
    http://zone.ni.com/devzone/conceptd.nsf/webmain/aa79ff38336eb38886256d2b004aca49#1
    I hope this helps
    All the best
    Kurt

  • Please Help! Can't get my applet to work!!

    PLEASE HELP
    I have been trying to get an applet to work which when viewed in an applet viewer works fine.
    HOWEVER, when I try to view it through the browser it will not be viewed. The html code I've used is very simple and you can see that below . I've downloaded the JAVA plugin but that doesn't work either!
    The errors that come up say --- java.lang.ClassFormatError.Class already loaded
    Then if the window is expanded says --- java.lang.NoClassDefFoundError:javax/swing/JApplet
    I haven't a clue what's wrong!!
    HTML CODE
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
    <HTML>
    <HEAD><TITLE>Chess Game
    </TITLE>
    </HEAD>
    <BODY>
    <applet Code ="ChessClient20.class" Width =450 Height =555>
    </applet>
    </BODY>
    </html>
    Thanks for any help!!

    Thanks, have now found original mail. I think I've lost the plot. will check out those suggestions.

  • Hello, i am having problems getting face time to work, I keep getting an error message saying the server could not process the registration, I am using the username and password I always have and it has always worked in the past, any ideas?

    Hello, i am having problems getting face time to work, I keep getting an error message saying the server could not process the registration, I am using the username and password I always have and it has always worked in the past, any ideas?

    We aren't Apple, just users like you volunteering to help other users with problems. Threatening to go to Samsung doesn't mean anything to us. What troubleshooting have you tried so far?

  • I can't get my applet to work in HTML

    I have written an applet that works perfectly OK when I run it at the command line. However, if I try running it from an HTML file it just doesn't work. I get an 'Applet ImageApplet notinited' message in the bar at the bottom of the page. I assume this means that the applets init() method hasn't been called. I find this a bit strange,as I am calling the init() method from my main method.
    The code for the Applet is pasted below. I've also pasted the code from another class (ImageCanvas). The ImageCanvas class is used by my Applet. Please let me know, if you know how to fix this problem. Thanks in advance.
    Craig
    * ImageApplet.java
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.*;
    public class ImageApplet extends Applet
    ImageCanvas canvas;
    public void init()
         canvas = new ImageCanvas();
         add(canvas);
    public void destroy()
    remove(canvas);
    public void start() { }
    public void stop() { }
    public void processEvent(AWTEvent e)
    if (e.getID() == Event.WINDOW_DESTROY) { System.exit(0); }
    public static void main(String args[])
         Frame frame = new Frame("Image Test");
         ImageApplet     imageApplet = new ImageApplet();
         imageApplet.init();
         imageApplet.start();
         frame.add(imageApplet);
         frame.setSize(160, 140);
         frame.setResizable(false);
         frame.show();
    * ImageCanvas.java
    import java.awt.*;
    import java.awt.image.*;
    import java.io.*;
    import javax.imageio.*;
    class ImageCanvas extends Canvas
    BufferedImage image;
    public ImageCanvas()
         try { image = ImageIO.read(new File("images/image0.jpg")); }
         catch (IOException e) { }
    public void paint(Graphics g) { g.drawImage(image, 0, 0, null); }
    public Dimension getPreferredSize()
    if (image == null)
    return new Dimension(100, 100);
         else
         return new Dimension(image.getWidth(null), image.getHeight(null));
    }

    since your code burns my eyes without formatting:
    * ImageApplet.java
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.*;
    public class ImageApplet extends Applet
    ImageCanvas canvas;
    public void init()
    canvas = new ImageCanvas();
    add(canvas);
    public void destroy()
    remove(canvas);
    public void start() { }
    public void stop() { }
    public void processEvent(AWTEvent e)
    if (e.getID() == Event.WINDOW_DESTROY) { System.exit(0); }
    public static void main(String args[])
    Frame frame = new Frame("Image Test");
    ImageApplet imageApplet = new ImageApplet();
    imageApplet.init();
    imageApplet.start();
    frame.add(imageApplet);
    frame.setSize(160, 140);
    frame.setResizable(false);
    frame.show();
    * ImageCanvas.java
    import java.awt.*;
    import java.awt.image.*;
    import java.io.*;
    import javax.imageio.*;
    class ImageCanvas extends Canvas
    BufferedImage image;
    public ImageCanvas()
    try { image = ImageIO.read(new File("images/image0.jpg")); }
    catch (IOException e) { }
    public void paint(Graphics g) { g.drawImage(image, 0, 0, null); }
    public Dimension getPreferredSize()
    if (image == null)
    return new Dimension(100, 100);
    else
    return new Dimension(image.getWidth(null), image.getHeight(null));
    }I didn't want to answer your question yet, but I at least wanted to read the code without going blind. Please use the code brackets when you post code in the future.

  • Getting an applet to work on Mac OS X 10.2

    We have an applet that runs on apple's browser "Safari" but on I.E. and Netscape the page is just blank.
    I think it has to do with the code that calls the "Java's plug-in 1.3.1".
    Apple claims that Java works well on Safari, which seems to be true, but how does it work?
    and or
    How do I get our applet to use "Java's plug-in 1.3.1". on I.E. and Netscape to work on the Mac OS X 10.2?
    Thank you
    Aaron

    Honestly, IE for the Mac sucks. There's hardly any Java support for it at all, which is probably why it's not working. I would stay away from it, and you could put in some browser detection code of some kind, and let people know that if they are on a Mac and using IE, that they need Netscape, Mozilla, Safari, or some other browser to use your applet. That's my 2 cents, and I know it doesn't help the problem much, but I've heard from MANY MANY people that IE on the Mac is just to be avoided. If you're users are Mac people, they will probably know this and not be using it anyway. If they are, Safari is free, as is Netscape (last I knew), and Mozilla as well.
    James

  • How do I get an applet to work on a web page?

    I made an applet, but on my computer it only works when I have the JRE installed, and not when it isn't installed. Currently, it doesn't work on the website I put it on unless the computer accessing the website has the JRE installed. Is there any way to get it to work anyways? I know that at least some applets work when I don't have the JRE installed. Why won't mine?

    to run an applet a JRE must be installed. both netscape and IE have default 1.1 compliant jres built in, but you almost certainly don't want to use those, you probably want to use the plugin. to get your applet to use the plugin whether on not it is installed you use a particular html tag. see http://java.sun.com/j2se/1.4.2/docs/guide/plugin/ for details, but briefly you would use something like:
    <html>
    <head>
    <title>IWS Chat</title>
    </head>
    <body bgcolor="#FFFFFF" text="#000000">
    <OBJECT
    classid = "clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"
    codebase = "http://java.sun.com/products/plugin/autodl/jinstall-1_4-windows-i586.cab#Version=1,4,0,0"
    WIDTH = 100 HEIGHT = 100 >
    <PARAM NAME = CODE VALUE = "infoworkspace.applet.AnApplet.class" >
    <PARAM NAME = ARCHIVE VALUE = "applet.jar" >
    <PARAM NAME = "type" VALUE = "application/x-java-applet;version=1.4">
    <PARAM NAME = "scriptable" VALUE = "false">
    <COMMENT>
    <EMBED
    type = "application/x-java-applet;version=1.4"
    CODE = "infoworkspace.applet.AnApplet.class"
    ARCHIVE = "applet.jar"
    WIDTH = 100
    HEIGHT = 100
    scriptable = false
    pluginspage = "http://java.sun.com/products/plugin/index.html#download">
    <NOEMBED>
    </NOEMBED>
    </EMBED>
    </COMMENT>
    </OBJECT>
    </body>
    </html>
    this will install the plugin for you and start the applet.
    hope this helps, Mitchell

  • Problem getting PS "template" to work properly after slicing

    Hi guys,
    Just a heads up first, this is going to be a little long for two reasons: 1) I have a bad habit of being verbose  2) I'm going to explain exactly what my problem is and what steps I took to get there so everyone knows exactly what has been done so far.
    So, I decided to give my hand a try at designing a full page template purely in Photoshop (CS4 for PS and Dreamweaver). It worked out great, looks awesome... but I didn't know what to do next. I'm currently enrolled for Web Design & Interactive Media in college, but alas I just started 5.5 weeks ago. However, I do have a photoshop learning center and posted my problem to my professors. After some long discussion of my professor telling me to slice it and just save to web & devices, and me finally being able to get it click that doing this makes a bunch of tables out of the images, I had my first full graphic web template. Problem #1: I have not worked with tables since Dreamweaver was Macromedia Dreamweaver 8... eons ago it seems. So, after finally getting everything into an HTML document, where I felt more at home, I started to play around with the tables, trying to remember anything at all about them. My professor helpfully suggested nesting the tables... it was greek to me. However, we live in the internet age, so I googled it up.
    Now I have my images all in wonderfully organized tables, except for five of the images. This is the jpeg of the template. So, I was loving the template, and that is the photoshop .jpg I saved to show my girlfriend what it would end up looking like. After realizing that I had NO idea how to get the text over those specific area's while the "content boxes" were still in tables, I decided to throw in my puny skill in CSS. I made new slices, and sliced up the upper two sections for the content-title1 & content-title2 and then made 2 more new slices for content-left and content-right, then a fifth slice for the bottom of the rounded boxes content-footer. Now, I have used others' templates in the past such as this site but he was using familiar territory for me.. <div> tags. Ok, so anyway I have 4 new tables to throw in... one each for the content headers "News" and the "Welcome to Illuminati" parts, and then two other boxes for the actual content of each section. After trying to figure out how to nest tables, I gave it a shot and while in design mode, it actually works... except the navbar is slid out far to the right. And when I uploaded the site, not only is the navbar way out in deep right field, but my content-right table slid under content-left. You can see the end result here.
    What I need help on:
    If any kind soul could please take a look at my code and tell me exactly where I'm fubarring things up, I would greatly appreciate it!
    If said kind soul could show me how to fix said problems, I would appreciate it even more!!
    Lastly, on that Livengood Investments website, if you notice the bottom section where the "article of the week" and thumblist is, with that guys' template, as I add content to those sections, it grows down so that you never have gaps or spaces etc. That is why I cut the middle content boxes into two, so that I could add content without worry of having the gaps etc. I did notice though, that if one side is longer in text than the other (on my secondlife.lift4ullc.com/test2.html site) then the other side has a gap. I'm going to assume this is because with the Livengood-Investments site, that middle section is actually 1 background? I could do the same with the boxes on my site, make them 1 section instead of two, if only I knew how to have two separate tables over their individual box... thanks!
    Every guide or tutorial or video I have found on the net about nesting tables gives you a simple 2 column 5 row walk-through. Very nice, and handy in some cases I'm sure, but I can't see how that helps me at this particular moment. =( Thank you in advance everyone, for your patience while I rambled, and your help in this matter.
    Matt

    Wow, quick replies! I knew there was a reason I love the Adobe forums over my normal haunt at Web Designers Group (WDG)! ^.^ Although, in fairness to them, they've been helpful before as well. Now, on to the replies....
    @SnakeEyez02: PM coming your way, thank you so very much! With the www.livengood-investments site, what I did was google up "free web templates" and found that layout (different background, and some customization to it to make it fit the company etc) but it was almost purely CSS done. I would say I've been working with CSS in some form or fashion for roughly 2 years, but only within the last 1-2 months have I really sat down to try to learn CSS. Table layouts (for me) are a thing of the past, when everyone and your uncle had a geocities or some other website. Thank you for letting me know this is possible to do without all of the tables... that is a huge relief and load off of my shoulders. http://secondlife.lift4ullc.com was my "first run" test at the website you've seen, and I've already gone in detail over that code to see why I have the gaps in my logo/header/navbar area, because for some reason I changed the size of those div's that were larger than the images But, I tried out that CSS site before I learned about slicing in PS, so that is why the color scheme is so different. I left it as it is because I would rather have my nifty content boxes ;-) Ok, so I have the starter, and I'll step back and just save the images and not the images + html. From there I'll start designing the site with CSS and div tags instead of the dreaded tables. Like I said though, PM coming. Thank you in advance for the help, I hope I don't make it too difficult for you
    @Boss Yes, I just started college, but I'm 28 now and have been meddling in some form or fashion in web sites for nearly 15 years. I just decided in the past month or so to actually turn it from a "hobby" to something more serious with the hopes of actually making a career out of it. I agree with you that CSS design is better than tables. I hate tables, haven't used tables in many years, and CSS is just so much easier to tweak and read the code than a page full of table coding (as I've learned these last few days). I know I'll be learning some coding in my later courses (today was the end of my first term freshman year) such as PHP, JavaScript, and I *think* some C+/++. CSS, I'm not really sure on. I have no doubt though that I'll be able to bug my professors that teach the courses for CSS... they should be up to date with standards and coding. This professor is actually a Photoshop specialist, and while I'm sure he knows some HTML and CSS, probably not as much as a coder or web developer (as opposed to him being a graphics designer). Thank you very much for the tutorial link, I really do appreciate it. I love tutorials, but sometimes the search for a good tutorial can be almost as fustrating as trying to figure these stupid tables out LOL. However, as I mentioned above, now that I know I can, I am switching over to CSS with yours and SnakeEyez's suggestions. Thank you Boss!
    Matt

  • Problem getting wi-fi to work. please help me.

    Hi,
    In my home, I have AT&T/Bellsouth DSL internet service with a download speed of 1.5 megabits and a Belkin wireless router. I have never had any problems whatsoever in getting any device to work with the network. I currently use two laptop computers, and stream Sirius internet radio over it. Well now with my new iPhone, it doesn't work on my network at all. I can connect my iphone to my network, it shows that I'm connected with a strong signal with all 3 bars on the icon on the screen, though I get zero internet usage with the phone. I went to the Apple Store yesterday and it connected to their network just fine and I had blazing speed, so I know that there doesn't seem to be anything wrong with my iPhone. Would someone please help me? I would greatly appreciate it.
    Thanks,
    Harbeth
    iMac G5 & BlackBook Mac OS X (10.4.10)

    Okay, I now have a solution. I found this information in another thread. I implemented it, and now my iPhone works on my network.
    "After reading many posts with many helpful suggestions:
    I was able to make my iphone work on my home wirless connection by choosing from the main screen
    "settings" then "Wi-fi" then under "Choose a Network" I selected my home network (Belkin) (little blue arrow at the end) then under "IP Address" I chose the "static" button clicked on the "DNS" numbers and entered the the DNS addresses of my router as shown on the summary page when I logged on to my router from my home computer. As for how to log on to your router and find your DNS addresses refer to your router documentation. I tried many of the other solutions and this is so far the only way I could get a connection to actually work. It would always show the strong network signal on my phone but would not be able to connect to the internet and find the server. Like some others who have posted, until this solution I was able to borrow a connection from my neighbor with no problems but his router was a linksys. Hopefully Apple will be patching up all these issues soon.
    I have no idea if this solution is permanent or even a good idea but it worked for me. Your mileage may vary. I do love the phone."
    Thanks to everyone for responding.
    Happy iPhoning,
    Harbeth
    iMac G5 & BlacBook

  • Problem getting (ALT key) to work in Flash

    Hi All,
    I hope there is somebody who can help me with the following issue:
    I can not get ALT key to work in Flash, if I want to use it in combination with other keys nor I can use it alone.
    For example, I have created an application which requires the usage of (ALT+F) in order to access certain thing, This does not seem to fire the key event.
    however if i use the same thing with (CTRL+F) or (SHIFT+F), it works fine.
    It is only ALT  which causes the key event not to fire.
    Is there a bug in Flash for using ALT key? Can anyone help me please?

    see here:
    http://forums.adobe.com/message/2127570

  • Problems getting e-mac to work with AEBS.

    I have been having some major problems getting connected to our network. We have most of our e-macs connected to the network via AEBS. The AEBS unit is connected by an ethernet connection. I have been trying to get connection to one of our computers for some time now, without any luck. Last night I finally had some connection, but was still unable to connect to the Internet. I was able to see some of the other base stations in the airport admin utility. I don't know what I did any different though to get the base station to recognize other base stations. I am really at a loss as to what to do to get connection.
    I have noticed that under system preferences, when I try to use DHCP, I am given a self-assigned ip address. I can put the ip address in manually. I also put the router in manually.
    I guess one of my questions would be how should I set up the base station and how should I set up the e-mac DHCP services? I currently have DHCP set up on the e-mac using Airport. I have the base station set up with the ethernet connection plugged into the LAN connector. This is the way that our other computers seem to be set up.
    I have heard talk about setting up WDS on the base station, but none of the other computers are set up this way and still receive connection to the Internet. If I were to set up WDS, what would I need to do? I still would like to connect by using ethernet connection to the base station.

    I have the aebs connected via an ethernet connection.
    OK, that is different that what I understood from your previous posts.
    I have the ethernet connection plugged into the LAN port on the back of the aebs.
    That is OK if there is another router on your network providing IP addresses AND this AEBS is configured so that the option to distribute IP addresses is DISABLED.
    Otherwise, it should be plugged into the WAN port.
    ...so should I have the e-mac set up using Airport to get connection to the aebs?
    The eMac should be set to use AirPort and DHCP to get an IP address.

  • Having problems getting Comcast internet to work with my power Mac running 10.5.8  Help needed

    Just got Comcast Cable and everything works: phone, WiFi, and TV, BUT ethernet won;t work with my power mac tower running 10.5.8 . Hooked modem to laptop running Microsoft and no problem, but it won't work with my Mac.  Any solutions out there?

    Hi, see if this changes anything...
    Make a New Location, Using network locations in Mac OS X ...
    http://support.apple.com/kb/HT2712
    10.5, 10.6, 10.7 & 10.8…
    System Preferences>Network, top of window>Locations>Edit Locations, little plus icon, give it a name.
    10.5.x/10.6.x/10.7.x/10.8.x instructions...
    System Preferences>Network, click on the little gear at the bottom next to the + & - icons, (unlock lock first if locked), choose Set Service Order.
    The interface that connects to the Internet should be dragged to the top of the list.
    If using Wifi/Airport...
    Instead of joining your Network from the list, click the WiFi icon at the top, and click join other network. Fill in everything as needed.
    For 10.5/10.6/10.7/10.8, System Preferences>Network, unlock the lock if need be, highlight the Interface you use to connect to Internet, click on the advanced button, click on the DNS tab, click on the little plus icon, then add these numbers...
    208.67.222.222
    208.67.220.220
    (There may be better or faster DNS numbers in your area, but these should be a good test).
    Click OK.

  • Sudden problem getting CD-LabelPrint to work with Canon ip5200R

    The last time I successfully printed a disc label on my Canon ip5200R was in November last year - until then, I'd had no problems printing from a couple of different iMacs & my MacBook Air. I have recently tried to print a new label, but am receiving the message: "The Paper Settings are not correct. Please check the paper size, magnification ratio, and the paper orientation. To set the paper settings, please click on "Settings". To cancel printing, please click "Cancel"." All of my settings are correct! I used to get a message that advised me to check the "Quality & Media" settings, where I could make further adjustments (eg, tick "greyscale printing"), but I can no longer access this option.
    A Google search revealed that others have had similar problems - solutions suggested included updating the software. I was using CD LabelPrint v.1.3. I have installed v.1.7, but the problem persists. (When I installed v.1.8, the message indicated that there was no printer installed that would work with the program!) (I uninstalled the previous versions correctly by deleting the folder from Applications as well as from Preferences in the Library.) I have attempted to print from 4 different Macs - three of them are running Mac OS 10.5.8 and one is running 10.4.11- no luck with any of them! The only change that is consistent between them since November last year is that they have all received software updates for their operating systems. I am wondering whether something in these updates is now interfering with CD LabelPrint?
    I am frustrated with the amount of time this has taken so far, and so am hoping that someone will please be able to help me rectify the problem.
    - Merrilly

    Hi there,
    I have v1.60 of CD LabelPrint on my 10.5.8 VM and it is working fine. It also has all the Apple updates installed so I don't think this would be the cause.
    I also have v1.80 on 10.6 and it is working fine as well.
    The version 1.60 on 10.5.8 generates a pop-up as soon as the Print icon is pressed. This takes you to the Page Setup menu for CD LabelPrint to ensure you have the 'Format for' set to the iP5200R and the 'Paper Size' set to 'CD Tray C'. With these selected and the OK button pressed, the next warning window appears regarding the Quality & Media settings.
    If you manually open Page Setup in your CD LabelPrint, does it have the iP5200R set as the printer and the CD Tray C set for the paper size?
    Regarding the v1.8 and the error, this version was released to add support for Snow Leopard. Since you have to use the CUPS v10.26 driver on Snow Leopard (the v4.8.3 driver for Leopard cannot be used on SL) then maybe the same driver would have to be installed on Leopard in order for CD LabelPrint to function?
    Pahu

  • Problems getting static NAT to work between two internal lans

    Hi, I'm trying the old problem of routing between two internal LANs. This on cli 8.6(1)2. I have three interfaces/LANs; outside is to the internet, inside is the rack in the datacentre and office is a dedicated ethernet link to our office. What I want to do is allow all (for now) traffic betrween office and inside. There's a million hits on this on the 'net but I can't get it to work. Packet trace shows packets accepted from office to inside but blocked from inside to office. Both static nats are set up identically. Here's the output of show nat after packet traces in both directions. It clearly shows that inside to office isn't hitting the nat policy. I enclose what I think are the relevant bits of my config. Full config less passwords + crypto attached.
    Manual NAT Policies (Section 1)
    1 (office) to (inside) source static inside-office inside-office   destination static inside-ld5 inside-ld5 no-proxy-arp route-lookup
        translate_hits = 0, untranslate_hits = 3
    2 (inside) to (office) source static inside-ld5 inside-ld5   destination static inside-office inside-office no-proxy-arp route-lookup
        translate_hits = 0, untranslate_hits = 0
    interface GigabitEthernet0/0
    nameif inside-ld5
    security-level 100
    ip address 10.20.15.2 255.255.255.0
    interface GigabitEthernet0/6
    nameif office
    security-level 100
    ip address 10.20.11.9 255.255.255.0
    object network inside-ld5
    subnet 10.20.15.0 255.255.255.0
    object network inside-office
    subnet 10.20.11.0 255.255.255.0
    same-security-traffic permit inter-interface
    same-security-traffic permit intra-interface
    nat (office,inside) source static inside-office inside-office destination static inside-ld5 inside-ld5 no-proxy-arp route-lookup
    nat (inside,office) source static inside-ld5 inside-ld5 destination static inside-office inside-office no-proxy-arp route-lookup

    Hi Kevin,
    because your interfaces inside and office are in same security level and you have enabled same-security-traffic permit inter-interface, traffic should simply flow between this interfaces. So i think you don't need NAT between this two subnets if there is not other reason to do so.
    Then you just configure ACL which will permit traffic you want between this LANs. In this case both netwroks are directly conneted so routing should work(instead of NAT).
    Best Regards,
    Jan

Maybe you are looking for