Assembling  Ejb SessionBean using Assemby Toolkit in WebSphere 5.1.

Hi,
I have problem in assembling my stateless session bean using Assembly Toolkit. As RAD v6.0 tool supports webservices and configured with IBM websphere application server 5.1 as prescribed by the customer, i chosed this option of using the tool.This tool does not include assembling & packaging ejb component into an .ear file. so has to b performed seperately by using the Assembly toolkit.Can any one find out the steps how to assemble my stateless session bean ejb component in this tool??
thank u

Hi,
I have problem in assembling my stateless session bean using Assembly Toolkit. As RAD v6.0 tool supports webservices and configured with IBM websphere application server 5.1 as prescribed by the customer, i chosed this option of using the tool.This tool does not include assembling & packaging ejb component into an .ear file. so has to b performed seperately by using the Assembly toolkit.Can any one find out the steps how to assemble my stateless session bean ejb component in this tool??
thank u

Similar Messages

  • Woes wiring up an ejb to use a database control

    first my question & then background:
    how do i wire up an ejb to use a database control jcx object so that the dbcontrol is instantiated at runtime?
    here's the scene:
    i created a java page flow from a database control & this works correctly, but i also need to be able to expose some of the functionality to another deployed application. this application, incidentally is not a workshop application; but rather is a hand-coded war.
    the first application (a workshop app) renders forms that use a database control to persist the data. it only uses one table & therefore, there is only one pojo. as i mentioned, this resides in web project & works correctly. i abstracted my dbcontrol & my pojo to a separate java controls project & built this as a library. the jpf still has no problems seeing the dbcontrol.
    there is a second application (a non workshop app) that needs to be able to use a method provided by the dbcontrol. i created an ejb in a third project in the first application that makes the call to dbcontrol in the exact same way that the jpf did. but i am finding, however, that the dbcontrol is null whenever the ejb makes the call to it's method.
    here's the more detailed design:
    i started with a database control. i mapped to my datasource, wrote out the sql for the methods i wanted & generated the pageflow from this. i rewrote the pageflow/jsps to suit my needs & everything just works. i did notice at the time that i generated the page flow that the dbcontrol was never instantiated. here is a snippet of the jpf:
    <pre>
    public class SiteAlertMessageManagementController extends PageFlowController {
    * This is the control used to generate this pageflow
    * @common:control
    private SiteAlertMessageDBControl dbControl;
    public Forward getCurrentMessage() {  
    SiteAlertMessage currentMessage = dbControl.getCurrentMessage();
    </pre>
    because SiteAlertMessageDBControl is an interface, i assumed that the '@common:control' annotation told weblogic what it needed to know in order to instantiate a runtime class of time SiteAlertMessageDBControl. because it just worked, i never questioned this.
    with the form read/write functionality complete, i assumed i could quickly wrap an ejb around the dbcontrol method & be done with it. i soon realized that i could not create an ejb inside a web project & that an ejb project would not have classpath visibility to my dbcontrol & pojo, so i put the dbcontrol & the pojo into a java control project & made a library out of this. i double checked that the web project could see the classes in the library & they could.
    so i created a separate ejb project that also could now see the classes in the library. i thought i was in the home stretch. i now have these projects in my first application:
    administrationControls, administrationWeb, & administrationEjb. i moved the administrationControls.jar & the administrationEjb.jar over to the WEB-INF/lib directory of my (remember: non-workshop) war & wired up the code to pull the bean off jndi tree to make the rmi call. but it didn't work. so i backtracked & created a new jsp back in my workshop project that would make the same rmi call so that i could use the debugger. with this as the background, here is my specific problem.
    what i noticed is that the ejb code itself works correctly. i guess i should show it as well.
    <pre>
    public class SiteAlertMessagesAPI extends GenericSessionBean implements SessionBean {
    * This is the control used to generate this pageflow
    * @common:control
    private SiteAlertMessageDBControl dbControl;
    public void ejbCreate() {
    // Your code here
    * @ejbgen:remote-method
    public SiteAlertMessage getCurrentMessage() throws Exception {
    SiteAlertMessage message = null;
    try {
    // dbControl is null here
    message = dbControl.getCurrentMessage();
    catch (Exception e) {
    e.printStackTrace();
    return message;
    </pre>
    the problem is that my dbControl object is null. what i did was cut & paste the code from the jpf over to my bean. like i stated earlier, i assumed that the annotation would tell weblogic to instantiate an instance. this was obviously not the case. incidentally, i rewrote my ejbCreate() method like this:
    <pre>
    public void ejbCreate() {
    // Your code here
    dbControl = new SiteAlertMessageDBControl();
    </pre>
    but workshop gives me a "error: this type is abstract and thus cannot be instantiated" warning.
    my question is: how do i wire up an ejb to use a database control jcx object so that the dbcontrol is instantiated at runtime?
    any light you could shed on this would be most appreciated. thanks,
    doug

    Hi,
    unfortunatly, it's not possible to use a control outside a control or a
    web service...
    Emmanuel
    douglas thomas a ?crit :
    first my question & then background:
    how do i wire up an ejb to use a database control jcx object so that the dbcontrol is instantiated at runtime?
    here's the scene:
    i created a java page flow from a database control & this works correctly, but i also need to be able to expose some of the functionality to another deployed application. this application, incidentally is not a workshop application; but rather is a hand-coded war.
    the first application (a workshop app) renders forms that use a database control to persist the data. it only uses one table & therefore, there is only one pojo. as i mentioned, this resides in web project & works correctly. i abstracted my dbcontrol & my pojo to a separate java controls project & built this as a library. the jpf still has no problems seeing the dbcontrol.
    there is a second application (a non workshop app) that needs to be able to use a method provided by the dbcontrol. i created an ejb in a third project in the first application that makes the call to dbcontrol in the exact same way that the jpf did. but i am finding, however, that the dbcontrol is null whenever the ejb makes the call to it's method.
    here's the more detailed design:
    i started with a database control. i mapped to my datasource, wrote out the sql for the methods i wanted & generated the pageflow from this. i rewrote the pageflow/jsps to suit my needs & everything just works. i did notice at the time that i generated the page flow that the dbcontrol was never instantiated. here is a snippet of the jpf:
    <pre>
    public class SiteAlertMessageManagementController extends PageFlowController {
    * This is the control used to generate this pageflow
    * @common:control
    private SiteAlertMessageDBControl dbControl;
    public Forward getCurrentMessage() {  
    SiteAlertMessage currentMessage = dbControl.getCurrentMessage();
    </pre>
    because SiteAlertMessageDBControl is an interface, i assumed that the '@common:control' annotation told weblogic what it needed to know in order to instantiate a runtime class of time SiteAlertMessageDBControl. because it just worked, i never questioned this.
    with the form read/write functionality complete, i assumed i could quickly wrap an ejb around the dbcontrol method & be done with it. i soon realized that i could not create an ejb inside a web project & that an ejb project would not have classpath visibility to my dbcontrol & pojo, so i put the dbcontrol & the pojo into a java control project & made a library out of this. i double checked that the web project could see the classes in the library & they could.
    so i created a separate ejb project that also could now see the classes in the library. i thought i was in the home stretch. i now have these projects in my first application:
    administrationControls, administrationWeb, & administrationEjb. i moved the administrationControls.jar & the administrationEjb.jar over to the WEB-INF/lib directory of my (remember: non-workshop) war & wired up the code to pull the bean off jndi tree to make the rmi call. but it didn't work. so i backtracked & created a new jsp back in my workshop project that would make the same rmi call so that i could use the debugger. with this as the background, here is my specific problem.
    what i noticed is that the ejb code itself works correctly. i guess i should show it as well.
    <pre>
    public class SiteAlertMessagesAPI extends GenericSessionBean implements SessionBean {
    * This is the control used to generate this pageflow
    * @common:control
    private SiteAlertMessageDBControl dbControl;
    public void ejbCreate() {
    // Your code here
    * @ejbgen:remote-method
    public SiteAlertMessage getCurrentMessage() throws Exception {
    SiteAlertMessage message = null;
    try {
    // dbControl is null here
    message = dbControl.getCurrentMessage();
    catch (Exception e) {
    e.printStackTrace();
    return message;
    </pre>
    the problem is that my dbControl object is null. what i did was cut & paste the code from the jpf over to my bean. like i stated earlier, i assumed that the annotation would tell weblogic to instantiate an instance. this was obviously not the case. incidentally, i rewrote my ejbCreate() method like this:
    <pre>
    public void ejbCreate() {
    // Your code here
    dbControl = new SiteAlertMessageDBControl();
    </pre>
    but workshop gives me a "error: this type is abstract and thus cannot be instantiated" warning.
    my question is: how do i wire up an ejb to use a database control jcx object so that the dbcontrol is instantiated at runtime?
    any light you could shed on this would be most appreciated. thanks,
    doug

  • Unable to generate proper LDTs using mks toolkit on windows server.

    Hi Experts,
    We have installed EBS12.0.3 on windows XP platforms and to access the unix commands we are using mks toolkit verison 9.2
    But we are not able to generate the correct ldt files for data migration.
    The fndload command used to download ldt for alert is as mentioned below:
    FNDLOAD apps/apps 0 Y DOWNLOAD %ALR_TOP%/patch/115/import/alr.lct FILE_NAME.ldt ALR_ALERTS APPLICATION_SHORT_NAME='PER' Alert_name='XX Alert Name'
    The generated ldt file is:
    # $Header$
    # dbdrv: exec fnd bin FNDLOAD bin &phase=daa+52 checkfile:~PROD:~PATH:~FILE &ui_apps 0 Y UPLOAD @ALR:patch/115/import/alr.lct @~PROD:~PATH/~FILE
    LANGUAGE = "US"
    LDRCONFIG = "alr.lct"
    #Source Database ODEV
    #RELEASE_NAME 12.1.3
    # -- Begin Entity Definitions --
    DEFINE ALR_ALERTS
    KEY APPLICATION_SHORT_NAME VARCHAR2(50)
    KEY ALERT_NAME VARCHAR2(50)
    CTX OWNER VARCHAR2(4000)
    BASE ALERT_CONDITION_TYPE VARCHAR2(1)
    BASE ENABLED_FLAG VARCHAR2(1)
    BASE START_DATE_ACTIVE VARCHAR2(25)
    BASE END_DATE_ACTIVE VARCHAR2(25)
    BASE TABLE_APPLICATION_SHORT_NAME VARCHAR2(50)
    BASE DESCRIPTION VARCHAR2(240)
    BASE FREQUENCY_TYPE VARCHAR2(1)
    BASE WEEKLY_CHECK_DAY VARCHAR2(3)
    BASE MONTHLY_CHECK_DAY_NUM VARCHAR2(50)
    BASE DAYS_BETWEEN_CHECKS VARCHAR2(50)
    BASE CHECK_BEGIN_DATE VARCHAR2(25)
    BASE DATE_LAST_CHECKED VARCHAR2(25)
    BASE INSERT_FLAG VARCHAR2(1)
    BASE UPDATE_FLAG VARCHAR2(1)
    BASE DELETE_FLAG VARCHAR2(1)
    BASE MAINTAIN_HISTORY_DAYS VARCHAR2(50)
    BASE CHECK_TIME VARCHAR2(50)
    BASE CHECK_START_TIME VARCHAR2(50)
    BASE CHECK_END_TIME VARCHAR2(50)
    BASE SECONDS_BETWEEN_CHECKS VARCHAR2(50)
    BASE CHECK_ONCE_DAILY_FLAG VARCHAR2(1)
    BASE SQL_STATEMENT_TEXT VARCHAR2(32000)
    BASE ONE_TIME_ONLY_FLAG VARCHAR2(50)
    BASE TABLE_NAME VARCHAR2(31)
    BASE LAST_UPDATE_DATE VARCHAR2(10)
    DEFINE ALR_RESPONSE_SETS
    KEY RESP_SET_NAME VARCHAR2(30)
    CTX OWNER VARCHAR2(4000)
    BASE DESCRIPTION VARCHAR2(240)
    BASE ENABLED_FLAG VARCHAR2(1)
    BASE END_DATE_ACTIVE VARCHAR2(25)
    BASE LAST_UPDATE_DATE VARCHAR2(10)
    DEFINE ALR_RESPONSE_VARIABLES
    KEY RESP_VAR_NAME VARCHAR2(30)
    CTX OWNER VARCHAR2(4000)
    BASE DESCRIPTION VARCHAR2(240)
    BASE TYPE VARCHAR2(1)
    BASE DEFAULT_VALUE VARCHAR2(240)
    BASE DATA_TYPE VARCHAR2(1)
    BASE DETAIL_MAX_LEN VARCHAR2(50)
    BASE LAST_UPDATE_DATE VARCHAR2(10)
    END ALR_RESPONSE_VARIABLES
    DEFINE ALR_RESPONSE_ACTIONS
    KEY RESPONSE_NAME VARCHAR2(240)
    KEY SEQUENCE VARCHAR2(50)
    CTX OWNER VARCHAR2(4000)
    BASE ACTION_NAME VARCHAR2(80)
    BASE ENABLED_FLAG VARCHAR2(1)
    BASE END_DATE_ACTIVE VARCHAR2(25)
    BASE LAST_UPDATE_DATE VARCHAR2(10)
    END ALR_RESPONSE_ACTIONS
    DEFINE ALR_VALID_RESPONSES
    KEY RESPONSE_NAME VARCHAR2(240)
    CTX OWNER VARCHAR2(4000)
    BASE TYPE VARCHAR2(1)
    BASE RESPONSE_TEXT VARCHAR2(32000)
    BASE LAST_UPDATE_DATE VARCHAR2(10)
    END ALR_VALID_RESPONSES
    END ALR_RESPONSE_SETS
    DEFINE ALR_ACTION_SETS
    KEY NAME VARCHAR2(50)
    CTX OWNER VARCHAR2(4000)
    BASE END_DATE_ACTIVE VARCHAR2(25)
    BASE ENABLED_FLAG VARCHAR2(1)
    BASE RECIPIENTS_VIEW_ONLY_FLAG VARCHAR2(1)
    BASE DESCRIPTION VARCHAR2(240)
    BASE SUPPRESS_FLAG VARCHAR2(1)
    BASE SUPPRESS_DAYS VARCHAR2(50)
    BASE SEQUENCE VARCHAR2(50)
    BASE LAST_UPDATE_DATE VARCHAR2(10)
    DEFINE ALR_ACTION_SET_MEMBERS
    CTX OWNER VARCHAR2(4000)
    BASE ACTION_NAME VARCHAR2(80)
    BASE GROUP_NAME VARCHAR2(80)
    BASE GROUP_TYPE VARCHAR2(1)
    BASE SEQUENCE VARCHAR2(50)
    BASE END_DATE_ACTIVE VARCHAR2(25)
    BASE ENABLED_FLAG VARCHAR2(1)
    BASE SUMMARY_THRESHOLD VARCHAR2(50)
    BASE ABORT_FLAG VARCHAR2(1)
    BASE ERROR_ACTION_SEQUENCE VARCHAR2(50)
    BASE LAST_UPDATE_DATE VARCHAR2(10)
    END ALR_ACTION_SET_MEMBERS
    DEFINE ALR_ACTION_SET_OUTPUTS
    KEY ACTION_SET_OUTPUT_NAME VARCHAR2(30)
    CTX OWNER VARCHAR2(4000)
    BASE SEQUENCE VARCHAR2(50)
    BASE SUPPRESS_FLAG VARCHAR2(1)
    BASE LAST_UPDATE_DATE VARCHAR2(10)
    END ALR_ACTION_SET_OUTPUTS
    DEFINE ALR_ACTION_SET_INPUTS
    KEY ACTION_SET_INPUT_NAME VARCHAR2(30)
    CTX OWNER VARCHAR2(4000)
    BASE VALUE VARCHAR2(240)
    BASE LAST_UPDATE_DATE VARCHAR2(10)
    END ALR_ACTION_SET_INPUTS
    END ALR_ACTION_SETS
    DEFINE ALR_ACTION_GROUPS
    KEY NAME VARCHAR2(80)
    KEY GROUP_TYPE VARCHAR2(1)
    CTX OWNER VARCHAR2(4000)
    BASE ACTION_GROUP_TYPE VARCHAR2(1)
    BASE END_DATE_ACTIVE VARCHAR2(25)
    BASE ENABLED_FLAG VARCHAR2(1)
    BASE DESCRIPTION VARCHAR2(240)
    BASE LAST_UPDATE_DATE VARCHAR2(10)
    DEFINE ALR_ACTION_GROUP_MEMBERS
    CTX OWNER VARCHAR2(4000)
    BASE ACTION_NAME VARCHAR2(80)
    BASE END_DATE_ACTIVE VARCHAR2(25)
    BASE ENABLED_FLAG VARCHAR2(1)
    BASE ACTION_LEVEL VARCHAR2(50)
    BASE LAST_UPDATE_DATE VARCHAR2(10)
    END ALR_ACTION_GROUP_MEMBERS
    END ALR_ACTION_GROUPS
    DEFINE ALR_ACTIONS
    KEY ACTION_NAME VARCHAR2(80)
    KEY ACTION_END_DATE_ACTIVE VARCHAR2(25)
    CTX OWNER VARCHAR2(4000)
    BASE ACTION_TYPE VARCHAR2(1)
    BASE ENABLED_FLAG VARCHAR2(1)
    BASE DESCRIPTION VARCHAR2(240)
    BASE ACTION_LEVEL_TYPE VARCHAR2(1)
    BASE DATE_LAST_EXECUTED VARCHAR2(25)
    BASE FILE_NAME VARCHAR2(240)
    BASE ARGUMENT_STRING VARCHAR2(240)
    BASE PROGRAM_APPLICATION_NAME VARCHAR2(50)
    BASE CONCURRENT_PROGRAM_NAME VARCHAR2(30)
    BASE LIST_APPLICATION_NAME VARCHAR2(50)
    BASE LIST_NAME VARCHAR2(30)
    BASE TO_RECIPIENTS VARCHAR2(240)
    BASE CC_RECIPIENTS VARCHAR2(240)
    BASE BCC_RECIPIENTS VARCHAR2(240)
    BASE PRINT_RECIPIENTS VARCHAR2(240)
    BASE PRINTER VARCHAR2(30)
    BASE SUBJECT VARCHAR2(240)
    BASE REPLY_TO VARCHAR2(240)
    BASE RESPONSE_SET_NAME VARCHAR2(30)
    BASE FOLLOW_UP_AFTER_DAYS VARCHAR2(50)
    BASE COLUMN_WRAP_FLAG VARCHAR2(1)
    BASE MAXIMUM_SUMMARY_MESSAGE_WIDTH VARCHAR2(50)
    BASE BODY VARCHAR2(2000)
    BASE VERSION_NUMBER VARCHAR2(50)
    BASE LAST_UPDATE_DATE VARCHAR2(10)
    DEFINE ALR_ACTION_OUTPUTS
    KEY ACTION_OUT_NAME VARCHAR2(30)
    CTX OWNER VARCHAR2(4000)
    BASE CRITICAL_FLAG VARCHAR2(1)
    BASE END_DATE_ACTIVE VARCHAR2(25)
    BASE LAST_UPDATE_DATE VARCHAR2(10)
    END ALR_ACTION_OUTPUTS
    END ALR_ACTIONS
    DEFINE ALR_ALERT_OUTPUTS
    KEY NAME VARCHAR2(30)
    CTX OWNER VARCHAR2(4000)
    BASE SEQUENCE VARCHAR2(50)
    BASE ENABLED_FLAG VARCHAR2(1)
    BASE START_DATE_ACTIVE VARCHAR2(25)
    BASE END_DATE_ACTIVE VARCHAR2(25)
    BASE TITLE VARCHAR2(240)
    BASE DETAIL_MAX_LEN VARCHAR2(50)
    BASE SUMMARY_MAX_LEN VARCHAR2(50)
    BASE DEFAULT_SUPPRESS_FLAG VARCHAR2(1)
    BASE FORMAT_MASK VARCHAR2(30)
    BASE LAST_UPDATE_DATE VARCHAR2(10)
    END ALR_ALERT_OUTPUTS
    DEFINE ALR_ALERT_INSTALLATIONS
    KEY ORACLE_USERNAME VARCHAR2(30)
    KEY DATA_GROUP_NAME VARCHAR2(240)
    CTX OWNER VARCHAR2(4000)
    BASE ENABLED_FLAG VARCHAR2(1)
    BASE LAST_UPDATE_DATE VARCHAR2(10)
    END ALR_ALERT_INSTALLATIONS
    DEFINE ALR_ALERT_INPUTS
    KEY NAME VARCHAR2(30)
    CTX OWNER VARCHAR2(4000)
    BASE ENABLED_FLAG VARCHAR2(1)
    BASE START_DATE_ACTIVE VARCHAR2(25)
    BASE END_DATE_ACTIVE VARCHAR2(25)
    BASE TITLE VARCHAR2(240)
    BASE DATA_TYPE VARCHAR2(1)
    BASE DEFAULT_VALUE VARCHAR2(240)
    BASE LAST_UPDATE_DATE VARCHAR2(10)
    END ALR_ALERT_INPUTS
    END ALR_ALERTS
    # -- End Entity Definitions --
    The same command works fine on linux using putty.
    Are We missing anything or the issue might be because of the windows platform.
    Please help us.
    Thanks & Regards,
    Priyank

    Hi,
    We have compared the LDt with the one generated with UNIX.
    We are completely missing the data definition of the object.
    Also today we tried to download LDT's for concurent program and request group, and request group Ldt is successfully downloaded but for concurrent program again it downloaded only entity definition and then failed to download object's data definition.
    the commands used were:
    Request group:
    FNDLOAD apps/apps 0 Y DOWNLOAD %FND_TOP%/patch/115/import/afcpreqg.lct File_Name.ldt REQUEST_GROUP REQUEST_GROUP_NAME="Global HRMS Reports & Process" APPLICATION_SHORT_NAME="PER" UNIT_NAME='Concurrent Program Short Name'
    Concurrent Program:
    FNDLOAD apps/apps 0 Y DOWNLOAD %FND_TOP%/patch/115/import/afcpprog.lct File_Name.ldt PROGRAM CONCURRENT_PROGRAM_NAME='Concurrent Program Short Name' APPLICATION_SHORT_NAME='PER'
    Thanks.

  • Once I create a html5 animation using the 'Toolkit for CreateJS' in flash, how do I then insert it..

    Once I create a html5 animation using the 'Toolkit for CreateJS' in flash, how do I then insert it into a webpage via Dreamweaver:
    This has been sending me round in circles for over a week - can anyone let me know how I do this or can they point me in the direction of a tutorial?  Thank you in advance - d;-)

    There are some tutorials on Adobe site:
    <http://www.adobe.com/devnet/createjs/articles/getting-started.html>
    <http://tv.adobe.com/watch/adc-presents/toolkit-for-createjs-part-1-designing-game-assets/>
    <http://tv.adobe.com/watch/adc-presents/toolkit-for-createjs-part-2-adding-game-interactivi ty/>
    The parts 1 and 2 are videos about 10 minutes each while the first link is a detailed article that you can print and practice on your machine.
    Hope this helps.

  • Selecting data on basis of string from ms access using database toolkit

    i want to read data from ms access in labview using database toolkit,but the problem is that i want to enter/select pipetype and other fields must be filled from the database with respect to pipe type intead of indexing(1,2,3,....)..kindly tell me how to make my selectio from database depending on pipe type.
    Attachments:
    database.zip ‏324 KB

    What is pipetype and what exactly do you mean by 'selecting data on basis of string'.

  • Possible to use mySQL, an open source program with Labview without the use of toolkit, just like we can do with MySQL with Command line.

    Hi i am trying to see if I can use sys exe .vi to execute Mysql commands. Is it possible to use without toolkit?
    regards,
    Clement

    Hi. I know there's a free toolkit that use ADO. But the problem is that my company not wish to splurge on the purchase of MS database server or  alikes, but prefer to run MySQL. So can I do the labview with the MYSQL only?
    Clement

  • How to create an EJB Module using Eclipse

    Hi,
    How do I create a single EJB module and make a deployable EJB jar? I already have a existing source directory that contains the java files and the deployment descriptor. I am using Eclipse Ganymede 3.4 and Weblogic 9.2.
    Thanks.
    Edited by: user10387019 on Dec 9, 2008 1:39 PM

    Start out by creating an empty EJB project using the EJB Project wizard. Make sure to specify your WebLogic 9.2 installation as target runtime on the first page of the wizard. If your EJB source code is plain spec-compliant EJB, then your project is ready. If you are using WLS EjbGen technology, then you will also need to enable that feature on the project. You can do that at project creation by clicking the Modify button next to the Configuration combo on the first page of the wizard and then selecting WebLogic EJB Gen Support facet.
    Once the project is created, you are ready to import your source. You have several choices here. You can either copy your source into the src directory created for you or you can delete that source directory and link to a source directory elsewhere on the file system. To do the latter, right click on the project and select properties. Go to Java Build Path and select the Source tab. Remove the existing source directory. Then click on Link Source button and point to your existing source directory.
    That should be all that's necessary. Hope that helps.
    - Konstantin

  • The time of download using the toolkit NXT for labview is about 5 - 8 minutes !!!

    I created a VI using the "LabVIEW_Toolkit_for_LMS_NXT_Getting_Started_Guide​" then I downloaded this to the NXT such as the Guied said but te time of download is  5 - 8 minutes.  then I did another program a litle bit more big and it never get dowloaded. It stoped when It was compiling...
    can you anybody help me?
    i attach the program I did... the second program is only to put on a motor...
    Attachments:
    Dibujo.JPG ‏4 KB

    In the installation instructions for the NXT Toolkit, it tells you to mass compile the toolkit and it tells you exactly how to do this. This is an essential step.  We provide the toolkit in LabVIEW version 7.1 format. If you use the toolkit in a later version such as 8.5, LabVIEW will load the toolkit and compile it on the fly. This leaves a lot of stuff in memory that will dramatically (and I mean dramatically) slow down the compile phase of the toolkit. 
    From the installation notes:
    To run the toolkit efficiently, you must mass compile the toolkit
    VIs in the version of LabVIEW in which you install the toolkit.
    Complete the following steps to mass compile the LabVIEW Toolkit for
    LEGO® MINDSTORMS® NXT.
    Launch the version of LabVIEW in which you installed the toolkit.
    Select Tools»Advanced»Mass Compile.
    Browse to the labVIEW\vi.lib\addons\NXTToolkit folder and select Current Directory (LabVIEW 8.x) or Curr Dir (LabVIEW 7.1).
    Select Mass Compile to begin the mass compile process.
    If you want the gory details on why this needs to be done, see my blog post: http://ideasinwiring.blogspot.com/2005/05/benchmar​king-labview-operation.html  (item #4)
    Joel Sumner
    NI-Shanghai

  • How can we repeat specific page number of pdf file by using FDF Toolkit for Windows?

    how can we repeat specific page number of pdf file by using FDF Toolkit for Windows?

    let's say a registration form, there is only 1 full address provided in my registration pdf, but applicant could have more than 1 address, so i have to make it more flexible to extend the address page no matter how many addresses that applicant provided, i have use adobe acrobat pro to edit the form properties. but dont know how to extend/duplicate a page in felxible times.
    Please advise~ tks so much!!! George

  • Where can I find more informatio​n, tutorials, or examples using the toolkit NXT for labview?

    I have read all the PDF's of the page http://zone.ni.com/devzone/cda/tut/p/id/4435 :
    LabVIEW_Toolkit_for_LMS_NXT_Getting_Started_Guide
    How_To_Create_NXT_Blocks_with_NI_LabVIEW
    LabVIEW_for_NXT_Advanced_Programming_Guide
    but I want to know if you know or have more information about, tutorials, examples using the toolkit NXT for labview.
    I want lo learn more about this toolkit, but there isn't enough information...
    thanks everybody that can help me

    a  list of LabVIEW leranings can be found here
    http://www.ni.com/academic/lv_training/how_learn_l​v.htm
    for the NXT you can also look on the LEGO site
    greetings from the Netherlands

  • Expose ADF-BC as ejb and use it in UI from the datacontroller

    Hi Experts.
    Here i am looking forward some experts view and guidelines on this deployment architecture question. Currently i have deploped one ADF Web fusion application which has ADF-BC and web. In that web project datacontroller side i can be able to see the view object instances under each business service. Also the web has some UI bindings too. Now the application is working fine fine on one weblogic instance.
    question1) Can i deploy this above project into two weblogic instances one with ADF-BC model ( if yes how to deploy that alone) and the other web into the another instance. ( If yes can to configure the project)
    question 2) Now can i expose the ADF-BC as ejb and use it in the same way in the web (like drag and drop from the Data controller). ? I tried the option expose the ADF-BC as ejb In this case if the VO instance access methods are not exposed. So how can i access them in the UI? For example, assume if we have 2 view object EmployeeView and DepartmentView in the application module, then after immediately create the AM, the datacontrol shows the view object instances name like EmployeeView1, DepartmentView1 and also in the web we just drag and drop to create appropriate UI. This is fine. Now i create the ejb based on the AM. In the Remote interface i have the
    void removeEntity(Object entityDTO)
    method. If i look at the datacontrol section still the data controls remains same. I think this datacontrol still shows the ADF-BC direct connectivity. If i try to create the new ejb data control which points to the same AM ejb for web, then i couldn't see the above view instance name called EmployeeView1, DepartmentView1, where i can drag and drop in the UI.
    I can only see methods like EJBHome etc.....
    So this means i cannot use the Exposed EJB from the ADF-BC Application Module to drag and drop in UI like the ADF-BC direct unless we explicitly create the view access methods in the interface. Am i correct?
    Or still am i getting the wrong assumption.
    Much appreciated if u point some code to understand this.
    -t

    Thanks for the reply.
    Basically we have found the way to expose the ADFBC as ejb and use it for data binding in the UI. I will update this thread soon about our finding. But now i have an architecture question, can we deploy as 3-tier deployment for ADF-BC using the exposed ejb interface? Because i am worrying we might run into some ADF issue in furture if we move this path. Oracle gurus please share your ideas or thoughts.
    -t

  • Problem creating an instance of an applet using Schlumberger toolkit

    Hi All,
    I am using Schlumberger toolkit 4.4 for testing my javacard applets. I have always had this doubt about the installation parameters, what exactly are these. I understand that these need to be passed to install method inside the applet. But what are these parameters, if somebody can give an example.. it will be wonderful.
    I have loaded the applet(.ijc) file on to the smart card and when i try to create and instance of the applet, the toolkit asks for applet aid and install parameters. I am aware of the applet aid but have no clue about the install parameters. Right now I am testing out the sample wallet applet in the jcdk. I am yet to try out my own applets. If somebody can tell me the install parameters for the sample wallet applet, I can try and corelate the same for my applets.
    cheers,
    ganesh

    Normally installation parameters are just passed to the Applet itself. It can evaluate it in the install method. The system specific parameters may be used by the OS to set minimum memory limits. What install parameters are required by your smart card OS, you should find in the data sheet or contact Gemalto customer support (Schlumberger --> Axalto --> Gemalto).
    For reference check GP 2.1.1 card specification, 9.5 INSTALL Command, 9.5.2.3.6 INSTALL [for load] and INSTALL [for install] Parameters, Table 9-36: Install Parameter Tags

  • How to perform AM-DSB Modulation/Demodulation using Modulation toolkit

    Hi to All
    I am new to Labview, I have tried to perform AM-DSB Modulation using Modulation Toolkit, but the result is very strange, When I change the Modulationg Signal Frequency, the caries frequency changes, and when I change the Amplitude of Modulating Signal the result is very strange, Maybe I am doing some mistake, so please guide me. Also problem like this when demodulating the signal. I have attached my vi, please check it.
    thanks
    Attachments:
    AM.vi ‏63 KB

    Dear 
     i was doing an AM modulation demodulation telecom project using labview.
    your uploaded files helped me so mush in modulation. but i am wondering how to apply it on my message signal (which is a function generation- in attachment) as a message signal in order to be modulated.
    thank you for your help.moreover i will be thankfull if u have somehting similar for AM demodulation.
    thanks again
    Attachments:
    Function-generator.vi ‏40 KB
    Function-generator.vi ‏40 KB
    Function-generator.vi ‏40 KB

  • [svn] 1433: adding 'console' security constraint to MBeanServerGateway remote object for MBean tests and ds-console , used when running on Websphere with administrative security enabled.

    Revision: 1433
    Author: [email protected]
    Date: 2008-04-28 13:13:12 -0700 (Mon, 28 Apr 2008)
    Log Message:
    adding 'console' security constraint to MBeanServerGateway remote object for MBean tests and ds-console, used when running on Websphere with administrative security enabled. Should call setCredentials("bob","bob1") to use this RO.
    Modified Paths:
    blazeds/branches/3.0.x/qa/apps/qa-regress/WEB-INF/flex/remoting-config.mods.xml
    blazeds/branches/3.0.x/qa/apps/qa-regress/WEB-INF/flex/services-config.mods.xml

    Hi,
    It seems that you were using Hyper-V Remote Management Configuration Utility from the link
    http://code.msdn.microsoft.com/HVRemote, if so, you can refer to the following link.
    Configure Hyper-V Remote Management in seconds
    http://blogs.technet.com/jhoward/archive/2008/11/14/configure-hyper-v-remote-management-in-seconds.aspx
    By the way, if you want to perform the further research about Hyper-V Remote Management Configuration Utility, it is recommend that you to get further
    support in the corresponding community so that you can get the most qualified pool of respondents. Thanks for your understanding.
    For your convenience, I have list the related link as followed.
    Discussions for Hyper-V Remote Management Configuration Utility
    http://code.msdn.microsoft.com/HVRemote/Thread/List.aspx
    Best Regards,
    Vincent Hu

  • Is it possible to get scope Variables in an EJB SessionBean

    Hello!
    I need to get scpoe variables in an EJB SessionBean. Is it possible?
    Thnaks in advance!

    ADFContext ctx = ADFContext.getCurrent();
    Map<String, Object> map = ctx.getViewScope();
    For example

Maybe you are looking for

  • Malfunctioning replacement iPod Touch 5 from Apple.

    I'm hoping I can get some advice. My 32 GB iPod Touch 5 that I had was having problems running apps (more than normal), so I went to The Apple Store at a mall. The person at the Genius Bar was able to replace it, and assured me it was a new, working

  • How to access or create a stage in a class file

    Hello Flash Actionscript writers, I have recently discovered that I cannot use the "stage" in a class file. I had a regular fla file that had actionscript in my "actions" layer. Of course, the fla has a stage object. I decided it might be nice to use

  • Shared Photo Stream pics not showing in iPhoto

    I have an iPhone 4s running iOS6 and my wife has a new Macbook Pro running Mountain Lion and the latest version of iPhoto.  I created a shared photo stream on my iPhone and sent her the invitation to subscribe.  I also added about 6 photos to the pho

  • Count distinct records

    Hi All, I have one table like App_Code --- App_ID --- SEQ_ID C0---------------- 001----------------0 U0--------------- 001----------------6 F1---------------- 001----------------26 C0-------------- 002----------------0 C0-------------- 003-----------

  • Zen xtra stuck in whatever...

    i deleted some songs on my mp3 player, but not with the computer, only with the zen itself. it stucked after 3 or 4 songs, and i couldnt turn it off. i pulled the battery out of it and pressed the reset button. it went on again, but freezed again in