My Foolish Question

Hi People I am using a cfffunction and returntype is array.
I am using on my cfm page and try to get the values i am
getting error:
<cfinvoke component="showall" method="getDBTableStruct"
tablename="#url.table#" returnvariable="tableData"/>
<cfdump var="#tableData#">
<cfset wibble = getDBTableStruct() />
<cfoutput>#wibble[ColumnName]#</cfoutput>
</cfif>
The web site you are accessing has experienced an unexpected
error.
Please contact the website administrator.
The following information is meant for the website developer
for debugging purposes.
Error Occurred While Processing Request
Variable GETDBTABLESTRUCT is undefined.
The error occurred in C:\Inetpub\wwwroot\p1\index.cfm: line
117
115 : <cfinvoke component="showall"
method="getDBTableStruct" tablename="#url.table#"
returnvariable="tableData"/>
116 : <cfdump var="#tableData#">
117 : <cfset wibble = getDBTableStruct() />
118 : <cfoutput>#wibble[ColumnName]#</cfoutput>
119 : </cfif>
Ok When I Dump i get The Following:
array
1
struct
AllowNulls false
CF_DataType CF_SQL_INTEGER
ColumnName ban_id
Increment true
PrimaryKey true
Special [empty string]
2
struct
AllowNulls true
CF_DataType CF_SQL_VARCHAR
ColumnName ban_title
Increment false
PrimaryKey false
Special [empty string]
length 255
3
struct
AllowNulls true
CF_DataType CF_SQL_VARCHAR
ColumnName ban_img
Increment false
PrimaryKey false
Special [empty string]
length 255
4
struct
AllowNulls true
CF_DataType CF_SQL_LONGVARCHAR
ColumnName ban_link
Increment false
PrimaryKey false
Special [empty string]
5
struct
AllowNulls true
CF_DataType CF_SQL_INTEGER
ColumnName ban_hits
Increment false
PrimaryKey false
Special [empty string]
6
struct
AllowNulls true
CF_DataType CF_SQL_VARCHAR
ColumnName ban_active
Increment false
PrimaryKey false
Special [empty string]
length 255

