Change JSF navigation-rule not begin with "root"

Dear all,
I have a web application, call myApp, run in PC1. There is a navigation rule to control page1 jump to page2.
normally, after deploy and run my application, url for it is: [ http://{color:#0000ff}pc1:8080{color}/{color:#008000}myApp{color}/*{color:#ff6600}page1.jsf{color}* ], and click something in my page1, it will go to [ http://{color:#0000ff}pc1:8080{color}/{color:#008000}myApp{color}/*{color:#ff6600}page2.jsf{color}* ].
I have another machine, named PC2, and create a mapping and forward request to PC1. Therefore, if anyone type the url: [ http://*{color:#0000ff}pc2{color}*/subSection/{color:#008000}myApp{color}/{color:#ff6600}*page1.jsf*{color} ] , actuality, they are looking for [ http://{color:#0000ff}*pc1:8080*{color}/{color:#008000}myApp{color}/*{color:#ff6600}page1.jsf{color}* ].
Now, I have a problem is that, when people browse a page [ http://{color:#0000ff}*pc2*{color}/*{color:#ff00ff}subSection{color}*/{color:#008000}myApp{color}/*{color:#ff6600}page1.jsf{color}* ] and click something, it will go to another page [ http://{color:#0000ff}*pc2*{color}/{color:#008000}myApp{color}/*{color:#ff6600}page2.jsf{color}* ], not go to [ http://{color:#0000ff}*pc2*{color}/*{color:#ff00ff}subSection{color}*/{color:#008000}myApp{color}/*{color:#ff6600}page2.jsf{color}* ]. Therefore, it makes "404 Not Found" exception.
Does anyone help me?
Thank you
Kevin Tang.

SuperCEO wrote:
My application server is Apache Tomcat.
May be my problem is related to Tomcat context path problem.
I wanna to know can I modify my program, such as faces-config.xml, to fix my problem, or I need to modify my Tomcat setting ?I am suggesting you do not need to modify your program, but the configuration of whatever is doing the forwarding.

Similar Messages

  • Error:  File does not begin with '

    After changing two javascript "else if" statements to "if" in an Adobe LiveCycle v8 form, I received errors upon saving. Now the file seems to be corrupt because when I attempt to open it I get an error stating "File does not begin with '". Does anyone know what could be causing this AND MORE IMPORTANTLY if there is a way to salvage my form? Please help!

    Hi VetSrini,
    Thanks for the update. I was able to figure out what was wrong.
    Now there is another problem. When i try "View Output", the excel file is shown and the following options are also shown:
    1. As an XML List
    2. As a read-only workbook
    3. Use the XML Source Task Pane
    When I try the first option, I get the following error:
    An Invalid Character was found in text content
    When I try the third option, I get the following error:
    Cannot load the specified XML or schema source.
    when i press the details button, it gives me the following detailed error:
    An Invalid Character was found in text content
    When I try the second option, i get the same error, but with some xml tags
    Can anyone please help me and tell me why i am getting these errors.
    Thanks in Advance,
    Arun

  • Error from reports from ZAM(Graph or PDF) - File does not begin with '%PDF-'.

    I just noticed today that any Graph or PDF report I try to view I get the
    following error - Error from reports from ZAM - File does not begin with
    '%PDF-'. I tried to just save the file and then open it, but get the same
    error. I can open other pdf files I have downloaded from other sites ok.
    Anyone have any idea? I haven't done anything to that server that I am
    aware of in quite a while.
    Thanks
    Bill

    I took a closer look at the files it downloaded, opened them with notepad,
    haer is what it says:
    XSL Transform or subsequent processing failedThe document has no pages.
    "Bill" <[email protected]> wrote in message
    news:2bBtk.2164$[email protected]..
    >I just noticed today that any Graph or PDF report I try to view I get the
    >following error - Error from reports from ZAM - File does not begin with
    >'%PDF-'. I tried to just save the file and then open it, but get the same
    >error. I can open other pdf files I have downloaded from other sites ok.
    >Anyone have any idea? I haven't done anything to that server that I am
    >aware of in quite a while.
    >
    > Thanks
    >
    > Bill
    >

  • Error : (does not begin with '%PDF-'. ) when print report in pdf

    Hi all,
    http://www.oracle.com/technology/obe/apex/apex31nf/apex31rpt.htm
    using the example in the above link,
    I have created a report and tried to print in pdf format,
    But
    does not begin with '%PDF-'. this error is appearing when the adobe reader is opening.
    Could anyone help me to make out the reason for this error?
    bye
    srikavi

    Srikavi,
    Which rendering engine are you using? BI Publisher? Apache FOP? Did you follow the steps outlined here when you configured PDF printing:
    http://www.oracle.com/technology/products/database/application_express/html/configure_printing.html
    Regards,
    Marc

  • Error with a PDF document in a BSP App: "File does not begin with '%PDF-'"

    Hi All,
    I have the following piece of in the layout of a BSP Application in our system.
    <%
    DATA: LV_PDFSIZE TYPE I,
                LW_PDF     TYPE TLINE,
                LV_XDATA   TYPE XSTRING.
    data: LT_PDF type ZGTIS_TAB_TLINE,
          lv_id type zgtis_http_id,
          filename type STRING.
    lv_id = session_id.
    import lt_pdf to lt_pdf from
           database zgtis_http_indx(in) id lv_id.
    RUNTIME->SERVER->RESPONSE->SET_HEADER_FIELD(
        NAME  = 'Content-Type'
        VALUE = 'application/pdf').
    if w_printall ne 'X'.
    CONCATENATE 'display; filename="invoice_' BIL_NUMBER '.pdf"'  INTO filename.
    else.
    CONCATENATE 'display; filename="invoice_' 'ALL' '.pdf"'  INTO filename.
    endif.
    RUNTIME->SERVER->RESPONSE->SET_HEADER_FIELD(
        NAME  = 'Content-Disposition'
        VALUE = filename ).
    RUNTIME->SERVER->RESPONSE->SET_HEADER_FIELD(
        NAME  = 'pragma'
        VALUE = 'no-store').
    RUNTIME->SERVER->RESPONSE->SET_HEADER_FIELD(
        NAME  = 'cache-control'
        VALUE = 'no-store').
    *     Convert to XSTRING
    FIELD-SYMBOLS <P> TYPE ANY.
    LOOP AT LT_PDF INTO LW_PDF.
      ASSIGN LW_PDF TO <P> CASTING TYPE X.
      CONCATENATE LV_XDATA <P> INTO LV_XDATA
        IN BYTE MODE.
    ENDLOOP.
    *     Set the response data
    RUNTIME->SERVER->RESPONSE->SET_DATA(
        DATA   = LV_XDATA ).
    %>
    This piece of code works fine when 'If w_printall ne 'X'.' condition is succesfull and I can see the PDF but when w_printall = 'X' I get the above error on a popup box, the error is "File does not begin with '%PDF-'" and I cant see the PDF.
    Does anyone have any suggestions!
    Kindly help.
    Regards,
    Karthik

    Check this thread
    it is a Big Discussion on that.
    In first page and second page you can see solutions.
    /thread/747643 [original link is broken]
    one with patch and other with setting in Adobe.
    Regards
    Vijay babu Dudla

  • PO PDF Error - File does not Begin with '%PDF-'

    Hi,
    I am working on Implementing PO PDF with XML data and RTF Template. I have created a new template in XML Publisher and followed the following set up steps
    Setup / Organizations / Purchasing Options / Control TAB / set 'PO Output Format' = 'PDF'
    setup / purchasing / document types / select "Standard Purchase Order" / Set the Document Type Layout to your new template.
    When I view the document from PO Summary > inquire > View Document, I get an adobe reader error
    'File does not begin with '%PDF-', how ever when I preview it from the template definition, it opens fine.
    I tried running PO Output for communication with my custom template but I don't see the parameter 'Purchase Order Layout'. The last parameter in the list is 'Include Blanket'.
    Am I missing any set up steps? However when I use the standard Purchase Order Layout in Document Types set up, the Inquire > View Document created a PDF output.
    Any help is greatly appreciated.
    Thanks,
    Sharmila

    I encountered same error in BPA Invoice Print. I remove a MLS function from the program definition and this error disappeared. Have not fully investigated but maybe this will help. Thanks.

  • File does not begin with '%Pdf-' in Persona to take a Print

    Dear all,
    What would be the reason for the error " File does not begin with '%Pdf-' when its trying to open in adobe reader in Persona.
    Does persona support any KMC content management ? please resolve this error.
    Find the attached screenshot.
    And we are using persona version as :
    Component
    Release
    SP-Level
    Support Package
    PERSOS
    100
    2
    SAPK-10002INPERSOS
    Cheers, Vasanth S

    hi vasanth,
    This issue might not be related to personas.
    Is this happening with all the PDFs?
    Also, i would recommend you to upgrade your personas SP to latest.
    New features in Personas 2.0 SP04; also Personas 1.0 SP04
    Sushant

  • Thunderbird mail now looking up "CONTAINS" when attempting to write an email and not "BEGINS WITH"!!!! HELP!!!

    The NEW Thunderbird is looking up "CONTAINS" when attempting to write an email and not "BEGINS WITH" as it used to do before. I'm currently on 31.3.0 Thunderbird. Which version do I need to revert to, to get this function back for an employee on his PC??
    Thank you in advance and I await your reply,
    ~Mario

    Version 24

  • TS1292 My code is all letters and does not begin with X. Does this mean it is invalid ?

    My code for the iTunes gift card says invalid. The 16 digit code is only letters and does not begin with x. What do I do ?

    Where exactly is it getting stuck? When you turn on highlight execution what is it dong?
    From looking at the top level VI though I bet your problem is that you are using the equals function to stop the loops. Your I32 gets type cast as a dbl, and the chance that they are equal is very slim.
    The reason is that doing an equal compare of doubles is never a good idea. The double may show up in your indicator as 1 but if you increase the digits of precision on that control you would see that is was actually something like 1.0000000000000001. So your math may lead to 1.000000000001 and the conversion of the I32 to dbl may lead to 1, therefore they are not equal and the loops will not finish.
    Take a look at this KB Comparing Floating Points Does Not Seem to be Working Properly.
    and this one: Why Do My Floating Point Numbers Lose Precision?

  • JSF navigation rules sent me to different page, with same URL

    Hello everybody,
    Have a newbie question on JSF, if anyone can help me. I am using JSF for a web application, and i have a small problem.
    If i define a navigation rule, from one page to another, and i am having a button that should send me to another page,
    the browser URL remains the same, although the page content IS correctly changed.
    Thanks,
    Andrei

    You're welcome.
    Though I should have added that the advantage of the redirect after a POST request is that refreshing the request or navigating back and forward by browser history doesn't cause a re-submit of the POST request anymore. This way you avoid duplication of submitted data. This is called POST-redirect-GET pattern. Refreshing the request after a redirect (which is always a GET request) would only cause the redirect being refreshed, not the initiating POST request.
    The disadvantage of a forward is less or more obvious: the URL remains the same and it is not really good for the user experience. If one copypasted the URL in a new window (a new GET request), one wouldn't see the forwarded page, but the originating page. That's why I would recommend to avoid navigation cases and just use the same page to postback the POST request to. For normal page-to-page navigation within a website, I would recommend just using outputlinks and not commandlinks with navigation cases. It's all better for the user experience.

  • Non-root is not associate with root

    I am working to setup the non-root associate with root. I have checked every configuration from the root are the same as non-root. Accept it set to non-root.
    - It is the same VLAN, SSID, authentication is open. I have encryption from both sides are the same.
    It is still not associated. What else should I check from the non-root to get association? Please give me some helps
    I am really appreciated that.
    The root configuration:
    version 12.4
    no service pad
    service timestamps debug datetime msec
    service timestamps log datetime msec localtime show-timezone
    service password-encryption
    hostname Root_Bridge
    no logging console
    aaa new-model
    aaa group server radius rad_eap
    aaa group server radius rad_mac
    aaa group server radius rad_acct
    aaa group server radius rad_admin
    aaa group server tacacs+ tac_admin
    aaa group server radius rad_pmip
    aaa group server radius dummy
    aaa authentication login default local
    aaa authentication login eap_methods group rad_eap
    aaa authentication login mac_methods local
    aaa authorization exec default local
    aaa accounting network acct_methods start-stop group rad_acct
    aaa session-id common
    resource policy
    clock timezone MST -7
    clock save interval 24
    ip subnet-zero
    ip domain name Bridge
    ip ssh time-out 60
    ip ssh version 2
    no dot11 igmp snooping-helper
    dot11 vlan-name Management vlan 51
    dot11 vlan-name User vlan 11
    dot11 ssid LOCALBRIDGE
       vlan 51
       authentication open
       infrastructure-ssid
    dot11 network-map
    crypto pki trustpoint TP-self-signed-4076113752
    enrollment selfsigned
    subject-name cn=IOS-Self-Signed-Certificate-4076113752
    revocation-check none
    rsakeypair TP-self-signed-4076113752
    crypto pki certificate chain TP-self-signed-4076113752
    certificate self-signed 01
      30820261 308201CA A0030201 02020101 300D0609 2A864886 F70D0101 04050030
      31312F30 2D060355 04031326 494F532D 53656C66 2D536967 6E65642D 43657274
      69666963 6174652D 34303736 31313337 3532301E 170D3032 30333031 30303030
      33345A17 0D323030 31303130 30303030 305A3031 312F302D 06035504 03132649
      4F532D53 656C662D 5369676E 65642D43 65727469 66696361 74652D34 30373631
      31333735 3230819F 300D0609 2A864886 F70D0101 01050003 818D0030 81890281
      8100B329 87F691CA 1107EC3A 9EF4676D 2F96A7E4 42DBB88F 426D78C1 0E9E09A0
      8F5EA9A1 DF88C33A A0DF128A E13E6E59 E9232487 0F5C953C 274DF314 1F48544F
      E213D232 85B1E45A 4D186A9E FF9581E6 3E471891 16B627B6 CB3D8F01 BCFF89E0
      77E8EA44 0E255F75 BFF1299A B3198E9B 61B3056B 8F365D98 2A8D463E F3122C47
      B80D0203 010001A3 81883081 85300F06 03551D13 0101FF04 05300301 01FF3032
      0603551D 11042B30 29822737 3332385F 42726964 67652E64 61766973 2D6D6F6E
      7468616E 2E616363 2E64732E 61662E6D 696C301F 0603551D 23041830 1680145F
      9DB7F2A6 BD563ACB 429F6938 6AF9D336 69139F30 1D060355 1D0E0416 04145F9D
      B7F2A6BD 563ACB42 9F69386A F9D33669 139F300D 06092A86 4886F70D 01010405
      00038181 00372387 521D029A FAE2F579 73EDCF3B FDF262EE 5DF6154E 5469A5BD
      6630E5FD C8A1311A A24493D4 D1856862 8979692B CDFE65D7 29E97B60 FCC37584
      A27FA332 9CC5F175 2EDC871C D41BA4F5 A50634DE 75210305 47240D4F A30D0046
      532F68ED 569CE374 98C5F53D A417CFBF 3A93C98A D399B06E A73E61AB D4889452
      0B695B54 86
      quit
    bridge irb
    interface Dot11Radio0
    no ip address
    no ip route-cache
    encryption key 1 size 128bit 7 E99521751C16125A7754722A6B72 transmit-key
    encryption key 2 size 128bit 7 1857F02303182327EA1A9242A53B
    encryption key 3 size 128bit 7 FE1CF103855EBB2763224F129556
    encryption key 4 size 128bit 7 19A03A5D596B029A01C208EF1C0F
    encryption mode ciphers wep128
    encryption vlan 11 key 1 size 128bit 7 419258EC0B7E6C7413C571760B67 transmit-key
    encryption vlan 11 key 2 size 128bit 7 AB3C5B091B37223F39306B1F7442
    encryption vlan 11 key 3 size 128bit 7 3E1CF103855EBB2763224F129556
    encryption vlan 11 key 4 size 128bit 7 E858C5382B5D5E372A6C0438604C
    encryption vlan 11 mode wep mandatory
    encryption vlan 51 key 1 size 128bit 7 90792B34ACD2C8D18A0B7AF3AC68 transmit-key
    encryption vlan 51 key 2 size 128bit 7 72063EA2FEF03A39E5468E92A7C5
    encryption vlan 51 key 3 size 128bit 7 8607AEADB49EE0B7E4529770D9AE
    encryption vlan 51 key 4 size 128bit 7 F60210B48CB39887A59255187D6D
    encryption vlan 51 mode wep mandatory
    ssid LOCALBRIDGE
    speed  basic-6.0 basic-9.0 basic-12.0 basic-18.0 basic-24.0 basic-36.0 basic-48.0 basic-54.0
    packet retries 128
    station-role root
    rts threshold 4000
    rts retries 128
    cca 87
    concatenation
    distance 5
    beacon period 20
    infrastructure-client
    interface Dot11Radio0.11
    encapsulation dot1Q 11
    no ip route-cache
    no snmp trap link-status
    bridge-group 11
    interface Dot11Radio0.51
    encapsulation dot1Q 51 native
    no ip route-cache
    no snmp trap link-status
    bridge-group 1
    interface FastEthernet0
    no ip address
    no ip route-cache
    hold-queue 80 in
    interface FastEthernet0.11
    encapsulation dot1Q 11
    no ip route-cache
    no snmp trap link-status
    bridge-group 11
    interface FastEthernet0.51
    encapsulation dot1Q 51 native
    no ip route-cache
    no snmp trap link-status
    bridge-group 1
    interface BVI1
    ip address 192.168.0.5 255.255.255.0
    no ip route-cache
    no ip http server
    ip http authentication aaa
    no ip http secure-server
    ip http help-path http://www.cisco.com/warp/public/779/smbiz/prodconfig/help/eag
    ip radius source-interface BVI1
    logging history informational
    snmp-server view dot11view ieee802dot11 included
    snmp-server community PUBLICSTRING RW
    snmp-server chassis-id Bridge
    snmp-server enable traps snmp authentication linkdown linkup coldstart warmstart
    snmp-server enable traps tty
    snmp-server enable traps entity
    snmp-server enable traps disassociate
    snmp-server enable traps deauthenticate
    snmp-server enable traps authenticate-fail
    snmp-server enable traps dot11-qos
    snmp-server enable traps wlan-wep
    snmp-server enable traps config
    snmp-server enable traps syslog
    snmp-server enable traps cpu threshold
    snmp-server enable traps aaa_server
    snmp-server enable traps envmon
    snmp-server host 192.168.9.10 PUBLICSTRING
    tacacs-server host 192.168.6.100
    tacacs-server host 192.168.4.100
    tacacs-server directed-request
    radius-server attribute 32 include-in-access-req format %h
    radius-server vsa send accounting
    bridge 1 protocol ieee
    bridge 1 route ip
    line con 0
    access-class 111 in
    line vty 0 4
    access-class 111 in
    line vty 5 15
    access-class 111 in
    end
    The non-root configuration:
    version 12.4
    no service pad
    service timestamps debug datetime msec
    service timestamps log datetime msec
    service password-encryption
    hostname Bridge
    logging console informational
    logging monitor informational
    aaa new-model
    aaa group server radius rad_eap
    aaa group server radius rad_mac
    aaa group server radius rad_acct
    aaa group server radius rad_admin
    aaa group server radius rad_pmip
    aaa group server radius dummy
    aaa authentication login default local
    aaa authentication login eap_methods group rad_eap
    aaa authentication login mac_methods local
    aaa authorization exec default local
    aaa accounting network acct_methods start-stop group rad_acct
    aaa cache profile admin_cache
    all
    aaa session-id common
    resource policy
    clock timezone MST -7
    clock save interval 24
    ip subnet-zero
    ip domain name Bridge
    no dot11 igmp snooping-helper
    dot11 activity-timeout bridge default 3600
    dot11 vlan-name Management vlan 51
    dot11 vlan-name User vlan 11
    dot11 ssid LOCALBRIDGE
       vlan 51
       authentication open
       infrastructure-ssid
    dot11 network-map
    no crypto provisioning petitioner
    bridge irb
    interface Dot11Radio0
    no ip address
    no ip route-cache
    encryption key 1 size 128bit 7 E99521751C16125A7754722A6B72 transmit-key
    encryption key 2 size 128bit 7 1857F02303182327EA1A9242A53B
    encryption key 3 size 128bit 7 FE1CF103855EBB2763224F129556
    encryption key 4 size 128bit 7 19A03A5D596B029A01C208EF1C0F
    encryption mode ciphers wep128
    encryption vlan 11 key 1 size 128bit 7 419258EC0B7E6C7413C571760B67 transmit-key
    encryption vlan 11 key 2 size 128bit 7 AB3C5B091B37223F39306B1F7442
    encryption vlan 11 key 3 size 128bit 7 3E1CF103855EBB2763224F129556
    encryption vlan 11 key 4 size 128bit 7 E858C5382B5D5E372A6C0438604C
    encryption vlan 11 mode wep mandatory
    encryption vlan 51 key 1 size 128bit 7 90792B34ACD2C8D18A0B7AF3AC68 transmit-key
    encryption vlan 51 key 2 size 128bit 7 72063EA2FEF03A39E5468E92A7C5
    encryption vlan 51 key 3 size 128bit 7 8607AEADB49EE0B7E4529770D9AE
    encryption vlan 51 key 4 size 128bit 7 F60210B48CB39887A59255187D6D
    encryption vlan 51 mode wep mandatory
    ssid LOCALBRIDGE
    speed  basic-6.0 basic-9.0 basic-12.0 basic-18.0 basic-24.0 basic-36.0 basic-48.0 basic-54.0
    packet retries 128
    station-role non-root bridge
    rts threshold 4000
    rts retries 128
    cca 87
    concatenation
    beacon period 20
    infrastructure-client
    interface Dot11Radio0.11
    encapsulation dot1Q 11
    no ip route-cache
    no snmp trap link-status
    bridge-group 11
    interface Dot11Radio0.51
    encapsulation dot1Q 51 native
    no ip route-cache
    no snmp trap link-status
    bridge-group 1
    interface FastEthernet0
    no ip address
    no ip route-cache
    hold-queue 80 in
    interface FastEthernet0.11
    encapsulation dot1Q 11
    no ip route-cache
    no snmp trap link-status
    bridge-group 11
    interface FastEthernet0.51
    encapsulation dot1Q 51 native
    no ip route-cache
    no snmp trap link-status
    bridge-group 1
    interface BVI1
    ip address 192.168.0.10 255.255.255.0
    no ip route-cache
    ip http server
    no ip http secure-server
    ip http help-path http://www.cisco.com/warp/public/779/smbiz/prodconfig/help/eag
    ip radius source-interface BVI1
    snmp-server community PUBLICSTRING RW
    snmp-server enable traps snmp authentication linkdown linkup coldstart warmstart
    snmp-server enable traps tty
    snmp-server enable traps entity
    snmp-server enable traps disassociate
    snmp-server enable traps deauthenticate
    snmp-server enable traps authenticate-fail
    snmp-server enable traps dot11-qos
    snmp-server enable traps wlan-wep
    snmp-server enable traps config
    snmp-server enable traps syslog
    snmp-server enable traps cpu threshold
    snmp-server enable traps aaa_server
    snmp-server enable traps envmon
    snmp-server host 192.168.9.10 PUBLICSTRING
    tacacs-server host 192.168.6.100
    tacacs-server host 192.168.4.100
    tacacs-server directed-request
    radius-server attribute 32 include-in-access-req format %h
    radius-server vsa send accounting
    bridge 1 protocol ieee
    bridge 1 route ip
    bridge 11 protocol ieee
    line con 0
    line vty 0 4
    end

    what happens if you go completely open, no WEP?
    and I wouldn't use WEP, it's very breakable.
    Steve

  • Navigation Rule not found in faces-config.xml file

    Hi All,
    I have a B2C custom Webshop application where in the startpage i have a client logo and when i click on that it will navigate to another page for that i have a header.xhtml page in that i have a code <h:link id="iLkL" outcome="toStartPage" value="#{i18n['main.ui.header.logo']}" styleClass="fw-header-logo"> but i was unable to find  <Navigation-rule> of  toStartPage which is mentioned in the outcome="toStartPage" in the faces-config.xml file. I have checked in the standard component also but didn't find anything. Please help me where can i find the toStartpage value.
    Regards,
    Rahul.

    Hi Rahul,
    As correctly mentioned by Steffen earlier, the navigation targets are maintained in the ui-repository.xml files (or navigation-rules.xml files) for each module. Since, you would like to see the definition of the target toStartPage (which is a target accessible and relevant throughout the application), it should be in the WEC main module's (wec/~/main/ui) ui-repository.xml file. Please note that sometimes, the targets are maintained in a file called navigation-rules.xml, which itself is then included into the ui-reppsitory.
    Please let me know if you got what you need here.
    Best Regards
    Pranshu Agarwal

  • Rules not working with iCloud anywhere

    Hi, Rules are not working with my icloud account, if I set up a rule at icloud.com the mail arrives in my inbox and ignores the rule, same thing on my Mac in the mail app, all my rules that worked great with mobileme are not working with icloud, the mail is just piling up in the inbox. Other accounts are fine but icloud is ignoring all the rules . . . . . anyone else experiencing this please?

    come on Apple.  are you listening?
    "It just works"?   Really?
    the worst PR is a product that doesn't do what it says it will. 

  • File does not begin with '%pdf' error with adobe reader 10.1.5 onwards

      In our web application we are using activePDF toolkit (3rd party component) to fill up carrier forms on the fly which are PDF files.
    The output file processed by the above library works fine when opened with adobe reader 8, 9 and10 on end user’s browser (IE); however, it gives below error when opening with adobe reader 11.
    Till now, we have tried different settings at IIS level, Internet explorer e.t.c. suggested on different internet posts. However, we are still facing the problem.
    While analyzing this we have come across following link
    http://helpx.adobe.com/acrobat/kb/pdf-error-1015-11001-update.html
    According to this adobe 10.1.5 onward file should only start with "%pdf". If file start with other than this we get file corrupted message.
    Before we can communicate this message to client we want to confirm this for experts. Please let me know my assumption is right?

    Rahti - i'm having the same issue but I not familiar with the steps outlined in the Adobe link below
    http://helpx.adobe.com/acrobat/kb/pdf-error-1015-11001-update.html
    Would you be able to help with how I can navigate to this on my PC to correct it for me.
    Thanks.

  • IWeb Page Navigational Links not working with Internet Explorer 7

    I'm hoping someone can help me out here? My wife created her 1st website using iWeb. I am testing the sites functionality before we publish it. All the pages and links work fine on Firefox and Safari for windows. However, the page navigational links are not working on Internet Explorer 7. All I see is a dot to the left side of where the page links should be. When I start the site in IE7 I get an Active X script warning and I am asked if I want to allow the script to run; to which I reply yes. After I allow the Active X script the dot to the left side of where the page links should be disappears, but the links do not appear.
    Is there anyway to resolve this? Most of the members of her club have Windows based PCs and are using IE7.
    Message was edited by: cviz821

    Yes, Javascript is running on IE7 and other java script applets appear to be working with the exception of the Navbar script.
    It would be great if my wife's friends used a "real" browser, unfortunately 70% of the people on the web use IE7, so this is a real concern if we can't get this to work. I'v seen other iWeb site on IE7 that seem to function fine, so I'm not sure what the issue is here.
    Message was edited by: cviz821

Maybe you are looking for

  • Trying to set up 2 Airport Extremes to replace my old 802.11g pair.

    Hello... I am trying to set up my extended Airport Extreme network with new Extremes to replace my older 802.11g pair. Here is the situation: I have Cable 'net access that comes into my studio. It is then wired to the "Studio Extreme" into the WAN po

  • Constant Vibration with Black Screen

    Out of the blue today my iPhone 4, which I've had for 2 years, started vibrating non-stop with a black screen. I performed a soft reset, holding the home and power buttons for 10 seconds, vibrating stopped. After Effects: Phone went blank Hit the hom

  • FB70 mass upload of invoices

    Dear Experts, We are migrating to a new system and would like to move our open invoices for AR in to the system.  I know we can use FB70 for single invoices.  Problem is that we have 1800 of them.  Is there any way of uploading the mass invoices outs

  • STORAGE_PARAMETERS_WRONG_SET Error

    When ever i try to load data through BW i am getting the following error: <b> STORAGE_PARAMETERS_WRONG_SET</b> My values are abap/heap_area_nondia--275864784 abap/heap_area_dia--275864784 But i also changed the profile parameters as mentioned, but st

  • Can i use this just for audio

    I want to know if i can use this just for audio ..not the picture part