Ejb3 app functions only when both .jsf and .jsp is present

Hi All,
I have the following problem: when I try to remove either of booking.jsp and booking.jsf (having same contents) from the directory tree of app.war (following), I get the message HTTP status 404 The requested resource (/s_ejb3_jb421_tobbfele/pages/booking.jsp) is not available.
Thank you in advance: Balazs Bamer
JBoss 4.2.1 output:
16:23:21,101 INFO [MyfacesConfig] No context init parameter 'org.apache.myfaces.PRETTY_HTML' found, using default value true
16:23:21,101 INFO [MyfacesConfig] No context init parameter 'org.apache.myfaces.ALLOW_JAVASCRIPT' found, using default value true
16:23:21,101 INFO [MyfacesConfig] No context init parameter 'org.apache.myfaces.DETECT_JAVASCRIPT' found, using default value false
16:23:21,101 INFO [MyfacesConfig] No context init parameter 'org.apache.myfaces.AUTO_SCROLL' found, using default value false
16:23:21,101 INFO [MyfacesConfig] No context init parameter 'org.apache.myfaces.ADD_RESOURCE_CLASS' found, using default value org.apache.myfaces.renderkit.html.util.DefaultAddResource
16:23:21,101 INFO [MyfacesConfig] No context init parameter 'org.apache.myfaces.ADD_RESOURCE_CLASS' found, using default value org.apache.myfaces.renderkit.html.util.DefaultAddResource
16:23:21,121 INFO [MyfacesConfig] No context init parameter 'org.apache.myfaces.CHECK_EXTENSIONS_FILTER' found, using default value true
app.war (inside s_ejb3_jb421_tobbfele.ear) contents, with only the booking.jsf:
META-INF/
META-INF/MANIFEST.MF
WEB-INF/
WEB-INF/web.xml
WEB-INF/lib/
WEB-INF/lib/com-sun-rave-designtime.jar
WEB-INF/lib/commons-beanutils.jar
WEB-INF/lib/commons-chain.jar
WEB-INF/lib/commons-codec.jar
WEB-INF/lib/commons-collections.jar
WEB-INF/lib/commons-digester.jar
WEB-INF/lib/commons-el.jar
WEB-INF/lib/commons-fileupload.jar
WEB-INF/lib/commons-lang.jar
WEB-INF/lib/commons-logging.jar
WEB-INF/lib/commons-validator.jar
WEB-INF/lib/jakarta-oro.jar
WEB-INF/lib/jsfcl-dt.jar
WEB-INF/lib/jsfcl.jar
WEB-INF/lib/jstl-api.jar
WEB-INF/lib/jstl-impl.jar
WEB-INF/lib/openide.jar
WEB-INF/lib/propertyeditors.jar
WEB-INF/lib/shale-clay.jar
WEB-INF/lib/shale-core.jar
WEB-INF/lib/shale-remoting.jar
WEB-INF/lib/shale-tiger.jar
WEB-INF/lib/shale-tiles.jar
WEB-INF/lib/shale-view-1.0.4.jar
WEB-INF/lib/tiles-core.jar
WEB-INF/lib/tomahawk-1.1.2-SNAPSHOT.jar
WEB-INF/classes/
WEB-INF/classes/com/
WEB-INF/classes/com/loxon/
WEB-INF/classes/com/loxon/shaleproba/
WEB-INF/classes/com/loxon/shaleproba/FlightServlet.class
booking_messages.properties
booking_messages_en.properties
booking_messages_es.properties
booking_messages_fr.properties
images/
pages/
theme/
index.html
pages/booking.jsf
theme/style.css
WEB-INF/faces-config.xml
index.html:
<html>
<head>
  <meta http-equiv="Refresh" content="0; URL=pages/booking.jsf">
</head>
</html>faces-config.xml:
<?xml version="1.0"?>
<!DOCTYPE faces-config PUBLIC
  "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.1//EN"
  "http://java.sun.com/dtd/web-facesconfig_1_1.dtd">
