AF:form causes NullPointerException

I use JDeveloper 11 g and ADF. I use dynamic region with fragments of the page to view the different pages.

I'm doing a form of submission, but jdeveloper throws NullPointerException because soon I add af:form to my jsff.
java.lang.NullPointerException
     at oracle.adfinternal.view.faces.renderkit.rich.FormRenderer.encodeAll(FormRenderer.java:234)
     at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1369)
     at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:335)
     at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:751)
     at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:415)
     at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:2572)
     at org.apache.myfaces.trinidad.render.CoreRenderer.encodeAllChildren(CoreRenderer.java:432)
     at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer.encodeAll(DocumentRenderer.java:1066)
     at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1369)
     at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:335)
     at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:751)
     at org.apache.myfaces.trinidad.component.UIXComponentBase.__encodeRecursive(UIXComponentBase.java:1501)
     at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeAll(UIXComponentBase.java:771)
     at javax.faces.component.UIComponent.encodeAll(UIComponent.java:942)
     at com.sun.faces.application.ViewHandlerImpl.doRenderView(ViewHandlerImpl.java:271)
     at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:202)
     at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:189)
     at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:193)
     at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:710)
     at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:273)
     at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:205)
     at javax.faces.webapp.FacesServlet.service(FacesServlet.java:266)
     at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
     at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
     at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
     at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:191)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:97)
     at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
     at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
     at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
     at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:247)
     at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:157)
     at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:94)
     at java.security.AccessController.doPrivileged(Native Method)
     at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
     at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
     at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:138)
     at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:70)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:159)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     at oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:326)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3592)
     at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
     at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
     at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2202)
     at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2108)
     at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1432)
     at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
     at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
Here is my code to the jsff page
<?xml version='1.0' encoding='UTF-8'?>
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
          xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
              <af:form id="f1">
                <af:inputFile label="File" id="inputFile" autoSubmit="true"
                              columns="30" required="true"
                              valueChangeListener="#{Arkiv.inputFileValue}"
                              binding="#{Arkiv.inputFile}"/>
                  <af:commandToolbarButton text="Save file" id="ctb2" actionListener="#{Arkiv.onUploading}"/>
                  <af:commandToolbarButton text="Cancel" id="ctb3" immediate="true"/>
              </af:form>
</jsp:root>
If I remove the form from the page loads, but then I can't use the inputFile.

Any ideas?

Best wishes in advance.

-Thomas

If you use regions, then you af:form component in the main page.
You can have more then one af:form in a page that I know, or at least you can't have nested.
Why do you need all the af:form? It should work fine without it.

Edited by: Valhery 2010-4-15 05:36

Edited by: Valhery 2010-4-15 05:36

Tags: Java