Ok My CFC is returning this:
<cffunction name="getDBTableStruct" access="public"
returntype="array" output="no" hint="I return the structure of the
given table in the database.">
<cfargument name="tablename" type="string"
required="yes">
<cfscript>
var qRawFetch = 0;
var arrStructure = 0;
var tmpStruct = StructNew();
var i = 0;
var PrimaryKeys = 0;
var TableData = ArrayNew(1);
</cfscript>
<cfset qRawFetch = runSQL("SELECT TOP 1 * FROM
#arguments.tablename#")>
<cfset arrStructure = getMetaData(qRawFetch)>
<cfif isArray(arrStructure)>
<cfloop index="i" from="1" to="#ArrayLen(arrStructure)#"
step="1">
<cfset tmpStruct = StructNew()>
<cfset tmpStruct["ColumnName"] = arrStructure
.Name>
<cfset tmpStruct["CF_DataType"] =
getCFDataType(arrStructure.TypeName)>
<!--- %% Ugly guess --->
<cfif arrStructure
.TypeName eq "COUNTER" OR ( i eq 1 AND arrStructure.TypeName
eq "INT" AND Right(arrStructure
.Name,2) eq "ID" )>
<cfset tmpStruct["PrimaryKey"] = true>
<cfset tmpStruct["Increment"] = true>
<cfset tmpStruct["AllowNulls"] = false>
<cfelse>
<cfset tmpStruct["PrimaryKey"] = false>
<cfset tmpStruct["Increment"] = false>
<cfset tmpStruct["AllowNulls"] = true>
</cfif>
<!--- %% Ugly guess --->
<cfif isStringType(arrStructure.TypeName) AND NOT
tmpStruct["CF_DataType"] eq "CF_SQL_LONGVARCHAR">
<cfset tmpStruct["length"] = 255>
</cfif>
<cfset tmpStruct["Special"] = "">
<cfif Len(tmpStruct.CF_DataType)>
<cfset ArrayAppend(TableData,StructCopy(tmpStruct))>
</cfif>
</cfloop>
<cfelse>
<cfthrow message="Error Found."
detail="NoMSAccesSupport">
</cfif>
<cfreturn TableData>
</cffunction>

Similar Messages

  • Is it a foolish question or   a real bug?

    i want make the renderd property of input components (such as h:inputText) to be dynamic by binding it with a boolean variable of backingbean ,but i find that all input components can not save the sates when they are not rendered at the first time.
    for example
    the following is my jsp source code:
    <f:view>
    <h:form>
    <h:SelectBooleanCheckbox id="checkbox1" value="#{myBean.renderedText}" /><br>
    <h:commandButton id="button1" value="submit" /><br>
    <h:inputText id="input1" value="#{myBean.text}" rendered="#{myBean.renderedText}" /> <br>
    <h:commandButton id="button2" value="submitText" action="#{myBean.doSubmitText}"http://forum.java.sun.com/help.jspa?sec=formatting
    Formatting tips
    rendered="#{myBean.renderedText}" /><br>
    </h:form>
    <f:view>
    the following is myBean source code:
    public class MyBean
    private boolean renderedText=false;
    private String text="input me ";
    public String getText()
    return this.text;
    public void setText(_text)
    this.text=_text;
    public boolean getRenderedText()
    return this.renderedText;
    public void setRenderedText(boolean _renderedText)
    this.renderedText=_renderedText;
    public doSubmitText()
    System.out.println(this.renderedText);
    when the page was rendered first time ,we can not see the input1 and button2 of course .
    then we clicked checkbox1 to make it checked then clicked button1,we can see the input1 and button2 now,
    but we modified the data of input1 then clicked button2, the text attribute of myBean was not changed,and
    the doSubmitText method was not invoked.

    I don't understand your question.
    You will have a separate opt file for the packages, not the applets. You can also have the same applet multiple times, but using different instance AID values all in the same opt.

  • One foolish question

    Hi JSF,
    Where could I get the source code of JSF?
    thanks!

    http://www.sun.com/software/communitysource/jsf/download.xml

  • Question regarding encryption and decryption

    Hi all,
    I am doing a authentication project. In which I do encryption and decryption (AES 128 bit) in two different methods. At the time of encryption (for eg a text file ), I store the key in dat file (key.dat). And at the time of decryption, I read the key.dat and extract the key and do the decryption. This works fine. No problem with that.
    But the problem is, that the client requires that
    "No encryption keys will be written to the hard drive."
    I have to store the key somewhere to decrypt the encrypted file. Right. Without storing the key, I cannot decrypt.
    The question is (though its a foolish question) with out storing the key, can i encrypt and decrypt (in two different methods) the text file ?
    Thank You.
    Regards,
    Jay

    Hi Grant,
    Thanks for the reply. ( I am the one whom you helped to solve the encryption and decryption problem using AES )
    I will give you an overview of my project. Its an Two Factor Authentication using an USB Flash Drive.
    Admin Side : ( currently developing this part )
    Through an CPP executable file ( writen by John Hyde USB By Example author), I retrive the Manufature ID, Product ID and Serial number of the USB Flash Drive from a text file which is generated when the executable file is executed.
    From my Java application, i retrive the Manufature ID, Product ID and Serial number.The admin (through an dialog box ) enters an usernam and password . All this information ( Manufature ID, Product ID, Serial number , username and password ) using AES 128 bit encryption i write these information to encrypted file in the USB Flash drive along with the the encryption key used at the time of decryption.
    User Side: ( not yet devleoped )
    When the user plugs in the USB Flash drive, an dialog box is shown where the user enters the username and password ( assigned earlier by the admin). This username and password is checked along with the Manufature ID, Product ID and Serial number encrypted earlier and stored in the USB Flash drive. If username password ,Manufature ID, Product ID and Serial number (retrieved again by exectuing the CPP excutable file ) are correct the user is granted access.
    Whats your suggestion reagrading of storing the encryption key? I have to store the key in the USB Flash drive along with the encrypted file. But then wont an intruder (for eg ) if he gets the key and decrypt the file ?
    Client has mentioned to use AES 128 Bit encryption.
    Thank You.
    Regards,
    Jay.

  • Get component Id in managed bean

    Hi experts,
    I am going to ask a foolish question, but since i'm a newbie i hope you'll forgive me .
    I am using JDev version: 11.1.2.3.0. My question is: Is it possible to get a component id inside a managed bean? By components i mean, buttons or menu items. The scenario i would like to create is this:
    I am using JasperReports to generate some required reports. I would like to do something like having a Menu with different items. By clicking each one of them, set a string in the managed bean i'm using to generate the reports (actually the string would be the name of the jrxml file i am going to load). And this string would get it's value based on which menu item is selected.
    Is it possible to do such a thing? Or may be some other way would be more suitable?
    Thank you in advance!

    MenuRenderer  is a class that renders the current value of
      UISelectOne  or  UISelectMany  component as a list of
       menu options and makes use of getId.
    https://www.google.ca/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&ved=0CCwQFjAA&url=http%3A%2F%2Fjava.net%2Fprojects%2Fmoja…

  • Clean install and selective restores from Time Machine?

    Hi, all.
    Just purchased a 13-inch non-Retina MBP last week. Swaped out the 500GB drive for a 1TB, upgraded to Mavericks and transfered all my data from a 2006-era white iMac running Leopard via Time Machine. I've had some connectivity issues (logins at app store failing, server verification errors in iTunes, and not being able launch the software that allows the folks at Apple to view my screen via chat) and after a few nights on the phone and in chat with Apple support, they've recommended booting in recovery since nothing else is working, wiping the hard drive, and performing a clean install of Mavericks. The assumption is that something from the migration is causing the issue.
    I've created a fresh Time Machine backup on an external 1TB drive, and I'm mainly concerned with moving over the documents, Lightroom 4 library, iPhoto library, and iTunes library.Will I just be able to enter Time Machine and restore those or, failing that, manually drag and drop them into the user library? Are there any user permissions I need to be concerned about?
    Thanks in advance!

    Thanks, I figured as much. Another foolish question: should I be concerned about user permissions if I'm starting over? Can I transfer the users (there are only two, me and my wife) over from Time Machine? Trying to start as fresh as possible since no one can figure out what's causing the connectivity issues.

  • How to best open a 35 mm slide RAW scan with 4000 dpi in Camera RAW CS5?

    I have, at present, set Camera Raw to open files as ProPhoto RGB and as 360 dpi. I want to keep all options open for later use of the files (for albums or enlargements). How do I get the best results so that I do not diminish the quality obtained in the scanning process (where I try to use only ICE and to leave all other editing to PS later - I know that the changes made by ICE are permanent so that I already here do not have a real RAW - but it is my impression that the choice of RAW over TIFF in the scanning is still worth it).
    I have also some older scans but these are TIFF's, also 4000 dpi but only 8 bit. I want to get the best result from both types of files.
    I plan to perform all edits before I finally save files in various print sizes. I am still quite scared as to make mistakes when resizing so that I get an inferior quality in the new size.  I, of course, keep a copy of the original scans safe and unedited.
    I am also in doubt as to wether I should go directly into PS or via Camera Raw with the scans.
    Excuse these foolish questions from a grandmother who is a complete newbie as to film scanning and still quite "green" as to PS.

    Thank you. So far I have not scanned as RAW files but felt persuaded that I should choose that format. Especially after having read the arguments in Sascha Steihoffs "Scanning Negatives and slides".
    I went back and found a new edition of the book where it has been added that in PS (the book is from 2009 and refers to CS3) ACR cannot open the scanned nef's, only nef files from a camera. It seems that you have to use Nikons own editing software for opening these files. I tried to ask Nikon if the scanned nef's could be opened in the latest editions of PS but got the answer that they "did not know".
    So I have probably to stick to the tif's. Pity! Unless CS5 or 6 can open them of course. I wish I could get an answer from Adobe concerning that. They should be interested in encouraging people to use their software instead of Nikon software.
    I probably should still give it try but that would probably mean that I should do it without the ICE in the hardware to get a real nef RAW (or maybe it still is not a real RAW).

  • PS CS with color space set to Prophoto RGB - will ACR change embedded profiles?

    Probably a foolish question but my problem is that I have a mixture of files:
    My own files (all initially RAW (NEF) which I import into ACR as 16 bit Prophoto RGB ).
    Files from family members and from slide scanning performed elsewhere - they are in 2 groups:
    The first of these from elsewhere acquired files were all JPEGs that I converted to Tiffs in Bridge before setting out to edit them-- all unfortunately 8bit and sRGB.
    The scanned files were scanned as tiffs but also 8bit and sRGB.
    My normal procedure is that I in ACR I have set the files to 16 bit and Prophoto RGB. In PS the same but also to preserve embedded profiles. I have the impression that working with the "foreign" files in 16 bit does give me more room for editing but that I should continue with the embedded profiles.
    Is there a way to ensure that the color profiles are not changed in ACR even if the line in the middle below says 16 bit Prophoto RGB (I have PS CS5). I would hate to have to change this line each time I view a file in ACR. I would hate more to loose the editing facilities in ACR as these acquired files do need som special care before they are mixed with my own in our family albums. I prefer the 16 bit Prophoto RGB option for my own files as I like to play with them - i.e. apart from including them in Photo Albums.
    I do see that a logical way is to process all the acquired files before going to my own files but it is so much more practical for me to work with a mixture of the files sorted chronologically - a year or month at the time.
    I would even consider getting an upgrade to CS6 if this version could help me.
    Can someone enligthen me?
    Thanks, Git

    Hi, Tom.
    The real issue here is getting accurate color. You can't get accurate color by setting your monitor profile to sRGB. sRGB is a virtual color space that doesn't describe the exact color gamut of any physical device. But, in order to display sRGB or any color space accurately, you need to get a characterization of your monitor.
    Here is an AWESOME way to get access to a colorimeter: http://www.lensrentals.com/rent/pantone-huey-colorimeter Looks like for $32 you can rent this for a week. Go in on this with a friend and profile both of your monitors and hardly pay a thing. If you have a reasonably good quality LCD monitor, this custom profile you make will be fairly accurate for many months. At the very least, this is way more accurate than having no regular calibration at all.
    Hope this helps!
    Bret

  • How to check MAxl is running properly or not

    Hi All,
    i am working on ASO cube which has to implement Automation for dimension building and data loading. I am unable to execute even a single sample systax with out error. Is there any specific method to use Maxl in ASO cube or any precautions to be taken in ASO for Maxl scripts.
    I don't know it is a foolish question or not to ask like "how to check the Maxl is working properly or not" bcoz it is raising me doubt by raising error for sample script also.
    please help me out from this issue .
    Regards

    Can you log into Essbase through MaxL interactively.
    If so, can you do it from a script? Something like:
    login username password on servername ;
    exit ;
    If you can't do the first, yup, your MaxL client is hosed or you don't have a valid username/password. Or you don't know the servername.
    If you can't do the latter, perhaps your client (could be the server itself, if you're running it from there) has a pathing issue when running batch files.
    If both work, it is a syntax issue. Now you're just faced with your mistake(s). :) But at least you don't have to spin wheels trying to figure out if MaxL is working or not.
    Regards,
    Cameron Lackpour
    P.S. You might want to try using the MaxL editor in EAS and see if your login code works there. I believe (not sure, but I think so) that EAS has its own flavor of MaxL as I know you can run code there without having the Essbase client installed on a local machine.

  • Nervous about terminal.

    Hello there Mac community.  I just have a quick question that I would like to have resolved.  You see, I am a little nervous about entering terminal commands.  I most likely shouldn't be, but I just love my new iMac so much that I'd hate to mess it up some how.  Please take the time to answer the following questions.  Thanks!
    1.  Have you used terminal?  Has the service made your user experience better, or worse?
    2.  Are there any commands that I should keep away from?  What are the risks associated with entering commands?
    3..  Can you reverse commands?  If so, is it easy to do or more complicated and potentially costly?
    As stated above, these are most likely foolish questions.  However, I would appreciate any assistance I get as no other people seem to have the answer.
    Thanks in advance!

    Hi noahjec and welcome to Apple Support Communities!
    You should be aware that your questions are very much like a poll, and polling is not allowed under the Terms of Use of these forums. In the spirit that you seem to be asking, however, I will try to answer your questions.
    1.  Have you used terminal?  Has the service made your user experience better, or worse?
    Yes. There are some things that it is not possible to do easily without using Terminal and others that Terminal makes much easier if you know what you are doing.
    2.  Are there any commands that I should keep away from?  What are the risks associated with entering commands?
    The rm command (remove file or folder) comes to mind here. You have to authenticate with password in order to use it, but it is quite possible for you to immediately delete files irretrieveably using this command. Be sure you really want to do this and do not mistype file paths. A good habit is to not type file paths but let the Terminal app fill them in by dragging and dropping the item you want to use/delete/move onto the Terminal window. It then fills in the path.
    3..  Can you reverse commands?  If so, is it easy to do or more complicated and potentially costly?
    Some you can, some you cannot. It is best to treat your commands as if they are irreversible. And have a backup.
    There are some great books available for Terminal. If you do a search in amazon.com for Mac OS X Unix you will come up with a number of useful titles.
    Best of luck.

  • Contents of 1z0-051 exam in all-in-one book?

    Hello everyone,
    I am new at this community and I am thinking off doing de OCA exam. For this reason I have recently bought the "oca/ocp oracle database 11g all-in-one exam guide" but I don't know which part refers to de SQL Fundamentals (1z0-051). It is possble to know what chapters refers to each exam 1Z0-051, 1Z0-052, 1Z0-053 ? Maybe it is a foolish question but I have been looking for the answer unsuccessfully for hours.
    Thank you very much in advance,
    Ferran

    978037 wrote:
    Hello everyone,
    I am new at this community and I am thinking off doing de OCA exam. For this reason I have recently bought the "oca/ocp oracle database 11g all-in-one exam guide" but I don't know which part refers to de SQL Fundamentals (1z0-051). It is possble to know what chapters refers to each exam 1Z0-051, 1Z0-052, 1Z0-053 ? Maybe it is a foolish question but I have been looking for the answer unsuccessfully for hours.
    Thank you very much in advance,
    FerranWelcome.
    It is really important to find the authorative source for the exam topics:
    Goto:
    http://certification.oracle.com
    .... and look up those exams and their associated topics there. Exam topics can sometimes change after books are published, so it is important to double check on Oracle's Website.
    I've not looked at that combined guide myself, but the first part will realate to the SQL topics of 1z0-051. The switch to the database archecture of part 2 should be obvious. The chapters tend to align well with the topics on the exam website.
    Edited by: bigdelboy on 20-Dec-2012 06:42 re: but the first part will realate to the SQL topics of 1z0-051 .... okay I can see from Matthews answer below it doesn't ... well teaches me not to guess!

  • Can I get rid of FCE 1.0.1 ?

    Forgive me if this is a foolish question but I was surprised when I upgraded to FCE 3.5 my FCE 1.0.1 remained in my applications folder. I doubt I will ever run that program since it's PowerPC so can I uninstall it without affecting my new version? Is it a simple matter of dragging it to the trashcan? Thanks for any help.
    iMac Intel 2.16 Core 2 Duo 2 GB   Mac OS X (10.4.10)  

    That's exactly what I thought an "upgrade" was, some additional code was incorporated into an existing package. Do you think it was the move to a Universal app that forced them to completly scrap the original version? At any rate thanks for the prompt response. I'll now free up some space without fear.
    iMac Intel 2.16 Core 2 Duo 2 GB   Mac OS X (10.4.10)  

  • Can only move 8 clips from right hand pane to lower viewer

    I'm new to iMac so forgive what might be a foolish question.
    I'm trying to create my first video using iMovie. I've managed to import the video just fine (45 clips) but when I try to drag individual clips to the lower viewer, I can only put ~8 clips in the viewer. I'm in 'simple' not timeline mode.
    Why can't I drag more than 8 clips to the lower viewer?
    Btw, I'm not a novice at video editing, having used Premier Elements and Pinnacle Studio in <Gasp!> Windows XP for a few years now. <G>
    Any help would be appreciated. Thanks! Ted

    Patience, my friend, patience.
    Just let the clip stay still for a second on the timeline. iMovie will make space for it and THEN you can let go of the mouse button.

  • Creation of separate database

    Hello friends,
    I've to create a new database like production but don't know how do I proceed!
    The server detail is as under:
    EBS 12.1.1
    Redhat Linux 64bit
    Vision database
    The partition detail is as under :
    Filesystem     -     Size      -     Used      -     Avail      -     Use% -     Mounted on
    /dev/sda5     -     15G      -     2.5G -      12G      -     18%      -     /
    /dev/sda7     -     107G -      40G -     62G      -     39%      -     /PROD
    /dev/sda3     -     54G -     47G      -     3.6G -     93%      -     /stage
    /dev/sda2     -     262G -     232G -      17G      -     94%      -     /VISION
    /dev/sda1     -     99M -     12M -     83M      -     13%      -     /boot
    tmpfs          -     3.9G -     2.8M -     3.9G -      1%      -     /dev/shm
    Memory details:
    Total Memory : 7974
    Used Memory : 7893
    -/+ buffers/cache: 1773 / 6200
    Swap: 16386, used: 0
    SGA size:
    sga_max_size: 4G
    sga_target: 4G
    It seems I don't have much space. Further I can't delete vision as we use it for demo purpose.
    Please help.
    Regards
    Aneel

    1) how much space will be required to create new database?Are you installing a new database or cloning an existing one?
    If you are cloning, you need the same size of the source database.
    If you are installing, please see http://docs.oracle.com/cd/E18727_01/doc.121/e12842/T422699i4773.htm#3708195
    2) If I've space upto 450 GB and I re-install OS can I've 2 instances (Vision & Prod) then?No.
    3) Can I delete some unusable tablespaces from Vision database to make some space? (sorry if it sound a foolish question - I'm newbie :P )Yes, if it is possible and you need to resize the existing tablespaces.
    Thanks,
    Hussein

  • What about ISO/IEC-7816 file structure, Is this concept is not in jcard.

    Hello all,
    I read out ISO/IEC 7816-4 and it tell about MF , DF, EF files which are used in smart card, i am using java card.
    I am reading java card but i did not read about these file structure,
    according to iso/iec-7816-4 , A4 is a INS for SELECT FILE command. In scosta if i want to save name in smart card then i do
    *1*- create MF
    *2*-create Df ( INS- E0)
    *3*- create ef with record oriented structure(INS-E0)
    *4* run write record command (*INS-D2*)
    and now i can read this name whenever i want by using read record command.
    I only want to know that if i want to record several names in java card (in java card eeprom ) then which line i need to write inside the PROCESS () method of applet.
    -----------how i permanent save in smart card memory?
    -----------how i read the data from perticular location or the location where name exist?
    Thanks in advance..............
    Edited by: rohit pathak on Feb 9, 2012 10:41 PM
    Edited by: rohit pathak on Feb 9, 2012 10:42 PM

    if (selectingApplet())
                   return;
    // this method  is use to make a difference between select applet
    //apdu { have to call it before any apdu pass to card, this apdu is isolate to process method }
    //and other apdu { here class and INS is for your choice,
    // it depends how u implement it in process().amazing Umer, atleast for me really it's gr8 to have you here..
    you know i am a beginner so it is sure that there would be a no. of question in my mind now!!!!!and I want to share with you for your answer as well try to get it by my own, u already help me a lot , and i would
    be always thankful for this. I am posting some questions here, if you feel it is genuine question , pls reply and if
    you think i am bothering you to ask such a foolish question , u dont!!!!
    QUESTION -1
    As I know about architecture of any application is -
                    //normal java software                          java card                                  java card
                      //  1                                               2                                      3
    1-            application program                        host application                           host application
    2-                     JVM                                   Applets                                       Applets
    3-              operating system                JCRE(which contain all classes, JVM ....)                 JCRE(act as a O.S too)
    4                    hardware                              Operating system                                 H/W
    5                                                                        hardwareWhat do u think- case 2 is right? or 3 is!!!!!!!!!!!
    I think - case 3 is right!!!!
    As i study from several sources , JCRE is complete package - it behaves as a operation system and use the functionality of component it contain. I also think if i will purchase a java card from any vendor , it would have JCRE inside it (means everthing inside it,), i only need to develop the applet according to my requirement and install it by on card installer program
    QUESTION 2- what is the advantage of java card.?
    // I think.
    as i read out , i got the line that it is platform independent and support multiple application. applicaton point of
    view , I am agree but how it is platfrom independent. if we use java card for smart card development, then
    i will purchase Java card from differnt vendor , all will provide me card with supported jcre inside it, so why
    this is advantage here?
    // in case of window based application , it really make sense  because if i will make any window application with java
    // i can run it in windows , linux , unix and most of os flavours, here i can see the beauty of java language.
    Clear me this and add some other java card advantages, which make java card goodquestion 3-
    Now I am capaple to make simple applets, so I want to check the entire java card process atleast once before
    going in deep of something, I am thinking to implement prepaid card concept , i made it applet for it ,it will
    contain a page with 2 text box ( 1- for recharge 2- for money deduction ) and two button , with button click i
    want to select the applet and want to pass the apdu.
    ( a) how i can make host window application ? (i think awt will work for me? , *
    i never make any java window application yet) *
    ( b) still i dont have any java card , i want to make it by using simulator, is it possible?
      (c) in this scenario what framework i need to study Ex. Import javacard.framework.* for making
    applet or from where i need to start.regards:
    rohit pathak
    Edited by: rohit pathak on Feb 9, 2012 10:39 PM

Maybe you are looking for

  • I would like to use a LED monitor with my macbook.

    I have a 2009  13' macbook and just bought a LED LG monitor. What cable can I use to connect it to my computer. The LED came with a 15pin male cable on both ends.

  • Delete bootcamp partitions

    Hi. How i can remove bootcamp partitions?. I have three partitions: Macintosh, linux swap, and ms partition (is debian really). I need the disk space for Macintosh partition. Thanks in advance. Félix.

  • Why is Firfox no longer asking me to save any website passwords?

    When I upgraded to Firefox 5.0.1 the feature asking if I wanted passwords saved stopped. Is there a way to reactivate this option because I really liked having the option to save passwords?

  • Will Mainstage 3 work on OSX 10.7.5?

    Wanting to try Mainstage for live guitar work. Will Mainstage 3 work on my mac, I can't uphgrade because of work programs that require 10.7.5

  • Routing Various Bus Groupings Into One Auxilliary

    Hello all. The title I guess says it all. Let's say I have 10 tracks - tracks 1-5 bussed to aux 1, and tracks 6-10 bussed to aux 2. What exactly do I do if I want to have both of these bus groupings routed to ONE auxilliary? Like bus grouping 1-5 AND