How to programming the forum like application

Hi all
I want to build an application like a forum that users can put their thing on the site. but I dont have any information and I didnt programming this sort of things.
I dont think these huge information written by users are saving into databse. I think it will be placed in file somewhere in the server hard drive. Is that right?
any way, please tell me about this kind of sites and help me out which technologies or API's are available in Java to doing so. I want to use JSF in my application.
I am new in this field so any suggestion will be usefull and will be appreciated.
regards
Mohammad

Hi
See u need to follow the following steps
first check whether ur J2EE Engine Server in your NDS
the properties Productive USE shuld be "NO" and Debugging Mode to "ON".
Then u can add break point at the left Corner of your source code and choose Run ¨ Debug... in the main menu.
u can specify the debugger name adn the project to be debuugged and click on the debug button.
jusct check whether ur Application is already deployed or not if not check the box deploy new Archive
please get back for further issues
Hope i solved your problem
Krishna kanth
Message was edited by: krish kanth

Similar Messages

  • In XI ,file on application sever  how to do the scenario like file to idoc?

    hi experts,
    In XI ,file on application sever  how to do the scenario like file to idoc?
    thanks in advance
    gupt

    Hi gupta  ,
    The following are excellent websites giving step-by-step solution to solve u'r problem:
    How to convert an IDoc-XML structure to a flat file and vice-versa in XI 3.0
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/46759682-0401-0010-1791-bd1972bc0b8a
    IDoc Packaging and Mapping Techniques
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/877c0d53-0801-0010-3bb0-e38d5ecd352c
    check this blog
    Idoc File -> SAP R/3 packaging
    How ToConfigure IDoc Adapters
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/d19fe210-0d01-0010-4094-a6fba344e098
    Troubleshooting File-to-IDOC Scenario in XI.
    /people/venugopalarao.immadisetty/blog/2007/01/24/troubleshooting-file-to-idoc-scenario-in-xi
    cheers!
    gyanaraj
    ****Pls reward points if u find this helpful

  • How to bring the data from application server to presentation server

    hi,
    i have one problem,i have written the program which will open the files in the application server when we run the program in the background(sm37),the same data from application server i want to bring into presentation server in the format of (.csv),how to bring the data from application to presentation server can any body help me on this  topic.folowing is the code .
    *& Report  ZPFA_HIER_LOAD
    REPORT  ZFPA_HIER_LOAD.
    *---- Declaration of Oracle connectioN
    DATA con_name LIKE dbcon-con_name VALUE 'COMSHARE'.
    DATA: MFL1(9),MFL2(5),MFL3(9),MFL4(2),MFL5(8) TYPE c.
    DATA : mfilename type string.
    data: begin of matab1 occurs 0,
          MFL1(9) TYPE C,
          MFL2(5) TYPE C,
          MFL3(9) TYPE C,
          MFL4(2) TYPE C,
          MFL5(8) TYPE C  ,
         end of matab1 .
    data: setid(8) type c.
    data: begin of source occurs 0,
          setid(8) type c,
          end of source.
    *PARAMETERS : p_pfile LIKE filename-FILEEXTERN.
    *PARAMETERS : m_bsenty(8). " type c obligatory.
    *mfilename = P_PFILE.
    EXEC SQL.
      SET CONNECTION :con_name
    ENDEXEC.
    EXEC SQL.
      CONNECT TO :con_name
    ENDEXEC.
    EXEC SQL PERFORMING get_source.
      SELECT set_id FROM UNIT_SET INTO
      :setid
      ORDER BY SET_ID
    ENDEXEC.
    start-of-selection.
    LOOP AT SOURCE.
      REFRESH matab1. CLEAR matab1.
      EXEC SQL PERFORMING evaluate.
    SELECT TO_CHAR(MEM_ID),TRIM(TO_CHAR(MEM_PID)) FROM UNIT_TREE INTO :MFL1,
    :MFL5
    where set_id = :SOURCE-SETID ORDER BY MEM_ID
      ENDEXEC.
      if SOURCE-SETID = '80000000'.
       mfilename = '/tmp/aesorg'.
      elseif SOURCE-SETID = '80000006'.
       mfilename = '/tmp/Consolidation_Manager'.
      elseif SOURCE-SETID = '80000010'.
       mfilename = '/tmp/10org'.
      elseif SOURCE-SETID = '80000012'.
       mfilename = '/tmp/20org'.
      elseif SOURCE-SETID = '80000018'.
       mfilename = '/tmp/30org'.
      elseif SOURCE-SETID = '80000025'.
       mfilename = '/tmp/40org'.
      Endif.
      mfilename = '/usr/test.dat'.
    ************************This was i tried***********************
      open dataset mfilename for output in text mode encoding default." IN
    *TEXT MODE ENCODING DEFAULT.
    if sy-subrc <> 0.
    exit.
    endif.
    close dataset mfilename.
    CALL FUNCTION 'GUI_DOWNLOAD'
       EXPORTING
         FILENAME         = MFILENAME
         FILETYPE         = 'ASC'
       TABLES
         data_tab         = matab1
       EXCEPTIONS
         file_write_error = 1
         invalid_type     = 2
         no_authority     = 3
         unknown_error    = 4
         OTHERS           = 10.
    loop at matab1 .
    transfer matab1 to mfilename.
    endloop.
      clear matab1.
    ENDLOOP.
    loop at matab1 .
    transfer matab1 to mfilename.
    endloop.
    close dataset mfilename.
         MFL5 = '0'.
       CLEAR MFL5.
    FORM evaluate.
      if MFL5 = -1.
        MFL5 = ''.
      ENDIF.
      concatenate MFL1 ','   into MFL1.
      concatenate MFL1 ','   into MFL3.
      matab1-MFL1 = MFL1.
      matab1-MFL2 = 'ZBUE,'.
      matab1-MFL3 = MFL3.
      matab1-MFL4 = ' ,'.
      matab1-MFL5 = MFL5.
      append matab1 .
      CLEAR MFL1.
      CLEAR MFL2.
      CLEAR MFL3.
      CLEAR MFL4.
      CLEAR MFL5.
    ENDFORM.
                     "evaluate
    *&      Form  GET_SOURCE
          text
    FORM GET_SOURCE.
      source-setid = setid.
      append source.
      clear source.
    ENDFORM.                    "GET_SOURCE

    Hi Rammohan,
    You cannot use OPEN DATASET to transfer data from application server to presentation server.
    You can do the following :
    <b>Do 1st point in BACKGROUND</b>
    1. Read the data file from application server into an internal table using OPEN DATASET
    <b>Do 2nd point in Foreground</b>
    2. Once you get the data into an internal table, then use FM GUI_DOWNLOAD to download it on presentation server
    You cannot use the above 2 point together in Background because its not possible. Hence you need program it partially in background and partially in foreground.
    Best regards,
    Prashant

  • How to stop the new health application from Count the steps/ woking background?

    how to stop the new health application from Count the steps/ woking background?
    I really need your help

    I agree with Mr. Hall that using mx.controls.Alert in Flex may be a better route.
    Show the Alert like this:
    // show an alert with a question and yes and no choices
    Alert.show( "Would you like to go to the Adobe Forums?", "Question",
         Alert.YES | Alert.NO, this, closeHandler, null, Alert.YES );
    Then handle the response in the closeHandler() function:
    protected function closeHandler( closeEvent:CloseEvent ):void
    if( event.detail == Alert.YES )
         navigateToURL( new URLRequest('http://forums.adobe.com'), '_self' );
    else if( event.detail == Alert.NO )
         // they chose no
    The following documentation on Alerts may be helpful:
    http://www.flexafterdark.com/docs/ActionScript-Alert
    Let me know if that helps...
    Ben Edwards

  • How to disable the button in application toolbar in report pgm

    Can anyone help with How to disable the button in application toolbar in report pgm

    Hi,
    You can use it_excluding to disable button on the tool bar.You have to find the function code for the required button and append that function code to the it_excluding .The optional IMPORTING parameter IT_EXCLUDING is an internal table. It is only needed if the caller uses the list tool standard interface but wants to deactivate interface functions which he or she does not need.You can have your defined pf-status using I_CALLBACK_PF_STATUS_SET.
    SAMPLE PROGRAM
    tables spfli.
    type-pools: slis.
    DATA W_FCODE TYPE SLIS_EXTAB-FCODE.
    data: t_spfli TYPE SPFLI OCCURS 0 WITH HEADER LINE.
    select * from spfli into table t_spfli.
    data : t_excluding TYPE SLIS_T_EXTAB .
    W_fcode = '&OUP'.
    append w_fcode to t_excluding.
    W_fcode = '&ODN'.
    append w_fcode to t_excluding.
    call function 'REUSE_ALV_LIST_DISPLAY'
    EXPORTING
    I_STRUCTURE_NAME = 'SPFLI'
    IS_LAYOUT =
    IT_FIELDCAT =
    IT_EXCLUDING = T_EXCLUDING
    tables
    t_outtab = T_SPFLI
    EXCEPTIONS
    PROGRAM_ERROR = 1
    OTHERS = 2.
    if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/99/49b844d61911d2b469006094192fe3/frameset.htm
    Regards,
    Priyanka.

  • How to program a midi foot controller on Mainstage? Does anyone knows how to program the foot controller with exclusive solo channel in order not to dance "tip tap" while from clean guitar I go to crunch or solo? How to do this programming on Mainstage?

    How to program a midi foot controller on Mainstage? Does anyone knows how to program the foot controller with exclusive solo channel in order not to dance "tip tap" while from clean guitar I go to crunch or solo? How to do this programming on Mainstage?
    I basically managed to learn how to invert parameters which allows me to be as default in the clean guitar channel and if I switch the first button on the midi foot controller I switch to crunch, but at this point I tryied so hard to programm the second and third button to switch, only through a button in one step, to a third channel for distorsion or a 4th channel for solo guitar but I couldn't figured out how this work can be done!
    I would appreciate if anyone could help or share this experience with others who are experiencing the same problem.
    Cheers.
    F.

    I cannot seem to get mainstage to recognize my FCB either. I am using IFCB. Anyone figure this out?
    Thanks,
    Eric

  • How to zip the folder in application server?

    how to zip the folder in application server?

    You can use
    open dataset with filter
    link:[http://help.sap.com/abapdocu_70/en/ABAPOPEN_DATASET_OS_ADDITION.htm#!ABAP_ADDITION_2@2@]

  • How to access the value of application item in javascript

    How to access the value of application item in javascript?

    Hi,
    One way
    var myVariable = '&MY_APP_ITEM.';Br,Jari

  • How to restart the mac like the first time you use it?

    how to restart the mac like the first time you use it?

    Surefire way is by completely reinstalling the OS after erasing the Macintosh HD boot volume.
    I think there's a way to coerce the Setup Assistant to run once again like on First Start, but requires erasing a couple of files in the drive. Don't know which ones right now.

  • Learn how to use the Forum

    Welcome to the HP Support Forum!
    This forum is a great place to get your questions answered as well as learn how to get the most out of your HP products. If this is your first time in our community, you have come to the right place to learn how the Forum works.
    Let’s begin with the basic structure of the Forum. The forum is divided into Categories, as in the screenshot below, so that you can easily choose an area relevant to your query.
    Each of these Categories, are further divided into Boards, based on specific type of issues or queries. For example, if you click on the + sign beside the Laptop & Notebook Computers category, it will expand and show its boards as below:
    You can just go right into any of the boards, search for a particular issue or create your own post.
    However, if you have used the Search the Community box at the Forum home page, you will be on the Search Results page, where you can create a post directly.
    In this case, you will have to choose a board, while you are creating a post, from the Select Location drop-down menu.
    Before you delve deeper into this board to find more information about how the Forum works, here are a few things to keep in mind.
    Before you create a post, to get the quickest, most accurate response from the community, please include the following in your post:
    A brief Subject title including:
    Product Name
    A short description of the problem
    A detailed message with the following information:
    Product Name and Operating System
    How do I find my product name and number?
    Description of the problem including:
    Error messages, if any
    Any changes made to your system before the issue occurred
    Do not include the product serial number or any private information.
    Read more in here: Advice for Asking the Very Best Question
    You may also be interested in some short videos that show:
    How to search the forum to find the answers you are looking for;
    How to join it so that you will be able to ask a question; and
    How to make post and where to post it to get a timely response. 
    You don’t have to be a member to search for answers. However, you will need to register if you want to post a question.
    There is a lot of information in this board that may help you get the most out of your time on the Forum. You can click here to go back to the main Forum page.
    Should you have any suggestions or feedback on the site feel free to add comments in the Forum Feedback and Suggestions board. 
    We look forward to hearing from you.
    HP Forums Team
    Want to help? Become an Expert!
    I am an HP employee.

    Welcome to the HP Support Forum!
    This forum is a great place to get your questions answered as well as learn how to get the most out of your HP products. If this is your first time in our community, you have come to the right place to learn how the Forum works.
    Let’s begin with the basic structure of the Forum. The forum is divided into Categories, as in the screenshot below, so that you can easily choose an area relevant to your query.
    Each of these Categories, are further divided into Boards, based on specific type of issues or queries. For example, if you click on the + sign beside the Laptop & Notebook Computers category, it will expand and show its boards as below:
    You can just go right into any of the boards, search for a particular issue or create your own post.
    However, if you have used the Search the Community box at the Forum home page, you will be on the Search Results page, where you can create a post directly.
    In this case, you will have to choose a board, while you are creating a post, from the Select Location drop-down menu.
    Before you delve deeper into this board to find more information about how the Forum works, here are a few things to keep in mind.
    Before you create a post, to get the quickest, most accurate response from the community, please include the following in your post:
    A brief Subject title including:
    Product Name
    A short description of the problem
    A detailed message with the following information:
    Product Name and Operating System
    How do I find my product name and number?
    Description of the problem including:
    Error messages, if any
    Any changes made to your system before the issue occurred
    Do not include the product serial number or any private information.
    Read more in here: Advice for Asking the Very Best Question
    You may also be interested in some short videos that show:
    How to search the forum to find the answers you are looking for;
    How to join it so that you will be able to ask a question; and
    How to make post and where to post it to get a timely response. 
    You don’t have to be a member to search for answers. However, you will need to register if you want to post a question.
    There is a lot of information in this board that may help you get the most out of your time on the Forum. You can click here to go back to the main Forum page.
    Should you have any suggestions or feedback on the site feel free to add comments in the Forum Feedback and Suggestions board. 
    We look forward to hearing from you.
    HP Forums Team
    Want to help? Become an Expert!
    I am an HP employee.

  • How to find the list of applications registered with OID?

    Could some one please help me?
    how to find the list of applications registered with OID?

    Is there any table from which we would be able to see?

  • Question:- How to update the Adobe Air Application Version.?

    Question:- How to update the Adobe Air Application Version.?

    Change the namespace declaration in the application descriptor.
    For example, to update version 1.0 to 1.5, change:
    <application xmlns="http://ns.adobe.com/air/application/1.0." ...
    to:
    <application xmlns="http://ns.adobe.com/air/application/1.5"

  • How to download the Create Suite applications onto another computer?

    Hello, i was wondering if you can help.
    I have the creative suite on my main computer, where i use indesign , illustrator and photoshop on a daily basis for designing.  However i would also like to install this on another apple Mac computer i have in the house,
    Is this possible?  How do i do it?
    Thanks in advance!
    All the best
    S

    Yes, you mis-explained when you said you have a Creative Suite installed on one machine and you are trying to install it on another.  You cannot get Creative Suites thru the Cloud, though you can get individual Creative Suite 6 products. 
    It appears you mean you have a Creative Cloud subscription and you want to use it on a second machine.  If you already have the Creative Cloud application installed then you should just need to sign in and then choose the programs you want to install.
    Creative Cloud Help / Sign out, Sign in | Creative Cloud desktop app
    http://helpx.adobe.com/creative-cloud/kb/sign-in-out-creative-cloud-desktop-app.html
    Creative Cloud Help / Install, update, or uninstall apps
    http://helpx.adobe.com/creative-cloud/help/install-apps.html
    Installing Creative Cloud Apps
    http://tv.adobe.com/watch/cs6-creative-cloud-feature-tour-for-video/installing-desktop-app s-from-creative-cloud/

  • How to program the simple tcp/ip connection?

    I would like to know how to program in labview the simple tcp/ip connetion.
    And is there some site with examples.

    Luciano Kan Horiuchi wrote:
    > I would like to know how to program in labview the simple tcp/ip connetion.
    > And is there some site with examples.
    You should probably start with the examples that ship with LabVIEW. For a good
    server-to-single-client example, check out Data Client.vi and Data Server.vi
    from the shipping examples, and for a good server-to-multiple-client example,
    try the Date Client.vi/Date Server.vi pair instead. All of these can be found
    in the following VI library:
    \examples\comm\tcpex.llb
    or via the Search Examples interface in LabVIEW. There are certainly
    additional examples on the NI site, but there's no better place to start than
    with these.
    Regards,
    John Lum

  • How to program the daq card to route signals?

    Hi,
    I would like to program the daq card to route signals, for example from DIO0 to
    DIO1. All this should happen without Labview, directly on the board. Is this possible?
    What I want to do, is to get a lot of signals as inputs and output those
    signals as they are. Sometimes I need to take one signal through Labview
    and make some modifications to it. If I route all the signals through Windows
    and Labview will propably cause latency, so I would like to do this at the lowest
    level as possible.
    Currently I'm using PCI-DAQ 6025E, but this card might not be sufficient for our
    needs, so if this is possible with some other card, please share your information.
    All information on this matter is highly appreciated.

    Oops!. I just noticed that I accidentally posted this question to the wrong forum.
    I posted a new one to "multifunction DAQ", so if you have something to say about
    this matter, then go here
    http://forums.ni.com/ni/board/message?board.id=250&message.id=31100
    Thanks.

Maybe you are looking for

  • 64-bit Windows 7 on late 2009 iMacs only?

    In the Boot Camp Install-Setup documentation I read: You can use a version of Windows Vista or Windows 7 with any of these Mac computers: - A Mac Pro or MacBook Pro introduced in early 2008 or later - An iMac or MacBook introduced in late 2009 or lat

  • Ipod 5 failure to update contacts list

    The following has happened to my 60Gb and my Wife's 30Gb. We downloaded the latest Itunes and updated the Ipods to 1.2. We received a message that Microsoft 2003 was required to update our contacts list. The contacts list was operating fine we notice

  • Home Application Folder

    Hi all, It has recently just dawned on me that I not only have an Applications Folder, but an Application Folder in my Home Folder as well!! What exactly is this for? I have only ever used the Applications Folder that all my apps get stored in automa

  • Trouble Opening PDF

    the past few days I have been getting a message  "there was an error opening this document.  The file is damaged and could not be repaired." But when I go to another computer - I can open the same file?

  • Sharing permissions BIG ISSUE

    I just bought a new 27" 3.4GHz i7 iMac to replace my agin iMac running Snow Leopard. Every time I turn the sharing on so that I can access the iMac and the attached hard drives from my other computer all the permissions explode to in infix able stse