JBuilder 2005 Developer - How to add tomcat V5.5.9 server to Enterprise -

Hi all,
JBuilder 2005 developer ships with jakarta tomcat V4.1.30 and jakarta tomcat
V5.0.27
We have a need to use jakarta tomcat V5.5.9
We have noticed that under Enterprise -> Configure servers menu of JBuilder
2005 there is no provision to add another server such as tomcat V5.5.9
Question
1) How can we add Tomcat V5.5.9 as server?
Thanks in advance for any assistance.
Trajano

Thanks Nelash. That is good to know. Where can I find more details on this. Here is what I am trying to do. Take the input from the customer and set them as bean parameters to invoke the WebService with a submit button. I want to render the results on the same page. Here is the sample. How do I convert the following into Sites tags?
        <form action="XXXXXXXXX.jsp" method="POST">
            <table>
                <tbody>
                    <tr>
                    <td>
                            <input type="text" id="toCountry" name="toCountryId"/>
                    </td>
                    <td>
                            <input type="text" id="fromCountry" name="fromCountryId"/>
                    </td>
                    </tr>
                    <tr>
                        <td colspan="10" align="left">
                            <button type="submit">Submit</button>
                        </td>
                    </tr>
                </tbody>
            </table>
        </form>
<jsp:setProperty property="toCountry" name="conversion" value="${param.toCountryId}" />
<jsp:setProperty property="fromCountry" name="conversion" value="${param.fromCountryId}"/>

