What tier goes where

Hi,
with a web (jsp) application, the tier architecture is simple:
Database tier -> middle tier (webserver) -> client tier (webbrowser)
But what about JClient apps.
Database tier -> middle tier (bc4j) -> client tier (jclient) ?
Where does code execute. If I use a viewobject to populate a JTree, does it 'run' on the middle tier (application server), or does it run on the client machine in the jclient application? What and where's exactly the separation between gui and middle tier?
In a web environment, the browser is the 'thin' client, which knows only html. All business logic is performed on the server. Is the JClient situation comparable? Or is a jclient a much less thin client?

As you're familiar, BC4J allows you to build J2EE-compliant apps with a clean, logical three-tier design. You can then choose to deploy your application as a physical two tier application, or a physical three-tier application as your needs require. These rules hold, regardless of the client implementation technology.
Two concrete examples of a physical two-tier physical deployment are:
[list=1]
[*]JClient application talking to BC4J appmodule in local mode
[*]JSP pages using BC4J datatags talking to BC4J appmodule in local mode
[list]
Two concrete examples of a physical three-tier deployment are:
[list=1]
[*]JClient application talking to BC4J appmodule deployed as an EJB Session Bean in a J2EE Container on another machine
[*]JSP pages using BC4J datatags talking to BC4J appmodule deployed as an EJB Session Bean in a J2EE Container on another machine
[list]
Of course, the degenerate case of the last example above occurs when the JSP pages and the EJB Session Bean actually reside on the same J2EE container, then you can use the EJB Session Bean option of BC4J with local interfaces.
Regardless of the UI layer you're using, your client works with the set of BC4J interfaces in the oracle.jbo.* package.
What changes in the two deployment scenarios is the classes in the JBO framework that implement these common interfaces.
[list]
[*]In a physical two-tier deployment (also known as "local mode"), the interfaces are implemented by classes in the oracle.jbo.server.* package.
[*]In a physical three-tier deployment, the interfaces are implemented by classes in the oracle.jbo.client.* package (and its oracle.jbo.client.remote.* "sub"-package.
[list]
This is transparent to your application code since you are working with the interfaces.
When you use the remote mode, the bulk of the implementation stays on the EJB tier inside your session bean. What travels to the client are collections of value objects which are managed by a client-side value-object cache that BC4J implements for you (but which you do not need to manage yourself). If you are, say, browsing the results of a query that has scrolled through 1000 records, BC4J will keep a "window" of rows of value objects on the client for you, where the size of the window is set via the setRangeSize() method on the view object you're working with.
BC4J is also designed to keep its client-side value object cache kept in sync with any changes that occur in the business objects in the middle tier. For example, say you have some business logic coded into your Employee business object that increases an employee's salary by $1000.00 when their job category goes up a level. And let's say your client is working with a view of the data that shows:
Empno    Ename    Salary     JobClass
1234     Ivo      4321         4If the client updates the value of "JobClass" from 4 to 5, the attribute change on the client-side value object eventually makes it to the middle tier -- immediately if you are using the SYNC_IMMEDIATE mode, and on the next row navigation, row validation, or custom method invocation in the case of our SYNC_LAZY mode. In the middle tier, BC4J syncs the change in the client-side value object "row" of this view object query result and sets the "JobClass" view row attribute in the middle tier. Since view objects cooperate with entity objects, the setting of the "JobClass" on the view object row internally delegates to an attempt to set the "JobClass" attribute on the underlying entity object instance representing employee #1234 (which was created in the EO cache as this row was queried in from the database). Your business logic in the setJobClass() method at the Employee entity level contains the logic that decides that, based on the increase in job class, the salary should get incremented by $1000, so it calls setSalary() like this:
  private static final Number ONE_THOUSAND = new Number(1000);
  public void setJobClass(Number value) {
    setAttributeInternal(JOBCLASS, value);
    // If new job class is greater than old job class, increase salary by $1000
    Number prevJobClass = (Number)getPostedAttribute(JOBCLASS);
    if (value.compareTo(prevJobClass) > 0) {
      setSalary(getSalary().add(ONE_THOUSAND));
  }Part of the functionality of BC4J's unique "Value Messenger" design pattern implementation is that the framework keeps track of the "side-effects" of any middle-tier activity and automatically returns any relevant changes to the client-side value object cache to keep it in sync in the same round-trip that caused the activity to occur. In this example, the client is looking at a value object with the "Salary" attribute for employee #1234 and this employee's Salary has changed as a result of having set the JobClass attribute.
The net effect is that the user types in a new job class of 5 and tabs to a new field, and the updated salary of 5321 appears automatically.
Empno    Ename    Salary     JobClass
1234     Ivo      5321         5  <---------This attribute changed by the user
                     \_______<_______ The updated salary (increased by $1000) appearsThis works both in local mode or 3-tier mode for JClient, JSP, or any of our supported "View-Layer" technologies that bind to the standard BC4J client interfaces in oracle.jbo.*
So, in short, a BC4J JClient app that's deployed as a 3-tier application is a thin client with a small cache of value objects for view objects with active iterators open on the client.
Let me know if you have more questions on this subject.

Similar Messages

  • What goes where when using separate drives for data and applications?

    Hello people!
    In Mac Guru's "Guide to Macintosh Performance Acceleration" it states " Separating your "User" data from the Operating System and Applications is the simplest and most cost effective way to enjoy a significant performance boost at
    minimal cost"...
    Now how exactly do I do that?
    I have a 40 GB HD with Panther on it and a 55 GB drive I want to use for the "data" drive. What goes where?
    Thanks for reading!

    Hello Danny:
    Welcome to Apple discussions.
    I disagree with the premise in that article - "significant" is relative and depends on where you are. The only method I am aware of to "separate" would be to create partitions. OS X uses sophisticated algorithms to manage memory - both real and virtual. There are very few good reasons to partition an internal HD - and several that suggest you should not do that - absent a "good" reason.
    Barry

  • What is going on with Lion???? Something has happened to my Mac Pro since I got Lion! I cannot save documents in Word and as a consequence have lost files....God knows where they are!!! HELP!

    What is going on with Lion??? Something has happened to my Mac Pro since I got Lion!  I cannot save documents in Word, or at least if I do I have no idea where they are after I save then, Word does not know either! I have never seen this before? As a conseqience I have lost files despite saving them in the usual way......God knows where they are! In the middle of all this I am suddenly asked for my Mobile Me password,,,,,in Word??? What is going on? Help!

    Update to latest patched version that no longer relies on Rosetta and PowerPC
    Visit www.RoaringApps.com for a list and table of what version is supported, can be updated and which are not.
    A year ago this was news.
    Hopefully people kept a boot drive with the old OS so they could dual boot for a month or two whiile sorting out the changes and updates.

  • Another "What goes where" thread

    Hi guys
    I am a little unsure how to configure "what goes where" on my main rig.
    I have these discs:
    Corsair 256 GB Pro (holds atm system, program files and pagefile)
    Single 1.5 TB WD black (all kinds of stuff other than video)
    Raid 0 on LSI 4 chnl. ctr. - 2 x Caviar 600 GB (holds now project files and maedia for PPRO)
    Raid 0 on LSI 4 chnl. ctr. - 2 x Caviar 1 TB (holds render now)
    SSD 240 GB for mediacache and preview for both AE and PPRO CS6
    Should I add another single disc for project files alone and/or move the pagefile?
    Thanks
    Ulf

    Jim, I completely agree considering your own system, but not on Ulf's system, which is way faster than yours.
    Ulf,
    If you want to add another two disks, I suggest:
    C: 256 GB OS & programs & pagefile, SATA 6G
    D: 240 GB Windows temp & media cache & AE cache, SATA 6 G
    E:  2 x 600 WD in raid0 on the Marvell controller, previews. SATA 6G
    F: 4 x 1 TB in raid5 on the LSI for media and projects
    G: 1.5 TB exports and backup.
    FYI, yesterday Bill gave me some experimental figures on the new test we are working on. Exporting a two hour timeline on an i7-2600K with a single OCZ Vertex4 SSD was around 6 times slower compared to a system with a heavy raid array. 84 seconds versus 14 seconds. Jim's suggestion to break out the raids you currently have will only slow down your system. In Jim's case he will not notice it, because his system is so much slower than yours, but you definitely will notice it.
    The complicating factor in your case is the variety of disks you have and only a 4 port controller. The E: drive is way too big for previews only, but you don't have many choices for alternative uses and despite that they are older drives, in a raid0 they do give you nice performance. Going from 2 x 1 TB raid0 to 4 x 1 TB raid5 on that controller will give you added performance plus security against disk failure. Don't expect miracles in performance boost from 2x R0 to 4x R5, it will probably be only 25-35% or around that figure.

  • I purchased lion osx 10.7 and it has just said "installing" where you click to "buy now" for the last 2 hours.  There is no progress bar or anything. What is going on?

    I purchased lion osx 10.7 and it just says "installing" where you click to "buy it now" and it has been doing nothing for the past 2 hours.  There is no progress bar or anything that says its being downloaded.  I was sent an email by apple confirming I purchased it but nothing is happening.  I tried restarting the internet and clicking on download and the same thing happens.  What is going on?

    Mine says it's going to take 10 hiurs to download or something daft. I'm guessing the servers are being hit pretty hard right now. Like the poster above said, check in the 'purchased' part of the app store to make sure it's actually ticking along and then just...wait.

  • So, my iphone 5 will be no where close to dying but when I go to slide to unlock it turns off then turns back on. Or if I go to my camera it turns off and right back on. What's going on?

    So, my iphone 5 will be no where close to dying but when I go to slide to unlock it turns off then turns back on. Or if I go to my camera it turns off and right back on. What's going on?

    Hello amillward92
    Check out the Power section in the article below for troubleshooting your iPod nano.
    iPod nano (6th generation): Hardware troubleshooting
    http://support.apple.com/kb/TS3474
    Regards,
    -Norm G.

  • Just upgraded to Illustrator CC.  Finding it to be unstable in a number of ways--one in particular being that objects jump spontaneously to layers other than where I put them.  What's going on?  Is the program stable or not?

    I just upgraded to Illustrator CC, thinking it might be the solution to a number of glitches I had been experiencing with CS6. I have posted them in this forum under 'trouble with small things.'   
    Almost right of the hop, I am finding not only the original bugs I complained about still exist but at least one troublesome new one i.e., objects are spontaneously jumping from the layer I assigned them to another layer. I've had a few suggestions from good-hearted adherents to this forum i.e., fiddle with preferences etc.,--but Is there a user out there who actually uses this program seriously and has the same problems?  It's looking to me like Adobe just hasn't looked after the details in designing the Illustrator program.  Here's an example:  Try to use the knife tool to cut off a  section of an image comprised of several objects.  Does the tool apply itself in a straight line when used with the option key as per Adobe's instructions?  Or does it move in a nervous, wiggling line, option key or not, resulting in a crooked cut?  What's going on here?

    granitecarver,
    You can get rid of them all with 4) or ultimately 6) in the list in post #3 in your other thread.
    Did you try any of them?
    Trouble with small things . . .

  • What's going on with dynafaces? And where can I contact someone involved?

    Hi,
    I like dynafaces and its approach to ajax, but I'm a bit worried about the state of the project and whether it has a future. The official mailing list is dead (something like 3 messages in the last month, all from the same guy, all unanswered), and the project doesn't seem to have ever had an actual release, although Ed Burns has been posting release candidates over the past few months. I'd actually like to get involved with dynafaces, but obviously only if it's viable, and isn't about to be made obsolete by JSF 2.0.
    Anyone out there know what's going on?
    Regards,
    Maarten

    Hello,
    I work on the JSF specification with Ed Burns, and I am specifically working on the Ajax standardization.
    We are looking to produce a standard for all JSF/Ajax frameworks to use. This means that all frameworks
    will change to accommodate the standard. We have members representing the major JSF/Ajax frameworks
    on our Expert Group. Whether you continue to use Dynamic Faces (or not), really depends on your
    current needs and time line for a JSF/Ajax solution. If you can afford to wait a bit, then I would go with
    the JSF 2.0 implementation.
    -roger

  • CANNOT properly update from 7.0 to 7.01. WHAT is going on?

    Hello!
    I notice that FIREFOX has been releasing browser updates quite frequently as of late. I have been updating my browser as they come along ... until 7.01 came out. It not only does NOT fully install on my IMac (iMac 10,1 - 3.06 GHz Intel Core 2 Duo Processor - less than 1 year old) ... but is being incredibly vexing:
    I did the usual update process for 7.01 when presented with the SOFTWARE UPDATE WINDOW (as I recall; less than 1 WEEK after I rcvd an UPDATE for 7.0, which installed normally enough) - but the 7.01 dropped a Firefox icon on my desktop, which I put in my APPLICATIONS FOLDER. This did not MOVE the icon. Inexplicably it only COPIED it to the folder - leaving a FIREFOX icon still on my desktop. I then put THAT ONE in a special FIREFOX folder that I keep for general Firefox info, etc. SAME RESULT ... only COPIED icon to that folder. ALSO a Firefox "volume" appeared on my desktop. Normally these disappear upon exiting my system and coming back. in THIS CASE, both the Firefox ICON - AND the VOLUME icon remain - for weeks now. I can't REMOVE them without taking them to the trash, which I am loathe to do, fearing I would LOSE FIREFOX COMPLETELY from my system.
    I find that FIREFOX 7.o is what my system is still running - it does not seem to recognize the 7.01 that arrived, in any way.
    Meanwhile, I continue to get the SOFTWARE UPDATE (for 7.01) window appearing when I open my (7.0) browser). I tried AGAIN to install from that - and only got MORE icons growing on my desktop.
    By the way, I have a YAHOO/ATT eMail - AND a YAHOO Homepage. YAHOO often causes interfering and/or site-specific browser problems. THIS may be a factor. I have NO idea.
    MY GUESS is that something(?) did not complete - or get recognized in the INSTALL PROCESS (with the install window/process/move to app. folder sequence.
    WHAT I NEED is:
    1) to be able to successfully, completely UPDATE to 7.01 -and
    2) have these fool icons quit reappearing (and multiplying upon dragging them to folders).
    I assume that once 7.01 IS fully installed, that all of this nonsense will stop; I will not see "NEW UPDATE TO 7.01" windows appear / I will NOT have "sticky" icons crowding my desktop / my SYSTEM WILL then SHOW "FIREFOX 7.01" as my current browser.
    WHAT IS GOING ON? WHAT DO I DO FROM HERE?
    I am at a complete loss (baffled, frustrated, kicked to the curb).
    I am not familiar with sophisticated programmer / developer terms/shorthand. PLEASE, anybody answering this (thankyouthankyouthankyou!!!) write clearly and simply, so I am not stumped by being told to do something that I cannot figure out the meaning of ... I see that kind of answer in some other posts I viewed, trying to find what to do, though none of those posts were exactly my scenario.
    All I want to do is get 7.01 to fully install, as/per the usual installation package process that appears when an UPDATE is downloaded.
    THANKS!!
    p.s. assuming that I will get an eMail when I get a response.
    I will NOT be able to FIND this - or whatever the correct page is- to hunt daily for responses.
    My eMail is:
    [email protected]

    Re:
    "Do you have a user.js file in your profile, and did you change the user-agent that gets displayed by Firefox? The setting looks like:
    general.useragent.override "
    I have no idea if I have a 'users.js file' anywhere; let alone in my 'profile' ...WHAT profile? where?? why? I have never needed to know anything about a users.js file to download or update a browser of any kind.
    Nonetheless, IF a 'users.js file' is something that exists, behind the scenes, appearing something like "general.useragent.override" I would have no idea how to locate - or check whether or not I have one. You say it would be in my "profile". A "Firefox" profile? A MAC system profile? A hard disk profile? A Utilities profile? I have no idea what / where this may be.
    I will try the suggestion by cor-el: Download a 7.01 - SAVE the dmg (slippery suckers, hard to find again, once arrived). Then I will isolate that in a special folder and remove my current FIREFOX from my computer; and open/install the 7.01 clean.
    The only problem is I don't know exactly WHAT is mucking things up for the 7.01 to fully install. THEREFOR it seems I will have to search out and destroy all the parts of my CURRENT browser (icons/volumes/files/ et al) ...hoping that I DO remove the nasty part - and that I DO NOT remove something I need to either (A): keep my extremely deep bookmark files and/or (B): allow 7.01 on my system (as it IS an UPDATE - if I have NO "7.0" - can a "7.0.1" load / install without something already in the 7's to work from?)
    I was hoping to avoid this 'search and destroy' raid on my Firefox, for the above reasons; but since I have NO idea what the "user.js file" or its attendant "profile" are, I see no alternative. Unless somebody has a better idea before Monday; I'll go in there and tear it out - after bringing in the dmg of 7.01 first. It'll be a crapshoot; maybe I'll luck out. I HOPE so, 'cause I really hate Safari. Wheeeeeeeeee!

  • Firefox update installs, but does not apprearon screen, or task manger yet is running what is going on and how does one fix it?

    I installed the update Mozilla Firefox 28. It was suppose to launch upon completion. it did not appear on the monitor screen, nor the task manager, but was running; for when I attempted to install the older version again it, it said that Firefox was running and needed to be turned off.
    I restarted the computer and tried opening Firefox, with the same results.
    After restarting again, I attempted to reinstall the update, with the same results taking place.
    I attempted to uninstall Firefox and install the new version. The same results took place.
    In the past, I could install Firefox 27 update, only now I can't for the same thing takes place. Past a certain version (19), this event takes place, but 19 and older can install it with no problems.
    I checked Firefox troubleshooting information. All was normal. I checked my firewall. Again, all was normal. Tried Firefox reset. Did not help. Tried with my firewall disabled. Did not solve the problem.
    Ran a virus check (deep) no viruses. Checked my computer system. No errors.
    I can install updates for my other programs, even install new programs; just not Firefox.
    What is going on and how does one fix it.

    Hi Amseeking,
    Thank you for your question. From your description, you tried to install the 28 update from a version 19 installation. Did you install a fresh install of 28 successfully? Where the name of the file is"Firefox Setup Stub 28.exe"? This is what is sound like happened. When going to about Firefox and searching for updates it installs over the current installation. However if Firefox was already running, there are more than one installation.
    Updating from version 19 to 28 would not be a problem. However the user data from your previous version would have to be imported to the new installation if you have more than one install on that computer.
    An easy way to tell is to search for Firefox in the Start menu to see if more than one icon shows up in the search results.
    I hope this helps.

  • Firefox has completely crashed today on my computer. I tried to reload it, and my security application closed it as a "malicious threat" . What's going on?

    All applications I try to open from my desktop ,where I used FIREFOX to open them...crash when trying to open. I tried to re-install FIREFOX, but my security application shut it down as a 'malicious threat'.
    What's going on?

    Thanks, I deleted a bunch of apps and some other TV shows I had on there. All of the other movies have an active download button so there is room for other movies, just not that one for some reason...weird!

  • What is going on with my iPhone 5s touch screen?!

    I bought my iPhone 5s in November of 2013. I've loved it so far, until about a month ago when I noticed a major problem. When I type on the keyboard vertically (haven't tried horizontal) different parts of my screen start being activated. For example, the amount of times I've been texting someone and end up sending a FaceTime request (so activating the top right corner) is ridiculous. I even tried posing this question originally off of my phone (why I thought that was smart, I'll never know), and I found myself typing in the question tab or refreshing the page or typing in the middle of random words every single time. I notice it very badly in iMessage, but I've also seen it happen on Facebook as well. There are times when I even find myself three pages back from where I was at first, because of typing/touching. Basically, I have no idea what's going on. Some days seem better than others, and other times I can barely send out a message to someone. It certainly helps when I slow down the pace of typing (I thought maybe hitting 'blank' parts in between keys was causing it), but alas this only helps mildly, and sometimes not at all. I also don't believe I see this touching error outside of typing (however, this could be because I don't notice it as overtly). It seems like if I was capable of recalibrating the touch screen, that would help. But the iPhone doesn't come with a recalibrating option other than wiping the phone. I'm just at a loss as to how typing the bottom half of my screen sends signals to the top half. Am I the only one facing this? Or does anyone have any remote clue as to what could be going on/can be done to stop this? Obviously, it's very inconvenient in my life.

    What troubleshooting steps have you taken so far?
    Restart?
    Reset?
    Reset All Settings?
    Restore From Backup?
    Restore As New?

  • ITunes not recognizing my apps - saying I have 0 in iTunes, although the screenshots and memory bar clearly indicate that I do - what's going on?

    I have an iPhone 4s 16gb with the newest update. I downloaded a ringtone maker app for my phone, but apparently it's not compatible with the 4s - instead, it somehow messed up my whole system. I had to restore my phone to get the apps to open up, since most of them went into the splash page when I tried to open them but wouldn't actually open.
    The restore was from after I downloaded the ringtone maker app, however. Now, iTunes doesn't recognize that I have any downloaded apps. And so, whenever I plug it into the computer to charge, it attempts to sync up but ends up messing my apps up so they won't open. I do that fix where I download a free app and then it works just fine, but there is still some kind of misconnection between my phone and iTunes.
    Can anyone tell me what's going on?
    See:
    tl;dr - iTunes doesn't recognize my downloaded apps and messes them up when it syncs after plugin - why?

    Hello R Hic,
    I found an article that goes over how to restart and troubleshoot the Apple Mobile Device Service on Windows. I would recommend following the steps listed in that article and that should resolve your issue.
    How to restart the Apple Mobile Device Service (AMDS) on Windows
    http://support.apple.com/kb/TS1567
    Hope that helps,
    Griff W.

  • Newb: How is endpoint path substitution working? I'd like to know what is going on, and when to manually define

    I'm looking over the flex dev guide http://livedocs.adobe.com/blazeds/1/blazeds_devguide/ but I really don't see the details of this covered.
    I have a single amf channel endpoint defined as such in my services-config.xml:
    <channel-definition id="emp-maint-amf" class="mx.messaging.channels.AMFChannel">
         <endpoint url="http://{server.name}:{server.port}/{context.root}/messagebroker/amf" class="flex.messaging.endpoints.AMFEndpoint"/>
    </channel-definition>
    What I'd like to know is what is replacing server.name, server.port etc? I asume it's happening at run time since I certainly am not doing anything to set them.
    I also a lot of examples where those paths are hardcoded in, and then some, more complicated examples, where you somehow work on setting themselves through code.
    What are the pincipals here on when you neeed to define those vars and whe you can get by with them being left as is above?
    Shouldn't there be some documentation that covers this? Am I just not finding it? Thanks for any help or links that will help me understand what is going on in regard to figuring out how the path substitution is working.

    set the wake-on lan on the main computer
    The laptop's too far away from the router to be connected by ethernet. It's all wifi.
    No separate server app on the laptop, it's all samba
    The files are on a windows laptop and a hard drive hooked up to the windows laptop. The windows share server is pants, so I'd need some sort of third party server running. Maybe you weren't suggesting to use Samba to connect to the windows share though?
    I'm glad that you've all understood my ramblings and taken and interest, thanks The way I see it, I can't be the only netbook user these days looking for this kind of convenience, and I certainly won't be once chrome and moblin hit the market.
    Last edited by saft (2010-03-18 20:38:08)

  • In attempt to burn blu-ray, I get QuickTime error 0.  Takes hours to export a 7 minute movie from timeline, then get notice it fails.  What's going on here?

    New problem just started 24 hours ago.  When I try to export from the time line to create a QuickTime file, a 7 minute movie on time line takes 3 hours to export and then the export fails, where as a few days ago, that export would take about 10 minutes at most.  I get the same failure notice when I try to share to blu-ray, DVD, or Vimeo.  Tried to use compressor, no such luck as compressor failed to make a .mov file.  I get QuickTime error 0 message about 5 minutes into trying to share to Blu-Ray now.   Does anyone know what is going on here?  I'm running latest update of Snow Leopard on an intel Mac Pro and the latest update to Final Cut Pro X.  I've also installed QT 7.6.6 to use in creating time lapse movie files.

    Same problem here, too. Final Cut Pro X 10.0.3 on OS 10.6.8. However, it is only doing it on ONE of my projects. A 4-second test project burned successfully.
    I'm  actually going to use iDVD to burn copies for a few people, so I only need the movie file from FCPX.
    Would someone please post best export settings for use on a DVD? In FCPX, the project is  in HD (1080p) with all media optimized to ProRes 442. I know it will have to be down-sampled to DVD resolution, but I've always been curious to know what settings will result produce the best possible quality in DVD resolution.
    Thank you!
    Bart

