OWA_COOKIE anyone using it with Forms 6i?

Help please!!!
I am trying to access cookie information from the browser within an Oracle Form (6i). Looking at the PL/SQL programming guide it gives a nice example.
I enter the following into my trigger of the form:
DECLARE
v_Cookie OWA_COOKIE.COOKIE;
BEGIN
v_Cookie := OWA_COOKIE.GET('UserID');
IF (v_Cookie.num_vals > 0) THEN
:CONTROL.USERNAME := v_Cookie.vals(1);
ELSE
:CONTROL.USERNAME := 'No Cookie Found';
END IF;
END;
When I compile the form it says the the 'identifier OWA_COOKIE.COOKIE must be declared'
I can see the package when I select * from ALL_OBJECTS and
my DBA's say that I have access to it.
Please help....!
Joe

Help please!!!
I am trying to access cookie information from the browser within an Oracle Form (6i). Looking at the PL/SQL programming guide it gives a nice example.
I enter the following into my trigger of the form:
DECLARE
v_Cookie OWA_COOKIE.COOKIE;
BEGIN
v_Cookie := OWA_COOKIE.GET('UserID');
IF (v_Cookie.num_vals > 0) THEN
:CONTROL.USERNAME := v_Cookie.vals(1);
ELSE
:CONTROL.USERNAME := 'No Cookie Found';
END IF;
END;
When I compile the form it says the the 'identifier OWA_COOKIE.COOKIE must be declared'
I can see the package when I select * from ALL_OBJECTS and
my DBA's say that I have access to it.
Please help....!
Joe To run OWA packages in forms you need this before you call the procedure,
DECLARE
name_arr OWA.VC_ARR;
value_arr OWA.VC_ARR;
BEGIN
OWA.INIT_CGI_ENV(0, NAME_ARR, VALUE_ARR);
END;
BUT
I have been told by oracle that you cannot use OWA_COOKIE to set cookies within web Forms, tho they have as yet not given me an alternative to set cookies in a web form

