How to use blueprints components in Exadel Studio

hi friends i am working in a JSF project with Ajax support. i need a JSF-Ajax calendar component.. In my project i am using JSF and Ajax4jsf. If i want to use blueprints calendar component in my project what i should do.... how to integrate this component in my project... how to work with blueprints in Eclipse Exadel Studio IDE.....
please tel me the step by step procedures to follow....

Hi,
the installer jar is a jar file that needs to be un-jarred, usually by double clicking the jar file. Once you (install) un-jar the
1) For example, if you download the latest solutions catalog from
https://blueprints.dev.java.net/servlets/ProjectDocumentList?folderID=4144&expandFolder=4144&folderID=0
you will download bpcatalog-ee5-ea-0.6-installer.jar
2) then you have to install/unjar it
To Install: Double-click the jar file bpcatalog-ee5-ea-0.6-installer.jar, or run 'java -jar bpcatalog-ee5-ea-0.6-installer.jar'      
3)This creates a folder bpcatalog-ee5-ea-0.6/ which has the contents of the blueprints solutions catalog, including the JSF component libraries.
4) then if you want to use a JSF component library such as bp-ui-14.jar which contains the calendar component, then move/copy the bp-ui-14.jar to your application that you want to us it in.
Then you use it like any JSF component library (see the links I put on previous posting if need more detail on that)
I think the confusion you were having is that you were using the installation jar bpcatalog-1.0.1_01-installer.jar instead of the JSF component library bp-ui-14.jar in your app?
hth,
Sean
Thank you for Reply.
hen i use
"bpcatalog-1.0.1_01-installer.jar" in
my projects lib folder its not working
an exception occurred
Jan 4, 2007 6:01:49 AM
org.apache.catalina.core.StandardWrapperValve invoke
SEVERE: Servlet.service() for servlet jsp threw
exception
org.apache.jasper.JasperException: The absolute uri:
http://java.sun.com/blueprints/ui/14 cannot be
resolved in either web.xml or the jar files deployed
with this application
at
t
org.apache.jasper.compiler.DefaultErrorHandler.jspErro
r(DefaultErrorHandler.java:50)....
can you tell me what are all the java blueprint jar
file should be placed in my project....
Since bpcatalog-1.0.1_01-installer.jar is in
installation type...... plz tell me a step by step
process....

