Quo vadis Java?

I have been a programmer all of my adult life and a software developer ever since I can remember. My language of choice is the IBM OS/390 Assembler and the IBM mainframe is my world. All the things that seem big deals in C/C++/Java I was already doing namelessly in the IBM mainframe world eons ago. Byte code, I was doing 1401 emulations in the early 1970s. Polymorphism, I was writing code that supported not only different operating systems (PCP, MFT, MVS, HASP/JES, etc.) but also different releases of the same. Classes and inheritance, I have been doing SYSLIB autocalls by the Linkage Editor since ever.
It seems that nothing is new in computing. What is new is that the distinction between mini/micro and mainframe computers has blurred.
Ever since the PC came into existence I have peeked. First they were too slow and the Intel instruction set too horrible. Then the look and feel of Windows 3.1 was making me sick. In 1995/96 when PCs became fast enough and Windows95 sufferable, I tried Microsoft MFC but I gave up quickly. All of those files, I could never figure out which chunk of code was *.cpp, *.h, a resource or whatever.
In March of 2000 I picked up HTML and JavaScript. I produced quite a few things that I am very proud of, some even useful but I kind of lost interest along with the DOT.COM debacle.
In May of 2001 I tried semiseriously to pick up Java since I liked JavaScript.
I am now in the process of writing a File Management System for the PC in my spare time. It is clear to me that the mini/macro/Unix/C/C++/C#/Java world is minor league and Mickey-Mousey.
Do Java programmers really write programs of 200 lines at the most and stash them in folders within subfolders of subfolders ad nauseam?
Are Java programmers so feeble minded that cannot handle 10,000+ lines of code at the time? I have a photographic memory and all that shuffling from code file to code file is too disruptive for me.
And do Java programmers really call their variables for example JTextArea ta? Or only in Java books? My programming style is to first build tools for myself to find and cross reference whatever I am interested in. I try not to reinvent the wheel... I let you draw your own conclusions.
How is my Java File Management System doing? I have got almost all the needed ingredients but with lots of loose ends. For my own consumption it is starting to be OK.
I have an excellent files and folders finder also capable of searching for given strings and show the results in different useable formats. JTree Drag-and-Drop for the files. Simple, rich and HTML text editors. The menus, toolbar, and statusbar are in place and so are the routines that provide functionalities.
Why am I complaining then? Because major roadblocks exist. Let me explain...
a) I need a Spell Checker (badly) and I do not have the time to write one myself.
b) I need a Files Compare better than the preliminary one I wrote for now.
c) I need a Cross Reference more sophisticated (keywords, delimiters) than the one I wrote for now.
d) To be able to replace Windows Explorer and the Windows desktop I need:
1) to know how to access and process *.dat files and registry keys
2) to know how to access and process *.lnk files (desktop icons and shortcuts)
3) get more file properties than just the length and the lastModified date
4) get to the file associations (opens with)
5) convert long file names to 8.3 names especially for file names with embedded spaces
6) make "Process process = Runtime.getRuntime().exec(my_cmd)" work all the time
If the above was not enough, I have to get around Java shortcomings:
1) a replace() that does not support "null" so as to delete unwanted characters
2) the horizontal TABs mess (still a problem)
3) the EOL (End of Line) mess (still a problem)
4) the special characters (like inverted quotes) mess (still a problem)
5) line numbers and line wrap mess (still a problem)
6) and finally SPEED, I could never be as fast as native Windows.
The above lists are not comprehensive of everything, just what I could think of as of now.
What do I think of the Java programmers that I have encountered so far?
1) I have asked for a way to get the Date and Time of the Java compilation (like IBM global variables &SYSDATE and &SYSTIME). The answer I got was to use a precompiler! Here for all to see is my solution:
public void showAboutBox() {
File f_ile = new File("Jwb.jar");
if (!(f_ile.isFile())) { f_ile = new File("Jwb.class"); }
//SimpleDateFormat sdf = new SimpleDateFormat("EEEE, MMMM d, yyyy (MM/dd/yy '-' yyyy.DDD) 'at' hh:mm:ss a");
SimpleDateFormat sdf = new SimpleDateFormat("yyyy.DDD");
String info = "JWorkbench - 1.0 � ";
info+= sdf.format(new java.util.Date(f_ile.lastModified()));
info+= "\n\nA desktop file management system.\nWritten by andre nicolai.";
JOptionPane.showMessageDialog(this, info, "About", JOptionPane.INFORMATION_MESSAGE);
where "Jwb." is the code that has main().
2) I have asked for examples for Drag-and-Drop of JTrees. No answers. The "core SWING advanced programming" book has an excellent example alas it did not take into account upper and lower case file names...
For the Linux/Unix people I have a message why bother when 97% of the PCs run on Windows? I want to be a guru for the masses not a geek. Given all the Java limitations, DOS line commands, no *.EXE files, spotty built-in functionalities, need for a JVM, etc... how do we take over from the evil empire that is Microsoft unless we provide more ease of use and functionalities than them?
Comments please.