Maybe you are looking for

  • What's the best webcam for Mac with tilt/pan/zoom?

    I am trying to find a good quality webcam to use for videoconferencing with my Mac (MacBook Air actually). The camera is to be positioned on the 60-inch screen on the wall in our boardroom so the built-in Facetime camera doesn't do the job. It needs

  • Trouble w/Norton Identity Safe and Registration and Log In to Firefox Add-ons and Firefox Help pages

    I don't understand it, but now it let me login that time to give more details. So, I don't know...this is very confusing to get an updated Version (8) and not have Norton Identity Safe. I've rebooted, run the Norton Live Update several times. Then, t

  • Bid Evalution Report Error

    Hi Guys,    We are facing problem with Bid Evaluation report. We have created one bid invitation with some dynamic attributes in one sequence. Bidders are able to submit their bids in the same sequence.  We are able to receive the values in same orde

  • D800's NEF and Aperture 3.3.1

    Hi Everyone, When I load the NEF from my Nikon D800 in Aperture, I have an black preview of the picture with the message "Image format not supported". While in theory it should work with versions of softwares installed. Mac OS X 10.7.4 Aperture 3.3.1

  • Mail App Version 7.0 (1816) all e-Mail download to computer!

    I'm sorry for the broken english. Why dont option "Do not keep any copies messages" Mountain Lion Mail app on an earlier version of 6.0, which had such an option. But the new Mail app on the Mavericks do not have such an option on 7.0. All messages o