Similar Messages

  • Has anyone used JAAS with WebLogic?

    Has anyone used JAAS with Weblogic? I was looking at their example, and I have a bunch of questions about it. Here goes:
    Basically the problem is this: the plug-in LoginModule model of JAAS used in WebLogic (with EJB Servers) seems to allow clients to falsely authenticate.
    Let me give you a little background on what brought me to this. You can find the WebLogic JAAS example (to which I refer below) in the pdf: http://e-docs.bea.com/wls/docs61/pdf/security.pdf . (I believe you want pages 64-74) WebLogic, I believe goes about this all wrong. They allow the client to use their own LoginModules, as well as CallBackHandlers. This is dangerous, as it allows them to get a reference (in the module) to the LoginContext's Subject and authenticate themselves (i.e. associate a Principal with the subject). As we know from JAAS, the way AccessController checks permissions is by looking at the Principal in the Subject and seeing if that Principal is granted the permission in the "policy" file (or by checking with the Policy class). What it does NOT do, is see if that Subject
    has the right to hold that Principal. Rather, it assumes the Subject is authenticated.
    So a user who is allowed to use their own Module (as WebLogic's example shows) could do something like:
    //THEIR LOGIN MODULE (SOME CODE CUT-OUT FOR BREVITY)
    public class BasicModule implements LoginModule
    private NameCallback strName;
    private PasswordCallback strPass;
    private CallbackHandler myCB;
    private Subject subj;
             //INITIALIZE THIS MODULE
               public void initialize(Subject subject, CallbackHandler callbackHandler, Map sharedState, Map options)
                      try
                           //SET SUBJECT
                             subj = subject;  //NOTE: THIS GIVES YOU REFERENCE
    TO LOGIN CONTEXT'S SUBJECT
                                                     // AND ALLOWS YOU TO PASS
    IT BACK TO THE LOGIN CONTEXT
                           //SET CALLBACKHANDLERS
                             strName = new NameCallback("Your Name: ");
                             strPass = new PasswordCallback("Password:", false);
                             Callback[] cb = { strName, strPass };
                           //HANDLE THE CALLBACKS
                             callbackHandler.handle(cb);
                      } catch (Exception e) { System.out.println(e); }
         //LOG THE USER IN
           public boolean login() throws LoginException
              //TEST TO SEE IF SUBJECT HOLDS ANYTHING YET
              System.out.println( "PRIOR TO AUTHENTICATION, SUBJECT HOLDS: " +
    subj.getPrincipals().size() + " Principals");
              //SUBJECT AUTHENTICATED - BECAUSE SUBJECT NOW HOLDS THE PRINCIPAL
               MyPrincipal m = new MyPrincipal("Admin");
               subj.getPrincipals().add(m);
               return true;
             public boolean commit() throws LoginException
                   return true;
        }(Sorry for all that code)
    I tested the above code, and it fully associates the Subject (and its principal) with the LoginContext. So my question is, where in the process (and code) can we put the LoginContext and Modules so that a client cannot
    do this? With the above example, there is no Security. (a call to: myLoginContext.getSubject().doAs(...) will work)
    I think the key here is to understand JAAS's plug-in security model to mean:
    (Below are my words)
    The point of JAAS is to allow an application to use different ways of authenticating without changing the application's code, but NOT to allow the user to authenticate however they want.
    In WebLogic's example, they unfortunately seem to have used the latter understanding, i.e. "allow the user to authenticate however they want."
    That, as I think I've shown, is not security. So how do we solve this? We need to put JAAS on the server side (with no direct JAAS client-side), and that includes the LoginModules as well as LoginContext. So for an EJB Server this means that the same internal permission
    checking code can be used regardless of whether a client connects through
    RMI/RMI-IIOP/JEREMIE (etc). It does NOT mean that the client gets to choose
    how they authenticate (except by choosing YOUR set ways).
    Before we even deal with a serialized subject, we need to see how JAAS can
    even be used on the back-end of an RMI (RMI-IIOP/JEREMIE) application.
    I think what needs to be done, is the client needs to have the stubs for our
    LoginModule, LoginContext, CallBackHandler, CallBacks. Then they can put
    their info into those, and everything is handled server-side. So they may
    not even need to send a Subject across anyways (but they may want to as
    well).
    Please let me know if anyone sees this problem too, or if I am just completely
    off track with this one. I think figuring out how to do JAAS as though
    everything were local, and then putting RMI (or whatever) on top is the
    first thing to tackle.

    Send this to:
    newsgroups.bea.com / security-group.

  • How To Use HttpUnit With FORM-based Authentication?

    I'm just getting started with HttpUnit, and I'm having a problem:
    How does one use HttpUnit with FORM-based authentication?
    I have a Web app where I specify a number of protected URLs. When a user tries to invoke one of them in a browser, Tomcat 4.1.30 brings up a login page that I specified and asks for a username and password. The values given by the user is checked against the tomcat-users.xml file. If the user is valid, Tomcat
    forwards the response from the original request. If invalid, an error page is displayed. The user is considered valid until either the session times out or the browser is closed.
    Does HttpUnit have to log into the app every time I run a test? How does it manage subsequent pages after login?

    I don't think that's true. HttpUnit is 100% Java and based on JUnit. HttpUnit has nothing to do with Apache, AFAIK. HttpUnit is for unit testing servlets and JSPs. Apache is a Web server. It doesn't have a servlet/JSP engine, unless you bolt Tomcat on top of it.
    Perhaps we're talking about two different packages. - %

  • Has anyone used FCE with a Sony hd-fx7 camcorder

    As above, has anyone used FCE with a Sony hd-fx7 camcorder. I have recently got one of these at work and am currently using imovie for basic edits, but would like to step up to FCE, has anyone any experience using the two.
    THanks

    Hi, have MacBookPro 2,16 GHz and Sony HDR-FX7 and FCE 3.5 (German PAL)
    - works good and fast
    - But better don't try to use an external monitor on DVI connection
    my system slows down if srubbing time line
    - couldn't find out yet why

  • Has anyone used CORBA with LabVIEW?

    Has anyone used CORBA with LabVIEW?

    Did you have any success with this?  I'm about to attempt the same thing and would rather not write intermediate functions in other other languages to do so...

  • Anyone use Flex with php for file upload? PHP Notice:  Undefined index:  Filedata

    My code works. It uploads the file and inputs the file name into a database, but I can't shake this php notice. I think php is looking for multipart/form-data from the HTML form tag.
    <form action="upload.php"  enctype="multipart/form-data"/>
    But I am using flex. The multipart/form-data info is sent as the second default argument of the upload() function. Does anyone have experience with this? Thanks.
    PHP Notice:  Undefined index:  Filedata
    $filename = $_FILES['Filedata']['name'];
    public function selectHandler(event:Event):void {
                    request = new URLRequest(UPLOAD_DIR);
                    try {
                        fileRef.upload(request);
                        textarea1.text = "Uploading " + fileRef.name + "...";
                    catch (error:Error) {
                        trace("Unable to upload file.");
                        textarea1.text += "\nUnable to upload file.";

    Hi, Thanks for your reply !
    Im not getting any errors Flex side, as i say i get a alert message saying the file has been uploaded so . .
    I am using a Wamp server on a windows machine, how do i check the file permissions on both the folder and the php file ?
    Also how do i debug a php file ?
    ANy help would be thankful !

  • Help!! Anyone use IIS4 with developer server

    Hello folks,
    My current setup
    NT Application server :
    1) Developer server6.0
    2) IIS4.0
    NT Oracle RDBMS
    1) Oracle8i
    The commumication between between the 2 servers using SQLNET has
    no problem. I tested it using the SCOTT/TIGER combination.
    But I need to setup the web connection where the browser is able
    to connect to the RDBMS server for queries and data retriever.
    I have tried using the form server, which I found the following
    documentations to connect to the RDBMS.
    ORACLE_HOME%\tools\devdem60\web\readme.htm
    Although the readme file is for OWA server, I attempted the
    configuration with IIS4.0. I understand the only different is
    the configuration of virtual directory. There is a part in
    configuration inthe readme file about editing "registry.dat"
    file. This file contain "funny" character which make it
    difficult to edit. Not sure if I have done it right.
    Nevertheless, the configuration process is done, but when I load
    the web page to execute the scripts, nothing appear on the
    screen on the web browser.
    1) Has anyone been successful in configuring this part of the
    scripts ? Please tell me wrong may has gone wrong.
    2) Has anyone use webDB to be the interface for web to database
    interface ?
    3) Is there any documented way beside CGI to get connect to the
    database via web ?
    I appreciate any pointers
    Thank you very much
    Regards
    Jason
    null

    Hello folks,
    My current setup
    NT Application server :
    1) Developer server6.0
    2) IIS4.0
    NT Oracle RDBMS
    1) Oracle8i
    The commumication between between the 2 servers using SQLNET has
    no problem. I tested it using the SCOTT/TIGER combination.
    But I need to setup the web connection where the browser is able
    to connect to the RDBMS server for queries and data retriever.
    I have tried using the form server, which I found the following
    documentations to connect to the RDBMS.
    ORACLE_HOME%\tools\devdem60\web\readme.htm
    Although the readme file is for OWA server, I attempted the
    configuration with IIS4.0. I understand the only different is
    the configuration of virtual directory. There is a part in
    configuration inthe readme file about editing "registry.dat"
    file. This file contain "funny" character which make it
    difficult to edit. Not sure if I have done it right.
    Nevertheless, the configuration process is done, but when I load
    the web page to execute the scripts, nothing appear on the
    screen on the web browser.
    1) Has anyone been successful in configuring this part of the
    scripts ? Please tell me wrong may has gone wrong.
    2) Has anyone use webDB to be the interface for web to database
    interface ?
    3) Is there any documented way beside CGI to get connect to the
    database via web ?
    I appreciate any pointers
    Thank you very much
    Regards
    Jason
    null

  • Waves 5.9.7.. anyone using it with L8?

    Hi,
    Trying to update my waves plugs (I have the musician II bundle and the NPP bundle). I noticed on their site it mentions the 5.9.7 update, that is also Leopard compatible. Is anyone using this new version of waves with Logic 8? I'm curious if I should wait on updating my plugs until all the kinks are out.
    Thanks;
    J.

    Does FCP still take 30-45 minutes to load the Waves bundle? In my experience, it would launch eventually on some version combinations...
    Even if you can use them in FCP, you would still see the numerical effects tab interface, instead of the nice skins you see in Logic. But at least you don't have to remember to drag them out of the plugins folder each time you want to launch FCP...
    I'm interested about this because I teach FCP at a school where Logic, Pro Tools, and the Waves bundles are on the same student workstations - We'd have to move those Waves files around at the start and end of every class.
    Message was edited by: Max Average

  • Anyone using facelets with ADF Faces and myfaces implementation?

    There is a Howto document for using facelets with ADF Faces, but it assumes you're using Sun's RI. I'd like to use the Apache myfaces implementation of JSF with ADF and facelets, but I keep getting a NoSuchElementException thrown when the pages are accessed.
    Here's the error and stack trace:
    09:15:18,790 INFO [STDOUT] Jan 19, 2006 9:15:18 AM com.sun.facelets.FaceletViewHandler handleRenderException
    SEVERE: Error Rendering View
    java.util.NoSuchElementException
         at java.util.AbstractList$Itr.next(AbstractList.java:426)
         at com.sun.facelets.FaceletViewHandler.encodeRecursive(FaceletViewHandler.java:520)
         at com.sun.facelets.FaceletViewHandler.renderView(FaceletViewHandler.java:450)
         at oracle.adfinternal.view.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:157)
         at org.apache.myfaces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:352)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:107)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
         at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._invokeDoFilter(AdfFacesFilterImpl.java:356)
         at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._doFilterImpl(AdfFacesFilterImpl.java:325)
         at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl.doFilter(AdfFacesFilterImpl.java:190)
         at oracle.adf.view.faces.webapp.AdfFacesFilter.doFilter(AdfFacesFilter.java:87)
    09:15:18,790 INFO [STDOUT] Jan 19, 2006 9:15:18 AM com.sun.facelets.FaceletViewHandler handleRenderException
    SEVERE: Took Type: java.io.PrintWriter
    I followed Adam Winer's instructions for incorporating ADF with facelets (using Sun's RI) and this works fine. But when I try to swap out the Sun RI for the Apache myfaces 1.1.1 implementation I get the exception.
    Here's the info from my web.xml:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app>
    <display-name>Facelets</display-name>
    <description>Facelets StarterKit</description>
    <context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>/WEB-INF/applicationContext*.xml</param-value>
    </context-param>
    <context-param>
    <param-name>facelets.REFRESH_PERIOD</param-name>
    <param-value>2</param-value>
    </context-param>
    <context-param>
    <param-name>facelets.DEVELOPMENT</param-name>
    <param-value>true</param-value>
    </context-param>
    <context-param>
    <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
    <param-value>client</param-value>
    </context-param>
         <context-param>
              <param-name>javax.faces.DEFAULT_SUFFIX</param-name>
              <param-value>.xhtml</param-value>
         </context-param>
         <context-param>
              <param-name>org.apache.myfaces.ALLOW_JAVASCRIPT</param-name>
              <param-value>true</param-value>
         </context-param>
         <context-param>
              <param-name>org.apache.myfaces.DETECT_JAVASCRIPT</param-name>
              <param-value>false</param-value>
         </context-param>
         <context-param>
              <param-name>org.apache.myfaces.PRETTY_HTML</param-name>
              <param-value>true</param-value>
         </context-param>
         <context-param>
    <param-name>oracle.adf.view.faces.ALTERNATE_VIEW_HANDLER</param-name>
         <param-value>com.sun.facelets.FaceletViewHandler</param-value>
         </context-param>
         <filter>
         <filter-name>adfFaces</filter-name>
         <filter-class>oracle.adf.view.faces.webapp.AdfFacesFilter</filter-class>
         </filter>
    <filter>
              <filter-name>MyFacesExtensionsFilter</filter-name>
              <filter-class>org.apache.myfaces.component.html.util.ExtensionsFilter</filter-class>
         <init-param>
         <param-name>maxFileSize</param-name>
         <param-value>20m</param-value>
         </init-param>
         </filter>
         <filter-mapping>
         <filter-name>adfFaces</filter-name>
         <servlet-name>faces</servlet-name>
         </filter-mapping>
         <filter-mapping>
              <filter-name>MyFacesExtensionsFilter</filter-name>
              <url-pattern>*.jsf</url-pattern>
         </filter-mapping>
    <filter-mapping>
    <filter-name>MyFacesExtensionsFilter</filter-name>
    <url-pattern>/faces/*</url-pattern>
    </filter-mapping>
         <listener>
              <listener-class>org.apache.myfaces.webapp.StartupServletContextListener</listener-class>
         </listener>
    <listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>
    <listener>
    <listener-class>net.sf.acegisecurity.ui.session.HttpSessionEventPublisher</listener-class>
    </listener>
    <!-- Faces Servlet -->
    <servlet>
    <servlet-name>faces</servlet-name>
    <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
    </servlet>
         <!-- resource loader servlet -->
         <servlet>
         <servlet-name>resources</servlet-name>
         <servlet-class>oracle.adf.view.faces.webapp.ResourceServlet</servlet-class>
         </servlet>
    <!-- Faces Servlet Mapping -->
    <servlet-mapping>
    <servlet-name>faces</servlet-name>
    <url-pattern>*.jsf</url-pattern>
    </servlet-mapping>
         <servlet-mapping>
         <servlet-name>faces</servlet-name>
         <url-pattern>/faces/*</url-pattern>
         </servlet-mapping>
         <servlet-mapping>
         <servlet-name>resources</servlet-name>
         <url-pattern>/adf/*</url-pattern>
         </servlet-mapping>
    </web-app>
    And in my faces-config.xml, I have set it to use the oracle.adf.core render kit:
    <?xml version='1.0' encoding='UTF-8'?>
    <!DOCTYPE faces-config PUBLIC
    "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.1//EN"
    "http://java.sun.com/dtd/web-facesconfig_1_1.dtd">
    <faces-config>
    <!-- from project setup -->
    <application>
    <!-- Use the ADF RenderKit -->
    <default-render-kit-id>
    oracle.adf.core
    </default-render-kit-id>
    <variable-resolver>org.springframework.web.jsf.DelegatingVariableResolver</variable-resolver>
    </application>
    <managed-bean>
         <managed-bean-name>keyTable</managed-bean-name>
         <managed-bean-class>example.KeyInfoNodeData</managed-bean-class>
         <managed-bean-scope>session</managed-bean-scope>
    </managed-bean>
    </faces-config>
    It doesn't seem to matter whether I use <jsp:root xmlns..> tags or <html xmlns ..> tags or whether I use the facelet ui tags or not. I've tried it with several of the ADF components. I always get the pretty facelets exception at the bottom of the page after the ADF component displays.
    Am I missing something? Has anyone gotten these three (ADF w/ myfaces impl and facelets) to work together properly?

    Hi,
    It is supposed to work fine and is working okay, in general, for me. I was setting up a test app yesterday and logged the steps in my blog (http://www.jroller.com/page/mjdenham). I think I logged everything.
    Regards
    Martin

  • Has anyone used GitHub with RH projects?

    Does anyone have any experience using GitHub with RoboHelp? I don't plan on setting it up to use the RoboHelp UI to check individual topics in and out. I just want to check out the entire project. If anyone has any experience with this, any tips would be greatly appreciated.
    Also, can anyone please tell me which files to exclude when checking in the project? I know you're supposed to exclude the .cpd file, but I think I read that there are others. Unfortunately, I can't find the thread where this was discussed.
    Thanks.

    As long as you check out/check in the entire project folder, you should
    be fine. For RoboHelp, it's then as if there was no source control.
    Exclude the CPD. Just include all the other files. (Don't forget to add
    new files to the source control when you create them.)
    Kind regards,
    Willam

  • Does anyone use Fedora with SATA

    Hi..
    Is anyone successfully using Fedora with SATA on a K7N2Delta with the fasttrack controller... If so please let me know cos i cant seemed to get my Baracuda to work as the booting drive...
    Thanks
    Rasika

    not many here
    try there
    http://www.nforcershq.com/forum/viewforum.php?f=29

  • Anyone Use GIT with LabVIEW?

    I think that the vast majority of people using SCM with LabVIEW are using either Perforce or SVN. Is there anyone who either uses or has used GIT, integrated into LabVIEW or not integrated? (I think there is a tool that uses the SVN protocol to talk to GIT)
    If so what were your experiences?
    =====================
    LabVIEW 2012

    There are several other posts on LAVA mentioning GIT (I think a lot where from FIRST). Post there (just link this post there as cross-post).
    I personally think, that my arguments don't speak against GIT. I've been using SVN and Hg(mercurial) without any integration in the LV IDE (although I have some integration for Hg yet).
    I forgot to mention: Using SVN you could use the plug-in from JKI. If your company invests the money, I'm sure it' a **bleep** good deal.
    All these tools perform very well, even if you don't have the native LV support (as VSS, Perforce).
    If you want a poll, you can check the NI-community features. Just setup one for SCC specifics. I was planning to do one myself, but I don't have the time. It' still not as good (from the quality and quantity of posts) a the forums, but has some cool features (wikis, polls). Advertise this on the most up-to-date posts on SCC issues. I and many others will drop in, I'm sure.
    Felix
    www.aescusoft.de
    My latest community nugget on producer/consumer design
    My current blog: A journey through uml

  • How to use SSO with Forms application

    Can somebody explain, how can we configure the SSO with Forms application.
    I have two application server instances. One for infrastructre and Other for application.
    Thanks

    Have a look at http://www.oracle.com/technology/products/forms/pdf/10g/frm10gsso.pdf and http://download-uk.oracle.com/docs/cd/B14099_19/web.1012/b14032/sso.htm#i1006721

  • Anyone using Jspell in Forms for spell checking?

    I have this working in our application using the jspellintegration.pll code from OTN.
    It is OK if the field to be checked is on the 'root' canvas, but not if the field is on a popup window (dialog window) canvas. I register the field in WNFI trigger as per code sample, but Form crashes when I set the dictionary type (jspell.setdictionarytype).
    I have raised a TAR but been told that code samples from OTN are not supported!
    Has anyone got jspell working on fields on a popup canvas?
    Any help much appreciated!
    Regards, Adrian.

    Adrian,
    I don't know if this applies but I've had trouble getting the ImageButtonComplete PJC to work on popup canvases. This PJC puts an icon and text on a push button. We experience a crash when setting the icon for these PJC buttons on a popup canvas - works great normally.
    We finally had to set the icon for this PJC in a timer. I know this is not a recommended course of action but everything else fails. I tried doing sleep loops of varying length but the timer was the only mechanism that didn't crash.
    Try creating a timer (hope I'm insulting you with an example) where you have been doing your PJC set
    declare
    TM_ID TIMER;
    begin
    TM_ID:=CREATE_TIMER('ADRIAN_TIMER',1,NO_REPEAT);
    end;
    Then in a when-timer-expired trigger at the form level
    if GET_APPLICATION_PROPERTY(TIMER_NAME)='ADRIAN_TIMER' then
    do your PJC stuff
    I'm certain it is superb advice to avoid timers but you might try just to see if it works.
    Mick

  • Can anyone help me with forms please

    -----------------------------------source.cfm--------------------------------------------
    <cfquery name="myquery" datasaource="mydatasource">
    select studentid
    from tbl_student
    </cfquery>
    <cfform action="reciever.cfm" method="post">
    <cfoutput query="myquery">
    <cfinput name="#myquery.studentid#" type="text">
    </cfoutput>
    </cfform>
    ------------------------------------reciever.cfm------------------------------------------ ----
    <cfquery name="myquery2" datasource="mydatasource">
    select studentid,studentname
    from tbl_student
    </cfquery>
    <cfoutput query="myquery2">
    <cfif #form.#myquery2.studentid## eq
    #myquery2.studentname#>
    Student Found
    </cfif>
    </cfoutput>
    anyone can know how to do this? i just want to make the
    #form.# dynamic because the id is coming from database
    but seems it is not allowed... anyone can help me with this
    please?or anyone know alternative solution for it?thanks in
    advance.

    thanks again cf_dev2...
    but the <cfinput> that i'm trying to use was dynamic
    because it can be a textbox or a radio button or a checkbox.. i got
    no problem in assigning their name now.. because i string
    concatinated them like placing their specific id from the database
    into their name,for example
    <cfquery name="choices" datasource="mydatasource">
    select choiceid,choicetype
    from tbl_choice
    </cfquery>
    <cfform name="source.cfm" method="post">
    <cfoutput query="choices">
    <cfset choicename='multiplechoice'>
    <cfset choicenamed = choicename.concat(#choiceid#)>
    <cfif #choices.choicetype# eq 'multiplechoice'>
    <cfinput type="radiobutton" name="#choicenamed#">
    </cfif>
    </cfoutput>
    </cfform>
    the problem now is the way how can i receive it and compare
    it on the answer values from the database for the choices.

Maybe you are looking for

  • Sysfail status in SMQ1

    Hi I have sysfail error in tRFC and qRFC (SM58 and SMQ1) Error message with function module not found and exception raised .Scenario is from ECC-XI-Third party system. Checked for dumps in SAP XI where in I could get the following message " Error in

  • Apache attack

    I've posted this in the MacEnterprise forum. Here it is... I have a fully configured server at home (domain name, mail, OD, etc) in order to try and evaluate situations. I do not have a firewall. Last week, I noticed that the server's NIC was working

  • Email doesn't comes

    I click "forgot password" and choose to send email. But the e-mail doesn't comes to me. My sister have been created 3 IDs and forgotten. One of these three we remember and the e-mail doesn't comes.

  • Determine if commenting is allowed in PDF?

    Is there a way in Workbench to determine if a PDF allows commenting, short of trying to add a comment and catching the exception? I know I could test the properties of a PDF to see if it's a fillable form, but that is not the only case where commenti

  • CS4 Design Premium Education Version upgrade to CS6 Design & Web Premium

    Can I upgrade my CS4 Design Premium Education version to CS6 Design & Web Premium - likely an Education version also? What is the cost? What is the best upgrade option (not including CC)?