Similar Questions

  • Help! Using CFQUERYPARAM in INSERT statements causes NullPointerException?

    Hi all

    I've never used cfqueryparam with the INSERT statement in cfquery before, but now whenever I have it try, I have a NullPointerException.

    My code:

    < name cfquery = "insertDocEntry."
    result = "docEntry."
    DataSource = "#application. PrimaryDataSource #">"
    INSERT INTO tbl_conference_document
    (SessionID, DocTypeID, symbol, language, Title)
    VALUES)
    < cfqueryparam value = "" #Form.SessionID # "cfsqltype ="cf_sql_numeric">,"
    < cfqueryparam value = "" #Form.DocTypeID # "cfsqltype ="cf_sql_numeric">,"
    < cfqueryparam value = "" #Form.Symbol # "cfsqltype ="cf_sql_varchar">,"
    < cfqueryparam value = "" #Form.Language # "cfsqltype ="cf_sql_varchar">,"
    < cfqueryparam value = "" #Form.Title # "cfsqltype ="cf_sql_varchar">"
    )
    < / cfquery >

    I cfdump the form field and all values are defined, but I always get this error:

    The web site, you access has met an unexpected error.
    Please contact the site administrator.

    The following information is for the creation of Web sites for debugging purposes.
    Error occurred while processing request
    The system has attempted to use an undefined value, which usually indicates an error programming, either in your code or system code.

    NULL pointers are another name for undefined values.

    The error occurred in D:\ColdFusion9\wwwroot\Infobase\Document\execConferenceDocUpload.cfm: line 28

    26 :       <cfqueryparam value="#Form.Symbol#" cfsqltype="cf_sql_varchar">,
    27 :       <cfqueryparam value="#Form.Language#" cfsqltype="cf_sql_varchar">,
    28 :       <cfqueryparam value="#Form.Title#" cfsqltype="cf_sql_varchar">
    29 :     )
    30 :    </cfquery>

    Resources:

    BrowserMozilla/5.0 (Windows; U; Windows NT 5.1; en-US; RV:1.9.2.8) Gecko/20100722 Firefox/3.6.8
    Remote address127.0.0.1
    Referrerhttp://localhost:8501/Infobase/document/uploadConferenceDoc.cfm
    Date/time3 Aug 10 11:48
    Stack trace
    at cfexecConferenceDocUpload2ecfm1876641633.runPage (D:\ColdFusion9\wwwroot\Infobase\Document \execConferenceDocUpload.cfm:28) to cfApplication2ecfc1086350920$ funcONREQUEST.runFunction (D:\ColdFusion9\wwwroot\Infobase\Ap plication.cfc:230)

    java.lang.NullPointerException
         at coldfusion.sql.QueryTable.populate(QueryTable.java:325)
         at coldfusion.sql.QueryTable.populate(QueryTable.java:261)
         at coldfusion.sql.Executive.getRowSet(Executive.java:466)
         at coldfusion.sql.Executive.executeQuery(Executive.java:1248)
         at coldfusion.sql.Executive.executeQuery(Executive.java:1008)
         at coldfusion.sql.Executive.executeQuery(Executive.java:939)
         at coldfusion.sql.SqlImpl.execute(SqlImpl.java:341)
         at coldfusion.tagext.sql.QueryTag.executeQuery(QueryTag.java:843)
         at coldfusion.tagext.sql.QueryTag.doEndTag(QueryTag.java:533)
         at cfexecConferenceDocUpload2ecfm1876641633.runPage(D:\ColdFusion9\wwwroot\Infobase\Document\execConferenceDocUpload.cfm:28)
         at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:231)
         at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:416)
         at coldfusion.runtime.CfJspPage._emptyTcfTag(CfJspPage.java:2722)
         at cfApplication2ecfc1086350920$funcONREQUEST.runFunction(D:\ColdFusion9\wwwroot\Infobase\Application.cfc:230)
         at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:472)
         at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:405)
         at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:368)
         at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:55)
         at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:321)
         at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:220)
         at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:490)
         at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:336)
         at coldfusion.runtime.AppEventInvoker.invoke(AppEventInvoker.java:88)
         at coldfusion.runtime.AppEventInvoker.onRequest(AppEventInvoker.java:280)
         at coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:338)
         at coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:48)
         at coldfusion.filter.MonitoringFilter.invoke(MonitoringFilter.java:40)
         at coldfusion.filter.PathFilter.invoke(PathFilter.java:87)
         at coldfusion.filter.LicenseFilter.invoke(LicenseFilter.java:27)
         at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:70)
         at coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:28)
         at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
         at coldfusion.filter.NoCacheFilter.invoke(NoCacheFilter.java:46)
         at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
         at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
         at coldfusion.filter.CachingFilter.invoke(CachingFilter.java:53)
         at coldfusion.filter.RequestThrottleFilter.invoke(RequestThrottleFilter.java:126)
         at coldfusion.CfmServlet.service(CfmServlet.java:200)
         at coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:89)
         at jrun.servlet.FilterChain.doFilter(FilterChain.java:86)
         at coldfusion.monitor.event.MonitoringServletFilter.doFilter(MonitoringServletFilter.java:42)
         at coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:46)
         at jrun.servlet.FilterChain.doFilter(FilterChain.java:94)
         at jrun.servlet.FilterChain.service(FilterChain.java:101)
         at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:106)
         at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
         at jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:286)
         at jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:543)
         at jrun.servlet.http.WebService.invokeRunnable(WebService.java:172)
         at jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:320)
         at jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:428)
         at jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:266)
         at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)

    This error does NOT occur when I don't use cfqueryparam, but my problem is, I need to insert a downloaded file in the database as a BLOB (code not shown above because it is a problem even without BLOB), so far the only way I know how is it to use CFQUERYPARAM.

    Am I the only one seeing this here? So far I only tried to use my CF9 local server (developer edition), the server of CF9 on my colleague has the same problem.

    Here we have a very tight schedule and I really wasn't expecting this kind of problems, so any help and advice is much appreciated!

    Thanks in advance!

    ZHU, Jia

    Yes, I don't think there was a data type mismatch. I was just trying to get more clues on the circumstances in which the error occurs. In other words, it happens every time cfqueryparam is used... or simply when certain types of data are used. Because surely it should not happen.  Maybe a level driver problem, what I do usually is set up a few test cases fast, ideally very simple.  Then use this to determine if there are exceptions to the main issue.  Thus, for example, things like the exception occurs even with a simple insert a column with a varchar column base

    INSERT INTO TestTable (VarcharCol) VALUES ( )

    Also, have you experienced the same results with the jtds driver?

  • Attempt to parse GML to JGeometry causes NullPointerException (Java)

    I would like to load GML, analyze and then convert it to JGeometry before you insert the object in the database.
    I saw the lack of examples in the examples of gml Oracle, but when I try with my GML it causes a Null pointer.
    Here is the excerpt that causes:

    DOMParser parser = new DOMParser();
    parser. Parse (InputSource new)
    java.io.ByteArrayInputStream new (("< gml:Polygon srsName = \" SDO: \ "xmlns:gml = \"http://www.opengis.net/gml \"> \r\n" +))
    "< gml:exterior > \r\n" +.
    "< gml:LinearRing > \r\n" +.
    "< gml:posList srsDimension =-"2"" > 8.0 7.0 8.76536686473018 7.15224093497743 9.\r\n "+"
    "4142135623731 7.58578643762691 9.84775906502257 8.23463313526982 9.8477\r\n 10.0 9.0 +.
    "5906502257 9.76536686473018 9.4142135623731 10.4142135623731 8.76536686473018 10\r\n +.
    ".8477590650226 8.0 11.0 7.23463313526982 10.8477590650226 6.58578643762691 10.41\r\n +.
    "42135623731 6.15224093497743 9.76536686473018 6.0 9.0 6.15224093497743 8.2346331\r\n +.
    "3526982 6.58578643762691 7.5857864376269 7.23463313526982 7\r\n 7.15224093497743 8.0 +.
    ".0 < / gml:posList > \r\n" +.
    "" < / gml:LinearRing > \r\n "+"
    "" < / gml:exterior > \r\n "+"
    "< / gml:Polygon > \r\n" +.
    (((""). getBytes()));
    org. W3C. DOM.document doc = parser.getDocument ();
    Node multiGeoms = doc.getFirstChild ();
    Geom JGeometry = GML.fromNodeToPolygon (multiGeoms);
    System.out.println (Geom);
    }

    (Import if you want to run it):
    import java.io.IOException;

    Import oracle.spatial.geometry.DataException;
    Import oracle.spatial.geometry.JGeometry;
    Import oracle.spatial.util.GML;
    Import oracle.xml.parser.v2.DOMParser.

    Import org.w3c.dom.Node;
    Import org.xml.sax.InputSource;
    Import org.xml.sax.SAXException;
    )

    And the NullPointerException I get:
    Exception in thread "main" java.lang.NullPointerException
    at oracle.spatial.util.GML.getFirst(GML.java:780)
    at oracle.spatial.util.GML.getFirst(GML.java:772)
    at oracle.spatial.util.GML.guessDimensionality(GML.java:146)
    at oracle.spatial.util.GML.fromNodeToPolygon(GML.java:332)
    at Test.main (Test.java:55)

    I don't know why this happens even if the GML seems ok (since I took on the Oracle's Web site)
    Any help is very appreciated.

    Hi, -.
    You are welcome.
    Class GML should work for your case since you have 2D geometry.
    GML3g comes with the 11g database. I just suggested it in case you have 11g and you can use it with posList.
    You also place commas between x and are coordinated and
    replace an outer label with outerBoundaryIs tags in your yourmultigeometryingml.xml file?
    Have you applied the second approach with the class file and xml GML?
    you have 10.2.0.4 version of database?
    Thank you

  • Why 200 radio buttons in a form cause 8 second period of rendering

    We have an on-line questionnaire containing 36 questions, each with 6 radio buttons (216 total) in a single form. Although the page to render quickly, there is then a delay in Firefox up to 8 seconds before it will record an option by clicking button. This problem does not occur in Chrome or Safari, and there are slight delay (second) in Internet Explorer. The period shall be reduced pro rata by reducing the number of option buttons. The period may also be reduced to about 4 or 5 seconds by removing all elements of the page outside the boxes option and the form.

    Unfortunately, you will need to get with Norton to try to determine why.

    We could try to open a bug report in Bugzilla... Use the Plugins with Norton AV product component-> https://bugzilla.mozilla.org/enter_bug.cgi?product=Plugins

  • one form causes mail delivery errors. Why?

    Hey there,

    Since I use Adobe contact forms on my Muse page, I get bombarded with mail delivery system errors.

    Why does this happen?

    Here's a quick example:


    This message was created automatically by mail delivery software.

    A message you sent could not be delivered to one or more of its

    beneficiaries. This is a permanent error. The following address(es) failed:

    [email protected]

    retry time not reached for any host after a long failure

    -It is a copy of the headers of the message. ------

    Return-path: [email protected] >

    Received: from wp120.webpack.hosteurope.de wp11213395 run ExIM with local

    ID 1YPYqW-00087Y-Qt; Sunday February 22, 2015 16:53:28 + 0100

    Date: Sunday 22 February 2015 16:53:28 + 0100

    Message-Id: < [email protected] >

    To: [email protected]

    Subject: Hi

    X-PHP-Script: www.n90media.de/scripts/form_check.php for 77.75.77.32, 77.75.77.32

    De : [email protected]



    Is it just spam? But why I'm getting these messages from delivery then?

    This problem can be solved in any case?


    Thank you!

    -Markus

    This topic addresses the issue...

    Contact Adobe Muse form, queue [email protected] problems

  • Too much eventListeners in nested form causes falsh cs6 debugging session crashing?

    Hi all!

    The video above (http://www.youtube.com/watch?v=53vqkd5VLFw) is a simple sequential, click game. The code works perfectly in a simple situation of movieclips brand-new or even up to 20 movieclips or more. But when I increase the number of movieclips more far and adds more eventlisteners in nested form, flash cs6 debugging sessions seem to get overloaded and fails to give a result. He gets simply hung up.

    Code work for a simple situation:

    startBtn.addEventListener (MouseEvent.CLICK, trigGame)

    function trigGame(e:MouseEvent):void {}

    N1 to n9 are the nine movieclips arranged as a grid

    N1.Alpha = 1;          N2.Alpha = 1;          N3.Alpha = 1;

    N4.Alpha = 1;          N5.Alpha = 1;          N6.Alpha = 1;

    N7.Alpha = 1;          N8.Alpha = 1;          N9.Alpha = 1;

    startBtn.visible = false;

    RANDOM CODE GRID: OPEN

    function randomSort(a:*,_b:*):Number

    {

    If (Math.Random () < 0.5) return-1;

    else return 1;

    }

    var positions: Array = [new Point (158, 296), new Point (238, 296), new Point (318, 296),]

    New Point (158, 366), new Point (238, 366), new Point (318, 366), new Point (158, 436).

    [new Point (238 436), new Point (318, 436)];

    var mcs:Array = [n1, n2, n3, n4, n5, n6, n7, n8, n9];

    positions.sort (randomSort);

    var q: int = positions.length;

    for (var t = 0; t < q; t ++)

    {

    var mc:MovieClip = mcs [t];

    var: a Point = post [t];

    MC.x = point.x;

    MC.y = point.y;

    }

    GRID RANDOM CODE: CLOSE

    {n1.addEventListener (MouseEvent.MOUSE_DOWN, alph1);

    function alph1(e:MouseEvent):void

    {{n1.alpha =.5; n1.removeEventListener (MouseEvent.MOUSE_DOWN, alph1) ;}}} ;

    N2.addEventListener (MouseEvent.MOUSE_DOWN, alph2);

    function alph2(e:MouseEvent):void

    {{n2.alpha =.5; n2.removeEventListener (MouseEvent.MOUSE_DOWN, alph2) ;}}} ;

    N3.addEventListener (MouseEvent.MOUSE_DOWN, alph3);

    function alph3(e:MouseEvent):void

    {{n3.alpha =.5; n3.removeEventListener (MouseEvent.MOUSE_DOWN, alph3) ;}}} ;

    N4.addEventListener (MouseEvent.MOUSE_DOWN, alph4);

    function alph4(e:MouseEvent):void

    {{n4.alpha =.5; n4.removeEventListener (MouseEvent.MOUSE_DOWN, alph4) ;}}} ;

    N5.addEventListener (MouseEvent.MOUSE_DOWN, alph5);

    function alph5(e:MouseEvent):void

    {{n5.alpha =.5; n5.removeEventListener (MouseEvent.MOUSE_DOWN, alph5) ;}}} ;

    N6.addEventListener (MouseEvent.MOUSE_DOWN, alph6);

    function alph6(e:MouseEvent):void

    {{n6.alpha =.5; n6.removeEventListener (MouseEvent.MOUSE_DOWN, alph6) ;}}} ;

    N7.addEventListener (MouseEvent.MOUSE_DOWN, alph7);

    function alph7(e:MouseEvent):void

    {{n7.alpha =.5; n7.removeEventListener (MouseEvent.MOUSE_DOWN, alph7) ;}}} ;

    N8.addEventListener (MouseEvent.MOUSE_DOWN, alph8);

    function alph8(e:MouseEvent):void

    {{n8.alpha =.5; n8.removeEventListener (MouseEvent.MOUSE_DOWN, alph8) ;}}} ;

    N9.addEventListener (MouseEvent.MOUSE_DOWN, alph9);

    function alph9(e:MouseEvent):void

    {{n9.alpha =.5; n9.removeEventListener (MouseEvent.MOUSE_DOWN, alph9) ;}}} ;

    {startBtn.visible = true}

    }}}}}}}}}}}

    Can someone please help.

    Thanks in advance

    Kind regards

    Shams

    Yet once you post them in your code that does not display the problem.  There is nothing in this code that forces a user presses before n2 n1, for example.

    Open a new fla, add your n1... movieclips and use the following syntax:

    var positions: Array = [new Point (158, 296), new Point (238, 296), new Point (318, 296),]

    New Point (158, 366), new Point (238, 366), new Point (318, 366), new Point (158, 436).

    [new Point (238 436), new Point (318, 436)];

    Var error: int;

    var mcs:Array = [n1, n2, n3, n4, n5, n6, n7, n8, n9];

    startF();

    function startF (): void {}

    Errors = 0;

    Shuffle (positions);

    for (var i: int = 0; i<>

    MCS [i] .addEventListener (MouseEvent.MOUSE_DOWN, downF);

    MCS [i] .x = items [i] .x;

    MCS [i] there = there positions [i];

    MC [i] .alpha = 1;

    }

    }

    function downF(e:MouseEvent):void {}

    If (mcs.indexOf (e.currentTarget) == 0 | mcs [mcs.indexOf (e.currentTarget)-1] .alpha)<>

    e.currentTarget.alpha =. 5;

    e.currentTarget.removeEventListener (MouseEvent.MOUSE_DOWN, downF);

    {if (MCS. IndexOf (e.currentTarget) is MCS. (Length-1)}

    gameoverF();

    }

    } else {}

    Errors ++;

    }

    }

    function gameoverF (): void {}

    view congratulations if errors 0 or some other low number

    When you want to restart the game, call startF().

    }

    function shuffle(a:Array) {}

    var p:int;

    var t: *;

    var ivar:int;

    for (ivar =. Length-1; Ivar > = 0; Ivar-) {}

    p = Math.Floor ((Ivar+1) * Math.Random ());

    t = a [ivar];

    a [ivar] = a [p];

    a [p] = t;

    }

    }

  • Running Calc form Cause data disappear

    Hi all

    I have a form of data with the attached default calc script.
    Him clac is set to "run when recording".
    When I click on register data, I get a message "the data has been saved".tough, the numbers disappear from the display of the form.
    However, when I removed the scipt Calc and run record.
    Record numbers and display them.

    What's not here?

    Thanks for your help,

    Published by: Messi on 31/12/2009 07:49

    Hi Martin,

    A few questions. When you say by default calc script is there really a calc script or you have the 'calculate member on form' enabled? If it is the default calc script what logic do you have in the script?

    Are you given entering members of top level (no lev-0) on the form?

    Kind regards

    John A. Booth
    http://www.metavero.com

  • How will this affect my limit of 500 contract EULA to submit the forms?

    I'll post the LiveCycle Forms on our Web site and users can then submit the web form and and receive it in my email box. If any changes need to be made, I will return and request a review. Finally, when it is finished, I send the finished shape to a ton of people in the Organization to use the form data and imput what they must use it. The form must be sent and present in the email for verification purposes.

    Will this affect my agreement? The form gets usually filled maybe 25 times a month...

    If you have configured the form so that it sends only the data of the form (FDF, XFDF, etc.), it is useless to readers - activate the form. Therefore, the returned 500 form limit does not apply, because it applies only to the forms enabled for the drive. A FDF or XFDF file can easily be imported using Acrobat in a blank form, causing it to be filled with data in FDF/XFDF data file. You can then view, print and archive the populated form.

    To clarify a point mentioned this Bill, if you place a Reader-enabled document on a web server so that it is accessible by more than 500 users, you actually distributed the document to more than 500 users. Therefore, you are limited by the license of Acrobat using not more than 500 cases of the form enabled (including paper copies) which have been returned to you.

  • We get an error when you test the payment flows. Can you help me please?

    I'm getting this when testing a payment flow:

    screenshot.png

    What should I do?

    Thank you, Diego.

    The form is corrupt. This is usually caused by

    (a) spoil the code tries to adapt the design.

    (b) you change things in the form to get him to change the code. Be aware that the form code can change when you use the form builder. You need to update manually if you change things in the form causing it to change ID or field names.

    (c) you have removed the form in the form designer.

  • PPR vs Page Submit

    Hello

    What is the difference between the rendering of page partil and sending page?
    I think that both the refreshing page cases happening.
    So what exactly the difference?

    Thank you
    JP

    HI JP,

    Action of fire will be sending the form, cause an entire page to be rendered.

    As a part of the FirePartial Action (similar to AJAX in a java application) page gets made or updated.

    for example: If you enter the wrong password in gmail and press ENTER, please note the updating of this password only, not the entire page text box.

    Kind regards
    Had

  • Formulas break WYSIWYG in design mode

    Hello!

    I am currently working with several forms, and I place these forms with CSS absolute positioning. The problem is that in the view desing (where appears the wysiwyg preview) form cause little symbols appear inside the div and they shift the position of the divs. In other words, the position of the div appears different in dreamweaver in browsers.

    Is there a way to turn these 'symbols form"out of the preview for the placement of the div is the same in the preview and in the browser?

    I joined and images of the show!

    turn_form_symbols_off.jpg

    Andy Bay wrote:

    Is there a way to turn these 'symbols form"out of the preview for the placement of the div is the same in the preview and in the browser?

    View > Visual audiences. Deselect invisible elements.

    You can also control what invisible elements, Dreamweaver displays by default the preferences panel (Edit on Windows menu, menu Dreamweaver on a Mac), selecting the invisible elements category.

  • Custom rendering service is called only once, why?

    Hi all

    I created a rendering service customized to prepopulate managers name on each step of my process.

    The entry of the process form is a Document form cause users attach files to the form, and it is routed to the next station and attachments.

    "Call Service once only" checkbox in advanced settings is unchecked.

    When the process is started my custom rendering is called well, but when he reached the task assign form activity is open, but no service is called.

    Why is this happening?

    Thanks in advance, Yan.

    Hi Yan,

    You use the same variable of 'form' at the stage of the user you used in the first step? I suggest that you put the Variable Logger as the first step in your rendering process to check if she is called multiple times or not.

    Parth

  • Request (invalid_request) of error _ __Your other could not be treated. __This could be caused by a misconfiguration or possibly a bad query is formed. For-profit support, contact network support team. __

    When you invite someone to a game of this error:

    Request error (invalid_request)

    Your request could not be processed.
    This could be caused by a misconfiguration or possibly a bad query is formed.

    For assistance, contact your network support team.

    Hi Paolombana,

    ·         Which game you try to play?

    ·         Do you get this error message when you try to invite a particular contact?

    ·         What operating system is installed on your computer?

    Method 1

    If you are using Windows Vista, you can self test network diagnostic tool and see if that fixes the problem.

    Network connection problems

    http://Windows.Microsoft.com/en-us/Windows-Vista/troubleshoot-network-connection-problems

    Method 2

    If you use Windows 7, run the network troubleshooter utility.

    Using the troubleshooter from network in Windows 7

    http://Windows.Microsoft.com/en-us/Windows7/using-the-network-troubleshooter-in-Windows-7

    Hope the helps of information. Please post back and we do know.

    Concerning
    Joel S
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • Pure SQL Exception: Caused by java.lang.NullPointerException.

    Could not invoke the 'Query_XX_Flag' against the 'db' operation due to: []

    LIAISON. JCA-11633

    Pure SQL exception.

    Pure SQL select DECODE Execute (MSI. ATTRIBUTE5, 'Y', 'True', 'False') XX_flag of msi mtl_system_items_b where inventory_item_id =? and rownum = 1 failed.

    Caused by java.lang.NullPointerException.

    The pure SQL option is for only border use cases and provides simple but minimal functionality.  Maybe try the "Run an operation on a table" option instead.  This exception is considered non reproducible, probably due to an error of modeling.

    Version: Oracle soa suite 12.1.3 - jdk1.7 - (local) Windows 7 operating system

    I get the above exception in one of our Async BPEL of the process, and it happens like 1 in 5 cases.

    As you can see, the reason for the error is not really clear and I see nothing diagnosis either connects.

    And when I start this process from the console, it's getting completed successfully.

    We are not exceeding the number of DB connections either.

    Here's our design:

    BPEL Poller-> (several calls) Async BPEL process-> database adaptor with above query

    What could be wrong? What is the reason for this odd behavior?

    Thank you

    Prasanna

    This error could not be reproduced on the test environment, where the SOA server with oracle DB of the backend rather than javaDB on integrated server is installed...

    So if someone were unexpected exceptions on the local server and then try to test on the test/UAT/pre-production environments.

    Prasanna-

  • Required radio buttons - Possible Cause of unable to submit the form?

    I'm missing something about radio buttons.  Create a form of 9 page using the layout fluid and with the previous help from this forum, am being tested now.  It's a long questionnaire and questions are radio buttons, some are checkboxes.  For radio buttons, they are a Yes/No, each set contains 2 buttons and I use the question numbers under the name of link, for example the Question a 17, 4 sets of boxes for Yes/No to sub questions A, B, C and D, thus binding names Q17A, Q17B, etc..

    I've done every yes / no game needed, thought I want their answer Yes or no for part A, B, C and D, each.  By making the final test, when I click on send, he said to the less mandatory field was empty export.  I answered each question if necessary or not, thinking I can I have had a few errors in the mandatory fields, always got the error, then divided the form on 8 separate test documents, each containing only a single page and page 9 to submit in order to reduce it to which pages/fields were the cause of the problem.  On pages that have no radio buttons, only the required text responses, I don't have the message.  Only on pages with the radio buttons is I got the message "at least a necessary field was empty", which brings me to ask me what Miss me about the production of the required radio buttons.  In the Help menu of option buttons, but not this aspect, I found a lot, and maybe I went beside her and would appreciate any help, thanks.

    Hello

    Radio buttons can sometimes give wrong when it is set to required: see here Re: required Radio button red color in a dynamic form

    One thing to make sure is each Yes/No is a group of radio exclusion and the exclusion of the radio has the required value:

    Good luck

    Niall

Maybe you are looking for