Mapping to weblogic.servlet.FileServlet doesn't seem to work

          Hi!
          I'm using WebLogic 7.0.1 and am trying to use
          the weblogic.servlet.FileServlet to view some files.
          I have mapped in the web.xml file
          <servlet>
          <servlet-name>
          upload
          </servlet-name>
          <servlet-class>
          weblogic.servlet.FileServlet
          </servlet-class>
          <init-param>
          <param-name>
          docHome
          <param-name>
          <param-value>
          d:\bea\user_projects\GlobalSight\applications\DefaultWebApp
          </param-name>
          </init-param>
          </servlet>
          And I have set up mime-types too.
          When I access http://<machine name>:7001/upload/<directory to file>
          I get a HTTP 404 error. However if I remove the "upload" piece I can view it
          on
          IE 5.5 on the same machine.
          Do I have the format incorrect? Did something change with the FileServlet in
          7.0.1?
          I couldn't find any info on this.
          Thanks!
          -Lori
          

Reset the device:
Press and hold the Sleep/Wake button and the Home button together for at least ten seconds, until the Apple logo appears.
If that doesn't help, tap Settings > General > Reset > Reset All Settings
No data is lost due to a reset.

Similar Messages

  • Using weblogic.servlet.FileServlet - can it set expiration date to '0' and not cache the page?

              Hi!
              I'm using WebLogic 7.0.2 and using the weblogic.servlet.FileServlet to serve up
              various
              pages (HTML, Word, Powerpoint). If I change an HTML file and access it agin things
              are find
              since the default expirationdate for it is '0' - however if I change a Word file
              and reaccess it
              again I see the previous version of it. I have to clear out the cache and view
              it again in order
              to see the changes. Is there a way to use the weblogic.servlet.FileServlet and
              force no
              caching or a reload with every access?
              Thanks!
              -Lori
              

              Well I never heard anything so I just created a servlet that inherits from the
              weblogic
              FileServlet and puts in the expirationdate in the header before passing it on
              to the
              super class. It works fine.
              "Lori Ronning" <[email protected]> wrote:
              >
              >Hi!
              >I'm using WebLogic 7.0.2 and using the weblogic.servlet.FileServlet to
              >serve up
              >various
              >pages (HTML, Word, Powerpoint). If I change an HTML file and access
              >it agin things
              >are find
              >since the default expirationdate for it is '0' - however if I change
              >a Word file
              >and reaccess it
              >again I see the previous version of it. I have to clear out the cache
              >and view
              >it again in order
              >to see the changes. Is there a way to use the weblogic.servlet.FileServlet
              >and
              >force no
              >caching or a reload with every access?
              >Thanks!
              >-Lori
              

  • Error loading servlet: weblogic.servlet.FileServlet with v. 4.0.3

    Servlets have been working for months. Suddenly, I'm getting
              this error (see below) as soon as I try to hit a servlet.
              The startup process looks normal. I've re-installed WL v 4.0.3
              several time, gotten the license in place, so on and so forth,
              but cannot get around this problem. "weblogic.properties" file
              still reads:
              weblogic.httpd.register.file=weblogic.servlet.FileServlet
              All my servlets and EJBs have been registered, and db connection and
              pool made, as usual. As I said above, everything looks normal until
              I try to hit a servlet.
              [... startup output tidied up a bit ...]
              Thu Jan 27 14:46:05 MST 2000:<I> <ListenThread> Listening on port: 80
              Thu Jan 27 14:46:06 MST 2000:<I> <SSLListenThread> Listening on port: 7002
              Thu Jan 27 14:47:32 MST 2000:<E> <ServletContext-Servlets> Error loading servlet: weblogic.servlet.FileServlet
              Thu Jan 27 14:47:32 MST 2000:<E> <ServletContext-Servlets> java.lang.IncompatibleClassChangeError: class
              weblogic.utils.classloaders.ClasspathClassFinder does not implement interface weblogic.utils.classloaders.ClassFinder
              at weblogic.utils.classloaders.GenericClassloader.findLocalClass(GenericClassloader.java:196)
              at weblogic.utils.classloaders.GenericClassloader.reallyLoadClass(Compiled Code)
              at weblogic.utils.classloaders.RecursiveReloadOnModifyClassLoader$Slave.loadClass(RecursiveReloadOnModifyClassLoader.java:221
              at weblogic.utils.classloaders.GenericClassloader.loadClass(GenericClassloader.java:66)
              at weblogic.utils.classloaders.RecursiveReloadOnModifyClassLoader.findLocalClass(RecursiveReloadOnModifyClassLoader.java:96)
              at weblogic.utils.classloaders.GenericClassloader.reallyLoadClass(Compiled Code)
              at weblogic.utils.classloaders.GenericClassloader.loadClass(GenericClassloader.java:82)
              at weblogic.utils.classloaders.GenericClassloader.loadClass(GenericClassloader.java:66)
              at weblogic.servlet.internal.ServletContextImpl.loadClass(ServletContextImpl.java:440)
              at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.java:121)
              at weblogic.servlet.internal.ServletStubImpl.getServlet(ServletStubImpl.java:85)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:67)
              at weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImpl.java:203)
              at weblogic.socket.MuxableSocketHTTP.invokeServlet(MuxableSocketHTTP.java:505)
              at weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java:263)
              at weblogic.t3.srvr.ExecuteThread.run(Compiled Code)
              Thu Jan 27 14:47:32 MST 2000:<E> <ServletContext-Servlets> Servlet failed with ServletException ...
              ... and so on with multiple cascading failures.
              Does anyone have any idea as to what could cause this?
              Thanks.
              Paul Furbacher
              [email protected]
              

    Did you register your servlets after reinstalling. FileServlet is only for handling html pages. It has no role in loading servlets.
              "Paul Furbacher [TeamB]" wrote:
              > Servlets have been working for months. Suddenly, I'm getting
              > this error (see below) as soon as I try to hit a servlet.
              > The startup process looks normal. I've re-installed WL v 4.0.3
              > several time, gotten the license in place, so on and so forth,
              > but cannot get around this problem. "weblogic.properties" file
              > still reads:
              >
              > weblogic.httpd.register.file=weblogic.servlet.FileServlet
              >
              > All my servlets and EJBs have been registered, and db connection and
              > pool made, as usual. As I said above, everything looks normal until
              > I try to hit a servlet.
              >
              > ****
              >
              > [... startup output tidied up a bit ...]
              > Thu Jan 27 14:46:05 MST 2000:<I> <ListenThread> Listening on port: 80
              > Thu Jan 27 14:46:06 MST 2000:<I> <SSLListenThread> Listening on port: 7002
              > Thu Jan 27 14:47:32 MST 2000:<E> <ServletContext-Servlets> Error loading servlet: weblogic.servlet.FileServlet
              > Thu Jan 27 14:47:32 MST 2000:<E> <ServletContext-Servlets> java.lang.IncompatibleClassChangeError: class
              > weblogic.utils.classloaders.ClasspathClassFinder does not implement interface weblogic.utils.classloaders.ClassFinder
              > at weblogic.utils.classloaders.GenericClassloader.findLocalClass(GenericClassloader.java:196)
              > at weblogic.utils.classloaders.GenericClassloader.reallyLoadClass(Compiled Code)
              > at weblogic.utils.classloaders.RecursiveReloadOnModifyClassLoader$Slave.loadClass(RecursiveReloadOnModifyClassLoader.java:221
              > at weblogic.utils.classloaders.GenericClassloader.loadClass(GenericClassloader.java:66)
              > at weblogic.utils.classloaders.RecursiveReloadOnModifyClassLoader.findLocalClass(RecursiveReloadOnModifyClassLoader.java:96)
              > at weblogic.utils.classloaders.GenericClassloader.reallyLoadClass(Compiled Code)
              > at weblogic.utils.classloaders.GenericClassloader.loadClass(GenericClassloader.java:82)
              > at weblogic.utils.classloaders.GenericClassloader.loadClass(GenericClassloader.java:66)
              > at weblogic.servlet.internal.ServletContextImpl.loadClass(ServletContextImpl.java:440)
              > at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.java:121)
              > at weblogic.servlet.internal.ServletStubImpl.getServlet(ServletStubImpl.java:85)
              > at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:67)
              > at weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImpl.java:203)
              > at weblogic.socket.MuxableSocketHTTP.invokeServlet(MuxableSocketHTTP.java:505)
              > at weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java:263)
              > at weblogic.t3.srvr.ExecuteThread.run(Compiled Code)
              >
              > Thu Jan 27 14:47:32 MST 2000:<E> <ServletContext-Servlets> Servlet failed with ServletException ...
              >
              > ... and so on with multiple cascading failures.
              >
              > ****
              >
              > Does anyone have any idea as to what could cause this?
              >
              > Thanks.
              >
              > Paul Furbacher
              > [email protected]
              

  • Port mapping doesn't seem to work - AEBS

    I have a dsl connection to an Alcatel SpeedTouch 530 modem, linked via ethernet cable to the WAN of my AEBS, which shares the connection to three Macs and 2 Win boxes. I want to connect to aMule and get a High-ID. In the wiki.amule.org FAQ it states that to achieve this, I must use port mapping behind a firewall, and map ports 4662 (TCP) and 4665 (UDP) to my machine (which, after reading http://discussions.apple.com/thread.jspa?messageID=607426&#607426, I have assigned to AirPort TCP/IP address 10.0.1.201, by the way).
    Unfortunately, it doesn't seem to work, and I'm still getting the annoying 'low-ID' warnings on aMule.
    Following some advice on the aMule forum, I mapped port 80 and verified that the WebServer is accessible inside the wLan, if that's of any help.
    Thanks, people.

    Hi Tim, a couple of questions:
    1. If I go ahead and un-check the 'Distribute IP
    addresses' box, how will the three Macs and two Win
    computers on this wlan be affected? Do we still have
    access to each other's shares, and do we still access
    the internet through the AEBS?
    Once you turn off the 'distribute the IP address box' then your alcatel router will then distribute ip adresses and your macs and wintel boxes will still be on the same network and using the sharepoints will remain the same if you setup the shares using the bonjour names.
    I am making an assumption here in that your alcatel box is setup as a NAT router and not as a Bridge.
    2. Do I just give a static internal IP to my own
    powerbook, or to all the above computers?
    You only need to give a static ip to the mac your doing the port forwarding to. So that is the mac that is running the p2p software, infact you would do the same for any computer on the LAN that would run a server, such as a webserver, email server etc.
    Many thanks, as always.
    You are welcome.
    PS I had the impression that the basic idea of what I
    need to do to successfully map the ports to my Mac
    was to map ports from the DSL modem to the AEBS, then
    from AEBS to my Mac. Is this not right? Or is this
    another kind of solution to the same problem, albeit
    slightly more complicated to your suggestion above?
    If the alcatel modem was just behaving as a modem then you would use the AEBS as the NAT device and do the port mapping on that. However the Alcatel modem is also a router.
    If you setup up your alcatel router as a bridge you would then use the AEBS as your PPPoE client and then port mapping would work.

  • SetAutoCreateColumnsFromModel doesn't seem to work...

    I've been coding a game server browser in Java, and have gotten pretty far with it. However, I'm running into a slight problem. I want to be able to align certain cells to my own specifications, as well as size columns myself. In order to accomplish this, I don't want the table to automatically display columns. Therefore, I have attempted to use jtbServers.setAutoCreateColumnsFromModel(false);. The only problem is that it doesn't seem to work...maybe it works only after-the-fact, but what the following code results in is twice the columns.
         // Server Table
         private JScrollPane guiServers()
              // Sets up the table headers
              Object objColumn[] = {"Server", "Address", "Players", "IWAD", "PWAD", "Map", "Ping"};
              // Sets up the Data Table Model
              dtmServersData = new DefaultTableModel(objColumn, 0)
                   public boolean isCellEditable(int a, int b)
                        return false;
              // Sets up the table itself
              jtbServers = new JTable(dtmServersData);
              jtbServers.setAutoCreateColumnsFromModel(false);
              TableColumn column;
              for(int i = 0; i < objColumn.length; i++)
                   column = new TableColumn(i);
                   column.setHeaderValue(objColumn);
                   jtbServers.addColumn(column);
              // Slaps a scroll bar on it
              jspServers = new JScrollPane(jtbServers);
              return jspServers;
    Any idea what I'm doing wrong?

    I want to be able to align certain cells to my own specifications, as well as size columns myselfWell, there is no reason you can't let the table create the TableColumnModel normally and then use the setAutoCreateColumnsFromModel(...) method. Then you would customize the TableColumns.
    maybe it works only after-the-fact,I would say this is the case. This method is handy when you need to reset the table with a "refreshed" TableModel. Say you have a query from a database that will always return the same data and number of columns. When you refresh the table using the setModel(...) method, then the default behaviour would be to recreate the TCM. However, if you've already customized the TCM then you would use the setAutoCreateColumnsFromModel to preserve your customization.

  • Annotations - InheritanceType.TABLE_PER_CLASS doesn't seem to work with GF

    Hi there,
    I'm using the toplink essentials jar file with a stand alone J2SE application. I'm using annotations for ORM with Toplink implementation
    What I want to achieve is to map the base class objects to one table, and sub class objects to a different table. Currently - both tables (and objects) have the exact same structure, but I use inheritence in order to identify where should the object be registered. Thus I'm trying to map an inhertiance using TABLE_PER_CLASS type.
    It doesn't seem to work:
    My classes look like this:
    Base class I want to map to REGION table:
    @Entity
    @Table(name="REGION")
    @Inheritance(strategy=InheritanceType.TABLE_PER_CLASS)
    public class Region implements BaseBusinessObj
    @Id
    @Column(name = "REGION_ID", insertable = false, updatable = true)
    @GeneratedValue(generator = "regionSeq")
    @SequenceGenerator(name = "regionSeq",
    sequenceName = "GSM_REGION_ID_SEQ", allocationSize = 1)
    private int m_regionId;
    @Column(name = "REGION_NAME")
    private String m_regionName;
    Subclass with exact same structure I want to map to GFR_REGION table which has the exact same database table structure as REGION:
    @Entity
    @Table(name="GFR_REGION")
    public class GfrRegion extends Region
    This doesn't work. The Toplink adds entities of the GfrRegion to the REGION table and does not recognize it should go to the GFR_REGION table.
    What am I doing wrong?
    Thanks,
    Michael

    Hi all,
    Any news about the support for TABLE_PER_CLASS in TopLink/EclipseLink ?
    The main question is what was the reason for making this an optional strategy for mapping in the specs ? Both OpenJPA and Hibernate have it and there are cases when this is usefull.
    From EclipseLink perspective, how difficult would be to add this ? I didn't have a chance yet to closely examine the codebase for EclipseLink, but some architecture diagrams with some design decisions explained would help to community to better understand the product and make improvements.
    Thank you,
    Mircea

  • Hibernate hbm2ddl.auto create-drop doesn't seem to work in 10.3 JPA

    Greetings,
    I'm migrating an JPA application from JBoss 5.0 to WebLogic 10.3. In order to simplify the problem, I have the following entity:
    package fr.simplex_software.p204.domain;
    import java.io.Serializable;
    import javax.persistence.*;
    @Entity
    @Table(name="AUTHOR")
    public class Author implements Serializable
    private static final long serialVersionUID = 1L;
    @Id
    @Column(name="AUTHOR_ID", nullable=false)
    @GeneratedValue(strategy=GenerationType.AUTO)
    private Long id;
    public Long getId()
    return id;
    public void setId(Long id)
    this.id = id;
    I also have the following persistence.xml file:
    <?xml version="1.0" encoding="UTF-8"?>
    <persistence version="1.0" xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd">
    <persistence-unit name="p204-ejbPU" transaction-type="JTA">
    <provider>org.hibernate.ejb.HibernatePersistence</provider>
    <jta-data-source>java:/jdbc/TestDS</jta-data-source>
    <exclude-unlisted-classes>false</exclude-unlisted-classes>
    <properties>
    <property name="hibernate.hbm2ddl.auto" value="create-drop"/>
    </properties>
    </persistence-unit>
    </persistence>
    When I deploy the application in JBoss 5.0, the table AUTHOR is created. When I deploy the same in WebLogic 10.3, the table isn't created and nothing happens. Should I do anything of special ?
    Many thanks in advance for any help.
    Kind regards,
    Nicolas

    Hi Matt, thanks for your reply. Yes, I did. Actually I'm testing the JDBC data-source in WebLogic console and the test is successfull. Also, exactly the same app correctly deploys in JBoss. In the WebLogic console I can see my EAR deployed, I'm running some standalone clients against some SLSB in the EAR and they work properly and I'm sure that if I'm manually creating the data-model, the JPA entities will work. The only thing which doesn't seem to work is the automatically data-model creation. I thought that Hibernate may not be so intimatelly integrated with WebLogic as with JBoss and I tried to use Kodo, but I didn't find any auto create-drop equivalent feature. I continue digging but stiil interested by any suggestion, if any.
    Many thanks in advance,
    Nicolas

  • Wacom Tablet doesn't seem to work all of the time?

    I have a Wacom Intuos 3 tablet, not more than a year old. I recently installed it onto my Macbook Pro and it worked fine, but when I unplugged it and came back to work with it later, it doesn't seem to work. The mouse doesn't respond to where I click on the pad.
    So, I've reinstalled this a couple of times and was able to make it work perfectly, but today when I went back to work in photoshop, it doesn't seem to be responding again.
    Does anyone have any tips? I know that Leopard likes you to eject USB devices instead of just pulling them out of the slot, but I don't see anywhere to eject it.
    Does anyone know what's up?

    Downloaded a driver from website, tablet works now.

  • Safari on my iPhone 6 running 8.02 doesn't seem to work right. Some Java scripts don't show correctly and they do on other browsers I have downloaded. I tried almost everything and nothing seems to work to fix it. Please help.

    Some websites like the one of my college uses JavaScripts and they seem to load correctly to a certain point but then not really. For example in one it would say select an option from the left menu. And I do it hut nothing happens. But when I go to the same website in another browser on my phone. The JavaScript works completely and allows me to see whatever I was clickig on that menu. I have seen that there are other websites being affected too. I tried clearing my cookies and data. even restarted my phone. And doesn't seem to work. I don't know how change the configuration any more to make it work like normal. At first I thought it was my school's website but it never got fixed. And now I realized is my safari browser! I wanna keep using it since I am really familiar with It. If someone knows how to fix this please let me know!
    Thanks

    You can reset the SMC and see if that helps. If it's a unibody or Retina, follow the method for "a battery you should not remove yourself."
    http://support.apple.com/kb/ht3964

  • I'm using iphoto9.1.3 but now it doesn't seem to work, whenever I try to open it, it just shows loading, but never loads. Can anybody help me with this ?

    I'm using iphoto9.1.3 but now it doesn't seem to work, whenever I try to open it, it just shows loading, but never loads. Can anybody help me with this ?    

    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Rebuild iPhoto Library Database from automatic backup.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one. .
    Regards
    TD

  • I'm travelling and trying to back up my new iPhone to iCloud. I have sufficient storage, am connected to wifi and it's plugged into a power source and yet it doesn't seem to work. Can anyone suggest what I'm doing wrong?

    I'm travelling and trying to back up my new iPhone to iCloud. I have sufficient storage, am connected to wifi and it's plugged into a power source and yet it doesn't seem to work at all. I'm currently in India. Could that be the cause or can anyone suggest any reason why this wouldn't work?

    "gets stuck" - are there any error messages?
    If you get the error "Backup not successful" and you've tried deleting the last backup and trying to back up manually without luck, try the following test:   Go to...
    Settings>iCloud>Storage & Backup>manage Storage, tap your device name in the Backups section, then look under Backup options.  Turn off all apps from backup and then do a manual backup.  If that doesn't work, then this post will not help.  If the backup works, then go back to the app list and turn some on and try another backup.  If successful, keep repeating these steps.  If it fails at some point, then try to zero in on the one app that seems to make the backup fail.  (I had this problem and found one app failing, probably due to a corrupt data file.)
    This process will take time, but if a backup works with no app data being used but clearly fails with the original settings, then somewhere in the mix of apps is a "bad" one.

  • Pdfmark code in MS Word 2008 doc doesn't seem to work properly to create Named Destination

    Hi all,
    I've been having trouble with creating Preview-compatible Named Destinations in Acrobat 9.x (see http://forums.adobe.com/thread/770470?tstart=0).  Distiller, on the other hand, appears to create compatible Destinations, so as a last-ditch effort, I tried to go back to my original source file (Microsoft Word 2008 document) to use Distiller's pdfmark functionality, to see if maybe I could finally get a PDF with Preview-compatible Destinations.
    Following instructions found elsewhere on this forum, I went into Word and inserted the following field into a test location in my document:
    PRINT "[ /Dest /testdest /View [ /XYZ null null null ] /DEST pdfmark"
    This field code is supposed to then cause a pdfmark to be inserted into the resulting PostScript and/or PDF files.  Distiller is supposed to understand this and turn it into a Named Destination called "testdest."  However, it doesn't seem to work - I don't see the pdfmark code in the PS file, and the PDF file doesn't have any Named Destinations in it.
    I'm using Acrobat 9.x on Mac OS X 10.6.5, so I tried this two different ways:
    1) Using the "Print to Adobe PDF" workflow (which replaced the "Adobe PDF Printer" from previous OS/Acrobat versions) - this automatically generates a PDF via (presumably) an API call to Distiller... and
    2) Using the "Print to Postscript" workflow to generate a PS file, which I then ran through Adobe Distiller.
    In neither case did I end up with a named destination in the PDF file, as I was supposed to.  In case #2, even the Postscript file didn't have a pdfmark embedded in it.  Thus, I'm assuming that perhaps this is particular issue may be a problem with MS Word 2008 rather than with Acrobat... but I'm hoping someone might have a clue as to how to fix it.
    I welcome ideas on how to get Word 2008 to properly output pdfmark code, so that Distiller will pick it up and properly embed a Named Destination into the PDF...
    Thanks in advance.
    (If anyone has ideas about the Preview-compatible problem, linked above, that would also be great!)

    You're suggesting that it was never fixed from Word 2004 to 2008?  Possibly.  I wonder if it's fixed in Word 2011?  Anyone know?  But is it really a Word problem, rather than a Distiller issue?
    I appreciate your offer, though I do have access to Word on Windows (2003, I think), so I could try Distilling there... I only worry about formatting, since there are minor differences (e.g. font kerning, etc.) between Mac and Windows that are subtle, but sufficient to create formatting issues for very long documents (e.g. pushing figures onto the wrong pages, etc.).  That would be a rather big problem.
    The question remains whether this is an issue with Word or Distiller, though... and whether it's fixed in Distiller X and/or Word 2011.
    Adobe, care to comment?
    I'd really love to find a proper Mac solution, if one exists... it would be rather a slap to Mac users if a solution doesn't exist.

  • Hi I'm running Addressbook and cannot clear previous entry easily when searching my data base of around 5,000 contacts.    I prefer to view in All contacts on a double page spread with details on the right page.  Searching doesn't seem to work correctly i

    Hi I'm running Addressbook and cannot clear previous entry easily when searching my data base of around 5,000 contacts. 
    I prefer to view in All contacts on a double page spread with details on the right page.  Searching doesn't seem to work correctly in this view.
    It's always the second search that is problematic.
    I've tried typing over and all it seems to do is confine the search to the the entries that have come up for the previous search.
    I've tried to use the x to clear the previous entry and then type the next search, same problem.  The only way seems to be to move from "All Contacts" to "Groups".  Then the searched name appears and I can return to All Contacts to see full details.
    Surely three key press' are not the way it's supposed to work?
    FYI
    Processor  2.7 GHz Intel Core i7
    Memory  8 GB 1333 MHz DDR3
    Graphics  Intel HD Graphics 3000 512 MB
    Software  Mac OS X Lion 10.7.3 (11D50d)
    Address book Version 6.1 (1083)
    MacBook Pro, Mac OS X (10.7.1), 8Mb RAM 2.7Ghz i7

    AddressBook experts are here:
    https://discussions.apple.com/community/mac_os/mac_os_x_v10.7_lion#/?tagSet=1386

  • I have Adobe Design Standard CS6 purchased 2013 with serial number but cannot find to download it onto a new mac laptop. When I try and add the 24-digit serial number to my account it doesn't seem to work?

    I have Adobe Design Standard CS6 purchased 2013 with serial number but cannot find to download it onto a new mac laptop. When I try and add the 24-digit serial number to my account it doesn't seem to work?

    CS6 - http://helpx.adobe.com/x-productkb/policy-pricing/cs6-product-downloads.html
    You can also download the trial version of the software thru the page linked below and then use your current serial number to activate it.
    Be sure to follow the steps outlined in the Note: Very Important Instructions section on the download pages at this site and have cookies enabled in your browser or else the download will not work properly.
    CS6: http://prodesigntools.com/adobe-cs6-direct-download-links.html

  • TS5183 My Iphone has a problem with the microphone it doesn't seem to work! so there for i can't use Siri anymore..:-( this has been playing up for some time now.

    My Iphone has a problem with the microphone it doesn't seem to work! so there for i can't use Siri anymore.. this has been playing up for some time now. But as my wife & I had a baby 7 Months ago I have not found the time to pop in to the apple store until today (8/12/13) and they told me that they couldn't help as it's out of it's warranty by 57 days
    Can antone help me? is there something i can do, apart from buying a new iphone!

    Have you got Siri turned on in settings/general/restrictions?

Maybe you are looking for

  • Google woes- here we go again- iweb site stopped coming up in Google

    I have had such great support here- it was only about a month or two ago I got help here getting my site to come up on Google- everything was fine- then all of the sudden- BAM- nothing! It's just as it was before- I would check from time to time to j

  • Zero Balance Clearing Account for New GL

    Hi SAP Gurus, We have one unique situation for zero balance clearing account for New GL. We have one global chart of account to which all company codes are assigned. We implemented document splitting with zero balance clearing for 1 splitting charact

  • SESSION AND SPID.

    Hi, guys. Does one session always have one spid? I quried. SELECT S.SID, S.SERIAL#, S.SUSERNAME, P.SPID FROM (SELECT SID, SERAIL#, USERNAME, PADDR FROM V$SESSION WHERE USERNAME = 'AAA') S, (SELECT ADDR, UPPER(USERNAME) FROM V$PROCESS WHERE USERNAME =

  • Customization of one field in User field tab of WBS master

    Hi all, There is one requirement given by our Client. In WBS master data , the user need to use the user fields to add one more fields "Division". The Key field of user fields needs to be changed from "text 1" to "Division" and its Japanese descripti

  • Desktop Image "Change" option grayed out

    I just installed the firmware update that SoftwareUpdate recommended. The same day I installed iLife'08 so I'm not sure what to blame for this but the new event image folders provided by iPhoto will not "change every _ minutes." The option (in System