More info about Jdev 10g, where to get

Hi all,
I have done some jDev 10g tutorials for jsp, j2ee, struts. When i started to write some code on my one many problems appeared. So i am interested, where to get info, documentation or how to work with jdev 10g.
To get questions like :
-What is diferent between struts action and action data?
-How to develop with modules? If i'd like to have login, forum, calendar modules and use them in difrent application.
- ...what can be done with jdev 10g an also how
Any links or book titles would be fine or suggestions how to learn developing j2ee applications with jdev 10g.
By the way I am studen who'd like to learn as much as possible to be a good developer for j2ee applications.
Hope it's not to late.
Thanks for help

Check out ADF Data Binding primer on Steve Muench blog
http://radio.weblogs.com/0118231/2003/09/08.html#a149
Did you check out the help system in JDeveloper 10g ?
raghu
JDev Team

Similar Messages

  • Is there another way of getting apps from the appstore without putting your credit card number in, ive heard about the itunes gift card thing can anybody just give me more info about that and how i can buy free things free things from the appstorepls help

    Is there another way of getting apps from the appstore without putting your credit card number in, ive heard about the itunes gift card thing can anybody just give me more info about that and how i can buy free things free things from the appstore...pls help as im only a teenager and have no credit credit and my parents dont trust me with theres and they dont care about the fact that you can set up a password/.... PLEASE SOMEONE HELP I WILL BE SO GRATEFUL... And i would really like to get the iphone 4 but if there is no way of etting apps without your credit number then i would have to get a samsung galaxy s3 maybe ...

    You can set up an Apple ID without a credit card.
    Create iTunes Store account without credit card - Support - Apple - http://support.apple.com/kb/ht2534

  • Need to have more info about the latest patch on Oracle 10g Release 2

    Please this is the follwing answer that was given to explain the purpose of patching the latest release of Oracle 10g release 2.
    We are applying the patch to the 32bit environment to resolve memory errors.
    This patch should be applied to the 64bit environments too as to maintain consistency in our database versions
    Personaly I don't believe the response is accurate to patch the database.
    Does someone can tell me where to find more information about the latest path of Oracle 10g release 2?
    Thanks a lot

    You can find more information about a patchset by going over the readme document associated with the patch. As such, it is not exactly clear what kind of information you are looking for.
    Login into Metalink=>Patches&Updates=>Simple Search=>
    Product or Family=> RDBMS
    Select your OS
    if will your a link to the readme file...
    Hope this helps
    Thanks
    Chandra

  • How can i get more info about the sent data in RTP?

    Hello.
    I'm working with the examples AVTransmitt2 and AV Receive2 and i want to get more information about the data that it is being sent to de receiver side. In AVTrasmitt2 i only see a calling to processor.start();. How could i know each packet that AvTransmit2 sends to the other side. I want info like the size of the data, the quality, format, etc..

    Hi!
    As I mentioned above. RTPSocketAdapter has two inner classes, SockOutputStream and SockInputStream.
    SockOutputStream have a write method which is called when RTP data is sent over the NET. SockInputStream have a read method which is called when RTP data is received.
    If you for instance want to know exactly what is sent you can parse the byte array that comes into write.
    Like this:
    * An inner class to implement an OutputDataStream based on UDP sockets.
    class SockOutputStream implements OutputDataStream {
         DatagramSocket sock;
         InetAddress addr;
         int port;
         boolean isRTCP;
         public SockOutputStream(DatagramSocket sock, InetAddress addr, int port, boolean isRTCP) {
              this.sock = sock;
              this.addr = addr;
              this.port = port;
         public int write(byte data[], int offset, int len) {
              if(isRTCP){
                   parseAndPrintRTCPData(data);               
              }else{
                   parseAndPrintRTPData(data);
              try {
                   sock.send(new DatagramPacket(data, offset, len, addr, port));
              } catch (Exception e) {
                   return -1;
              if(debug){
                   System.out.println(debugName+": written "+len+" bytes to address:port: "+addr+":"+port);
              return len;
    private void parseAndPrintRTPData(byte[] data) {
         // part of header, there still left SSRC and CSRC:s
         byte[] rtpHeader = new byte[8];
         System.arraycopy(data, 0, rtpHeader, 0, rtpHeader.length);
         ByteBuffer buffer = ByteBuffer.wrap(rtpHeader);
         int word = buffer.getInt();
         // version
         int v = word >>> 30;
         System.out.println("version: "+v);
         // padding
         int p = (word & 0x20000000) >>> 29;
         System.out.println("padding: "+p);
         // extension
         int x = (word & 0x10000000) >>> 28;
         System.out.println("extension: "+x);
         // CSRC count
         int cc = (word & 0x0F000000) >>> 24;
         System.out.println("CSRC: "+cc);
         // marker
         int m = (word & 0x00800000) >>> 23;
         System.out.println("marker: "+m);
         // payload type
         int pt = (word & 0x00700000) >>> 16;
         System.out.println("payload type: "+pt);
         // sequence number
         int seqNbr = (word & 0x0000FFFF);
         System.out.println("sequence number: "+seqNbr);
         // timestamp
         int timestamp = buffer.getInt();
         System.out.println("timestamp: "+timestamp);
    private void parseAndPrintRTCPData(byte[] data) {
         // this only works when the RTCP packet is a Sender report (SR).
         // All RTCP packets are compound packets with a SR or Receiver report (RR) packet first.
         // part of header, there is still the report blocks (see RFC 3550).
         byte[] rtcpHeader = new byte[28];
         System.arraycopy(data, 0, rtcpHeader, 0, rtcpHeader.length);
         ByteBuffer buffer = ByteBuffer.wrap(rtcpHeader);
         int word = buffer.getInt();
         // version
         int v = word >>> 30;
         System.out.println("version: "+v);
         // padding
         int p = (word & 0x20000000) >>> 29;
         System.out.println("padding: "+p);
         // reception report count
         int rc = (word & 0x0F000000) >>> 24;
         System.out.println("reception report count: "+rc);
         // payload type, which is 200 in this case (SR=200)
         int pt = (0x00FF0000 & word) >>> 16;
         System.out.println("payload type: "+pt);
         // length
         int length = (word & 0x0000FFFF);
         System.out.println("length: "+length);
         // SSRC of sender
         int ssrc = buffer.getInt();
         System.out.println("SSRC: "+ssrc);
         // NTP timestamp
         long ntp_timestamp = buffer.getLong();
         System.out.println("NTP timestamp: "+ntp_timestamp);
         // RTP timestamp
         int rtp_timestamp = buffer.getInt();
         System.out.println("RTP timestamp: "+rtp_timestamp);
         // sender's packet count
         int nbrOfSentPackets = buffer.getInt();
         System.out.println("sender's packet count: "+nbrOfSentPackets);
         // sender's octet count
         int nbrOfSentBytes = buffer.getInt();
         System.out.println("sender's octet count: "+nbrOfSentBytes);
    }I added a boolean isRTCP to the constructor so to know what sort of data is sent.
    Hope this clarifies things.

  • Get more info about the last errors in Oracle

    Hi all,
    There is a log in a live system where it is possible to see every minute the following error:
    Sweep Incident[48073]: failed, err=[1858]
    I know that error can happen mainly when:
    1. Trying to insert caracter field in a numeric column
    2. Using in the wrong way the function to_date()
    I need more information about that error, what can be causing the error in the system and why. Is it possible to see more information about the last errors in Oracle? For example, if a query produces an error... is it possible to see in Oracle the error and the query that caused the error?
    Hope you can help me.
    Thanks in advance.

    Thanks Niall.
    I'm not sure if I got you...
    What I found is that MMON makes snapshots of the database 'health' and stores this information in the AWR. So, it seems like in the database there could be a numeric column that is storing character fields, and when MMON works, it finds that error... is that right?
    I found the following information:
    SQL> select substr(s.username,1,18) username,
    2 substr(s.program,1,22) program,
    3 decode(s.command,
    4 0,'No Command',
    5 1,'Create Table',
    6 2,'Insert',
    7 3,'Select',
    8 6,'Update',
    9 7,'Delete',
    10 9,'Create Index',
    11 15,'Alter Table',
    12 21,'Create View',
    13 23,'Validate Index',
    14 35,'Alter Database',
    15 39,'Create Tablespace',
    16 41,'Drop Tablespace',
    17 40,'Alter Tablespace',
    18 53,'Drop User',
    19 62,'Analyze Table',
    20 63,'Analyze Index',
    21 s.command||': Other') command
    22 from
    23 v$session s,
    24 v$process p,
    25 v$transaction t,
    26 v$rollstat r,
    27 v$rollname n
    28 where s.paddr = p.addr
    29 and s.taddr = t.addr (+)
    30 and t.xidusn = r.usn (+)
    31 and r.usn = n.usn (+)
    32 order by 1;
    USERNAME PROGRAM COMMAND
    oracle@airvs1b (MMON) No Command
    SQL> select addr, pid, spid, username, serial#, program,traceid, background, latchwait, latchspin from v$process where program='oracle@airvs1b (MMON)';
    ADDR PID SPID USERNAME SERIAL# PROGRAM
    000000044A4E48A8 24 15372 oracle 1 oracle@airvs1b (MMON)
    TRACEID B LATCHWAIT LATCHSPIN
    ---------------- ---------- ------------------------ --------------- 1
    SQL> select
    2 substr(a.spid,1,9) pid,
    3 substr(b.sid,1,5) sid,
    4 substr(b.serial#,1,5) ser#,
    5 substr(b.machine,1,6) box,
    6 substr(b.username,1,10) username,
    7 b.server,
    8 substr(b.osuser,1,8) os_user,
    9 substr(b.program,1,40) program
    10 from v$session b, v$process a
    11 where
    12 b.paddr = a.addr
    13 and a.spid=15372
    14 order by spid;
    PID SID SER# BOX USERNAME SERVER OS_USER PROGRAM
    15372 1082 1 airvs1 DEDICATED oracle oracle@airvs1b (MMON)
    Is there any way I can see what MMON is doing and when is failing?
    Thank you very much.
    Edited by: user11281526 on 19-jun-2009 5:18

  • Expanding iTunes fields to handle more info about each CD (Mac & PC)

    The LP and CD covers often hold a lot of important info about the album, music and artist, producer, history. With the use of physical album covers on the decline as we use iTunes/mp3s more and more, a lot of liner notes and credits are no longer with our music. iTunes doesn't even have a field for Producer or engineer! But what about cover art or room for the players on the records, etc. (can you tell I used to work at record companies?
    I think iTunes needs to be redesigned to take the place of a CD jewel box so we can get much if not all of the info on the digital album. Even a tab for additional artwork as some CDs have not just front cover art but also back cover or what about the box set where there's the boxset art but each CD has it's own CD cover art. Currently I just use the art from the CDs but then lose the art from the outer box, which I would like to be able to include in the future.
    The current Comments fields is WAY too small I'm thinking you could as a tab that would be fore the entire record like the size of lyrics so you could put all the players, liner notes, quotes, etc. in an unstructured way and be able to see most of the data without having to scroll so much.

    You can associate a PDF with an album and put as much or as little information in it as you want. Some album downloads come with digital booklets which may, but often don't, replicate all the information from the original packaging.
    You can also embed additional artwork images in a files tag. Files with multiple images develop two triangles at the top of the artwork box to let you switch between the available images.
    While I agree the artificial limit of 255 characters for Comments in iTunes is annoying if you put any such information into the Lyrics field there is the bonus that it can actually be viewed from your devices.
    tt2

  • HT5085 Gathering Info About your iTunes Library - Keep getting Network error

    I bought iTunes Match yesterday, and so far have not been able to use it.
    It gets to Stage 1: Gathering Info About Your iTunes Library and makes progress, but right at the end an error box appears saying:
    "We could not complete your iTunes request. The network connection was reset.
    Make sure your network connection is active and try again"
    Well I know the network connection is active as I was able to be charged for iTunes Match and have had no problems making other purchases. I went to Advance > Run Diagnostics Tests from Help in iTunes and ran the Network Connectivity Diagnostics and it reported no problems.
    Now I know how much Apple hate giving back refunds, but if people can't help, does anyone know how I can get my money back? If I click "Report a Problem" it simply takes me to the help pages. I tried contacting support but I received an email saying they can't help.
    I'm getting quite frustrated now, so I'm reaching out and hoping someone can help me?
    I've copied the diagnostic results below:
    Microsoft Windows 7 x64 Home Premium Edition Service Pack 1 (Build 7601)
    Dell Inc. Dell System XPS L502X
    iTunes 10.6.1.7
    QuickTime 7.7.2
    FairPlay 1.14.37
    Apple Application Support 2.1.7
    iPod Updater Library 10.0d2
    CD Driver 2.2.0.1
    CD Driver DLL 2.1.1.1
    Apple Mobile Device 5.1.1.4
    Apple Mobile Device Driver 1.59.0.0
    Bonjour 3.0.0.10 (333.10)
    Gracenote SDK 1.9.5.502
    Gracenote MusicID 1.9.5.115
    Gracenote Submit 1.9.5.143
    Gracenote DSP 1.9.5.45
    iTunes Serial Number 003CA7C40B1E98E0
    Current user is not an administrator.
    The current local date and time is 2012-05-18 20:20:20.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is supported.
    Core Media is supported.
    Video Display Information
    NVIDIA, NVIDIA GeForce GT 540M 
    Intel Corporation, Intel(R) HD Graphics Family
    **** External Plug-ins Information ****
    No external plug-ins installed.
    Genius ID: bb5c046694c1f4c590202360da9f2bc5
    iPodService 10.6.1.7 (x64) is currently running.
    iTunesHelper 10.6.1.7 is currently running.
    Apple Mobile Device service 3.3.0.0 is currently running.
    **** Network Connectivity Tests ****
    Network Adapter Information
    Adapter Name:          {444AF521-4D63-434F-AC33-8F05DA9C6C64}
    Description:          Microsoft Virtual WiFi Miniport Adapter #2
    IP Address:          0.0.0.0
    Subnet Mask:          0.0.0.0
    Default Gateway:          0.0.0.0
    DHCP Enabled:          Yes
    DHCP Server:
    Lease Obtained:          Thu Jan 01 00:00:00 1970
    Lease Expires:          Thu Jan 01 00:00:00 1970
    DNS Servers:
    Adapter Name:          {4F46CBF3-C53C-4615-AF14-B46B9785D100}
    Description:          Microsoft Virtual WiFi Miniport Adapter
    IP Address:          0.0.0.0
    Subnet Mask:          0.0.0.0
    Default Gateway:          0.0.0.0
    DHCP Enabled:          Yes
    DHCP Server:
    Lease Obtained:          Thu Jan 01 00:00:00 1970
    Lease Expires:          Thu Jan 01 00:00:00 1970
    DNS Servers:
    Adapter Name:          {6D3CAB28-0C0B-4701-A440-B1A90BE75551}
    Description:          Dell Wireless 5540 HSPA Mini-Card Network Adapter
    IP Address:          0.0.0.0
    Subnet Mask:          0.0.0.0
    Default Gateway:          0.0.0.0
    DHCP Enabled:          No
    DHCP Server:
    Lease Obtained:          Thu Jan 01 00:00:00 1970
    Lease Expires:          Thu Jan 01 00:00:00 1970
    DNS Servers:
    Adapter Name:          {8C130DAB-E810-4FA6-8946-1600FFE0DB2F}
    Description:          Intel(R) WiFi Link 1000 BGN
    IP Address:          192.168.1.69
    Subnet Mask:          255.255.255.0
    Default Gateway:          192.168.1.254
    DHCP Enabled:          Yes
    DHCP Server:          192.168.1.254
    Lease Obtained:          Fri May 18 20:01:40 2012
    Lease Expires:          Sat May 19 20:01:40 2012
    DNS Servers:          192.168.1.254
    Adapter Name:          {B32D9395-8937-42EC-BC5F-352D07958EDF}
    Description:          Realtek PCIe GBE Family Controller
    IP Address:          0.0.0.0
    Subnet Mask:          0.0.0.0
    Default Gateway:          0.0.0.0
    DHCP Enabled:          Yes
    DHCP Server:
    Lease Obtained:          Thu Jan 01 00:00:00 1970
    Lease Expires:          Thu Jan 01 00:00:00 1970
    DNS Servers:
    Active Connection:          LAN Connection
    Connected:          Yes
    Online:                    Yes
    Using Modem:          No
    Using LAN:          Yes
    Using Proxy:          No
    Firewall Information
    Windows Firewall is on.
    iTunes is NOT enabled in Windows Firewall.
    Connection attempt to Apple web site was successful.
    Connection attempt to browsing iTunes Store was successful.
    Connection attempt to purchasing from iTunes Store was successful.
    Connection attempt to iPhone activation server was successful.
    Connection attempt to firmware update server was successful.
    Connection attempt to Gracenote server was successful.
    Last successful iTunes Store access was 2012-05-18 20:14:07.

    @ deggie, I wasn't threatening ANYONE. I was simply saying how frustrating this has become, seeing how I have been trying on my own to figure this issue out for more then a month with no results. Like I said in the beginning, I have not used any other account to purchase apps or other products on my phone. I have only ever used one account. There are 23 apps that are saying they can't sync. It directs me to authorize the computer, which I do but it doesn't change the outcome. If I proceed, I lose those 23 apps correct? Do I also lose all my text messages saved, and other things such as documents in the "notes"?

  • More Info about ProRes

    Hi, I am still trying to learn enough about this topic to feel good about it, so for any of you who've helped me on on this I appreciate it, and I'm still working on it, so bear with me...
    So, the time has come to do some capturing. I have some Beta SP tapes that I'm going to capture. I've been asked to capture them ProRes 422, which is the codec we're editing in. I'm trying to find out more just because I want to make sure this is the most efficient way to do this.
    The white paper says HD files that compare in size to uncompressed SD. I realize this is a reference to how ProRes treats HD material, so what is its effect on SD? Are there pros and cons to capturing the Beta stuff in Apple ProRes vs. capturing uncompressed SD? My biggest questions are:
    1: Between these three things (ProRes 422, ProRes 422 HQ, and Uncompressed 10 bit SD) what are my end file sizes going to be? Is there a storage benefit to any of these, and if so what's the best option?
    2. Is there a better choice? I've heard a lot of people tell me that ProRes is unnecessary for SD stuff, but again, I don't know enough to say otherwise and I've been asked to do it this way, but I've also been asked to find out the advantages to one versus the other here first before we actually rent a deck and start capturing.
    3. Just in general, since I'm obviously floundering on getting a good grasp on the use of ProRes for my particular project, anyone who maybe knows of a good place for me to read up/listen up on ProRes and its uses, especially in regards to SD, I'd greatly appreciate any advice.
    Sorry to keep asking what seems like the same question worded differently, but this time I'm trying to produce a clear comparison so the big guy can make a decision. Thanks a lot!
    Austin

    There's a few aspects to this - and such several "correct" answers.
    First, what exactly will you be doing? Are you just editing or will there be vfx/color grading etc? If it is the latter, and you're in SD, I'd personally go with uncompressed 10-bit. The files will be large, but it will be worth it if you do a lot of processing.
    ProRes files will be much smaller, and still look very good, but may not hold up as well to heavy processing.
    Not sure what you mean with #2... what other codec(s) are you looking at. Saying it is "unnecessary for SD" is an interesting comment - depends on what you want to do with the footage.
    Some info about ProRes (and uncompressed) bitrates:
    http://www.appleinsider.com/articles/07/04/18/acloser_look_at_apples_new_prores_422_videoformat.html
    http://www.apple.com/finalcutstudio/finalcutpro/apple-prores.html
    http://sportsvideo.org/main/blog/2009/08/11/apple-final-cut-prores-lowers-bitrat e/
    http://documentation.apple.com/en/finalcutpro/professionalformatsandworkflows/in dex.html#chapter=10%26section=1%26tasks=true

  • Need more info about "NestedContainer" violation

    Hello,
    I have a "NestedContainer" violation for a Canvas container in my application. Compared to the application's root container it is located at level 6 i.e. nested in 5 other parent containers. However at the same time I have other containers (again Canvases) which are even deeper nested for example at level 8 compared to the root container.
    I need more information when exactly the "NestedContainer" violation is triggered so I fix my code if needed and submit a bug for FlexPMD in case the rule is not implemented as designed.
    Thanks!
    Smirnoff

    Hi
    I would like to share an example but I need to create it since I don't want to post the actual source code.
    Simply copying the problem mxml file under another name doesn't work because it is put outside its container and then the violation is not generated.
    If I have to create an example it might be too time consuming to achieve these:
    - keep the same component hierarchy
    - keep the problem present
    - keep the example clean from the real source code
    That's why I wanted to get more info when this violation is triggered and hopefully create an example faster.
    Smirnoff

  • Want more info about optimizing battery lifespan and performance

    I have read Apple Support's basic article on iPhone battery charging, but it doesnt answer all of my questions.  i am kind of a fanatic about maintaining the health and longevity of my battery.  I usually run it down to 3% or less before plugging in, then charge it all the way up.  This creates some inconvenience, but after one year, my iPhone 5 battery is still performing much better than any previous iPhone ever did.  Here are a few questions I have:
    1. Is it really neccessary to wait for the battery to drop to 3%, or could I charge it after it goes below 20%, if it is more convenient?
    2. Is there any harm in charging to less than 100% if I am in a hurry?
    3. If I regularly plugged it in at over 50%, would it develop a memory and hold less charge?
    4. What effect, if any, do Mophie Juick Packs have on iPhone battery health (I just got one)?
    If there were no memory issues, the most convenient thing to do would be to plug it in every night at bedtime.  Any knowledgable commentary would be welcome.

    There's a few aspects to this - and such several "correct" answers.
    First, what exactly will you be doing? Are you just editing or will there be vfx/color grading etc? If it is the latter, and you're in SD, I'd personally go with uncompressed 10-bit. The files will be large, but it will be worth it if you do a lot of processing.
    ProRes files will be much smaller, and still look very good, but may not hold up as well to heavy processing.
    Not sure what you mean with #2... what other codec(s) are you looking at. Saying it is "unnecessary for SD" is an interesting comment - depends on what you want to do with the footage.
    Some info about ProRes (and uncompressed) bitrates:
    http://www.appleinsider.com/articles/07/04/18/acloser_look_at_apples_new_prores_422_videoformat.html
    http://www.apple.com/finalcutstudio/finalcutpro/apple-prores.html
    http://sportsvideo.org/main/blog/2009/08/11/apple-final-cut-prores-lowers-bitrat e/
    http://documentation.apple.com/en/finalcutpro/professionalformatsandworkflows/in dex.html#chapter=10%26section=1%26tasks=true

  • Need more Info about HR Datasources to use in BI

    Hello,
    some one can give me more information about the HR Datasources and how to use in BI...
    Best Regards

    Dear Baris,
    Please check these links :
    http://help.sap.com/saphelp_nw04/helpdata/en/2a/77eb3cad744026e10000000a11405a/frameset.htm
    https://websmp201.sap-ag.de/~sapdownload/011000358700004478862001E
    /people/swapna.gollakota/blog/2008/01/14/one-stage-stop-to-know-all-about-bw-extractors-part1
    https://websmp201.sap-ag.de/~sapdownload/011000358700004478862001E
    Regards,
    Ramkumar.

  • Where can I get more info about Director and Projectors?

    I would like to learn how to create interactivity within my animations-like menus and such.
    a)where can I buy Director
    b)where can I re-learn it after 10 years?
    Thanks

    you can buy new online in the Adobe store or try to find a usefull version like MX2004 or 11.5 on ebay or similar recources.
    if you can get an upgradeable version at a cheap recource it will be better to upgrade to 11.5 as to buy  the full version 11.5.
    See eligeble versions in the Adobe online store.
    best
    Wolfgang

  • Getting more info about a resource

    Hi,
    could you please let me know what is the endpoint i can use to get detailed information about a resouce, for example if i have a virtual network "foo" then how do get the which address space and subnets are in that network , The api endpoint i
    can GET/POST so that i get this info. i would prefer the ARM endpoint , as i use that for provisioing too
    Thanks in advance..
    - Benno

    Hi,
    Thank you for posting in here.
    We are checking on this and will get back at earliest.
    Regards,
    Manu Rekhar

  • In need of more info about creating a game

    Well i posted before about making a simple 2d fps based game. I've read thorugh the java 2d+3d tutorials, and i really still have no clue where to start. Say i wanted to just start out with a flat, solid colored floor, with a rough shape of a person (just a square?) that is able to move. (not asking for any animation) Where should i start? I know about VirtualUniverse's, scene graphs, locals, e.c.t. but the tutorials never really telly you hoe to get started.

    Man there is a book called Killer game programming by O-ReilyI reffered it and tell you this is the best you can have.
    It will show step by step everything.
    Another book which I recommend is Apress 3d game development

  • How do I find out info about my G4, where  bought it, cost etc

    I need information about my G4. I bought it new some years ago but have no longer got the records of my purchase. Where can I find out those details please? The store was in Penrith, but not an Apple store as such. Even the name of the business would be helpful. Thanks.

    You could check the location of the business against the Apple - Find Locations
    database through Apple Support, to see if any existing independent authorized
    Apple resellers appear familiar to you.
    Australia
    Find Apple Locations for: Sales, Service, Training, Certification, & Consulting.
    Enter the city name to help locate nearest authorized Apple business locations.
    The above flag icon and country name should be an active link to this URL:
    https://locate.apple.com/au/en/
    An example of the output the above may provide, is in this link from the Service
    location (click on one of four boxes, and add city name, if not a nearby location)
    to see a map of the vicinity; in this case authorized Service in Penrith, Australia:
    https://locate.apple.com/au/en/service/?pt=4&lat=-33.7521785&lon=150.69104670000002
    There are approximately 23 Apple authorized Service locations near Penrith
    New South Wales, Australia; to see an other list of possible choices, look in
    to the Sales section from the locate link for Australia, instead Service. Some
    of the 99 authorized Sales locations also offer specialists, & other experts...
    https://locate.apple.com/au/en/sales/?pt=4&lat=-33.7521785&lon=150.69104670000002
    In the course of a decade, business names can change or no longer exist; so
    even if you did recollect a name that was an authorized Apple reseller, or one
    who also provided service, or other support, they'd not have kept records of
    each individual sale to now, since that time.
    If you kept the original computer carton, those sometimes had the address
    and name of the reseller, along with shipping information, on the outside.
    Any original receipts, warranty, or bank payment records from the time, you
    may have set aside from the purchase, are where you'd find details you ask.
    The reason for needing to know the detailed information about the computer,
    if explained, may be an easier way to go. What technical or product question
    do you have a need to know, at this late a date? Some online databases are
    still available, but not ones specific to your singular purchase; even if it were
    registered with Apple when new, under warranty considerations at the time.
    If you registered the computer with Apple for warranty or AppleCare consideration
    at the time of purchase, that in itself would not be enough to pinpoint the store
    you bought it from. The Apple Support section may give you minimal info on a
    list of former purchases that were sold to you, going back several years, online.
    Hopefully you have some researchable technical questions that someone here
    in these user-to-user (or peer-based) discussions, can help you with; since the
    product is vintage or obsolete, as the trail is quite cold on tracking the item now.
    In any event...
    Good luck & happy computing!

Maybe you are looking for

  • Error when the wrapper vast response is empty

    Hi, When the targeted adserver returns an empty vast response through the Wrapper/VASTAdTagURI tag, the error below is triggered : TypeError: Error #1010: A term is undefined and has no properties.           at org.osmf.vast.parser::VAST2Parser/get a

  • Subject: extract the string before space

    I have a string say "aquarium a". i want to extract the string appearing before the space and discard the string appearing after space. that is the resultant string required is "aquarium". any number of characters can appear after space. is it possib

  • 64-bit version of QT?

    I recently started using WaterFox, which is essentially an unofficial 64-bit version of Firefox for Windows. Is there a 64-bit version of the Quicktime plugin? If not, when can we expect to see one?

  • OLE and Access Segmentation Violations

    Has anybody used Forte to communicate with external components using OLE Automation? We are creating segmentation violations through some of our use of this interface, and need to know if there are some 'golden rules' that can guide developers as the

  • I want to de authorize adobe digital 2.0 on my laptop

    how can I de authorize adobe digital reader 2.0 on my laptop