Conditional Forwarding

Hi,
I read through another thread and came upon a solution for conditional forwarding. The thing is, it works great... if there is no other JSP code that may break if the condition wasn't met. The point is that because the FacesContext#responseComplete() method was called, the rest of the JSP shouldn't even try to evaluate. I pasted my example here:
[http://pastebin.com/m3ab93f71|http://pastebin.com/m3ab93f71]
In my example I pass a parameter to the JSP page. If the parameter wasn't present, the user should be redirected. If it was, continue processing as normal.
Can anyone tell me why it still tries to evaluate the remainder of the JSP file when I don't pass a parameter?
Edited by: jabalsad on May 22, 2009 5:14 AM

file: net.eyelazors.java.TheBean
package net.eyelazors.java;
import javax.faces.context.FacesContext;
import javax.faces.event.PhaseEvent;
import java.util.Map;
public class TheBean {
    private Map<String, String> parameters;
    private Integer id;
    public TheBean() {
    public void canLoadView(PhaseEvent event) {
        FacesContext facesContext = FacesContext.getCurrentInstance();
        parameters = facesContext.getExternalContext().getRequestParameterMap();
        String idString = parameters.get("id");
        if (idString == null) {
            facesContext.getApplication().getNavigationHandler().handleNavigation(facesContext, null, "no-id");
            facesContext.responseComplete();
        } else {
            Integer id = Integer.parseInt(idString);
            this.id = id;
    public String getTest() {
        return id.toString();
        public Integer getId() {
                return id;
}file: the_example.jsp
<?xml version="1.0" ?>
<jsp:root version="2.0"
                xmlns:jsp="http://java.sun.com/JSP/Page"
                xmlns:f="http://java.sun.com/jsf/core"
                xmlns:h="http://java.sun.com/jsf/html">
        <jsp:directive.page contentType="text/html"/>
        <jsp:output omit-xml-declaration="no"
                        doctype-root-element="html"
                        doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN"
                        doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"/>
        <f:view beforePhase="#{TheBean.canLoadView}">
            <html xmlns="http://www.w3.org/1999/xhtml">
                        <head>
                                <title>Example Page</title>
                        </head>
                        <body>
                                <h:outputText value="Since the ID has successfully loaded (we hope), this should display without any warnings ;)"/><br />
                                <h:outputText value="ID = #{TheBean.test}"/>
                        </body>
                </html>
        </f:view>
</jsp:root>file: faces-config.xml
<?xml version="1.0" encoding="UTF-8"?>
<faces-config
    xmlns="http://java.sun.com/xml/ns/javaee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-facesconfig_1_2.xsd"
    version="1.2">   
    <managed-bean>
        <managed-bean-name>TheBean</managed-bean-name>
        <managed-bean-class>net.eyelazors.java.TheBean</managed-bean-class>
        <managed-bean-scope>request</managed-bean-scope>
    </managed-bean>
    <navigation-rule>
        <from-view-id>/the_example.jsp</from-view-id>
        <navigation-case>
                <from-outcome>no-id</from-outcome>
                <to-view-id>/index.jsp</to-view-id>
                <redirect />
        </navigation-case>
        </navigation-rule>
    <navigation-rule>
        <from-view-id>/index.jsp</from-view-id>
        <navigation-case>
                <from-outcome>with-id</from-outcome>
                <to-view-id>/the_example.jsp</to-view-id>
        </navigation-case>
        <navigation-case>
                <from-outcome>without-id</from-outcome>
                <to-view-id>/the_example.jsp</to-view-id>
        </navigation-case>
        </navigation-rule>
</faces-config>
file: index.jsp
<%@taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
<%@taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<f:view>
    <html xmlns="http://www.w3.org/1999/xhtml">
        <head>
            <title>Front Page</title>
        </head>
        <body>
                <h:form>
                        <h:outputText value="Welcome to the front page."/><br />
                                <h:commandLink value="With ID (100)" action="with-id">
                                        <f:param name="id" value="100"/>
                                </h:commandLink><br />
                                <h:commandLink value="Without ID" action="without-id"/>
                        </h:form> 
        </body>
    </html>
</f:view>

Similar Messages

  • Conditional forward in JSP

    Following is my jsp page. I am trying to forward to another jsp depending on the conditions.
    <%@ taglib uri="struts-logic" prefix="logic" %>
    <%@ page contentType="text/html;charset=UTF-8" language="java" %>
    <%
         String u = (String)session.getAttribute("userID");
         String seibel = (String)session.getAttribute("seibel");
        System.out.println(u);
        System.out.println(seibel);
         if(seibel.equals("true"))
          {%>
          <jsp:forward page = "AutoLogin.jsp"/>;
          <%}     
         else
         %>
           <logic:redirect forward="logon"/> ;     
    <%
    %>When the if condition fails, the else part does not get executed. The error I get is as follows.
    [exec] <Dec 28, 2007 11:48:13 AM IST> <Error> <HTTP> <101017> <[ServletContext(id=7535615,name=csr-gema,context-path=)] Root cause of ServletException
    [exec] java.lang.NullPointerException
    [exec] at jsp_servlet.__forwardtogema._jspService(__forwardtogema.java:107)
    [exec] at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
    [exec] at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1094)
    [exec] at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:437)
    [exec] at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:481)
    [exec] at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:319)
    [exec] at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:5626)
    [exec] at weblogic.security.service.SecurityServiceManager.runAs(SecurityServiceManager.java:685)
    [exec] at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3213)
    [exec] at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2555)
    [exec] at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:251)
    [exec] at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:219)
    [exec] >
    Any inputs? Please reply.

    As mentioned, seibel must be null. Change your code so it's like this
         if(seibel == null || seibel.equals("true"))
          {%>
          <jsp:forward page = "AutoLogin.jsp"/>;
          <%}     
         else
         %>
           <logic:redirect forward="logon"/> ;     
    <%
    }However depending on what you are trying to do this may just hide your problem by
    short circuiting when seibel is null. If seibel should not be null then your problem is elsewhere.

  • How to conditionally forward a request to a Servlet for processing?

    Hi,
    I am writing a middleware application, where the application receives HTTPRequest from front end, and based on the URL string it will forward the request to one of the servlets which will handle the processing.
    I need ideas about what is the best way to write the forwarding logic. Should it be a Servlet Filter, or an initial Servlet that only does forwarding? Any code samples will be greatly appreciated.
    Thanks.

    This is almost textbook definition of a Controller Servlet. I would use a Servlet that switches on what option needs to be performed and forwards to the proper URL.

  • DNS Forwarding Same Internal and External Zone

    Hi,<o:p></o:p>
    So we have decided that we want our internal domain to be the same as our external domain e.g. domain.uk. I understand that split DNS can be used
    to fulfil this requirement but is it possible to set up a forward so if the DNS entry is not available in the internal zone it will forward onto one of our external name servers where it can resolve?<o:p></o:p>
    We are basically trying to avoid having to add the entry on both external and internal DNS servers for it to resolve. So far I have added the external name servers to
    the forwarders and disabled root hints which didn’t work. I’ve tried to add a conditional forwarder but it says the zone already exists. It seems the only to achieve the internal resolution is by creating the DNS entry both internally and externally.<o:p></o:p>
    Does anyone know if this is the case? It seems strange that you couldn’t point the DNS to another external name server for resolution? <o:p></o:p>
    Any help would be appreciated.<o:p></o:p>

    You must ask in networking forum
    https://social.technet.microsoft.com/Forums/en-US/home?forum=winserverNIS&filter=alltypes&sort=lastpostdesc

  • Problem using jsp:forward in java script

    hi,
    when I use jsp forward tag inside java script i'm getting a problem that
    when the jsp is invoked it is getting forwarded to the page specified in the forward tag, without checking the if conditions. Following code may give you a better idea.
    <html>
    <script>
    function test()
    if(document.f.htemp.value=="true")
    alert("jus");
    else
    var s=document.f.htemp.value;
    alert(s);
    <jsp:forward page="success.jsp" />
    </script>
    <body>
    <form name="f" method=post>
    <input type=text name=htemp value="true">
    <input type=button onclick="test()">
    </form>
    </body>
    </html>
    please help me,thanks inadvance
    regards
    chandu

    What pgeuens means is that you can't mix javascript and jsp/java code in this way.
    ALL of the jsp/java code gets executed at the server end.
    This produces an HTML page (with embedded javascript) which gets sent to the client.
    The client then runs javascript code in response to events (onLoad, onClick, onChange etc etc)
    So in this case, the jsp:forward will always be executed, because as far as the server is concerned, the javascript is just template text.
    If you WANT to do a conditional forwarding on the server side you do it in java ie (horribly using scriptlet)
    <%
    if (testCondition){
    %>
      <jsp:forward>
    %<
    %>Or if you want to test what the client has entered client side, all you can do is submit the form, or navigate to a URL
    <script>
    function test()
    if(document.f.htemp.value=="true")
    alert("jus");
    else
    var s=document.f.htemp.value;
    alert(s);
    document.f1.action="success.jsp";
    document.f.submit();
    </script>You cannot run JSP code based on your javascript code.
    Java. Javascript. Not the same thing.
    Hope this helps,
    evnafets

  • Can I use conditional formatting in OWA?

    Can I use conditional forwarding for emails in OWA. I would like to set up rules in OWA that will allow certain messages to change their display upon receipt.

    Hi,
    Based on my knowledge, I'm afraid that we can't do it via OWA. You need to setup the conditional formatting on Outlook. Here is the steps for your reference.
    On the View tab, in the Current View group, click View Settings, and then click Conditional Formatting. Click Add to create a conditional formatting rule.
    For more information, here is a blog for your reference.
    Conditional Formatting: Highlight your most important mails
    http://blogs.office.com/2012/05/10/conditional-formatting-highlight-your-most-important-mails/
    Hope it helps.
    Best regards,
    Amy
    Amy Wang
    TechNet Community Support

  • Intermittent call forwarding?

    Some of my daughter's phone calls are showing up on her phone as missed calls and they are being forwarded to an ex-boyfriend's phone where the callers are leaving voicemails.  She didn't set up call forwarding, or conditional forwarding, ever.  And not all of her missed calls go to his number.  She does get some voicemails.  Anyone know what is going on?

    Have her check with her service provider.
    Also check and see if her ex jailbroke her iPhone.

  • DNS not querying/ recognizing/ resolving internal domain name using nslookup

    I've setup a virtual lab for practice purpose on VMware 8 workstation.
    I have already asked this question in vm community but still got no answers hence asking it here.
    In my vmware workstation 8, for practice lab purpose my setup is as follows:-
    1] Win 2k8R2 Enetrprise edi.vm as my DC with DNS & DHCP configured and working perfect. DNS is getting resolved internally via NSLOOKUP. Server has manual ip assigned...192.168.1.xx series.
    2] Win xp vm as my Client and getting dhcp lease address from the above DC and also the DNS is getting resolved internally via NSLOOKUP.
    Now that these two vms are communicating perfectly with each other, I thought about connecting them to my physical internet.
    So, in the Virtual network editor, I added a Host-only type network named
    VMnet 04 with Use local dhcp service checkbook Disabled and on each of these vms, in network adapter settings, selected specific virtual network and pointed it to
    VMnet 04 in both vms.
    Now, in both the vms, an additional network connection got added and hence was successfully able to browse internet from both vms.
    Now the REAL problem:--
    After the above configuration, when I do NSLOOKUP on the DC, the DNS doesnt resolves external sites on the internet.
    I havent specified any kind of conditional forwarding etc.., its a simple DNS setup.
    I want it to resolve to the internal domain and also be connected to the internet .
    What setting do I need to do in DNS or in VM network?
    I tried almost all types of settings in vm virtual network editor by specifying dns manually and so on but none worked.

    Sorry my bad.... slight mistake in my question...Here is my corercted query--
    After successfully connecting to the internet, when I do NSLOOKUP on the DC, the DNS doesnt resolve my internal domain/site but instead resolves external sites on the internet.
    My computer FQDN is nri.wwe.com
    Domain dns name is wwe.com
    The above should get resolve internally but it searches on the internet.
    This is how it should work
    & it works perfect when I disable the other NAT network adapter (i.e. disable internet connectivity on my virtual DC)
    C:\>nslookup nri.wwe.com
    Server:  nri.wwe.com
    Address:  192.168.1.11
    Name:    nri.wwe.com
    Address:  192.168.1.11
    But when I again enable internet connectivity, this it what happens.
    C:\nslookup www.wwe.com
    DNS request timed out.
        timeout was 2 seconds.
    Server:  UnKnown
    Address:  192.168.12.2
    DNS request timed out.
        timeout was 2 seconds.
    Non-authoritative answer:
    DNS request timed out.
        timeout was 2 seconds.
    Name:    www.wwe.com.nsatc.net
    Address:  64.152.0.124
    Aliases:  www.wwe.com
    And when I again nslookup, this is what I get,
    C:\>nslookup www.wwe.com
    DNS request timed out.
        timeout was 2 seconds.
    Server:  UnKnown
    Address:  192.168.12.2
    DNS request timed out.
        timeout was 2 seconds.
    DNS request timed out.
        timeout was 2 seconds.
    DNS request timed out.
        timeout was 2 seconds.
    *** Request to UnKnown timed-out
    Now this 192.168.12.2 is VM assigned DNS via VM Natting with its own DHCP. If we do it manually, none of the virtual machines can connect to the internet. So I cannot fiddle with it anymore as I have already that as well.

  • DNS configuration in two-domain forests

    hi all,
    We have a forest with two separate domains.First of all we had domain A. When we added the first domain controller for the second domain (B), a trust relationship was established and look fine. but then we realised DNS configuration was not nice and
    some replication issues came out.
    What we have done is setting up domain B zone as a secondary Zone in domain A, and viceversa.
    We configured primary zones to be able to be transferred to the Domain controllers in the other domain and also configured notifications.
    Even with this configuration, some times we check zones and find it empty but a single.
    Does anyone one if our configuration is the right one for our infrastructure? I have been loking in the internet for a manual or a document  regarding DNS configuration for this infrastructure, but I could not find it, Do you know of any manual or document?
    Thank you very much
    kind regards.
    David.

    Hi David,
    First, make sure that the TCP and UDP port 53 is not blocked. To verify it a port is blocked, please use the portqry.
    To download portqry, please click the link below,
    PortQryUI - User Interface for the PortQry Command Line Port Scanner
    http://www.microsoft.com/en-hk/download/details.aspx?id=24009
    If the port is not blocked, please check the serial number of the zone in both of the primary and secondary server.
    If serial number is the same at both the source and destination servers, no zone transfer occurs between the servers.
    To resolve this issue, please follow the steps blow,
    After you increase the serial number at the master server to a higher value than is used currently at the secondary server, initiate zone transfer at the secondary server.
    Increase the value of the serial number for the zone at the master server (source) to a number greater than the value at the applicable secondary server (destination).
    Here is an article about how to troubleshoot zone issues, it may be helpful.
    http://technet.microsoft.com/en-us/library/cc731210.aspx
    Besides, instead of creating scondary zone, we can add conditional forwarder on the DNS server.
    To add conditional forwarder, please refer to the link below,
    http://technet.microsoft.com/en-us/library/cc794735(v=WS.10).aspx
    Best Regards.
    Steven Lee
    TechNet Community Support

  • Multiple Forest DNS queries, and DFS

    Setup:
    2 physical servers hosting several virtual machines with 3 forests (domains) and 3 subnets.  The physical server has 4 NICs, each forest/subnets has its own dedicated NIC via virtual switch (so 1 NIC is empty).  Each NIC connects to a switch to
    allow workstations and other devices to connect to their proper forest/subnet directly.  These switches then connect to the sonicwall (firewall/router) in an individual port.  Each port has proper subnet defined in it.
    The 3 forests are c.com, l.lan, and w.web named.  c.com and l.lan use a 10.x.x.x/255.255.0.0 subnet.  w.web uses 192.168.x.x/255.255.0.0 subnet.  There are no trusts setup.
    I can ping from one forest/subnet to the other using IP address without issue so the IP routes are fine.  I can ping via FQDN without issue if I setup a forwarder, conditional forwarder, or stub zone.  Sometimes using just the forwarder, FQDN does
    NOT resolve.  Conditional and Stub seems to resolve always. 
    I can get c.com and w.web to resolve single-name (host name) addresses, but at the moment (transitioning) they are on the same subnet.  From some research, I can use single-name resolution if I setup a GlobalNameZone as well, which I might need to do.
    So my question is which is best practice and most reliable way to setup these different forests and subnets to perform DNS resolution?  I tried forwarders, but it wasn't always reliable.  I suspected caching as an issue, but after a flush, a FQDN
    would sometimes resolve and sometimes not.  Conditional and Stub seem to work okay, but I'm not sure about what's best.
    I've spent most of the day researching this, and nothing was every really definitive and sometimes even contradictory.  Previously the DNS Forwarders worked fine for us, but that was on the same subnet.  Differing subnets seems to break the internal-to-internal
    forwarding.
    Additionally the w.web domain has a domain level DFS.  Neither of the other forests can access it via the
    \\w.web\data address.  Though they can access it if I point them directly to the server hosting the DFS namespace.

    Windows Server doesn't work well with DNS Search Suffixes defined in DHCP scopes from what I read.
    http://technet.microsoft.com/en-us/library/dd572752(v=office.13).aspx
    Details how to set it up on Windows Server DHCP
    http://social.technet.microsoft.com/Forums/en-US/2eed4d4f-8d1b-4989-ac49-d95e08b7d54a/dhcp-dns-suffix-search-list-supported?forum=winserverNIS
    Details how Windows Server does not support it though.
    http://technet.microsoft.com/en-us/library/bb847901(v=exchg.150).aspx
    Details how to use Group Policy to deploy it.
    How I fixed this:
    1) Open Group Policy for the domain.
    2) Edit the "Default Domain Policy" to include DNS Suffix search for current domain and all other domains.
    3) Set normal forwarders on domain's DNS servers.
    4) Repeat on all domain.
    This partially fixed my problem.  Things were resolving more reliably, but there would be a failure once in a while as well.  I corrected this by adding a conditional forwarder along with the normal forwarder.
    Now I get full resolution of all items.  Additionally, I do not have to use the FQDN for my machines.  Just hostname resolves just fine.  HOWEVER I would suggest to anyone setting up machines to use FQDN where possible, don't be lazy. 
    This means I will not have to setup a GlobalName zone either.  Though I may do it for the experience.
    Another problem though is this only works on Windows machines.  Mobile phones (such as Android and iPhone) and other such devices will not know about the DNS Suffix search.  Fortunately most of those devices required the internet FQDN for services
    to work anyway, and when behind the firewall via WiFi or like, they'll be able to still resolve the internet FQDN of devices since we're using a split-brain DNS for that domain.

  • Get Blackberry to unleash the full power of the Q10 Keyboard.

    About me:
    * A  am a heavy Blackberry user and developer since the 7200.
    * I Love BB Keyboard because it's a workhorse, it just gets thinks done faster.
    My Feedback:
    * Q10 is still missing lots of the keyboard Magic of the 9900 
    How Can this be done....
    #1 Home Screen Shortcuts
    Long Press for phone speed dial, one key press for app shortcuts
    Details
    1. Just like we always had long press any key for speed dial
    2. Give us the option to have the home screen function like a live search (as it works now)
    or we can assign each key to a program of our choice (and use the "s" to launch the live search), like it was on the 9900, but make it better where we can choose what program gets launched using what key (before it was hardcoded and was not changeable by the user)
    The current option in the search  is nice (like "bbm mark") but does not replace the direct key to program shortcut.  (it's not a conflict you can have both)
    #2 Email Advanced/Saved Search
    Message Advanced Search, with its Saved Search option linked to a hot key.
    Details
    on the 9900 if I wanted to search all my unread email from client "X"
    1. Press M from the home screen (to open my email box)
    2. Press Alt+O (or any saved key) from the message list (to bring up a saved search..)
    that took me less than 2 seconds,
    Now try doing that on the Q10 and let me know how many keys you have to press, and more 
    important how long it will take you!! Actually you can't even do it since you can only search for 1 item at a time, I can't search for all emails where the "from address" is [email protected] and the subject contains "call me" etc.
    How it should work..
    1. Just Bring back what we had in os7
    #3 Forward conditions
    Forward conditions for mail box (what should be sent to device)
    on the 9900 I was able to chose to forwarded or not to forward email based on a condition or to have it come in as a level1 email,  Bring back what we had in os7
    #4 Email Body view
    Html email view.
    give me an option to show email in fit with mode, now it does not always fit and may be to wide.
    #5 Black Background.
    Black Background in calendar (and other) app.. its impossible to see my calendar outside in the sun
    I understand you made it black to save battery life.. give me the choice to make it white and have a less battery life.
    #6 Bedside mode
    Bedside mode has no option to automatically go into airplane mode automatically (like we had in os7)
    #7 Auto on/off
    Auto on/off based on day or weekend..
    Bring back what we had in os7
    #8 Note List Search
    Note list  (now "reminder") missing search option
    #9 Camera App keyboard shortcuts
    Camera app has no keyboard shortcut to change flash options, change from video to picture, swap to front camera  
    #10 Contact List Category
    Contact list is missing filter by category  
    Bring back what we had in os7
    #11 "Mark Prior Read" Keyboard Shortcut.
    "Mark prior read" needs keyboard shortcut and is not working properly
    #12 Power standby mode
    now you only have an option to fully turn off your phone, i want close my phone at night but not close all my apps... like we had in os7
    This can all be done without effecting the z10 or any other phone.
    Summary
    A Q10 Should not be a Z10 with a keyboard Glued on to it.
    I know Blackberry put in lots of keyboard shortcuts, but they're not done yet.
    I don't speak for myself, being the blackberry guy in my company
    everyone comes to complain to me with all their issues..
    Now please don't say.. well you can do that by pressing here and swiping there and tapping there.. let's make the Q10 keyboard work for us...
    it's about getting the job done faster.. and more efficatintly
    Something to think about on the next phone design,
    the back key is sorely missed, it's a lot faster and more accurate then trying to get the swipe just right..
    what would be a good idea for the next phone is to make a side button that can be programmed to do whatever you like, like we had till now but also can be programmed as a back button.. think about that  no loss of screen size.. and I still have my back button, you can still keep the swipe but give us the choice..)

    Other people have been having similar problems with songs over a number of days, I assume that there has been a problem with Apple's servers.
    Depending upon what country that you are in (music can't be re-downloaded in all countries) then try deleting the incomplete tracks from your iTunes library and redownload them via the Purchased link under Quick Links on the right-hand side of the iTunes store home page on your computer's iTunes : re-downloading.
    If you aren't in a country where you can re-download music or if they re-downloas in the same state then try the 'report a problem' link from your purchase history : log into your account on your computer's iTunes via Store > View My Account and you should then see a Purchase History section with a 'see all' link to the right of it ; click on that and you should see a list of your purchases ; find those songs and use the 'Report a Problem' link.

  • One way trust relationship between different domain windows server 2012 in different forest

    I'd like to build trust correctly between the domains A.local and B.int. A.local is on a Windows 2012 . B.int is on a Windows 2012 . Both machines are
    connected to the same LAN. The forest level in A.local
    machine is Windows Server 2008 and The forest level in B.int
    is Windows server 2012.
    I want a one-way trust relationship, i.e. users from A.local gain access to B.local.
    my problem it i create the trust put when i go to validate the trust between A.Local and B.int give me this error :
     The secure channel (SC) reset on Active Directory Domain Controller \\dc2.B.int of domain B.int to domain A.Local failed with error: There are currently no logon servers available to service the logon request.
    NOTE : Recently I
    UPGRADE THE Active Directory FROM 2008 R2 TO 2012 and i ping on A.local to B.int
    it is ping by name and IP but from b.int ping by IP JUST >>>
    ihab

    Hi,
    yes i already do it the setup conditional forwarding between the 2 domains and
    the firewall it is off 
    ihab

  • 6/4/2014 - Beta - Flash Player 14.0.0.126

    The latest Flash Player 14 builds are now available.  You can download Flash Player here:http://www.adobe.com/go/flashplayerbeta.
    Please note that this build is identical (except for version number) with the official release slated for next week.  Please alert us as soon as possible if you encounter any issues.
    New Features for Flash Player 14:
    PPAPI Content Debugger - EXTENDED BETA
    We're pleased to announce the immediate availability of the PPAPI Flash Player content debugger. For the first time, Flash developers will be able to debug their content using the PPAPI interface on Chromium based browsers. Please note that at this time, only the Chrome Canary build (M36 or higher) has support for the PPAPI debugger. To use this plugin in Google Chrome, please install the debugger using our stand alone installer available from labs.adobe.com and navigate to the chrome://plugins/ page. On the Chrome Plug-ins page, expand the plugin details and enable the debug version (noted in the Plug-in description) of the Shockwave Flash.When configuring remote debugging, please navigate to Flash content and select the "Debugger" menu item from the Flash Player context menu.
    Once set, these settings will take effect when the page is refreshed or the next time Flash content is loaded. For additional configuration options, please visit our Flash Player debug help page. Content displayed using SwfObject may encounter problems with the version number check. We are aware of this issue (see known issues below) and will address this in an upcoming build.
    Anisotropic Filtering
    This new texture sampling filter can enhance the image quality of textures on surfaces that are at oblique viewing angles. There are two ways to enable this feature:
    In AGAL, set one of the values – "anisotropic2x", "anisotropic4x", "anisotropic8x", or "anisotropic16x" to the filter option in the sampling instructions. Or call Context3D::setSamplerStateAt with the 3rd parameter "filter" being one of the values defined in Context3DTextureFilter - "ANISOTROPIC2X", "ANISOTROPIC4X", "ANISOTROPIC8X", or "ANISOTROPIC16X"
    New Stage3D "Standard" Profile
    Developers can now request this high level profile when creating Context3D. Three new features are available in this profile:
    Multiple render target allows to you to draw geometry to multiple outputs (up to 4) during one drawing
    Floating point texture allows you to create Texture, RectangleTexture and CubeTuxture with the RGBA16F folder.
    AGAL v2 contains these improvements:
    Increased register size
    Partial derivative instructions
    Fragment depth output
    Conditional forward jump
    Notable Fixes and Enhancements:
    TextField.getFontList() and Font.enumerateFonts() now return 0 in Private Browsing Mode (3720929)
    Font.enumerateFonts now returns an alphabetically sorted list (3720932)
    Resolves an issue introduced in Flash Player 11.10 and AIR SDK > 13 where attached connected game controllers were not detected at launch (3752605)
    Hardware Decoding support is now enabled for Intel Baytrail hardware (3752291)
    [Chrome] Resolves an issue where some render textures could not be displayed with Chrome and D3DX11 (3743626)
    [Chrome] Angry Birds on Facebook now works as expected (3761933)
    [Chrome] Flash Player will not load a SWF if Content-Type-Options: nosniff is specified and the Content-Type header does not match (3712045, Chromium 172918)
    [HTTP Live Streaming] The value of AudioTrack.isDefault is now returned correctly (3761057)
    [HTTP Live Streaming] The value of AudioTrack.name is now returned correctly after AUDIO_UPDATE events (3767714)
    [Mac] Fixes a memory leak encountered during video and Stage3D playback (3738368)
    [Win] Resolves a video playback issue that was introduced in 11.9.900.166 that caused a small number of H.264 streams to not play (3735300)
    [Win] IME - Corrects an issue where words were duplicated in the candidate window on third-party bottom line IMEs (3721064)
    [Win8.1 ARM] Farmville2 - The maximum number of Stage3D instances allowed on Win8.x ARM devices has been increased from one to four (3732718, MSFT 607382)
    [Win8.1 x64] The Windows Narrator tool now recognizes Flash Player objects embedded in web pages (3618169, MSFT 458063)
    [Win8.1] Reduces power consumption during video playback in portrait orientation (3699152)
    [Win8.1] Improves performance of video blitting on DirectX 11 systems in portrait mode (3748772)
    [Win8.1] Video from built-in cameras now rotates as expected when the device changes from landscape to portrait mode (3722322, MSFT 611601)
    [Win8.1] Sprite.graphics.beginFill(Number) now correctly sets the provided color after a page refresh (3729475, MSFT 508518)
    [Win8.1] HTTP Live Streaming - Resolves an issue where encrypted video playback would hang intermittently (3710245)
    [Win8.x] The [Tab] key now works as expected in Full-Screen mode (3719314)
    [Win8.x] Resolves a stability issue for standalone applications that use Flash Player in an embedded Internet Explorer instance (3763486)
    [Win8.x] StandAlone Player - Exiting FullScreen mode now works as expected (3730508)
    [Win8.x] Flash Player will now gracefully recover from a graphics driver reset (3752447, MSFT 346563)
    [Win8.x] Resolves a stability issue with HTTP Live Streaming (3758254)
    PPAPI Debugger Preview - Multiple Stability Fixes (3720385, 3720431, 3720925)
    Multiple stability Fixes
    Known Issues:
    PPAPI Debugger - Chrome incorrectly reports the installed location of the plugin in chrome:plugins
    PPAPI Debugger - ESPN does not correctly detect the Flash Debugger Plug-in (3755128)
    PPAPI Debugger - Some content using SWFObject is not loaded correctly (3755345)
    About the Beta Channel
    Beta Versions of Flash Player are available for automatic installation via our Background Update service.  Pleasesubscribe to automatically install or receive update availability notifications at runtime.

    The latest Flash Player 14 builds are now available.  You can download Flash Player here:http://www.adobe.com/go/flashplayerbeta.
    Please note that this build is identical (except for version number) with the official release slated for next week.  Please alert us as soon as possible if you encounter any issues.
    New Features for Flash Player 14:
    PPAPI Content Debugger - EXTENDED BETA
    We're pleased to announce the immediate availability of the PPAPI Flash Player content debugger. For the first time, Flash developers will be able to debug their content using the PPAPI interface on Chromium based browsers. Please note that at this time, only the Chrome Canary build (M36 or higher) has support for the PPAPI debugger. To use this plugin in Google Chrome, please install the debugger using our stand alone installer available from labs.adobe.com and navigate to the chrome://plugins/ page. On the Chrome Plug-ins page, expand the plugin details and enable the debug version (noted in the Plug-in description) of the Shockwave Flash.When configuring remote debugging, please navigate to Flash content and select the "Debugger" menu item from the Flash Player context menu.
    Once set, these settings will take effect when the page is refreshed or the next time Flash content is loaded. For additional configuration options, please visit our Flash Player debug help page. Content displayed using SwfObject may encounter problems with the version number check. We are aware of this issue (see known issues below) and will address this in an upcoming build.
    Anisotropic Filtering
    This new texture sampling filter can enhance the image quality of textures on surfaces that are at oblique viewing angles. There are two ways to enable this feature:
    In AGAL, set one of the values – "anisotropic2x", "anisotropic4x", "anisotropic8x", or "anisotropic16x" to the filter option in the sampling instructions. Or call Context3D::setSamplerStateAt with the 3rd parameter "filter" being one of the values defined in Context3DTextureFilter - "ANISOTROPIC2X", "ANISOTROPIC4X", "ANISOTROPIC8X", or "ANISOTROPIC16X"
    New Stage3D "Standard" Profile
    Developers can now request this high level profile when creating Context3D. Three new features are available in this profile:
    Multiple render target allows to you to draw geometry to multiple outputs (up to 4) during one drawing
    Floating point texture allows you to create Texture, RectangleTexture and CubeTuxture with the RGBA16F folder.
    AGAL v2 contains these improvements:
    Increased register size
    Partial derivative instructions
    Fragment depth output
    Conditional forward jump
    Notable Fixes and Enhancements:
    TextField.getFontList() and Font.enumerateFonts() now return 0 in Private Browsing Mode (3720929)
    Font.enumerateFonts now returns an alphabetically sorted list (3720932)
    Resolves an issue introduced in Flash Player 11.10 and AIR SDK > 13 where attached connected game controllers were not detected at launch (3752605)
    Hardware Decoding support is now enabled for Intel Baytrail hardware (3752291)
    [Chrome] Resolves an issue where some render textures could not be displayed with Chrome and D3DX11 (3743626)
    [Chrome] Angry Birds on Facebook now works as expected (3761933)
    [Chrome] Flash Player will not load a SWF if Content-Type-Options: nosniff is specified and the Content-Type header does not match (3712045, Chromium 172918)
    [HTTP Live Streaming] The value of AudioTrack.isDefault is now returned correctly (3761057)
    [HTTP Live Streaming] The value of AudioTrack.name is now returned correctly after AUDIO_UPDATE events (3767714)
    [Mac] Fixes a memory leak encountered during video and Stage3D playback (3738368)
    [Win] Resolves a video playback issue that was introduced in 11.9.900.166 that caused a small number of H.264 streams to not play (3735300)
    [Win] IME - Corrects an issue where words were duplicated in the candidate window on third-party bottom line IMEs (3721064)
    [Win8.1 ARM] Farmville2 - The maximum number of Stage3D instances allowed on Win8.x ARM devices has been increased from one to four (3732718, MSFT 607382)
    [Win8.1 x64] The Windows Narrator tool now recognizes Flash Player objects embedded in web pages (3618169, MSFT 458063)
    [Win8.1] Reduces power consumption during video playback in portrait orientation (3699152)
    [Win8.1] Improves performance of video blitting on DirectX 11 systems in portrait mode (3748772)
    [Win8.1] Video from built-in cameras now rotates as expected when the device changes from landscape to portrait mode (3722322, MSFT 611601)
    [Win8.1] Sprite.graphics.beginFill(Number) now correctly sets the provided color after a page refresh (3729475, MSFT 508518)
    [Win8.1] HTTP Live Streaming - Resolves an issue where encrypted video playback would hang intermittently (3710245)
    [Win8.x] The [Tab] key now works as expected in Full-Screen mode (3719314)
    [Win8.x] Resolves a stability issue for standalone applications that use Flash Player in an embedded Internet Explorer instance (3763486)
    [Win8.x] StandAlone Player - Exiting FullScreen mode now works as expected (3730508)
    [Win8.x] Flash Player will now gracefully recover from a graphics driver reset (3752447, MSFT 346563)
    [Win8.x] Resolves a stability issue with HTTP Live Streaming (3758254)
    PPAPI Debugger Preview - Multiple Stability Fixes (3720385, 3720431, 3720925)
    Multiple stability Fixes
    Known Issues:
    PPAPI Debugger - Chrome incorrectly reports the installed location of the plugin in chrome:plugins
    PPAPI Debugger - ESPN does not correctly detect the Flash Debugger Plug-in (3755128)
    PPAPI Debugger - Some content using SWFObject is not loaded correctly (3755345)
    About the Beta Channel
    Beta Versions of Flash Player are available for automatic installation via our Background Update service.  Pleasesubscribe to automatically install or receive update availability notifications at runtime.

  • 6/10/14 - Release - Flash Player 14

    The next version of Flash Player is available for immediate download.  In today's release we've updated Flash Player with important security updates and bug fixes.  We recommend users update to the latest version.
    Security update details can be found here: Security Bulletin (APSB14-16)
    New Features for Flash Player 14:
    Anisotropic Filtering
    This new texture sampling filter can enhance the image quality of textures on surfaces that are at oblique viewing angles. There are two ways to enable this feature:
    In AGAL, set one of the values – "anisotropic2x", "anisotropic4x", "anisotropic8x", or "anisotropic16x" to the filter option in the sampling instructions. Or call Context3D::setSamplerStateAt with the 3rd parameter "filter" being one of the values defined in Context3DTextureFilter - "ANISOTROPIC2X", "ANISOTROPIC4X", "ANISOTROPIC8X", or "ANISOTROPIC16X"
    New Stage3D "Standard" Profile
    Developers can now request this high level profile when creating Context3D. Three new features are available in this profile:
    Multiple render target allows to you to draw geometry to multiple outputs (up to 4) during one drawing
    Floating point texture allows you to create Texture, RectangleTexture and CubeTuxture with the RGBA16F folder.
    AGAL v2 contains these improvements:
    Increased register size
    Partial derivative instructions
    Fragment depth output
    Conditional forward jump
    Notable Fixes and Enhancements:
    PPAPI Debugger Preview - Multiple Stability Fixes (3720385, 3720431, 3720925)
    TextField.getFontList() and Font.enumerateFonts() now return 0 in Private Browsing Mode (3720929)
    Font.enumerateFonts now returns an alphabetically sorted list (3720932)
    Resolves an issue introduced in Flash Player 11.10 and AIR SDK > 13 where attached connected game controllers were not detected at launch (3752605)
    Hardware Decoding support is now enabled for Intel Baytrail hardware (3752291)
    [Chrome] Resolves an issue where some render textures could not be displayed with Chrome and D3DX11 (3743626)
    [Chrome] Angry Birds on Facebook now works as expected (3761933)
    [Chrome] Flash Player will not load a SWF if Content-Type-Options: nosniff is specified and the Content-Type header does not match (3712045, Chromium 172918)
    [HTTP Live Streaming] The value of AudioTrack.isDefault is now returned correctly (3761057)
    [HTTP Live Streaming] The value of AudioTrack.name is now returned correctly after AUDIO_UPDATE events (3767714)
    [Mac] Fixes a memory leak encountered during video and Stage3D playback (3738368)
    [Win] Resolves a video playback issue that was introduced in 11.9.900.166 that caused a small number of H.264 streams to not play (3735300)
    [Win] IME - Corrects an issue where words were duplicated in the candidate window on third-party bottom line IMEs (3721064)
    [Win8.1 ARM] Farmville2 - The maximum number of Stage3D instances allowed on Win8.x ARM devices has been increased from one to four (3732718, MSFT 607382)
    [Win8.1 x64] The Windows Narrator tool now recognizes Flash Player objects embedded in web pages (3618169, MSFT 458063)
    [Win8.1] Reduces power consumption during video playback in portrait orientation (3699152)
    [Win8.1] Improves performance of video blitting on DirectX 11 systems in portrait mode (3748772)
    [Win8.1] Video from built-in cameras now rotates as expected when the device changes from landscape to portrait mode (3722322, MSFT 611601)
    [Win8.1] Sprite.graphics.beginFill(Number) now correctly sets the provided color after a page refresh (3729475, MSFT 508518)
    [Win8.1] HTTP Live Streaming - Resolves an issue where encrypted video playback would hang intermittently (3710245)[Win8.x] The [Tab] key now works as expected in Full-Screen mode (3719314)
    [Win8.x] Resolves a stability issue for standalone applications that use Flash Player in an embedded Internet Explorer instance (3763486)
    [Win8.x] StandAlone Player - Exiting FullScreen mode now works as expected (3730508)
    [Win8.x] Flash Player will now gracefully recover from a graphics driver reset (3752447, MSFT 346563)
    [Win8.x] Resolves a stability issue with HTTP Live Streaming (3758254)
    [Win][Networking] Set default network request timeout to 5 seconds.  Added new configuration property "NetworkRequestTimeout" which can be set in configuration files.
    Multiple security and stability fixes
    For complete information please see our release notes.
    Current Flash Player desktop users that have enrolled in the "Allow Adobe to install updates (recommended)" or the "Notify me to install updates" update options will receive an update notification dialog within 7 days from today (please note that Windows users will need to restart their system to receive the notification dialog.)
    If you would like to install the update immediately, please use one of the links below:
    Flash Player 14 desktop for Windows XP, Vista and 7 and Internet Explorer: 14.0.0.125
    Flash Player 14 desktop for Windows XP, Vista and 7 and Other Browsers: 14.0.0.125
    Flash Player 14 for Windows 8.x 64-Bit and Internet Explorer: 14.0.0.125
    Flash Player 14 for Windows 8.x 32-Bit and Internet Explorer: 14.0.0.125
    Please note that both Flash Player for Google Chrome and Microsoft Internet Explorer for Windows 8 are updated using different mechanisms.  Flash Player for Google Chrome updates will occur during regular Chrome updates.  Flash Player updates for Internet Explorer on Windows 8 will be provided by Microsoft though the Windows automatic update feature.
    Flash Player 14 desktop for Mac: 14.0.0.125
    Flash Player 11.2 desktop for Linux: 11.2.202.378
    Beginning May 13, 2014 we have updated the version of our "Extended Support Release" from Flash Player 11.7 to Flash Player 13 for Mac and Windows. To continue to stay current with all available security updates, you will need to install the version 13 Extended Support Release or update to the most recent available release.  For full details, please see this blog post:
    Upcoming Changes to Flash Player Extended Support Release
    Flash Player 13 desktop for Windows and Macintosh: 13.0.0.223
    Previous versions of Flash Player can be found on the Archived Flash Player page
    If you encounter a problems with broken or missing links, please clear your browser cache and try again.  If the problem persists, please create a new post in our forum or send email to [email protected].

    OK! Let's take 7 steps ... an easy answer to a focus problem not a machine problem. (MAC!)
    1.1. Download the Adobe Flash Player file version 14 at Adobe - Install Adobe Flash Player
    1.2 or dowonload the above link: http://download.macromedia.com/pub/flashplayer/current/support/install_flash_player_osx.dm g
    2.1 Double-click the AdobeFlashPlayerInstaller_14_ltrosxd_aaa_aih.dmg in your download folder
    4. Do not double-click the red face (png file) - Installer "Install Adobe Flash Player".
    5. Right click the face to perform a precise selection: Show Package Contents.
    6.1 Select - Contents and double click; Select - Resources and double click; Select - Adobe Flash Player.pkg and double click.
    6.2 Warning!! Select - Contents and double click; Select - Resources and double click; Select - app.bundle and copy it to your internet plugin folder (more work!!)
    7. Select: Continue and complete your installation.
    R. Alexander

  • 6/10/14 - Release - AIR 14 Runtime and SDK

    Today we're pleased to announce that the next version of AIR is available for immediate download.
    This update includes the following fixes and security updates:
    Security update details can be found here: Security Bulletin (APSB14-14)
    New Features:
    Anisotropic Filtering
    This new texture sampling filter can enhance the image quality of textures on surfaces that are at oblique viewing angles.  There are two ways to enable this feature:
    In AGAL, set one of the values – "anisotropic2x", "anisotropic4x", "anisotropic8x", or "anisotropic16x" to the filter option in the sampling instructions.
    Call Context3D::setSamplerStateAt with the 3rd parameter "filter" being one of the values defined in Context3DTextureFilter - "ANISOTROPIC2X", "ANISOTROPIC4X", "ANISOTROPIC8X", or "ANISOTROPIC16X"
    New Stage3D "Standard" Profile
    Developers can now request this high level profile when creating Context3D.  Three new features are available in this profile:
    Multiple render target allows to you to draw geometry to multiple outputs (up to 4) during one drawing
    Floating point texture allows you to create Texture, RectangleTexture and CubeTuxture with the RGBA16F folder.
    AGAL v2 contains these improvements:
    Increased register size
    Partial derivative instructions
    Fragment depth output
    Conditional forward jump
    Intel x86 Android Support
    As announced in our Flash Runtime blog, we're adding support for Intel x86 Android to AIR.  An ADT command line option (-arch) has been added to allow packaging apps with Android x86 support.  Please note that currently only captive runtime packaging is allowed for x86 architecture.  This means all APK targets (apk, apk-debug and apk-captive-runtime) will forcibly be packaged with captive runtime.  Feedback on this approach is encouraged.
    Sample APK packaging command for x86 devices:
    adt -package -target ( apk | apk-captive-runtime ) -arch x86 -storetype pkcs12 -keystore abc.p12 HelloWorld.apk HelloWorld-app.xml HelloWorld.swf
    adt -package -target apk-debug -arch x86 -storetype pkcs12 -keystore abc.p12 HelloWorld.apk HelloWorld-app.xml HelloWorld.swf
    Note that -arch is optional. If not specified, armv7 is assumed.
    Packaging for x86 architecture in Flash Builder:
    Open the debug/run configurations of the project in Flash Builder and click on "Customize launch.." button. Add a new parameter "-arch" with value "x86" and place it before "-storetype". Click "OK" to apply changes.
    Except for RTMPE and DRM, all other features and capabilities are completely functional and supported. Native extensions written for x86 platforms can also be packaged and used by an app for x86 devices. To support this, a new ANE platform 'Android-x86' is now available.
    The following example highlights the usage of the same -
    <extension xmlns="http://ns.adobe.com/air/extension/14.0>
    <id>com.adobe.sample.ane</id>
    <versionNumber>1.0</versionNumber>
    <platforms>
    <platform name="Android-ARM">
    <applicationDeployment>
    <nativeLibrary>sample.jar</nativeLibrary>
    <initializer>com.example.ane.Extension</initializer>
    <finalizer>com.example.ane.Extension</finalizer>
    </applicationDeployment>
    </platform>
    <platform name="Android-x86">
    <applicationDeployment>
    <nativeLibrary>sample.jar</nativeLibrary>
    <initializer>com.example.ane.Extension</initializer>
    <finalizer>com.example.ane.Extension</finalizer>
    </applicationDeployment>
    </platform>
    </platforms>
    </extension>
    New packaging command for ANE:
    adt -package -target ane Sample.ane extension.xml -swc Sample.swc -platform Android-ARM -C Android-ARM/ . -platform Android-x86 -C Android-x86/ .
    Improved Packaging Engine - iOS
    Based on the feedback received from the developer community, tons of improvements and bug fixes have been made in the new packaging engine for iOS.  We encourage developers to report issues to http://bugbase.adobe.com, to ensure that we are able to continue to improve the packager in future releases.
    To enable this feature, please use "-useLegacyAOT no" in the ADT command, before the signing options.  As of now, this feature is not available within Flash Pro but it can still be used with Flash builder by adding the parameter -useLegacyAOT under the "Customize launch" option.
    Here is an example ADT command for compiling an applications using “-useLegacyAOT no":
    adt -package -target ( ipa-test | ipa-debug | ipa-app-store | ipa-ad-hoc) -useLegacyAOT no -provisioning-profile -keystore -storetype pkcs12 -storepass xxxx HelloWorld.ipa Helloworld-app.xml HelloWorld.swf
    For more information, please visit Faster compiling with AIR for iOS
    AIR Gamepad
    AIR Gamepad feature enables the app developers to provide a second screen on Android mobile devices for the Flash based browser games. AIR Gamepad API enables Flash based browser apps to connect to a paired Android device running the AIR Runtime app and therefore allowing the Android devices to be used as game controllers or second-screen interfaces.
    Key functionality of this feature:
    Gesture eventsTouch events
    Accelerometer events
    Vibration
    Customize the AIR gamepad screen by applying your own skins
    To learn more about the AIR Gamepad APIs, please refer to the documentation found here.
    To try out the Wand.swc which can be downloaded from here.
    Live samples of AIR Gamepad can be tested using the following links:
    ModelViewer
    HungryHero
    For more information, please visit Android devices with AIR as gamepads
    Fixed Issues:
    [IOS] Resolves an issue introduced in AIR 4.0.0.1390 where DatagramSocket was not receiving packets (3747382)
    [IOS] Values are now set correctly when assigning Vector3D.Y_AXIS to a Vector3D object with -useLegacyAOT=no[Android] Browse file dialog called by FileReference.browse() is correctly displayed on the Nexus 7 and Xoom 4.1.2 (3721032)
    [Android] is ignored for all but one extension when multiple extensions are used (3761458)
    [x86][Android] Workers get terminated even without calling terminate function (3755006)
    [Android] Setting the restrict property on a StageText instance and adding or removing text incorrectly add extra characters. (3749699)
    [iOS] Values are now set correctly when assigning Vector3D.Y_AXIS to a Vector3D object with useLegacyAOT=no (3744595)
    [iOS] ANE doesn't include libraries through platform.xml and throws error on packaging the IPA (3743946)
    [iOS] DatagramSocket not receiving packets on iOS (3742982)
    [iOS] Not able to debug/launch iPad iOS Simulator from Flash Builder. Note: One needs to set a environment variable using the command: launchctl setenv AIR_IOS_SIMULATOR_DEVICE "iPad Retina” Then restart the process and run the application on simulator device of his/her choice. By default iPhone is launched. (3728052)
    [iOS] Not able to debug AIR app in iOS Simulator from Flash Builder when Xcode below 5.x is installed (3727760)
    [iOS7] StageText fontWeight/fontPosture API does not work (3724627)
    [Android] R$Styleable.class goes missing from the final AIR app APK though is included in ANE. (3723876)
    [Android] Starling throws Buffer creation failed. Internal error while createVertexBuffer (3756123)
    [Win] Ctrl+A, Ctrl+C and Ctrl+V now work correctly in StageText fields (3708480)
    Multiple security and stability fixes
    Known Issues:
    [Android] Missing support for XXXHDPI icon on Android 4.4 (3730948)
    [x86][Android] Export Release Build from Flash Builder fails to run app on Android device when -arch parameter is used. (3759405)
    [Android]Captive packaging fails for APK using multiple ANEs, throws OutOfMemoryError. (Workaround: run export _JAVA_OPTIONS='-Xms4096m -Xmx4096m' and then run the packaging command). (3766280)
    [iOS8] A notification dialog is coming after launching any AIR applications. (3771162)
    [Android] ADT Does not pass required heap space to dx.jar (3771118)
    [Android] StageText restrict = "A-Z" not blocked lowercase letters input. (3769801)
    [iOS] Package IPA file with ipa-app-store or ipa-ad-hoc type will case logic judgment with incorrect (3768506)
    [Android] StageText displayAsPassword displays text without mask in landscape on Android (3768443)
    Download Locations:
    AIR 14 runtime for Windows: 14.0.0.110 Runtime Download
    AIR 14 runtime for Macintosh: 14.0.0.110 Runtime Download
    AIR 14 SDK & Compiler for Windows: 14.0.0.110 SDK & Compiler Download
    AIR 14 SDK & Compiler for Macintosh: 14.0.0.110 SDK & Compiler Download
    Note: To provide all the all the necessary tools for our developers in one place and avoid having to download multiple components, we are packaging Adobe AIR 13 SDK and ActionScript Compiler 2.0 in a single SDK called “Adobe AIR 13 SDK & Compiler”.
    AIR SDK 14 (Compatible with Flex) for Windows: 14.0.0.110 SDK Windows Download
    AIR SDK 14 (Compatible with Flex) for Macintosh: 14.0.0.110 SDK Macintosh Download
    Previous versions of the AIR runtime and SDK can be found on the Archived AIR SDK and Runtimes page

    OK! Let's take 7 steps ... an easy answer to a focus problem not a machine problem. (MAC!)
    1.1. Download the Adobe Flash Player file version 14 at Adobe - Install Adobe Flash Player
    1.2 or dowonload the above link: http://download.macromedia.com/pub/flashplayer/current/support/install_flash_player_osx.dm g
    2.1 Double-click the AdobeFlashPlayerInstaller_14_ltrosxd_aaa_aih.dmg in your download folder
    4. Do not double-click the red face (png file) - Installer "Install Adobe Flash Player".
    5. Right click the face to perform a precise selection: Show Package Contents.
    6.1 Select - Contents and double click; Select - Resources and double click; Select - Adobe Flash Player.pkg and double click.
    6.2 Warning!! Select - Contents and double click; Select - Resources and double click; Select - app.bundle and copy it to your internet plugin folder (more work!!)
    7. Select: Continue and complete your installation.
    R. Alexander

Maybe you are looking for

  • How can I get a new MacBook battery Germany?

    Hi. I am a Mac newbie and need some help. I have the infamous black "x" (even after installing all relevant updates). Apple tech tells me that I need a new battery but they will ship it to my APO (Army Post Office) where I am stationed. I know people

  • HT2353 Macbook Pro running slow and freezing

    So it just started yesterday running slow and freezing. I'm starting to get very frustrated. I research to see what could be the problem. I saw people suggesting that it could be the storage. My storage is 464.75 free out of 499.25. I just brought th

  • Using Sap Batch Program - RFBIBL00

    Hi, I have gone through the forum in trying to understand the standard sap batch program, but still unable to do so. I have a requirement where I need to use standard sap batch program RFBIBL00 I need to use T.code: F-22 for processing I have a posti

  • Bpel deployment fails for all processes that have revision other than 1.0.

    Using: Release *10.1.3.3.1* Hello All, Bpel deployment fails for all processes that have revision other than *1.0*. We have been attempting to deploy several BPEL projects via ANT script to a target environment and are encountering failures to deploy

  • Downpayments and Payment run

    Hello As a I understand during F110, the payment run would go ahead and make payment against the open items existing. Now in a scenario where there a down payment already effected using F-48, then what will essentially happen is that the vendor is pa