Similar Messages

  • How to add tns entry in names server

    Hi,
    Can anyone tell us, How to add tns entry in names server
    Thanks

    In the Net Manager utility, in the left-hand pane left click Oracle Names Servers, left click on your nameserver.
    Click the "+" button in the upper left, that should be enough to get you started- sorry, all our 9i installs have gone away, can't exactly recall the nix X gui version of client program, but I think* its netmgr, should be in OH/bin.
    If you're running a java OEM console that cames with 9i clients, Net Manager is available on that little Butler tab.
    And for the command line version, running the namesctl utility- you can save a tns entry with the connect string and run it in a file, just like sqlplus, with an @filename:
    vi newtns.txt
    register newtns -d (DESCRIPTION=(ADDRESS_LIST=...(SERVICE_NAME=NEWTNS.MYCO)))
    $ namesctl
    @newtns.txt
    query newtns *
    reload -- nameserver sync
    query newtns *
    exit
    $ Edited by: clcarter on Jul 7, 2011 3:26 PM
    added cmdline version

  • I have imac 10.6.8 how to add it to my domain server windows 2003

    i have imac 10.6.8 how to add it to my domain server windows 2003
    and .
    i cant find the directory access any

    One option is to create a new partition (~30- 50 GB), install the new OS, and ‘test drive’ it. If you like/don’t like it it, you can then remove the partition. Do a backup before you do anything. By doing this, if you don’t like it you won’t have to go though the revert process.
    Check to make sure your applications are compatible.
    Application Compatibility
    Applications Compatibility (2)

  • How to achieve Multi-Tenant in Lync Server 2013 Enterprise Edition

    Hi,
      As LHPv2 is discontinued, is anyone has idea how to achieve Multi-Tenant in Lync Server 2013 Enterprise Edition?
    e.g users from different tenants should not be able to communicate unless it is allowed either by federation or any other form.
    J.B.Patnaik

    once a Topology has been published you can not change the FQDN.
    Also you can refer shah-Khan answer, it will be helpful for you
    http://social.technet.microsoft.com/Forums/lync/en-US/47d4e101-4f7b-4115-8f44-897eb5410acb/need-to-change-a-published-fqdn-lync-pool-for-lync-enterprise-2010?forum=ocsplanningdeployment
    Please remember, if you see a post that helped you please click "Vote As Helpful" and if it answered your question, please click "Mark As Answer"
    Mai Ali | My blog: Technical | Twitter:
    Mai Ali

  • How to add sites to a SharePoint server on port 80 without using the host header?

    Hello,
    I have a SharePoint 2013 server with 5 sites on it.  2 are using port 80 and the 3 are using other ports.  I like to add 2 more sites to the server.  If I was going to add 2 sites with different ports that are not port 80, what do I need to
    do?  I noticed the host header file on the server has no sites configure in it. 
    How would I add 2 sites to the server that has 5 other sites?
    Thanks
    Paul

    Where is the Calendar hosted at the moment?   If it's within SharePoint, there is a "Connect to Outlook" button, which will export the calendar as a shared calendar to your Outlook instance.  I'm never tried the reverse, so if you're using
    a shared calendar, you may need to consider moving it.  When they are linked, they'll be a two way synch (updates from one end will push to the other).  On top of this, you and your team will be able to set-up differnet alerts.
    Additionally, within the product you can create an overlay, calendar, which allows you to merge different calendars.  Each source calendar can have a different colour picked for it.
    In regards to running PS scripts as an end-user, not much if anything can be done here.  All I can think of is adding a codeplex workflow extension, work that into a workflow and then plug a script into that.  Your IT guys might not let that fly.
    Hope that helps
    Steven Andrews
    SharePoint Business Analyst: LiveNation Entertainment
    Blog: baron72.wordpress.com
    Twitter: Follow @backpackerd00d
    My Wiki Articles:
    CodePlex Corner Series
    Please remember to mark your question as "answered" if this solves (or helps) your problem.

  • Oracle 10g forms developer, How to add a graph item

    Hi guys,
    We are the final stage of Oracle EBS R12 implementation and developing inhouse applications and deploying them right now. However, would appreciate if somebody would share the knowledge about adding graph items with form modules. Most of the google search provides pointers towards graphs for reports. Any help would be appreciated.
    We don't have existing graphs, so migrating from 6i is not a piont.
    Thanks and regards,

    Thank you very much Andreas. As you could read with my first post, we were totally into forms 6i until last few months and forms 10g is pretty new environment for us. We would appreciate incase if you could be more specific. Our requirement is simple right now, add a graph item. Hence, you may point us towards some repositories which are reliable for beginners.
    Thanks and regards,

  • JBuilder question on how to add a new .java file

    I am new to Java and even newer to JBuilder. I am creating the GUI for our school project and my other members are creating the networking and database parts of our program seperatly. I am at the point were I need to import their .java files into my project I created in JBuilder.
    Can someone tell me the steps I need to take to get those files into my project so I can start using the classes from my group they made up?
    Thanks,
    Scott

    You can use show_alert statement and then make a check on button that is pressed from the alert.
    Here is an example of show_alert built_in.
    DECLARE
      my_alert number;
      ALERT_TXT     VARCHAR2(200) := 'Do you want to delete record?';
    BEGIN
         set_alert_property('your_alert',ALERT_MESSAGE_TEXT,ALERT_TXT);
           my_alert := show_alert('your_alert');
           If my_alert = Alert_Button1 Then
             /** I choose to delete record **/
            -- here you can put your statements
           else
           -- I pressed NO button
           -- here you can put your statements
           end if;
    END;Hope it helps you,
    Fabrizio
    If this answer is helpful or correct, please mark it. Thanks.

  • How to add JDBC Drivers to J2EE server?

    Hey,
    I am studying the j2ee following j2ee tutorial of sun java. while, I want to execute the programs over another database server such as mssql server, I add it by j2eeadmin addJdbcDriver sun.jdbc.odbc.JdbcOdbcDriver, and j2eeadmin addJdbcDatasource jdbc:odbc:testDB , then modify the deploy settings , but when I execute the program, it says cannot connect to database error.
    Did any body encounter this issue? or someone can help?
    thanks.

    This thread may assist you...
    http://forum.java.sun.com/thread.jsp?forum=136&thread=223444

  • How to add an file to content server

    I use the "fileupload" to get an XSTRING attribute.How can I store this file to the content server?

    Hi Voldemort,
                   Are you trying to upload using GOS ?? I mean the Archive link or to the DMS ?
    If you need a GOS kind of solution then i would be able to guide for same .. but for DMS I am sorry but even i am not aware of same .. kindly let me know if I can help out ..
    Regards,
    Anoop

  • How To Add Second Website In Lion Server 10.7.3

    I currently have Lion Server Running on a Mac Mini, communicating on a  LAN (Intranet) with no Internet access intended at this time. I'd like to host a second website.
    Can that be done? And how?
    Lion Server 10.7.3
    Enabled - File Sharing, Wiki, Website
    Computer Name - apollo
    Host Network - lunar.local
    Server Website - lunar.local
    Thank you

    I'm in the same boat.  No clue why this error keeps popping up but its driving me nuts and appears to be killing my ability to get the OD setup.

  • How to add user to a terminal server list ?

    Hi , is there a way out to login users to terminal server remotely without GUI(rdp) from some commandline?
    background:
    i am trying to remote login user after machine restart in order to start a automation test run, so in order for the automation testrun to work properly i need to open a user session on the remote machine. after restart only two entries are found (when qwinsta
    is queried)
    SESSIONNAME USERNAME    ID STATE TYPE DEVICE
    console             administrator 0  active wdcon
    rdp-tcp                                 65536 listen rdpwd
    so i can't use tscon to connect to a user session as not user session exists in the first place?

    Hi,
    Thank you for posting in Windows Server Forum.
    As per your comment, you can login users remotely to terminal server with “mstsc” command line as per below command.
    mstsc [<connection file>] [/v:<server[:port]>] [/admin] [/f[ullscreen]] [/w:<width>] [/h:<height>] [/public] | [/span] [/edit "connection file"] [/migrate] [/?]
    For more information, refer beneath article.
    Use command line parameters with Remote Desktop Connection
    http://windows.microsoft.com/en-in/windows/command-line-parameters-remote-desktop-connection#1TC=windows-7
    Hope it helps!
    Thanks,
    Dharmesh

  • How does one install a express sql server to run with Visual Web Developer 2008?

    I successfully installed .NET framework v 3.5 and VWD 2008 on a new Vista laptop. When I want to add a Sql Server database to a website, errors tell me to install SS 2005 Express. MSDN SS 2005 Express download tells me I MUST  first install .NET framework v 2.0 before SS 2005. When I try to install framework v 2.0, I'm sent to v. 3.5 and no way to download SS 2005.
    How does one install a express sql server to run with Visual Web Developer 2008?   

    Momark,
    Do you still need help with this?
    Thank you!
    Ed Price, Power BI & SQL Server Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!

  • How to add BusinessPartner using DI server?

    Hi expert,
         previous i used DI API  for BP and Sales Order Add.Now i want to add  BP and SalesOrder using DI server.Please help any expert ,
         1 How to add BusinessPartner with address using DI server ?
         2 How to add Sales Order using DI server ?
    thanks & regards
    Surajit

    HI, Surojit
    Use B1WS, it will be easy to develop the app with DI Server.

  • How to add a service account in SQL Server to display the "Service Account Name" and "Display Name"

    Can someone
    help with steps on how to add the following in SQL Server 2012 environments?<o:p></o:p>
    "Service Account Name" and "Display Name"<o:p></o:p>
    Your help will be greatly appreciated.<o:p></o:p>
    leonie6214

    Hello,
    Is the following article what you are looking for?
    http://msdn.microsoft.com/en-us/library/ms345578.aspx
    If not, could you explain a little bit more what you want to accomplish?
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • Different versions of SQL Server 2005 Developer Edition

    Some of our business processes still use SQL Server 2005 and I need to install Developer Edition on my desktop.
    I have following downloads available in my MSDN subscription (other than Itanium):
    SQL Server 2005 Developer Edition - DVD (English) - 1 DVD ISO
    SQL Server 2005 Developer Edition - 64-bit Extended - 2x CD ISO
    SQL Server 2005 Developer Edition - 32-bit - 2x CD ISO
    The desktop is running 64-bit OS, so I definitely want to install 64-bit version. However, I am not sure what this "Extended" version available on CD-s is. Is this the only 64-bit version  in existence? Or are there 2 different 64-bit versions
    - "Extended" and "Non-Extended" (with non-extended possibly available on DVD - I haven't downloaded any images yet)?

    SQL Server 2005 Developer Edition - DVD (English) - 1 DVD ISO
    SQL Server 2005 Developer Edition - 64-bit Extended - 2x CD ISO
    SQL Server 2005 Developer Edition - 32-bit - 2x CD ISO
    The desktop is running 64-bit OS, so I definitely want to install 64-bit version. However, I am not sure what this "Extended" version available on CD-s is. Is this the only 64-bit version  in existence? Or are there 2 different 64-bit versions - "Extended"
    and "Non-Extended" (with non-extended possibly available on DVD - I haven't downloaded any images yet)?
    SQL server 2005 is outdated so sorry if my answer is not to the point . First DVD version seems to me like installable which has both database engine and client tools present in it for installation
    For second, SQL server 2005 installable was available in 2 CD's 1st CD was to install database engine/SSIS/SSAS/ SSRS features while second CD was to install specifically clint tools,books online legacy support . Its not possible to comment further without
    looking at contents but I guess you can use 2nd one. CD 1 would have one part of installable and CD 2 would have second
    And of course 3rd one is 32 bit of 2nd one.
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it.
    My TechNet Wiki Articles

Maybe you are looking for

  • How do you get the same skin wrinkles to match all the different Ethnicity?

    Hello! this is my first time posting a question in this forum, hopefully there will be some clever people out there who can help me! I have a wrinkled eye texture (see below) How do I digitally manipulate it so that i can use this same texture to on

  • Difference Between Enterprise and Personal Editions?

    Hi All, I want to install Oracle 9i on Window XP Pro. I am wondering what is the difference between the Enterprise Edition and the Personal Edition? Do they both come with the Enterprise Manager clients that I am used to using? Any advice much apprec

  • 6230i keeps crashing when trying to watch 3gp movi...

    So I ripped Fellowship of the Ring and put it on my 1Gb MMC. The only problem is, it gets to about 13 minutes and then the picture freezes. Another minute later, my phone reboots :-( Does anyone have any ideas what could be causing this? Thanks

  • Disable iTunes auto launch on iPhone docking.

    Hello I'm trying to disable iTunes from automatically opening when I dock my iPhone to my computer. I have successfully done this by disabling ituneshelper.exe but this automatically enables itself after every reboot. (even if I disable it via msconf

  • Itunes gift card credits disappeared

    I bought my first iMac in June and after I got it started up and running, the 60 or so dollars of itunes giftcards that I had loaded into my account disappeared.