EXC_BAD_ACCESS - sample code - just need pointing in the right direction

Hi all
I've been trying to add groupins and a floating A-Z listing to my UITableView.
I found a great article on the web but the setup of my code differs slightly (probably because I got some of the architecture wrong to start with!).
Anyhow, I'm getting an EXCBADACCESS error on the following code at this line
NSArray *tempAuthors = [dictionary objectForKey:@"Authors"];
Here's the full function...
-(NSInteger)tableView:(UITableView *)tv numberOfRowsInSection:(NSInteger)section {
NavControllerAppDelegate *appDelegate = (NavControllerAppDelegate *)[[UIApplication sharedApplication] delegate];
NSDictionary *dictionary = [appDelegate.authors objectAtIndex:section];
NSArray *tempAuthors = [dictionary objectForKey:@"Authors"];
return [tempAuthors count];
appDelegate.authors is declared in the interface as follows:-
NSMutableArray *authors;
@property (nonatomic, retain) NSMutableArray *manufacturers;
...and then in the implementation:-
@synthesize authors;
I don't fully understand what the @synthesize or @property does so maybe I've done something wrong here?
Any help much appreciated.
Regards
Wayne

Hi Eric
Here's what I've been able to figure out.
"authors" is a NSMutableArray declared in my AppDelegate. I successfully fill this with NSDictionary objects via a method in the AppDelegate. Each Dictionary object contains the key and the value of each is set to another NSMutableArray of "author" objects.
Using the debugger I can step through and watch the initial "authors" array being built and I can see that at the end of the code it contains 21 objects of type NSDictionary - all good so far.
My code then moves to a UITableViewController where the "numberOfRowsInSection" code is called.
This is where the trouble begins. Stepping through the dbugger once more I can now see that my original "authors" array (which is exposed from the appDelegate as a property) still contains 21 objects however they are now of differing types!!!
Some are still NSDictionary objects but some are wrongly showing as NSObjects - the NSObject ones also have "invalid" in the summary field of the debugger window.
Somehow, the objects which were all created in the same way (via a loop through a database set of records) and added to the "authors" array in the same fashion are now not the same...***?!
Obviously I'm a bit new to all of this but what strikes me is the randomness of the objects in the array which are no longer of the correct type.
btw, let me know what code you would like to see and I shall post it.
Regards
Wayne

Similar Messages

  • New iMac user needs pointing in the right direction

    Hi all
    Having used PC's for all of my life I have now converted to a Mac.
    I have bought my new Applie iMac MC309B/A (Intel Core i5) http://tinyurl.com/5wddgf3
    At the sametime I also bought an iPad 2 16gig (wifi only), also a Magic Trackpad and was also give £50 worth of accessories so got an iPad 2 dock and case, and to keep my other half happy I bought her a dishwasher (I'm so kind!!)
    Anyway as I said at the start I am new to all this and having a little play before work I kinds struggled to understand what to do.
    Its there an idiots guide I can use or one recommend?
    I would like to stream films from my external hard drives to my tv. Now I do have a phat ps3 (with the memory card slot)
    Could I stream them from the imac/external hard drive to the PS3?
    Is it easy to setup?
    Or would I be better off getting Apple TV?
    Thanks
    Ric

    Free Solution:
    Download Vuze: http://www.vuze.com/
    Costly Solutions:
    Rivet: http://thelittleappfactory.com/rivet/
    Twonky: http://twonkymedia.com/
    AppleTV
    No prob Ric, solve your question?
    As for starting up with the new Mac, congrats on making the switch, here's a place to start: http://support.apple.com/kb/HT2054
    There are books for dummies, manuals in the box that you bought the Mac with, YouTube tutorials even. There's a limitless supply on the web!

  • Need to be pointed in the right direction for buttons

    Hello,
       I'm trying to figure out if this can be done.    Lets say you have 3 buttons on a web page.  When you hit one of the 3 buttons, text appears and locks on the page.  Each button has different texts that appears and locks.  No matter what order a person hits a button. The texts for that button appears.
       I'm not sure how to do this.  I know how to link buttons and send it to different parts of the timeline, just don't know how this would work.
    any help to be pointed in the right direction would be great.
         Thanks in advance,
            Peter

    Hi Ned,
            If I make a movie clip for each button (3 total) and each button has its own text.  If I have all three layers on top of each other it will play all the text at once.  That something I don't want.  If I spread the layers so there not on top of each other.  I can code it to have the text appear when the button is press but, only one set of text will appear at a time.  What I would like is once the button is pressed and the text fades in it locks in place.  If you press another button, that button texts fades in and locks.  The text from the other button stays locked
           Other Idea I had was when your working with buttons, and double click on it to get the "up-over-down-hit" on the timeline.  on the over part, I know how to put text in that way.  is there a way to lock it once the mouse goes on the "over" part of the button ????
       Thanks,
         Peter

  • Can someone point in the right direction for how to make a multiplayer game over the internet

    Hello,
    I am looking into making a game where two people who can be in different places would log on to the app, log in and can play - i.e. they would be connected over the internet. I'm looking for a hint on what is the direction to take and which technologies.
    For example is there a best practice for example if you make an app with DirectX and C++, and you use some kind of web service or something? or is it easier using C# and XNA? just looking for some pointers in the right direction. I have played around
    with DirectX, far from proficient but have familiarity, I have no experience with XNA but hear it's less hardcore and easier going. I'm particularly interested in what the best way to connect over the internet.
    Thanks

    What you are asking is very complicated and one of the more difficult things you can do in gaming. I'd strongly recommend you start smaller to learn and then move up to multi-player games as your skills grow.
    From the multiplayer client perspective it doesn't really matter which technology you use. You can write a multiplayer game in any engine or technology that can talk to the network. Choose the client technology that you are most adept at and interested in
    and learn it. You can go straight to DX, use a third party library such as Monogame (XNA isn't supported for Windows Store apps), or a complete game engine such as Unity. Once you can write a decent one-player game you'll have the foundation to start on to
    build a two-player game.
    At that point you'll need to define the problem much more specifically. As you state it, it is really wide open. How do you want the users to connect? Directly machine to machine? Matched through a web server but running client side? Connecting to a game
    running on a remote server? Something else?
    The network connection itself is probably fairly straightforward, but where to connect and how to manage that can be difficult. You'll have to decide what properties you want. Is this an action game where responsiveness is important or
    a turn based game where timing is less relevant?
    Are the players connecting locally or completely remotely? If the former then they can probably connect directly over the local network (NFC is great here). If the latter then they probably will need to connect to a matchmaker service to avoid firewalls.
    This can get very complex, but there are existing solutions you can use rather than writing your own.
    --Rob

  • Need help being pointed in the right directi

    I have been out of the computer game for a number of years and with the advances, I think I am having trouble understanding what sound cards are capable of these days.
    What I am wanting to do is hook up my sound card to a reciever, which I'm assuming I'd need rca outputs, or directly hook up speakers to the sound card. What I would like to do is use stereo speakers (the big ones) and maybe even possibly have a bass connection if that is at all possible. I think this is 2.
    I'm pretty lost. I know stereo speakers are hooked up by wire, and not a plug connection.

    Hey!? so if you are purchasing a new sound card, there are basically a few options you can do:
    - If you are connecting your sound card to a receiver, there are a few sound cards that have optical outputs (such as the x-fi titanium) where you get a digital signal from your card, to the receiver. make sure your receiver has an optical input (sometimes called toslink)? That will give you the easiest (in my opinion) connection for "digital".
    - Some older cards have a digital out from a miniplug connection (like a headphone jack) that will then go to your receiver and go into a "component in" receptacle - which is usually orange in color and looks like a single RCA connector alone. this is also "digital" and not "analog".
    - RCA is the easiest analog connection to a receiver. Basically, you need a RCA cord that on one side has the red and white connectors, and on the other side, it looks like a headphone jack, called miniplug. you would plug the "miniplug" into your sound card in the back, and then the RCA side to the rear of the receiver. that will give you stereo sound. the Subwoofer or bass connection would come from your receiver which takes care of it. ?
    The digital connection is primarily if you want surround sound. think like 5. or 7. Sounds like you just want 2. sound (2 speakers and . for the subwoofer)? I would just go with the analog connection and get the hybrid RCA cable. ?
    Hopefully this helps and its not too complicated. ?

  • Remove method: push in the right direction

    Hello everybody. I am new to java and programming all together ( i have been programming for about 3 weeks or so). I am sorry if the question is simple. I seem to be having a problem with remove function.
    Basically I have class Task(which has an ID, brief description, dueDate etc...). I also have a task TaskList as well as a class Date . The taskList has attributes an array of type Task with a length of 10. It also has methods to add, remove tasks as well as display the arrays contents. The remove method is what is causing me problems.
    My general thinking was to find the arraycell containing the reference that points to the taskId that is to be removed. Afterwards I wanted to assign a null value to the cell containing the task to be removed. Then i would begin by swapping references until the null value is in a way where the array has no wholes in it.
    I have tried different variations of the same logic but either it does absolutely nothing, either I get a nullpointer exception. I am not looking for an explicit answer, just a nudge in the right direction. Is the general idea I proposed earlier worth anything. Can I affect a null value to an arraycell containing a reference to an object.
    Thank you in advance for any help.
    P.S: Again I apologize, for I know this must be a question that keeps coming up over and over...
    Oh, before I forget, are there any good textbooks that explain ina detailed manner class relationships, particularly dependancy, aggregation and inheritance.

    Why not use a List instead? Lists are dynamic, i.e. they can add or remove
    elements anywhere, closing the gap (i.e. there's no need to stuff nulls in there).
    Something like this:public class TaskList {
       private List l= new ArrayList();
       public void add(Task t) { l.add(t); }
       public boolean remove(Task t) { return l.remove(t); }
       // all the other functionality you want goes here ...
    }kind regards,
    Jos

  • Hi, I need a video editing software for my Power Mac G5 system. Hunted all over for one! Can anyone help me and point me in the right direction. Everything I come across is for intel based systems. Many thanks in advance.

    Hi, I need a video editing software for my Power Mac G5 system. Hunted all over for one! Can anyone help me and point me in the right direction. Everything I come across is for intel based systems. Many thanks in advance.

    I have Final Cut Studio V1 - the PPC/Intel V5/5.1 cross-grade version, which would suit your requirements perfectly. (I have it for sale at present down here).
    If you keep looking, you're sure to find a similar second hand copy in your area, without the need to upgrade your graphics card.
    I'd go for Final Cut Pro as above over any version of Express. FCP has the full version of LiveType - not the truncated version that was released later on.

  • I have the iPhone 4 and I put a vanilla gift card visa on there and i used all the money on there I can't update any of my apps till I get rid of the gift car and I don't want to put another card on there please help me I just need to have the option none

    I have the iPhone 4 and I put a vanilla gift card visa on there and i used all the money on there I can't update any of my apps till I get rid of the gift car and I don't want to put another card on there please help me I just need to have the option noneI have the iPhone 4 and I put a vanilla gift card visa on there and i used all the money on there I can't update any of my apps till I get rid of the gift car and I don't want to put another card on there please help me I just need to have the option none I've checked.

    Need to Resume download to complete the ongoing Process.
    Last Resort, put the iPhone in DFU mode (Google How to do that). Connect in iTunes. Follow on-screen prompts to Restore. All Data would be lost, if not backed up earlier.
    To save the photographs you may have to use third party software. Google is your friend.

  • Need advise about new computer (OS Win8.1) to run CS6 - please point me in the right direction  Thanks

    Question:  Need advise about new computer (OS Win8.1) to run CS6 - please point me in the right direction  Thanks

    OSX comes with Xcode. Install it and see what you think. You can write both Java and Objective-C. They both have a particular syntax that is quite different from VB. Try to use them to write a HelloWorld program and see what you think.
    Apple has come a long way in integrating Java into their development environment. Still, it was designed around Objective-C, so that might be more of a "pure" MacOS X development experience.

  • I need better performance from my computer. Could someone point me in the right direction?

    I do a lot of video editing for work. I am currently using the Creative Cloud, and the programs I use most frequently are Premiere Pro CS6, Photoshop CS6, and Encore. My issue is that when I am rendering video in Premiere Pro, and most importantly, transcoding in Encore for BluRay discs, I am getting severe lag from my computer. It basically uses the majority of my computer's resources and doesn't allow me to do much else. This means, that I can't do other work while stuff is rendering or transcoding. I had this computer built specifically for video editing and need to know which direction to go in for an upgrade to get some better performance, and allow me to do other work.
    For the record, I do have MPE: GPU Acceleration turned ON, and I have 12GBs of RAM alloted for Adobe in Premiere Pro's settings, and 4GBs left for "other".
    Here is my computer:
    - Dell Precision T7600
    - Windows 7 Professional, 64-bit
    - DUAL Intel Xeon CPU E-2620 - 2.0GHz 6-core Processors
    - 16GBs of RAM
    - 256GB SSD as my primary drive. This is where the majority of my work is performed.
    - Three 2TB secondary drives in a RAID5 configuration. This is solely for backing up data after I have worked on it. I don't really use this to work off of.
    - nVidia Quadro 4000 2GB video card
    When I am rendering or transcoding, my processor(s) performance fluctuates between 50%-70%, with all 12 cores active and being used. My physical memory is basically ALL used up while this is happening.
    Here is where I am at on the issue. I put in a request for more RAM (32GBs), this way I can allot around 25GBs of RAM to the Adobe suite, leaving more than enough to do other things. I was told that this was not the right direction to go in. I was told that since my CPUs are working around 50-70%, it means that my video card isn't pulling enough weight. I was told that the first step in upgrading this machine that we should take, is to replace my 2GB video card with a 4GB video card, and that will fix these performance issues that I am having, not RAM.
    This is the first machine that has been built over here for this purpose, so it is a learning process for us. I was hoping someone here could give a little insight to my situation.
    Thanks for any help.

    You have a couple of issues with this system:
    Slow E5-2620's. You would be much better off with E5-2687W's
    Limited memory. 32 GB is around bare minimum for a dual processor system.
    Outdated Quadro 4000 card, which is very slow in comparison to newer cards and is generally not used when transcoding.
    Far insufficient disk setup. You need way more disks.
    A software raid5 carries a lot of overhead.
    The crippled BIOS of Dell does not allow overclocking.
    The SSD may suffer from severe 'stable state' performance degradation, reducing performance even more.
    You would not be the first to leave a Dell in the configuration it came in. If that is the case, you need a lot of tuning to get it to run decently.
    Second thing to consider is what source material are you transcoding to what destination format? If you start with AVCHD material and your destination is MPEG2-DVD, the internal workings of PR may look like this:
    Convert AVCHD material to an internal intermediate, which is solely CPU bound. No GPU involvement.
    Rescale the internal intermediate to DVD dimensions, which is MPE accelerated, so heavy GPU involvement.
    Adjust the frame rate from 29.97 to 23.976, which again is MPE accelerated, so GPU bound.
    Recode the rescaled and frame-blended internal intermediate to MPEG2-DVD codec, which is again solely CPU bound.
    Apply effects to the MPEG2-DVD encoded material, which can be CPU bound for non-accelerated effects and GPU bound for accelerated effects.
    Write the end result to disk, which is disk performance related.
    If you export AVCHD to H.264-BR the GPU is out of the game altogether, since all transcoding is purely CPU based, assuming there is no frame blending going on. Then all the limitations of the Dell show up, as you noticed.

  • Point me in the right direction: want to resize image & store in mysql db

    I finally accomplished one of my tasks! Which was trying to upload a jpeg image into my mysql database, and then display it in a jsp page via a servlet. I extend my thanks to the java forums greatly:)
    Now my next task I find is going to be trickier to accomplish, because I do not have enough experience working with images.
    I would like to make my first task above more efficient.
    When the user selects a jpeg file to send, I want to check the size of the image and resize it as well, before finally storing it in my Mysql database.
    I do not want to lose the resolution, nor do I want it to look distorted after it is resized. I want to keep the same proportions as the original image (I hope that proportion is the proper term). After the image is stored successfully, it will be read out of the database and displayed within a jsp page via a servlet.
    After poking around in the forums, I realized I need to get down the basics with regards to getting the properties of an image and trying to resize it. It doesn't look like it will be an easy task.
    Does anyone know of any sites that provide a good, easy to understand tutorial? Or are there any books you would recommend I read? What Java classes should I be looking into to accomplish my task?
    There are so many far more experienced programmers out there among the forums, that when I look at their code, I'm lost. I just want to understand this process better, by taking it one step at a time.
    Any help is appreciated, as always:)
    Thank You,
    Love2Java

    Load image with ImageIO
    Call getWidth() and getHeight()
    Create a BufferedImage with width and height scaled accordingly
    Get the image's Graphics2D object
    Call drawImage(), passing an AffineTransform to scale accordingly
    Output the image via ImageIO
    That should be it - you just need to read the APIs for the classes I've mentioned, and tack on whatever input/output streams you need at either end (see the java.io package).
    The only thing is:
    I do not want to lose the resolution
    Not totally sure what you mean: if you're scaling the image down to a thumbnail then by definition you're losing resolution. If you mean you want to keep the DPI resolution metadata in the image then you'll have to Google for it, the information is there but it hasn't remained in my head :o)
    But then I can't imagine why you'd need DPI metadata in a thumbnail anyway, so you can probably ignore it.

  • Need help finding the right codec to play QT files

    Like many others who have posted, all the quicktime files on my drive have turned to black. Previously when I opened the file, I saw picture and sound. Now every single file has only audio, but the picture is black.
    I am operation on Mac O.S. 10.4.11. I am using Quicktime Pro 7.5. I have been trying to fix this problem for a month now. Many people have suggested I need to find the right codec, but so far I have not found it. I have tried: A52codec.component, AC3codec, MacOS 8.x, 9.1.x, Apple Intermediate Codec.com, Apple MPEG2.codec.component, Avilmporter-r7.component, DivX Decoder.component, DivX Encoder.component, DivX Pro 6.8.0.19 + keymaker, EnsharpEncoderMacOsX.cmg, Fbx 20091quicktime_macemu.pkg.tar, Fbx QT.pkg, Flipsformac, WMV Advanced.component, Flipsformac WMV Advanced Exports.component, Flipsformac WMV Import.component, IMXCodec.component, LAAME Universal Installer.mpkg, LAAMEncoder.component, QSSP_2.1.dmg, QSXEssentials.component, QSXEssentials.dmg, QTFvx.component, Red Quicktime Codec v3.1.pkg, Red Code iedcod.qt.component, Spectrograph.component, TSCC.component xiphqt.component, XviD_codec-r58.component, XviDELEGATE.component
    Nothing worked!
    I also tried to install Perian. This did not work.
    What should I do? Should I re-install my operating system and start over? About a month ago, all the video clips played just fine. Is there any solution?
    Thanks

    Hi Wangerer!
    I haven't even heard of half of those! You may have reached overkill on codecs!
    Get rid of some of them and read this:
    These are the downloads and the settings you need in order to view/hear pretty much everything that the net can throw at you: The setup described below has proved repeatedly successful on both PPC and Intel macs, but nothing in life carries a guarantee!
    It is known to work in the great majority of cases with Safari 3.0.4, 3.1, 3.1.1, QT 7.3, 7.4.x and 7.5 and OS 10.4.11.
    Assuming you already run Tiger versions OS 10.4.11 and have Quicktime 7.4 or above, and are using Safari 2 or 3, download and install (or re-install even if you already had them) the latest versions, suitable for your flavor of Mac, of:
    RealPlayer 11 (which is no longer in beta) for Mac from:
    http://www.versiontracker.com/dyn/moreinfo/macosx/15540
    Flip4Mac WMV Player from http://www.microsoft.com/windows/windowsmedia/player/wmcomponents.mspx (Windows Media Player for the Mac is no longer supported, even by Microsoft)
    Perian from http://perian.org/
    You should read this support page http://perian.org/#support in case you need to delete older codecs.
    Adobe FlashPlayer should first be uninstalled using the appropriate uninstaller available here:
    http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_14157&sliceId=2
    and then the latest version obtained from here:
    http://www.adobe.com/shockwave/download/download.cgi?P1ProdVersion=ShockwaveFlash
    and installed.
    (You can check here: http://www.adobe.com/products/flash/about/ to see which version you should install for your Mac and OS, but please see my footnote if you are running Leopard.)
    In earlier versions than QT 7.1.3 in Quicktime Preferences, under advanced, UNcheck Enable Flash, and under Mime settings/Miscellananeous only check Quicktime HTML (QHTM).
    You should also ensure, if you are running Tiger 10.4.11, that you have downloaded and installed all the correct version for your Mac of Security Updates up to and including 2008-004. (N.B. Security Updates require both a restart and a permission repair.)
    In Macintosh HD/Library/Quicktime/ delete any files relating to DivX (Perian already has them). However it should be noted that Perian is not an internet plugin and will not play DivX files imbedded on a website. For that you will need the DivX Player browser plugin available from http://www.divx.com/divx/mac/
    Now go to Safari Preferences/Security, and tick the boxes under Web Content (all 4 of them) to enable Java.
    Lastly open Audio Midi Setup (which you will find in the Utilities Folder of your Applications Folder) and click on Audio Devices. Make sure that both Audio Input and Audio Output, under Format, are set to 44100 Hz, and that you have selected 'Built in Audio'.
    Important: Now repair permissions and restart.
    You should also consider having the free VLC Player from http://www.videolan.org/ in your armory, as this plays almost anything that DVD Player might not.
    There is an additional 'fix' you could try if you are having problems with Flash and Quicktime, depending on which type of Mac you have:
    On Intel Macs, make sure that you are not running Safari in Rosetta. You can check this, and change it, in the Get Info window.
    On PPC Macs, go to the Hard Disk/Library/Internet Plug-Ins folder, and drag the file 'QuickTime Plugin.webplugin' to the desktop. Quit and restart Safari. If things have improved you can trash that file. If they haven't put it back, as the lack of this plug-in can cause QT content in some widgets to cease functioning.
    And now there is an additional kid on the block: SilverLight. Microsoft has created their own version of what a replacement for Flash should be. You can read more about it here:
    http://silverlight.net/
    So, if you go to any sites that have been designed for this new Silverlight stuff, you can download the plug-in from here (but make certain that you are downloading SilverLight v.1.0 for OS X (10.4.8 upwards):
    http://silverlight.net/GetStarted/
    FOOTNOTE
    If you are running Leopard:
    Some users have mentioned that the latest Flash Player (v.9.0.115.0) conflicts with Leopard, and that they have needed to revert to v. 9.0.47. This can be downloaded from here:
    http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_14266&sliceId=1

  • Please point me in the right direction

    I've been developing with AS2 for many years. I want to create an AS3 app for android and ios but am entirely confused about what tools i need to use. I bought Cs5 and started learning AS3. I am using Flash CS5 since that's what I am familer with (I am first, a designer). One of the biggest problems is that I can't figure out how to do a splash/loading screen for android with Flash. I read that Flex can do this. So..Am I supposed to develop my app with both flash and flex? or can I just use flash. The loading screen is very important. I don't want to have to buy flash builder just to make a loading screen. thanks for your help. I really need it!

    Thanks, Red.
    Hmmm. Mail would have a preference to not have itself as the default email reader? Ah, but I have to set up Mail in order to get to its preferences. Tricky.
    Let me explain further what I'm trying to do. I use a time-keeping and billing application that allows me to send an invoice (as a PDF attachment) from within the app. BUT, it only sends via Mail. My workaround at the moment, since I use Entourage, is to use the Print dialog box to save the invoice as a PDF and then attach the file to an Entourage email. This works just fine. Hopefully the developer will allow users to choose email application in the future.
    But, while I was brainstorming this workaround, I saw that in the print dialog box, under the PDF button, is a Mail PDF function, which also uses Mail. So, I was thinking that if I could make something like that but that uses Entourage, it might save me a step, as the invoice is saved in the application for future access. I don't really need the PDF, except maybe to keep a copy of it with the rest of the job files for archiving.
    So, I searched and found the file. It's called Mail PDF.workflow, and its icon shows it to be an automator document. I looked at the workflow in Automator, but it looks like it's one action. (On my computer it's in the main Library/PDF Services folder.) I just literally decided to look into Automator today (although have known about it), so I really have no idea what I'm getting into.
    So, I think this may be too much for me, but I know there are other people out there who prefer non-Mail applications, so I figured I'd come here and ask you nice people to point me in the right direction.
    Thanks--d

  • I need to know the right tools and java technology

    Please help,I need to know the right tools and java technology to support what I need.
    I had background programming in Assembly,C++,Visual Basic,SAP/ABAP 4.
    All I can say, programming is about logic, now we are very helped building program using objects.
    I'm very interest to SAP tech, where all screens, programs, reports are resides on tables, this is the real dynamic!
    CUrrently I'm eager to do the same technic with java. I'm new to java....
    What I know the J2EE is the core for me to start is it right? I was very interest with the Client-Server Tech. How can I impelemet this with Java?
    I'm a bit confuse with so many java solutions. There is Java Applets, Swing, Java AWT, JavaBeans, etc...
    I don't know what is the best if I want my Presentation/Client Application will run within browser (not standard html, using like windows gui). What should I do to make business logic objects, how to invoke it within the gui. how to make installation package whenever clients connect to the http server.
    if you have a pointer to do it please let me know.... I'm very appreciate all your response...
    Best regards,
    Lucky Pangemanan

    I'd say - don't get carried away with the heavyweight frameworks. Don't use EJB if Hibernate and/or Tomcat will do the job. There's a danger of winding up using a bulldozer to crack a wallnut.
    What people mean by "J2EE" varies a fair bit.
    Start with Tomcat, which has the virtue of being free. Try some JSPs and servlets.
    Use Applets to do client side presentation only if you must; Applets create an installation overhead on end-users, and some of them can't cope, while others may not have the necessary installation permissions on their office machines. They are pretty rarely needed, IMNSHO, most client-side behaviour is better handled with html and JavaScript.

  • I have an older airport express but don't know where to look to find its model number.  The version number is airport utility 6.3.4 (634.17).  Can anyone point me in the right direction?  Thanks.

    I have an older airport express, but don't know where to look to find its model number. 
    The version number is airport utility 6.3.4 (634.17). 
    Can anyone point me in the right direction?  Thanks.

    Hard to see it's so teeny. I needed a magnifying glass.
    FWIW, you should not mark your reply as Solved because you did not solve your question. Helpful and Solved are used to reward the user who help you or solved your problem.

Maybe you are looking for

  • New iTunes Store Issue

    with this new iTunes why can't you no longer "Get Info" of "Multiply Items" if it has a booklet or video attached? & can i change a setting to resolve this?

  • HELP : Microsoft word on mac

    Dear all, i need to work on microsoft word, and i use imac working on mac os 10.6 is there any microsoft word application for it ??

  • Issues installing photoshop element 12

    I had issues installing element 12 it stop half instaled poposed a tool to find error but dont work , cant even unstaled it when I insert DVD and wand to re-instal it please help

  • Affter Effects cs5.5 Crash at start up

    i have windows 7 (64) i get few warnings before the program crashes, only with after effects all other programs ok. what should i do. 1 2 3 4 5

  • Two-Way Synchronization Failure (8830/Lotus)

    System Configuration Details (Blackbery) 8830 World Edition (Verizon) Blackberry Dvice S/W:  v4.2.2.196 (Platform 3.0.0.84) System Config Details (Computer) Windows XP Pro (V 2002) SP3 Dell Latitutde D531 AMD Turion 64 X2 Mobile 1 GB RAM Currently Ru