For one, java can be natively compiled (Excelsior JET, HotSpot, JIT, JOVE). If you want to make a program however that accesses system specific information, of course there will be some problems. They try to use the java VM to control alot of things, such as file names and the way the file system works. And give you ways to format the name of a file so that you can access it without being very specific about how the file system works. It's not a low level language you have to realize. It's very practical for some things currently. You can use it to make many applications with ease. But other things that other languages can do,
Java can't without becoming platform dependant in some way.
The specific project you are working is some what problematic. If you could access the specifications for the Virtual machine and make it behave how you'd like it to for this purpose, then you'd definitely have no problem. But the fact of the matter is you can't. You have to comply to the specifications Sun has set so that you can maintain pure Java.
I'm sorry that many Java programers are ignorant to all of it's features. Java is a fairly new language, and it changes VERY often. Java hasn't yet had a chance for it's main features to become stable or standard yet. There are many parts of it that many people still use that have become depricated within the last few months, or within the last year. Alot of Java programers find it difficult to keep up with Sun. I've leared alot about the newer classes and specifications included with jdk1.4, but I far from know everything about it. And alot of the problems you're confronting frankly aren't common things yet, more people will likely explore these problems in the future, but Java is a completely new battle field. With C++ you have many years of a stable set of librarys and solutions that have been around and stayed reasonably stable for years. You can post something on a message board, and some one is bound to have used it before, or know something about it.
Java changes very often. They are adding new features to it, and improving it, and trying to perfect it even as I type this message. And this is a great thing in my opinnion. If you have a problem with how Java is implemented, and have any solutions for them, or anything you feel would be a useful thing for them to look into, tell them! You can comment on their specifications, make suggestions, many things have been placed open for developers to tell Sun how they should improve and build on Java. They do have the ability to make native operations available to the VM if you really need them.
If you want to look at the real "Mickey-mousey" people, who really don't do any low level programing at all, go look for the UML object orieted designers. Those people who get payed alot more then the programers do for directing and implementing a design of an object oriented program. They probably couldn't answer your questions on how certain operations are done, or how to access windows system registrys. They can get alot of people who allready know these things, and have them write different blocks of the programs using the skills and knowledge they have, and then build an enormously complex program, far more complex then any single programer would be able to understand. Perhaps you can memorize your entire program, and build enormously complex systems for yourself, but object orieted design isn't made for just you. It's created so your code will be re-usable to other people.
You can change part of your coding, and they can implement it exactly the same as before, interface with it exactly the same as long as it meets it's previous implementation. Perhaps you can reuse your own code, but a procedural 10,000 line program is far less reusable then a program that's broken up into blocks where you can change pieces of it, and have it act exactly the same as previously. Packages are definitely the most practical way for Sun to go, as is object oriented programing design, as is the Virtual Machine. If you change your operating system, your computer, your processor, anything, all it takes is one program to make all others run. You only need ONE Virtual Machine, where as otherwise you'd need all programs to be redone, all of their funtionality would be lost. You can also upgrade ALL programs ever written for that VM, by simply upgrading the VM itself. If it uses any new optimizations, or techniques, or new HotSpot native compilation etc.. So will your program. So ALL programs ever written in Java are changed with any change to it's VM.
Perhaps if you're intersted in producing programs only for Windows Client sided programing, then you can deny Java completely. Java can be run on any computing system, on any handheld devices, on anything that has VM. It holds a large share of the market, it's very handy, but in the end it is just a language. It's a solution to some problems. So far, it's not been very friendly to client sided development, or anything that involves graphics. This is just a problem with it's earlier implementations. They've been working on making useful graphics librarys, and GUIs to use with your programs. I've been very impressed with the speed of Swing components in jdk1.4, as well as the additions to Java2D that includes offscreen hardware accelerated graphics. Java is moving it's way into the Client sided programing market, but it's been retarded, mostly because of Microsoft. It's had problems implementing many things because Microsoft keeps such a stronghold on it's operating system, and it's reluctance to include a non proprietary VM with it's system. Windows XP will be included with no VM, which will be a big problem for non-experienced computer users to utilize. Java applications can be run on Linux, and Solaris systems just like any other program. The reason they don't on windows, is because Microsoft doesn't want them to. Perhaps they'll conform in the future, Microsoft is one big problem Java is facing.
-Jason Thomas.