<faces-config>
        <managed-bean>
                <managed-bean-name>flightServlet</managed-bean-name>
                <managed-bean-class>com.loxon.shaleproba.FlightServlet</managed-bean-class>
                <managed-bean-scope>request</managed-bean-scope>
        </managed-bean>
</faces-config>web.xml:
<?xml version="1.0"?>
<web-app   xmlns="http://java.sun.com/xml/ns/j2ee"
                   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
                              http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
                      version="2.4">
    <description>debug web.xml</description>
    <context-param>
        <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
        <param-value>client</param-value>
        <description>
            State saving method: "client" or "server" (= default)
            See JSF Specification 2.5.2
        </description>
    </context-param>
    <context-param>
        <param-name>javax.faces.ALLOW_JAVASCRIPT</param-name>
        <param-value>true</param-value>
        <description>
            This parameter tells MyFaces if javascript code should be allowed in the
        </description>
    </context-param>
    <context-param>
        <param-name>javax.faces.DETECT_JAVASCRIPT</param-name>
        <param-value>false</param-value>
    </context-param>
    <context-param>
        <param-name>javax.faces.PRETTY_HTML</param-name>
        <param-value>true</param-value>
        <description>
            If true, rendered HTML code will be formatted, so that it is "human readable".
            i.e. additional line separators and whitespace will be written, that do not
            influence the HTML code.
            Default: "true"
        </description>
    </context-param>
    <context-param>
        <param-name>javax.faces.AUTO_SCROLL</param-name>
        <param-value>true</param-value>
        <description>
            If true, a javascript function will be rendered that is able to restore the
            former vertical scroll on every request. Convenient feature if you have pages
            with long lists and you do not want the browser page to always jump to the top
            if you trigger a link or button action that stays on the same page.
            Default: "false"
        </description>
    </context-param>
    <filter>
        <filter-name>extensionsFilter</filter-name>
        <filter-class>org.apache.myfaces.webapp.filter.ExtensionsFilter</filter-class>
        <init-param>
            <param-name>maxFileSize</param-name>
            <param-value>20m</param-value>
            <description>Set the size limit for uploaded files.
                Format: 10 - 10 bytes
                        10k - 10 KB
                        10m - 10 MB
                        1g - 1 GB
            </description>
        </init-param>
        <init-param>
            <param-name>uploadThresholdSize</param-name>
            <param-value>100k</param-value>
            <description>Set the threshold size - files
                    below this limit are stored in memory, files above
                    this limit are stored on disk.
                Format: 10 - 10 bytes
                        10k - 10 KB
                        10m - 10 MB
                        1g - 1 GB
            </description>
        </init-param>
    </filter>
    <filter-mapping>
        <filter-name>extensionsFilter</filter-name>
        <servlet-name>Faces Servlet</servlet-name>
    </filter-mapping>
    <filter-mapping>
        <filter-name>extensionsFilter</filter-name>
        <url-pattern>/faces/myFacesExtensionResource/*</url-pattern>
     </filter-mapping>
  <filter>
    <filter-name>shale</filter-name>
    <filter-class>
      org.apache.shale.faces.ShaleApplicationFilter
    </filter-class>
  </filter>
  <filter-mapping>
    <filter-name>shale</filter-name>
    <url-pattern>/*</url-pattern>
    <dispatcher>REQUEST</dispatcher>
    <dispatcher>FORWARD</dispatcher>
  </filter-mapping>
    <servlet>
        <servlet-name>Faces Servlet</servlet-name>
        <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
        <servlet-name>Faces Servlet</servlet-name>
        <url-pattern>*.jsf</url-pattern>
    </servlet-mapping>
    <welcome-file-list>
        <welcome-file>index.html</welcome-file>
    </welcome-file-list>
</web-app>booking.jsf:
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
<%@ taglib uri="http://struts.apache.org/shale/core" prefix="s" %>
<%@ taglib uri="http://myfaces.apache.org/tomahawk" prefix="t"%>
<html>
<head>
  <title>Metro Systems </title>
  <link href="../theme/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="container">
<f:loadBundle basename="booking_messages" var="booking_messages"/>
  <f:view>
      <h3> <h:outputText value="#{booking_messages['welcome']}"/>  </h3>
   <h:form onsubmit="return validateForm(this);">
     <table align="center" cellpadding="5" cellspacing="5">
       <tr>
         <td>Email</td>
         <td><h:inputText id="email" value="#{flightServlet.flight.email}">
                    <s:commonsValidator type="required"
                          arg="Email"
                          server="true"
                          client="true"/>
                    <s:commonsValidator type="email"
                             arg="#{flightServlet.flight.email}"
                          server="true"
                          client="true"/>
             </h:inputText>
         </td>
       </tr>
       <tr>
         <td><h:outputText id="departure" value="#{booking_messages['date']}"/></td>
         <td>
            <t:inputCalendar monthYearRowClass="yearMonthHeader" weekRowClass="weekHeader"
                currentDayCellClass="currentDayCell" value="#{flightServlet.flight.departure}" renderAsPopup="true"
                popupTodayString="#{booking_messages['popup_today_string']}" popupWeekString="#{booking_messages['popup_week_string']}">
                    <s:commonsValidator type="required"
                          arg="Departure date"
                          server="true"
                          client="true"/>
             </t:inputCalendar>
        </td>
       </tr>
       <tr>
         <td><h:outputText value="#{booking_messages['city']}"/> </td>
         <td> <h:selectOneMenu value="#{flightServlet.flight.city}" required="true">
                             <f:selectItem itemLabel="Los Angeles" itemValue="Los Angeles"/>
                             <f:selectItem itemLabel="Madrid" itemValue="Madrid"/>
                             <f:selectItem itemLabel="Mexico City" itemValue="Mexico City"/>
                             <f:selectItem itemLabel="New York" itemValue="New York"/>
                             <f:selectItem itemLabel="Paris" itemValue="Paris"/>
            </h:selectOneMenu></td>
       </tr>
     </table>
     <h:message for="email" styleClass="errors"/>
     <h:message for="departure" styleClass="errors"/>
     <s:validatorScript functionName="validateForm"/>
     <h:commandButton type="submit" value="#{booking_messages['reserve']}" action="#{flightServlet.reserve}"/>
    <h:messages/>
  </h:form>
  </f:view>
    </div>
</body>
</html>ear application.xml:
<application>
  <display-name>JSF Shale EJB3 JBoss 4.2.1</display-name>
  <module>
    <web>
      <web-uri>app.war</web-uri>
      <context-root>/s_ejb3_jb421_tobbfele</context-root>
    </web>
  </module>
  <module>
    <ejb>app.jar</ejb>
  </module>
</application>ear jboss-ap.xml:
<jboss-app>
  <loader-repository>
    s_ejb3_jb421_tobbfele:archive=s_ejb3_jb421_tobbfele.ear
  </loader-repository>
</jboss-app>

<servlet-mapping>
        <servlet-name>Faces Servlet</servlet-name>
        <url-pattern>*.jsf</url-pattern>
</servlet-mapping>tells JSF, that it will get accessed via urls which end in jsf. So it's just a logical name
e.g. index.jsf
<context-param>
     <param-name>javax.faces.DEFAULT_SUFFIX</param-name>
     <param-value>.jsp</param-value>
</context-param>Tells JSF that the content filename will end in .jsp
Default is jsp anyway, so this param is optional.
Edit:
http://www.exadel.com/tutorial/jsf/jsftutorial-kickstart.html
Chapter "Creating the index.jsp File" might help you with the question about processing "jsp only" pages
Edited by: dube on Oct 26, 2007 2:11 AM

Similar Messages

  • TS1538 ipad does not come on once its unpluged from power source,it enters recovery mode when both power and home botton are pressed with usb on powersource but does not come up at all when connected to computer or out of power source

    ipad does not come on once its unpluged from power source,it enters recovery mode when both power and home botton are pressed with usb on powersource but does not come up at all when connected to computer or out of power source

    What model iPad do you have? If it's an iPad 1, the battery may have expired and needs replacement.
     Cheers, Tom

  • BPM when both sender and receiver systems are Sync. Please help!

    Hi Experts,
       I want to use BPM when both sender and receiver systems are Sync. For example: web service ---> RFC
    I have tried the solution as given in the blog
    https://weblogs.sdn.sap.com/pub/u/39730 [original link is broken] [original link is broken]
    but it does not work. I am getting Time Out error.
    Can somebody tell me the correct way of configuring BPM for sync-sync scenario?
    Kindly give the integraion directory steps also.
    Thanks
    Gopal

    Hi Hemant,
       I have already tried the solution as given in the blog (https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1403 [original link is broken] [original link is broken] [original link is broken])but it does not work. When I run the scenario I am getting Time out error.
    <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="1">
      <SAP:Category>XIServer</SAP:Category>
      <SAP:Code area="INTERNAL">PL_TIMEOUT</SAP:Code>
      <SAP:P1 />
      <SAP:P2 />
      <SAP:P3 />
      <SAP:P4 />
      <SAP:AdditionalText />
      <SAP:ApplicationFaultMessage namespace="" />
      <SAP:Stack>Timeout condition of pipeline reached</SAP:Stack>
      <SAP:Retry>N</SAP:Retry>
      </SAP:Error>
    Please help!
    Thanks & Regards,
    Gopal

  • Email notification to end-user only when both resources are provisioned

    Hello Gurus,
    My client has a requirement where the end-user needs to be sent an email notification as soon as his account gets created in OID and EBS.
    So the next time when the user logs in; he should be able to access both his accounts. But the email should be sent only when the 2 accounts are succesfully created.
    How can we do that by means of process tasks and adapters?
    Can anybody give an idea about how can we provide this functionality in the best way OOTB or custom way (code snippet) ?
    Thanks,
    - JHB.

    Hi
    If you are using OOTB connectors for OID and EBS then this requirement can be achieved by using OIM API.
    On successful response of 'Create user' in OID or EBS call a custom adapter and check for the provisioned status of other RO i.e. on completion of Create User task of OID, check for prov status of EBS and send the mail accordingly.
    If the user is not provisioned to the other resource, then do not send the mail. Otherwise if the user is already provisioned to the other resource, send the mail to the user. This approach is based on the assumption that there is no link between the provisioning to OID and provisioning to EBS.
    Correct me if I missed something.
    Hope this helps.

  • Developing SharePoint Apps to work on both OnPremise and SharePoint Online

    I have a requirement of developing SharePoint app which should work on both SharePoint online and SharePoint on premise. Is there any restriction on apps which might only work on one particular environment and not working on other. If there are scenarios
    which app can only work on particular environment what are the limitations and scenarios.

    When using the SharePoint Remote API (CSOM/JSOM/REST) and wanting your apps to be usable across platforms you must make sure to reference the correct version of Microsoft.SharePoint.Client and be careful not to utilize features only available in O365.
    There are two version of the CSOM 15 and 16. The 16 version comes with VSTO and has some methods only available on O365, for example Web.GetFolderByID method. If you reference the 16 version and use this method everything will compile but will fail the minute
    you make the call to SharePoint on-prem. You should also avoid using the new REST batch capabilities which are only available in O365. There is virtually no documentation on the differences between the versioned API's.
    Blog | SharePoint Field Notes Dev Tools |
    SPFastDeploy | SPRemoteAPIExplorer

  • Active ODP when both 9 and 10g are installed...

    I have both ODP 9i and ODP 10g (along with the Oracle 10g client) installed on my workstation. How does one set up one or the other to be the 'active' ODP client? For instance, I have an application that I developed under ODP 9i... because I developed this under ODP 9, I want it to run under ODP 9 on my or anyone else's workstation. However, when I view it in the Visual Studio 2003 IDE, it shows ODP 10 as the 'active' client. Even when I run it, I find it is using ODP 10 (I know this because I have a Help...About screen in my runtime that displays the loaded assemblies) Even if I install it on a plain workstation (i.e. no Visual Studio 2003) with both 9i and 10g installed, and even though it was fully compiled using 9i, it still shows up as using the 10g ODP client. I don't want that at this time - if I compile it under 9i I want it to use Oracle 9i... Otherwise, what is the sense of having both clients on the machine?
    So.... bottom line... is there a way to set one of the ODP clients to be 'active' even though both clients are installed?
    Thanks in advance.
    Tom

    Hi,
    By default, ODP installs publisher policy files to redirect to the latest version of ODP, which would make an app compiled with 92x odp use the 10x odp instead. If you dont want that to happen, delete the oracle.dataaccess publisher policy files from the GAC, but then you'll get no redirection at all. IE, you'll have to have the exact version the app was compiled with on that box to run the app.
    Or, as msolnit pointed you to above, there's an article on the MS site that explains more about it, and other ways to prevent it on a per-application basis (see the Bypassing Publisher Policy section of that article)
    Cheers, hope it helps.
    Greg

  • One of channel is read at 5V ONLY when X 5V and Y 5V by dmm

    I want to take two voltage simultaneously. One of the data record and hold at 5V when it is over 5V while other is below 5V. Other cases are normal say both are over 5V or blow 5V.
    Attachments:
    Simple_Digital_Multimeter_x2.vi ‏50 KB

    I've written an example that does what you want without hardware. If you run the example you will see that the waveform chart will hold at 5 only when reading1 is above 5 AND reading2 is below 5. Go ahead and change reading1 and reading2 manually while the program is running and you'll get the idea. You will need to add the VIs to read from your hardware and you will be set. I hope this helps.
    Regards,
    Todd D.
    Applications Engineer
    National Instruments
    Attachments:
    OverNBelow5.vi ‏28 KB

  • Sometimes when starting my iMac it shows a folder icon with a Question mark in it. Mac does not start up, only when shutting down and restart again solves it

    Sometimes when starting up my iMac it shows only a folder icon with a question mark in it. Nothing happened. Only when start up again it runs ok.
    What can be the cause of this.
    thanks for your help
    Hans

    That's an indication your Mac can't find a system folder to boot from.
    Open System Preferences > Startup Disk
    Select:  MacintoshHD OS X
    For OS X v10.4, v10.5, and v10.6 >    A flashing question mark appears when you start your Mac
    Helps when you ask for help to tell us which Mac OS X is installed.
    If you aren't certain, click your Apple menu icon top left in your screen. From the drop down menu click About This Mac.
    The version is noted there.

  • How to get EXTMUX to pulse only when taking samples, and not on LocalMUX Change? (E Series Board)

    I am using the 6031E series board. The EXTMUX is setup to pulse on each convert pulse. While taking data, I am getting a pulse on the EXTMUX for each sample taken, and a pulse for each time the 6031E switches its own internal mux. Is there anyway to only have the EXTMUX line pulse ONLY when a sample is taken, and not when the internal mux switches?

    If you are reading the DAQ-STC manual, the signal I am talking about is the EXTMUX. If you are reading the PCI E Series manuals, the signal I am talking about is called SCANCLK (just to make things easier to understand, I guess??). The EXTMUX is setup through the MITE, and will pulse after every convert signal. My problem is that it also pulses when the internal mux changes as well.
    So (for simplicity), if I wanted 2 channels, with 5 samples on each channel, and a mux outside the card on each line, the EXTMUX signal would sync the external hardware with the card/software.
    In theory I would expect 10 pulses on the EXTMUX/SCANCLK pin, but in reality I get 12 pulses. If I had 3 channels, 5 samples per channel, (Expected 15 pulses) I end up getting 18 pu
    lses in reality. This throws off any kind of sync to the outside world.

  • App store crashes when I try and "Accept" I-Photo after clean install

    I previously had Iphoto as part of the bundle with my OSX Lion Macbook Pro.  I then perfromed a clean install and upgraded to OSX Mountain Lion.
    The app store has clearly rembered that I own this software as instead of offering me the option to "buy" the software I am offered the option "accept".
    However when I click this button it promts me for Apple ID credentials and then nothing happens.   The wheel in the top left corner of the app store simply continues to roll and roll.
    On some occasions when I try and accept the software the App store crashes.
    I am running OSX 10.8.4
    The machine is:
    15 Inch Macbook Pro Early 2011
    2.2GHz Intel Core i7
    8 GB 1333 Mhz DDR3
    Intel HD Graphics 3000 512 MB

    If you're having problems with the App Store you might try this:
    1 - enable the Debug menu in App Store:
    open the Terminal application.
    copy the command below and paste into the Terminal window:
    defaults write com.apple.appstore ShowDebugMenu -bool true
    followed by Enter.
    launch App Store, login.
    2 - select the Debug ➙ Reset Application option:
    3 - try again.
    OT

  • How can I force Indesign cs5 to open cs5 documents when both cs5 and cs6 is installed?

    We are using Indesign with cs5-specific plugins. Due to that we have both cs5 and cs 6 installed on our workstations. Trying to assign cs5 documents (INDD) to cs5, windows refuses to let us choose indesign.exe (cs5). How can we force cs5 to be the chosen application for .indd?

    The best way is using Soxy:
    http://www.rorohiko.com/wordpress/downloads/lightning-brain-soxy/

  • Message bundles accessed from JSF and JSP pages

    Hello, everybody!
    I'm developing a localized JSF application. It is working pretty well until now.
    These are my message files:
    mensagens.properties
    mensagens_en_US.propertiesThis is how they're configured in faces-config.xml:
    <application>
        <resource-bundle>
            <base-name>br.urca.www.biblioteca.web.mensagens</base-name>
            <var>msg</var>
        </resource-bundle>
    </application>And this is how I access the messages in a page:
    <h:outputText value="#{msg.titulo}" />Nothing new until now. But now there was a need for me to have a raw jsp page in
    my web application. This page is displaying ok but I also need to access the
    message bundles as I'm able to access in the normal jsp with the JSF components.
    As you should know I can't use something like the above code with an +<h:outputText>+
    to access the messages because this is a JSF component and I'll not be able to use
    JSF components with this raw jsp page.
    So, my question is: how do I access my localized messages from a raw jsp page? I
    suppose there should be a way to do this, but unfortunately I started programming
    to the web world in Java with JSF, not JSP, so I don't know how to do this with
    JSP.
    Thank you very much.
    Marcos

    BalusC wrote:
    Just include [jstl-1.2.jar|https://maven-repository.dev.java.net/repository/jstl/jars/] in your classpath and define the fmt taglib in your JSP. Nothing more is needed.
    Hello, BalusC. Thank you for your help. We're almost there. After I have included the jstl-1.2.jar you provided me I can use the fmt tag and access message bundles from my raw jsp page (even though I had to provide other message bundles instead of the ones that I use in the other jsf pages, but it's better than nothing).
    Now there just on problem to be fixed. The jsp page is not aware when I change the locale of my application. I change this locale in a jsf page.
    I have this component:
    <h:selectOneMenu value="#{pesquisaAcervo.idiomaAplicacao}"
        valueChangeListener="# {pesquisaAcervo.idiomaAplicacaoMudado}" onchange="submit();">
        <f:selectItems value="#{pesquisaAcervo.idiomasAplicacao}" />
    </h:selectOneMenu>that calls this event in my backing bean class:
    public void idiomaAplicacaoMudado(ValueChangeEvent e)
        fIdiomaAplicacao.liberarItens();
        Idioma idioma = Idioma.deString(e.getNewValue().toString());
        // This line is for JSF
        FacesContext.getCurrentInstance().getViewRoot().setLocale(idioma.localidade());
        // This line is for Tiles
        FacesContext.getCurrentInstance().getExternalContext().getSessionMap().
            put(org.apache.tiles.locale.impl.DefaultLocaleResolver.LOCALE_KEY, idioma.localidade());
    }So, do I have to include another line in the idiomaAplicacaoMudado event above in order for the jsp page load the correct resource bundle? Or what else do I have to do?
    Thank you.
    Marcos

  • How can I use the Messaging App & Game Center when both my wife and I are using same apple ID on our ipads?

    When I try to set up my wife's messages app, it tells me the apple ID is already in use and won't let me go through with it.  Also, after the IOS5 update, my wife's game center login went away and syncs to mine and we cant figure out how to get it back to hers.

    You will need to create a new Apple ID for your wife.  This may require a new email address too.  As for Game Center, there is a sign out dialogue on the main page if you tapon your ID.

  • The font in my Facebook apps is real small and I can't do what I need to..Its only when using Firefox and not Internet Explorer...Help...

    A couple days ago the font in the apps I am playing like Farmville, Puzzled Hearts and Cafe World went small and doesn't show the whole page either. Its not like that in Internet Explorer so that tells me its either a Facebook or Firefox problem. The Home page is the right size font I use. It's just so strange...
    Thanks and hope it can be fixed

    Reset the page zoom on pages that cause problems: <b>View > Zoom > Reset</b> (Ctrl+0 (zero); Cmd+0 on Mac)
    * http://kb.mozillazine.org/Zoom_text_of_web_pages

  • How to call Reader when both Acrobat and Reader are installed?

    In my machine, I have both Acrobat 7.0 Standard and Acrobat Reader 8 installed.
    I want to call Reader 8 in my program. But everytime it opens Acrobat 7.0. I use the following code,
    Dim acroApp As Acrobat.CAcroApp
    acroApp = CreateObject("AcroExch.App")
    acroApp.MenuItemExecute("About")
    I am new to writing PDF programs. Can anyone tell me how to call Reader 8 by program? (I'm using VB.Net.)

    You can use this code with Adobe Acrobat, not Adobe Reader.
    Thank you for your reply. Does the library automatically choose application to call? or the library work under Acrobat only?
    I tried to run the samples of IAC in Acrobat SDK, but all of them called Adobe Acrobat.
    I'm really confused. Could you show me a way to call Reader?

Maybe you are looking for

  • How to share external hard drive connected to mac with pc

    I have and external hard drive connected to my mac-mini OSX 10.4.11 My iTunes music folder is in it. I want to share my music with my kids in my house so they can hear it in their windows xp computer with windows media player 11 I have the computers

  • Transferring files from old iMac

    Hey, I just did the transfer via firewire of my old files from my old iMac to my new macbook. I want to scrap everything that came in. Wish I hadnt done it. Is there any sort of "undo" feature? should I trash everything on the harddrive and reinstall

  • After Effects, Track camera unable to obtain dynamic link server connection

    This has been hit and miss. I am now consistenly getting a dynamic link server connection trying to use Track camera in After Effects. 64GB RAN Windows 7 proffesional i7 processor NVIDIA GEFORCE TITAN I have enabled all the recommended programs throu

  • Three days to download updates; iPhoto, IMovie, Evernote

    Hi, I bought a MacBook air approx 3 months ago (a mid-2011model recently and within a month/6weeks the new one & Pro were out - not happy). OS is Lion. I have had trouble downloading updates since I got it. I tried, tried and tried again. Constantly

  • MSATA on the W530

    Hi, all -- My purchase decision is between the T530 and the W530. The T530 allows an mSATA device ... new technology, seems to function as a hard disk cache ala Momentus. Nice if it's true. The web site doesn't list an option for an mSATA. Does anyon