Similar Messages

  • How to use Flex Components with Flash?

    Hi!!
    I found a lot of very useful components in the web, but they are all for  Flex, is it possible to use Flex Components with Flash IDE?
    Thanks !!!
    jenry
    PS: this is one of the components I need to use (a tree with checkbox  nodes)
    http://www.sephiroth.it/file_detail.php?pageNum_comments=30&id=151
    another one:
    http://www.darronschall.com/weblog/2006/09/a-flex-2-checked-tree-control-component.cfm

    Flex components are delivered as SWCs just like Flash components, but the
    SWC format is incompatible with the Flash IDE.
    Also, the default fl.. components in the Flash IDE are incompatible with
    Flex components.
    You should be able to load a Flex SWF into a Flash SWF as long as you aren't
    using fl.. components in the Flash SWF.  If the Flex SWF overlays things
    in your Flash SWF then it might block interaction, but otherwise it
    shouldn't.  I don't think the statement you quoted is true for all
    configurations.
    But loading a Flex SWF into a Flash SWF isn't going to help you use those
    Flex components from your Flash IDE.  Try Flash Builder 4 to build out the
    Flex portion of your application.  I haven't tried it myself, but it I think
    it is supposed to have better integration with Flash.

  • How to use Logical operators in Essbase Studio?

    I want to add a new Dimension Element like
    if ( connection : \'SH'::'SH.CUSTOMERS'.'CUST_GENDER' == "M" ) then "Male"
    else "Female"
    However, there isn't 'if ... then ...' expression in Essbase Studio. I'm puzzled to the usage of logical operators such as '==', '!=', and so on.

    The == and !== are to set conditions for filtering. the ! meand not. In esscense these allow you to get a subset of rows that meet the conditions specified. In your case where Gender == "M" you will only get those rows where the value is "M". What you want to do is transform rows not filter them. I have not looked at studio enough yet to know how to do this, but a few things come to mind. First, you could use text to create the outline menbers instead of values from the tables, you could crete a reference table with the M = Male and F = Female and join to it to get the values or you could use a standard load rule and sql interface to load the data and just build the dimensions and drill through from Studio. I think I would opt for the second option

  • How to use TDMS API in Visual Studio 8.6

    I am using Measurement Studio 8.6.1 for Visual Studio 2005. I need to read/write TDMS files from my mfc c++ application and I can't figure out how to add the TDMS capability to my visual studio project. I don't think it's part of the installed c++ class libraries, yet it is available as a .net library. help!

    Hi Julienp,
    You can download a C dll from this website: http://research.ni.com/run/2007codelicenseagree to do TDM/TDMS communication with your C++ project.  There is another thread that discusses some of the problems another poster had with using this, so it may also be helpful to look over if you have problems using the dll: http://forums.ni.com/ni/board/message?board.id=180&message.id=37932
    Eric B.
    National Instruments

  • How to use Swing Components in  JavaFX

    Hi All,
    I am new to JavaFx. I am trying to use java swing components in javafx.
    I found a sample program in net and tried it. But it shows compile time error.
    Code:
    MySwingComponent .fx
    import javafx.ext.swing.SwingComponent;
    import javax.swing.JComponent;
    import javax.swing.JButton;
    import java.awt.event.ActionListener;
    import java.awt.event.ActionEvent;
    * @author nandha
    class MySwingComponent extends SwingComponent{
    var button: JButton;
    public var text: String on replace {
    button.setText(text);
    public var action: function();
    override protected function createJComponent () : JComponent {
    button = new JButton();
    button.addActionListener(ActionListener {
    public override function actionPerformed(e:ActionEvent){
    action();
    return button;
    The above code shows no error.
    Test SwingButton.fx
    import javafx.stage.Stage;
    import javafx.scene.Scene;
    import swingcomponents.MySwingButton;
    * @author nandha
    Stage {
    title: "Swing Button Example"
    scene: Scene {
    width: 250
    height: 80
    content: [
    MySwingButton{  // error message: imcompatible type. found MySwingButton. Required javafx.scene.Node[]
    text: "Click Me!"
    action: function(){
    println("Hello World!");
    This code which used the MySwingButton shows error: imcompatible type. found MySwingButton. Required javafx.scene.Node[] - where i have added the MySwingButton.
    Please help me to fix the error.
    Thanks &Regards,
    Nandha K

    Hi Sasa,
    First thanks for your reply.
    I found the problem and have fixed.
    Problem:
    There is no class MySwingButton in the package swingcomponents. Its MySwingComponent that i should have used, which is a big mistake that i have done. To my surprise i don't know NetBeans didn't show any error message at that line.
    Thanks & Regards,
    Nandha K

  • How to use ANTLR 4 in visual studio 2010 .

    I need to generate parse tree for a C language program in c#.NET.I am using ANTLR4 for this.There are many java tutorials available for ANTLR4 but I want for C#  .

    Hello,
        Check this,
         http://programming-pages.com/2013/12/14/antlr-4-with-c-and-visual-studio-2012/
     if the reply help you mark it as your answer.
     Free Managed .NET Excel, Word, PDF Component(Create,
    Modify, Convert & Print)

  • How to use print functionality in Java Studio Creator

    Hi,
    I am working on one JSF project using Java Studio Creator.
    I have requirement where I have one table and print button.
    By clicking the print button, I want the contents of table to be printed.
    I have configured all the required properties of this button but still by clicking this print button, I am not able to see the print window.
    Please help me in that, Its urgent.
    Thanks in advance.
    Vijay

    Hi,
    i think the best thing for you to do is to use javascript. go to jsp page of the form and find the button, as part of its attribute type onClick="window.print()"

  • How to use OLE Components in Java Application?

    Hi,
    I try to make program that is able to include OLE components( Excel sheet, MS Word document, and so on ), and that can control these components.
    I want to know that Java Application or Applet can control and show OLE components like JavaBeans components. If that, How to ?

    Try this to generate a Word file.....
    import com.jacob.activeX.*;
    import com.jacob.com.*;
    public class ExportDOC {
    public ExportDOC () {
    //Application type
    ActiveXComponent doc = new ActiveXComponent("Word.Application");
    //Application visible
    doc.setProperty("Visible", new Variant(true));
    Object documents = doc.getProperty("Documents").toDispatch();
    //Open a file already exits
    //Object document = Dispatch.call(documents, "Open", "c:/nameFile.doc").toDispatch();
    //Open a new file empty
    Object document = Dispatch.call(documents, "Add", "").toDispatch();
    Object selection = Dispatch.get(doc,"Selection").toDispatch();
    //Text Format
    Object font = Dispatch.get(selection, "Font").toDispatch();
    Object alignment = Dispatch.get(selection, "ParagraphFormat").toDispatch();
    Object image = Dispatch.get(selection, "InLineShapes").toDispatch();
    //I put the selection at the end of the file for if I want to add text
    //Dispatch.call(selection, "EndKey", "6");
    //Text format (bold & italic)
    Dispatch.put(font, "Bold", "1");
    Dispatch.put(font, "Italic", "1");
    //To jump line
    Dispatch.call(selection, "TypeParagraph");
    //Align center (0= left, 1=center, 2=right, 3=justify)
    Dispatch.put(alignment, "Alignment", "1");
    //Insert image
    Dispatch.call(image, "AddPicture", "c:/graf.jpg");
    Dispatch.call(selection, "TypeParagraph");
    Dispatch.put(alignment, "Alignment", "3");
    //Insert Text
    Dispatch.call(selection, "TypeText", "Text ....... ");
    //Original values
    Dispatch.call(selection, "TypeParagraph");
    Dispatch.put(alignment, "Alignment", "0");
    Dispatch.put(font, "Bold", "0");
    Dispatch.put(font, "Italic", "0");
    //To jump page
    //Dispatch.call(select, "InsertBreak");
    //Save the document
    //Dispatch.call(document, "SaveAs", "c:/test.doc");
    //Quit the application
    //dc.invoke("Quit", new Variant[] {});
    public static void main(String[] args) {
    ExportDOC e = new ExportDOC();
    but you must download 'jacob.jar' in....
    http://users.rcn.com/danadler/jacob/
    is a FREEWARE!!!
    regards!!

  • How to use form components in canvas

    Hai folks
    Im bit cofused here. Some say that v can use forms in canvas and some say cant. Im in a hurry in developing a real time appln. Please any one come up with a solution. Is it difficult to use J2ME Polish.

    Hi,
    the installer jar is a jar file that needs to be un-jarred, usually by double clicking the jar file. Once you (install) un-jar the
    1) For example, if you download the latest solutions catalog from
    https://blueprints.dev.java.net/servlets/ProjectDocumentList?folderID=4144&expandFolder=4144&folderID=0
    you will download bpcatalog-ee5-ea-0.6-installer.jar
    2) then you have to install/unjar it
    To Install: Double-click the jar file bpcatalog-ee5-ea-0.6-installer.jar, or run 'java -jar bpcatalog-ee5-ea-0.6-installer.jar'      
    3)This creates a folder bpcatalog-ee5-ea-0.6/ which has the contents of the blueprints solutions catalog, including the JSF component libraries.
    4) then if you want to use a JSF component library such as bp-ui-14.jar which contains the calendar component, then move/copy the bp-ui-14.jar to your application that you want to us it in.
    Then you use it like any JSF component library (see the links I put on previous posting if need more detail on that)
    I think the confusion you were having is that you were using the installation jar bpcatalog-1.0.1_01-installer.jar instead of the JSF component library bp-ui-14.jar in your app?
    hth,
    Sean
    Thank you for Reply.
    hen i use
    "bpcatalog-1.0.1_01-installer.jar" in
    my projects lib folder its not working
    an exception occurred
    Jan 4, 2007 6:01:49 AM
    org.apache.catalina.core.StandardWrapperValve invoke
    SEVERE: Servlet.service() for servlet jsp threw
    exception
    org.apache.jasper.JasperException: The absolute uri:
    http://java.sun.com/blueprints/ui/14 cannot be
    resolved in either web.xml or the jar files deployed
    with this application
    at
    t
    org.apache.jasper.compiler.DefaultErrorHandler.jspErro
    r(DefaultErrorHandler.java:50)....
    can you tell me what are all the java blueprint jar
    file should be placed in my project....
    Since bpcatalog-1.0.1_01-installer.jar is in
    installation type...... plz tell me a step by step
    process....

  • How to use Google API for Visual Studio Application using Google Drive

    I am creating an VB 2010 Form that will collect data and then automate sharing to select individuals. Right now I am storing the data in the Google Drive folder on the Desktop but some people that may be using this application may not have Google Drive downloaded
    on their desktop so I would like to know if there is another way to add the data files (Excel files) to Google Drive. I would also like to have my application automatically share the files with select individuals and possibly publish onto Google+ or at
    least create a notification on Google+ that a new file has been added to the Drive. Thanks in advance for ANY help that anyone can offer!

    Hello,
    Thank you for your post.
    I am afraid that the issue is out of support range of VS General Question forum which mainly discusses
    the usage of Visual Studio IDE such as WPF & SL designer, Visual Studio Guidance Automation Toolkit, Developer Documentation and Help System
    and Visual Studio Editor.
    Because you use Google Drive and Google API which are third-party, I suggest consult on its support forum/community provided by its publisher.
    IN addition, about Visual Basic programming, please consult on Visual Basic forum:
    http://social.msdn.microsoft.com/Forums/vstudio/en-US/home?forum=vbgeneral for better response.
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to use Apache MyFaces components in JSF pages + Eclipse?

    I've managed to write my JSF web app. in Eclipse jee, and test it on JBoss 4.2 GA, within Eclipse, but how to import Apache MyFaces components into Eclipse JSF plug-in?
    If I can't import it nicely, how to use those components directly in JSF pages?

    The Tomahawk component library provides MyFaces components. Install it as you would any other component library.
    http://myfaces.apache.org/tomahawk/

  • CS3 missing components or How to use Flex 2 components in CS3

    Does anyone have a good resource for how to use Flex2
    components in CS3?
    I found an install that said it would install Flex2
    components in CS3, but all it added waas the UIMovieClip for
    packaging Flash MC in swc's for Flex.
    Right now I am specifically trying to solve the missing
    dateField component in CS3.
    But I would like to find out if anyone has found a good
    resource for alternatives to all missing components in CS3.
    I'm hoping the answer is not to build them from scratch.
    Thanks,
    Hunter

    Hi,
    Pleas find details at the URL below.
    http://labs.adobe.com/wiki/index.php/Flex_2_Tag_Library_for_JSP
    Hope this helps.

  • How to use crm blueprint

    Hi, I'm new to using blueprint in creating the UI/portal page.
    Can anybody direct me on how to use blueprints to create buttons, tables, textfields, etc, and how to process its events.
    Thanks.

    Arnold,
    U need to go through PCUI Cook Book....and more clarifications will get in CRM forums. Here is the link where u can find the link to PCUI cook book.
    PCUI COOK BOOK
    Regards,
    Arun.

  • How to use xcelsious Component

    Hi Experts,
          How to use  xcelsious components in webi document ?
    Regards,
    Shanmugam k

    Hi,
    take a look here:
    [https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/000df5cd-6d64-2b10-9ca7-d84ea2d8d951]
    Regards,
    Stratos

  • How to use scroll pane

    Can anyone tell me where a good tutorial might be on flash
    components and how to use them.....specifically the scroll pane
    component? Ive scanned some flash tutorial sites but havent really
    found any that explain how to use the components flash comes with.
    Thank you.

    Try this tutorial.
    http://www.cbtcafe.com/flash/scrollpane/index.html

Maybe you are looking for

  • What's the best way to use an enum to validate statuses

    I am trying to write and use an enum to represent a status code and validate status code values. Ultimately the input data from another system and the database will be 1 or 2 i.e.the indexes and the java code will use the LIVE and CANCELLED when refe

  • In APEX 4.0, question on formating bold and underline in a table

    I am using APEX 4.0, I see I can format Bold and underline in a textbox using a control but when I save this to a clob in the database, it using the command punctuation and not really the underline or the bold. I am using a word doc to display the co

  • Issue with utl file

    Hi, I am using UTL file to export records from table with fixed delimiter to a text file. It works fine except that I see an additional character @ at the end of the file in the last line. Can anyone let me know why are we getting this and how can we

  • Starting up the ipod...

    Hi everybody, Is it normal that the ipod needs a few seconds to power up after several hours of non-usage? It does nothing for about 3 secs, then displays the Apple-logo on unlit display for approx. another 2 secs and goes to normal operation. Does t

  • Fixed vendor table in source list

    Hi Friends, We understand that EORD is the table for Source List.Fixed Vendor check which we maintain in source list (transaction ME01) does not get saved in the table EORD.It get saved at some other table,Can you please let me know the table name fo