Similar Messages

  • HP LaserJet 2100TN... quo vadis?

    I appreciate many folk are having trouble with HP printers since upgrading. I was printing fine via a Linksys broadband router on the ethernet, with an assigned IP to the HP printer. Now I can't see it. I've trawled through the forums and tried various combinations and permutations. I suspect most networks will have a hub of some description; not sure if this is where the problem lies. I can't mess around with network settings (in terms of DHCP) as this is how I get online, also through the Linksys. I did read somewhere about uninstalling all old HP software/drivers, etc. but I can't find an uninstaller on my system. It seems that some users out there have cracked it, whilst others are still in the dark. No point in ranting about it, but these sorts of things shouldn't be allowed to happen. It's a great printer, so there's no point in ditching it. What I may have to do is Time Machine back to the previous OS until the dust settles...

    Give the drivers on HP's site a shot. They are available at:
    http://h20000.www2.hp.com/bizsupport/TechSupport/DriverDownload.jsp?pnameOID=149 18&locale=en_US&taskId=135&prodSeriesId=25469&prodTypeId=18972&swEnvOID=219
    Technically in most cases you should not need drivers, but the fact that HP's website says "os X 10.4 update" as the driver makes me think they might have a problem with 10.4's stock driver. So give that a shot and let me know if it helps. Good Luck!

  • Quo vadis Creati

    Many products in Creative's webstore appear to be out of stock. Creative announced the W and the Vision M 60 gig a few weeks ago but neither are for sale. Are there serious problems with the business health of the company beyond the seemingly poorly handled move into its new US digs?

    Many products in Creative's webstore appear to be out of stock. Creative announced the W and the Vision M 60 gig a few weeks ago but neither are for sale. Are there serious problems with the business health of the company beyond the seemingly poorly handled move into its new US digs?

  • Lightroom Quo Vadis?

    I subscribed to the Adobe photography subscription, even without the need to use Photoshop often. I mostly subscribed because Adobe gave the impression that subscribers may receive additional benefits (as a subscription is actually more expensive over the major version period than a paid upgrade), that new functions will be released more incrementally, and that new camera support will be released more timely.
    All this dies not happen. There is no mention (not to speak of a beta) of Lightroom 6, so the promise of more incremental development has not been materialized.
    Adobe introduced Lightroom mobile, which is a benefit for subscribers, but it has absolutely no practical use for me. I would have liked to see a mobile Lightroom as way to import my RAW files onto my iPad, so that I have a backup, and that I can start to do basic image management work, while traveling, such as keywording, rating, and add the IPTC attributes to an image. Nothing like this happened. As it seems, I cannot even import my raw files directly from my iPad card connector into Lightroom mobile. It is only able to snyc from my main Lightroom catalog via the Adobe cloud, which is useless, when you travel and when you have no broadband connection or when image transfer is out of questions because of online costs. So for traveling photographer, Lightroom mobile is actually useless.
    Instead, Adobe focuses its mobile strategy on image editing, instead of image management, which is a hge mistake. I won't edit images on any mobile device, because it does not make a lot of sense. Image editing is for me and presumably a lot of others something done on large and good monitors. Mobile editing could have some meaning for some quick and dirty stuff, but to me, a proper local raw import and image management would be more important. Ironically, the iPad Foto app can import my raw files and show the images  with no problems (embedded JPEGs), so why can't Lightroom mobile?
    Add to this, the recently slow support of additional cameras. Adobe was usually the quickest. Photokina is more than a months ago, new cameras a readily available, sensors haven't changed a lot. Currently, E-PL7 support is not in sight, there is even no release candidate for a Lightroom version, supporting this camera.
    Adobe wants to squeeze out more money from us, via tis cloud model. Which is ok. But only, if you improve the service and benefits for subscribers!
    I am a Lightroom user from Lightroom 1 beta! I was up to now very happy with it. Therefore, I subscribed, also to support the product. But today, it is the first time, I am absolutely not satisfied. Adobe Lightroom strategy is going into the wrong direction, unfortunately, and promised subscriber benefits are close to nothing.

    Hello,
    I fully agree to the words of Thomas !
    I also started with Lightroom 1 / PS6/7 and bought all available updates up to Lr 5 and PS-CS6. Then the subscription came along and I jumped on the train and bought the subscription for existing users as an update. The first 'kick in the ***' came when Adobe offered the subscription for the same price as upgraders who have spent thousands of bucks to the products to all people. The next kick is that Lightroom is not updated permanently as PhotoShop is. To my understanding of a subscription, this is one of the main features.
    Now we are at a point in which ACR is further developed than Lightroom ? Surely we got the mobile opions for lightroom, but for me, like Thomas said before, is worth nothing though I don't want to do any work to my pictures on the iPad. Furthermore, it to me it makes no sense to first import the pictures into Lr on PC ( or Mac), then create a collection called mobile, then wait for the upload of the pictures to Adobe's cloud and then again wait for the download to the iPad.
    Since more than 1 month there is a beta for ACR 8.7 which gives support to new cameras - where is the Lr 5.7 beta ? I remember earlier, prior to the subscription mode, there were a few days in between the beta for ACR and Lr.
    At this point, the complete subscription in the way offered and used by Adobe looks to me as just a simple way to make much more money for Adobe, and all things getting worst for the customer, especially for customer who are more interested in Lightroom than into PhotoShop !
    if you are able to change my mind, please, convince me, Adobe !

  • [Swiss JSF Users] JSF Special-Interest-Group Switzerland

    JSF is proving more and more competitive each day. A increasing number of
    companies are developing applications based on JSF.
    Often the same questions/problems/hints are valid for almost all users of
    JSF. Internationally some active communities have been established. Last
    year a first encounter of JSF-entusiasts created the idea of "JSFDays Europe",
    a conference that allows to get in touch with the main players int he
    JSF-universe and to meet also informally. This first encounter took place
    in Munich, was organized on very short notice during the Oktoberfest. An
    intense session with the JSF expert group lead Ed Burns allowed the users
    to voice their wishes for JSF 2.0 and regognize the "approachability" of
    the JSF-people at Sun. Within Switzerland so far the contacts between the
    users are rather sporadic and more on a one-to-one basis.
    Hopefully some contacts have been added during the Jazoon-conference. We
    would like to go one step further and establish the networking between
    Swiss-JSF users. An active community can help in solving problems or even
    create components that are usefull for some or all members. And in
    Switzerland we encounter some problems (like i18n, as most of our
    applications need to be available in multiple languages) that other
    international users do not encounter or encounter later or to a lesser extent.
    The JSF-specification is driven by requirements that are brought to the
    Expert Group discussing the specifications. So far much input has come
    from framework-architects, appserver-providers and tool-creators. It's
    about time the actual users let hear their voices as well. Although the
    expert group members can be contacted and have proven to be very
    responsive, requirements coming from an official user-group have more
    importance.
    Establishing a "JSF user group" as a independant community or a
    "special interest group" under the umbrella of the
    "JUGS (Java User Group Switzerland)" could be the outcome of this meeting.
    The underline the importance of "interaction" and communication for the
    community, we propose short presentations with much space for discussion.
    Date: Thursday, 2007-06-28 (right after the end of Jazoon 07)
    Place: Zurich, close to the location of Jazoon 07 (but not yet defined)
    Agenda:
    - 16:30 - 17:30: HTTP-GET interface into JSF-applications
         Presenter: Ed Burns
         Abstract: First ideas on the upcoming GET-interface into
    JSF-applications. ...
         30 minutes presentation, 30 minutes discussion on
    these ideas and their implications on the applications
    - 17:30 - 18:30 (resp. open end): JSF, Quo Vadis?
         Presenter: Ed Burns, Alexander Jesse
         Abstract:
         - Where is JSF heading? The Expert Group is forming and discussing
    the next version of the JSF-spec right now.
    What are the ideas driving the EG?
         - Where is JSF heading in Switzerland? Can we say a User Group is
    forming right now? What could be the plans of this group? Should
    it participate in the "JSFDays Europe" initiative?
    In order to plan the upcoming first meeting (room,...) we would appreciate
    feedback from all interested people. Also from those that cannot come to
    the first meeting, but would welcome the foundation of the
    JSF Special-Interest-Group Switzerland.

  • Canon on screen manual

    I just up-graded to OS 10.6.8 (snow leopard). The on screen manual for my Canon MX 300 multipurpose machine disappeared and attempts to reinstall it from the CD have repeatedly resulted in an error message: : "Help viewer cannot be opened because of a problem. Check with the developer to make sure Help Viewer works with this version of Mac OS." etc.
    I have discussed this with Canon support and they say that it is a Mac problem. I suspect they are correct. The printer-scanner-fax all work just fine. The MP Navigator works.
    How can I get my directions back on-screen
    "Quo Vadis?"

    Hi Ken,
    I just ran through the setup of my MP980 using the BU-30 and it all seemed to work okay for me. Using the Bluetooth Setup Assistant the MP980 series-1 was displayed as a Printer and on clicking Continue there was a very brief message about pairing and using 0000 for the passkey. However before I could enter the key the assistant closed and then showed the printer was paired and connected.
    I then opened Print & Fax and selected to Add the printer using the Default view. The MP980 appeared after several seconds with the Kind column showing 'bluetooth' and when selected the Print Using menu changed to the MP980 series. Clicked OK to complete the creation of the print queue and was then able to print to it from Preview.
    The thing I did notice with the Bluetooth app in Sys Prefs was that after a document had printed the printer was showing 'Not Connected'. But as soon as I selected to print again this would change to 'Connected'.
    Regarding the driver, Canon is showing v10.26 for the iP100, which is the same version used by other models. If you connect the iP100 to the Mac via USB and then run Software Update you should get an even later version (10.30.3.0) that is also part of the [Canon Driver Update v2.3|http://support.apple.com/downloads/CanonPrinter_Drivers_for_Mac_OS_X_v106] update.

  • HT1918 Change of address

    I've changed my address on iTunes months ago, and I can see my updated address, but my old address is still on the record (when I get the receipt, it has my old address on it). I've also changed provinces, so I've had to pay HST instead of just GST. When I check my iTunes account, it has my new address on it. Any suggestions on getting this fixed?

    Hello,
    I've just come back to your reply because I've just discovered why I do not get notifications: Apple still has my old defunct email address !
    I've tried to change it, but tells me that the old address cannot be changed !!
    So I tried to set it up as an alternative address.
    Then it told me that it is verified for another Apple ID !! That is not possible - unless somehow it happened when I tried to set up an iTunes account, but gave up when it got too complicated.
    But more to the point, I DO NOT want an iTunes account !!  So where do I go from apart from leaving the Apple communities for good
    Quo Vadis
    gete

  • HT1918 Change of Email address

    All I want to do is to correct my Email address. This has been changed by a new Internet Service Provider.
    I AM NOT trying to set up an iTunes account, which I do not want.
    I hope someone can help, otherwise I will simply forget the whole thing.
    At 88 years of age I haven't the time to mess around!!

    Hello,
    I've just come back to your reply because I've just discovered why I do not get notifications: Apple still has my old defunct email address !
    I've tried to change it, but tells me that the old address cannot be changed !!
    So I tried to set it up as an alternative address.
    Then it told me that it is verified for another Apple ID !! That is not possible - unless somehow it happened when I tried to set up an iTunes account, but gave up when it got too complicated.
    But more to the point, I DO NOT want an iTunes account !!  So where do I go from apart from leaving the Apple communities for good
    Quo Vadis
    gete

  • Android support / mobile future?

    Hey there,
    i'm really convinced of Adobe CC and it's possibilities of network based and/or mobile workflow,
    but the lack of android cc apps is more than frustrating!
    I recently watched the mobile future presentation and I would really, really like to participate of the possibilities
    which were recently already created through the new mobile apps, but as an android user i feel pretty left alone (said it politely).
    Furthermore i'm paying the same money as, for instance, apple iOs users...
    In addition I noticed the subtle mention (sic!) of mobile microsoft devices during the mobile future presentation,
    therefore i became pretty scared which os/devices might get the most support in the future and irritated
    why the new apps are almost only available for apple iOs.
    So... Quo vadis, Adobe!?
    Sincerely,
    Andre Merkelbach

    Adobe seem to have completely ignored/ discriminated against Android users as usual. Android users deserve a rebate on their CC fees as they only get a partial service. 2 apps out of 11 available for Android, and they have less features?! Insulting! What gives, Adobe?!!

  • Most perceived forum

    hey coffee corner regulars and lurkers,
    could it be true that CoffeeCorner has become the most perceived forum in here? doing a quick check I feel that the average number of views per thread in here is much higher than in any other forum. also the reply rate seems to be quiet formidable.
    so, maybe we should move on from mere ranting to discussing the big issues like
    - Quo vadis Netweaver?
    - ERP2005. Is it complete?
    - SOA? Are there sucess stories of sustained adoptionout there?
    Of course they need to provide the coffee corner with larger cappucino mugs for such  discussions. )
    regards, anton
    ps: 'SDN Coffee Corner' mug would make a nice giveaway at the TECHED SDN booths )
    pps: raising a budget for the mug idea and later giving it away for something like having been discussed in this <a href="/people/nigel.james/blog/2007/06/26/three-little-words--change-the-world would even be nicer

    Alvaro -
    You wrote:
    "Actually....That goes into Suggestions and Comments forum -:) The Cofee Corner is a place to talk about things that are not directly related to SAP -;)"
    That is not really true at all, at least not according to Craig's and Mark F's original statements of what they and SDN wanted "Coffee Corner" to be.  You can check back to the original posts announcing the rationale for Coffee Corner. (This is something I am very familiar with, because it was shortly after I started to post too many "opinion" blogs in the regular blog space that Coffee Corner was initiated ... and no, I don't think I'm taking too much credit or responsibility here.)
    Also, I have always thought that "Suggestions and Comments" was for suggestions and comments about SDN itself, not about SAP in general.
    Anway, I definitely agree with Anton.
    Cofee Corner should be the "low-rent"  and "declasse" place where just plain common-folk can get together and brainstorm like the more privileged elite get to do in the "imagineering" program ... (am I jealous of Dan and Ed? You betcha!)
    djh

  • Belle firmware for N8-00 - slower, worst... sucks

    I have been updated F/W to Belle OS in my N8-00. I can't believe what Nokia did. My observations:
    - slower operation (ex. switching screens),
    - random and spontaneous restarts after sending SMS,
    - SMS keyboard (vertical mode) is sucks,
    - worst access to emoticons and symbols when writing SMS,
    - drop-down list (connection/date/time) is sucks,
    - etc.
    Quo vadis Nokia?
    BR,
    mikelflogic

    Your list:
    - slower operation (ex. switching screens),
    - random and spontaneous restarts after sending SMS,
    - SMS keyboard (vertical mode) is sucks,
    - worst access to emoticons and symbols when writing SMS,
    - drop-down list (connection/date/time) is sucks,
    I had similar problems after updating an N8 to Belle.  I decided (based on feedback from Nokia Care) that it needed to be brought back to Nokia to have everything installed again as if it was new.  With nothing left to lose, I did a full backup, and then removed any programs that I suspected might be causing problems - especially the SPB data monitor utility. I figure I could always re-install the programs, which I'd have to do anyway if it went back to Nokia.  Anyway, doing this corrected the random restarts, and switching screens became butter-smooth.
    The SMS vertical keyboard is what it is - it's nicer than the old Anna screen, but not as nice as the iphone screen.  After a few days of using it, it feels quite natural (to me).  It's a trade-off.  There is no "one size fits all".
    Emoticons, drop down lists, and many other things that are missing....   if I only had one N8, and it was running Anna, I'd leave it alone, unless the features you'll be losing don't matter to you.  As it is, I've got two of the critters, and I'm leaving one alone with Anna (in case the problems don't get fixed), and am still using the Belle phone for daily use.  For someone who doesn't use all the high-tech stuff the N8 is capable of, I think Belle will make the N8 seem like a nicer phone.  You've just got to decide what matters most to you - form, or function.
    You can skip towards the last page or so of this thread to see the full list of things we are hoping Nokia corrects:
    /t5/Software-Updates/List-of-Belle-additions-corre​ctions-needed/td-p/1328167 

  • Editing the templates

    I have a new trial site that I'm playing with (my first site) but can't see how to edit the template to enter my info into. I have managing it using the portal and Dreamweaver. Am I being stupid?
    I am using the Quo Vadis template and want to edit the company name and the items in the menu as a start.
    Nick

    On Thu, 12 Jul 2007 00:29:36 +0100, David Powers
    <[email protected]>
    wrote:
    >STL Hoodstar wrote:
    >> The Problem: When I am in the template, I can add an
    id to the <body> tag to
    >> mark the page. However, I am unable to make any
    changes to the <body> tag of
    >> pages that are based off of this template.
    >
    >Exactly the same question was asked yesterday. The answer
    hasn't changed:
    >
    >Define an editable tag attribute.
    >
    >
    http://livedocs.adobe.com/en_US/Dreamweaver/9.0/WScbb6b82af5544594822510a94ae8d65-7aa3.htm l
    It was indeed- by me ! and it works well
    just be sure to read this too:
    http://livedocs.adobe.com/en_US/Dreamweaver/9.0/help.html?content=WScbb6b82af5544594822510 a94ae8d65-7aa3.html
    it is linked on the page refered to by David - but it tells
    you how to
    use in once set up in the template.
    ~Malcolm N....
    ~

  • Problem with creating PDF

    Hi,
    I used iText-2.1.7.jar in my java program below.
    No problem on build.
    But when i deploy and run, it gets error below
    java.lang.NoClassDefFoundError: com/lowagie/text/Phrase
    How can i solve this problem?
    Thanks.
    Code
    import java.awt.Color;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import com.lowagie.text.Document;
    import com.lowagie.text.DocumentException;
    import com.lowagie.text.Element;
    import com.lowagie.text.Paragraph;
    import com.lowagie.text.pdf.PdfPCell;
    import com.lowagie.text.pdf.PdfPTable;
    import com.lowagie.text.pdf.PdfWriter;
      public void CreatePDF( )
        //@@begin MusteriBazindaPDFolustur()
              //        Assume the below is the input file format
              String input =
                   "100,Anakin Skywalker,EAS,ConsultantEND200,Darth Vader,Java,Sr. ProgrammerEND300,Obi-Wan Kenobi,MSTechnologies,Project ManagerEND";
              // creation of a document-object
              Document document = new Document();
              try {
                   // create a writer
                   PdfWriter.getInstance(
                   // that listens to the document
                   document,
                   // and directs a PDF-stream to a file
                   new FileOutputStream("output.pdf"));
                   // open the document
                   document.open();
                   // add a table to the document
                   PdfPTable table = new PdfPTable(4);
                   PdfPCell cell =
                        new PdfPCell(
                             new Paragraph("Employee Details for XYZ Organization"));
                   cell.setColspan(4);
                   cell.setBackgroundColor(Color.red);
                   cell.setHorizontalAlignment(Element.ALIGN_CENTER);
                   table.addCell(cell);
                   //Set Header Text for the Table
                   cell = new PdfPCell(new Paragraph("EMP NO"));
                   cell.setBackgroundColor(Color.blue);
                   table.addCell(cell);
                   cell = new PdfPCell(new Paragraph("NAME"));
                   cell.setBackgroundColor(Color.blue);
                   table.addCell(cell);
                   cell = new PdfPCell(new Paragraph("DEPARTMENT"));
                   cell.setBackgroundColor(Color.blue);
                   table.addCell(cell);
                   cell = new PdfPCell(new Paragraph("DESIGNATION"));
                   cell.setBackgroundColor(Color.blue);
                   table.addCell(cell);
                   //Fill data to the table                      
                   String inputArray[] = input.split("END");
                   for (int i = 0; i < inputArray.length; i++) {
                        String fieldValuesArray[] = inputArray<i>.split(",");
                        for (int j = 0; j < fieldValuesArray.length; j++) {
                             table.addCell(fieldValuesArray[j].toString());
                   document.add(table);
              }catch (Exception ioe) {
                   System.err.println(ioe.getMessage());
              // close the document
              document.close();
        //@@end

    I asked with clearly again.
    Therefore i cancelled this question

  • Sync problem after update to Belle

    Hi Nokia
    I have updated my E7-00 to Belle yesterday and
    now when I'm trying to restore my contacts,
    calendar and notes from Ovi sync server I'm
    getting error 'Service activation failed. Try again
    later.' I've reed in this forum that the exact problem was
    in August-September 2011, which was solved
    only in early November by manipulating on Ovi
    Servers. How can I restore my contacts now? Will be the
    issue solved and how urgently?
    Solved!
    Go to Solution.

    Some 2 months ago, I installed leaked Belle v.111.030.0607 on my N8 and everything worked fine including Ovi Sync.
    2 days ago I updated to the official Belle version and the Ovi Sync failed to work with message: "Service activation failed. Try again later."  The problem still persists now.
    Can you believe it, leaked Belle version works better than the official version?
    Quo vadis Nokia?

  • And Yet Even Another Standalone Download Issue Safari 3.2.1 Tiger

    Hello all
    +*It must be the will of Apple !*+
    Alas, http://discussions.apple.com/message.jspa?messageID=8458073#8458073
    Again,I cant find a link to a download the Tiger Version of the latest update, that will allow me to use a stand-alone-download for a Mac via a PC !!If any kind soul can please once again help that would be most appreciated.
    Otherwise, I shall have stick with FireFox !
    Thanks again in advance

    I wonder if the browser is reporting the platform to the web site and directing us to different pages because that link definitely takes me to a page offering Tiger and Leopard versions. I hate pages that do that. A certain competitor of Apple would only let you get access to its updates if you were running a copy of the OS on your computer connecting to its site, making it impossible to update a different computer not connected to the Internet. Quo vadis Apple?

Maybe you are looking for

  • TS3280 How can i enable both paired bluetooth and ios keyboard input at the same time?

    How can i enable both paired bluetooth and ios keyboard input at the same time? This is needed for the app im working on. Need some user input via keypad as well as scanner input via a paired bluetooth scanner.

  • LOVs not working in Webi Report for SAP BO 4.1 SP 2 Patch 3

    Hello , I have developed reports and universes in SAP BO 4.0 SP 5 and i have migrated those reports to higher version of BO which is 4.1 SP2 Patch 3. My universe is working fine with LOVs but when i run the webi report , the LOVs arent working. have

  • Princeton dual display extended desktop

    This is my first apple...I have the G5 quad and I hooked up my two Princeton LCD17 monitors, with the adapters. They both have the apple background screen, but only the right monitor has cursor function, the left is just the blue background w/the inf

  • Database assisted publishing

    I trust you will be gentle with a newbie question.  I am a database designer.  A non profit publishes a catalog.  It is a large index of names that are cross referenced to companies.  This is professionally published - and selling it is their primary

  • Error in personal information in ESS

    Hi all We have suceessfully configured ESS business package.But when i click on the personal information workset, i am unable to see any details.Instead i am getting the message <b>"There are no services in this area"</b> Any configurations needed to