Can i use same Server for server side and client??

Hi,
i m developing webservices in java and using two different server for server side and client.
e.g. i m using one tomcat server on a machine to run webservice and again using one more tomcat server on client side at different machine.
and hence it need two tomcat server.
But i want only one server to run webservice and client.
So please help me out...
Thanks

Hi,
It is always recommended to maintain different servers
REgards,
Ravi.

Similar Messages

  • I have two iphone one is iphone 5 and othere is iphone 4 . can i use same id for both ? And do i have to purchase the application again for iphone 4 which i have buyed for iphone 5.??

    i have two iphone one is iphone 5 and othere is iphone 4 . can i use same id for both ? And do i have to purchase the application again for iphone 4 which i have buyed for iphone 5.??

    You can use the same Apple ID for both phones, you would then be able to use the purchased Apps/Content on both phones without having to pay again.

  • Can I use same account for android and PC and how ...

    Can I use same account for android tablet and PC and how do I link both?

    You can use the same Apple ID for both phones, you would then be able to use the purchased Apps/Content on both phones without having to pay again.

  • In Bte can i use same Product for 2 different process

    in Bte can i use same Product for 2 different process

    hi
    as per i know yes but since there r two type of interface behaviour is defferent .
    For
    Publish & Subscribe interfaces 
    if any event occur in this type both the process can work simultaneously and they will not intervene each other
    whereas in
    Process interfaces
    at an time any one process can be active.
    Reward if usefull
    Cheers
    Snehi

  • Can i use same licence for after effects 7 on multiple computers

    can i use same licence for after effects 7 on multiple computers

    you can install on any number of computers, but you can activate on, at most, two computers concurrently with a single user license.

  • Can you use time capsule for your mac and have readynas backup your pc's on the same network

    Can you use time capsule for your mac and use readynas to back up your pc's on the same network

    Sure, that is trivial setup.. they both have different names and IP addresses.
    You should be able to use ReadyNas for TM backup but you should check the latest state of play for that.

  • Can i use create function for MSSql scalar and table valude function.

    Hi,
    1) Can i use create function for MSSql scalar and table valued function?
    2) How many type of user defined function are there in oracle 11g express?
    3) And can i reture any "type" form user defined function?
    yourse sincerely

    944768 wrote:
    Q1)That means even if i return predefined types like integer, varchar2 then also PGA is used ?The data type does not determine where the variable is stored. A string (called a varchar2 in Oracle) can be stored in stack space, heap space, on disk, in a memory mapped file, in a shared memory, in an atom table, etc.
    It is the who and what is defining and using that string, that determines where and how it is stored.
    The Oracle sever supports 2 languages in PL/SQL. The PL (Programming Logic) language is a procedural/declarative language. It is NOT SQL. SQL is integrated with it. The PL/SQL engine uses private process memory (PGA). So PL/SQL variables exist in the PGA (but there are exceptions such as LOBs).
    Q2) So please suggest me solution in oracle.Sounds to me you are looking at how to implement a T-SQL style function as an Oracle function, and once implemented, do joins on the function.
    Do not use PL/SQL in SQL in place of a SQL select. It is not T-SQL.
    One cannot use PL/SQL to create functions along the style of T-SQL, where the function executes a SQL using some conditional logic, and then return as if the function was a native SQL select.
    T-SQL is an extension to the SQL language - making it a hybrid and very impure language implementation. PL is based on ADA - part of the Pascal family of languages. The E-SQL (embedded SQL) approach used in languages like C/C++, Cobol and Ada, has been transparently done in PL/SQL. You can write and mix PL code and variables with SQL code. And the PL/SQL engine figures out how to make the call from the PL/SQL engine to the SQL engine.
    But PL/SQL is not "part" of the SQL language and does not "extend" the SQL language in a T-SQL fashion.
    So you need to check your SQL-Server preconcepts in at the door, as they are not only irrelevant in Oracle, they are WRONG in Oracle.
    The correct way in Oracle, in a nutshell - Use the SQL language to do data processing. Use PL/SQL to manage conditional process flow and the handling of errors.

  • Can I use Time Capsule for Time Machine and a place to put my iPhoto Library

    Can I use Time Capsule for Time Machine and a place to put my iPhoto Library?

    Only if you partition the Time Capsure into two partitions, one for TM and one for the iPhoto LIbrary.  But you won't be able to backup that library as it will be on the same drive as the TM backups.
    It's not recommended.  An alternative solution is to get another EHD, move the library to it and run it from there. Then TM can backup both your boot drive and the working EHD drive.
    OT

  • Can I use a domain for one site and mobile me for a different site?

    Can I use a domain for one site and mobile me for a different site?
    I have two sites, I would like to have up and I would like to do one through a domain and one through mobileme is this possible?

    Yes you can. You can use the CNAME method of forwarding for the first site (the top site in iWeb) and use the MMe URL for your account for the other site: http://web.me.com/YourAccount_Name/SiteName/
    OT

  • How can I use same iTunes on iPad 64GB and iPhone 5 16 GB memory

    How can I use same iTunes account on iPad 64GB and iPhone 5 16 GB memory

    Just connect them your computer. iTunes will treat each device separately. Or if you mean iTunes Store account, you can choose what you download to each device, either directly from the iTunes Store or in synching from iTunes on your computer, as long as you don't have automatic downloads turned on.
    Regards.
    Forum Tip: This forum is for questions about using iPads in companies and organizations. Questions about the general use of iPads will normally best be posted in the Using iPad forum.

  • How to use same form for Editing info and creating info.

    Hi all,
    Here my aim is to select the user from list and edit the user info. There is one more option to create the new user.
    Currently I am using two separate input forms one for Editing and one more creating new user.
    Can anyone tel me, how to use the same form for both editing and creating.
    Thanks,
    Ramesh Biradar

    Hi Ramesh,
    I'll make some assumptions about how you're going about this, and then give you a possible solution:
    I assume that you have a table with selection on one page. To edit an item, you wish to select it's radio button and click an edit button to take you to another page with the item filled in to edit it. To create a new item, you'd like to click a "new" button and go to the same page.
    If this is correct, here's the basic steps:
    1). Assuming you have both the list and edit pages already created, make sure you have a JSF navigation case defined going from the list page to the edit page. I'll call this navigation case "goToEditPage" for this discussion.
    2). To make the edit button, drag a command button from the component palette and drop it on the af:TableSelectOne (the column in your table containing the radio buttons for selection).
    3). Set the action property on this command button to "goToEditPage".
    4). Now, to make the create button, drag a command button from the component palette somewhere on the page. I like to put mine in a panelButtonBar inside the actions facet of an af:Page component.
    5). Now, for the Action property of this command button, bind it to a method in your page's backing bean. The code will look something like this:
    public String performNew()
        BindingContainer bindings = getBindings();
        OperationBinding operationBinding = bindings.getOperationBinding("Create");
        Object result = operationBinding.execute();
        if (!operationBinding.getErrors().isEmpty())
          return null;
        return "goToEditPage";
    }Hope this is helpful, Ramesh.
    Regards,
    John

  • Can I use both Lightroom for a Mac and PC to do the same project?

    My school uses Mac I use PC I would like to know if I start my project in light room for Mac if I can finish it in Lightroom for PC?

    Yes, as long as you have a drive that both Mac & Windows can read...LR serials are platform agnostic...

  • Can you use same earphones for iPhone and iPad air

    Can you use the earphones from an iPhone on an iPad air

    Welcome to Apple Support Communities
    Of course. They are compatible with both iPhone and iPad Air

  • Can i use one hardrive for time machine and other data?

    i want to buy an external drive for my macbook pro retina. i want to knwo if i were to buy an external hardrive big enought ot back up my 768 on my retina could i also put other media on it (like video and movie) without it overwriting or something like that

    screenfreak wrote:
    i want to buy an external drive for my macbook pro retina. i want to knwo if i were to buy an external hardrive big enought ot back up my 768 on my retina could i also put other media on it (like video and movie) without it overwriting or something like that
    Buy one hard drive for TimeMachine, large as possible for maximum amount of saved states, keep it connected more often so it updates more often to recover deleted files.
    Buy one hard drive the same size or slightly larger to clone your boot drive to it, it will be a hold option key bootable clone in case your boot drive fails to boot. Update it before doing anything major to your machine. Keep it disconnected in case of malware so it doesn't get infected or delete your files.
    Buy one hard drive for extra storage if your boot drive is getting full for instance.
    Buy one hard drive to backup the extra storage drive and treat it like the clone, make sure you have clean extra storage drive before connecting and updating it.
    Label and date each drive, your memory will fail you and you'll accidentally overwrite a drive.
    Keep your drives separate and in their respective purposes, in other words do not use partitions or use TimeMachine to backup other drives.
    Never use Filevault, it's cracked, it's worthless, impossible to recover data and you'll have to give up the password for repair or customs/searches anyway. Use a external hardware based encrypted drives and USB Iron Keys. This way your sensitive data is off the machine and can be used with another machine.
    Despite how many drives and backups, it's good to also make burned and labeled DVD's of your most important files like music for instance when you first get them. It's because sectors fail on hard drives and takes out your data and thus on all backups made afterwards. With burned DVD's it's permanent, unless you scratch it, melt it or loose it.
    Hardware also fails, more often than software because it's moved/abused while in operation.
    If you lose your TM drive, you ALSO lose what's on the other partitions on the drive or data that TM drive was backing up from other drives.
    Drives are cheap, data is not. Protect the data. Because it's a fortune trying to recover lost data off a dead drive.

  • Can I use my headset for "sound-out" and phone mic...

    I have an E51 and the headset that came with it. I would like to achieve the following during calls: To use the headset for sound-out (i.e. as headphones) and the phone mic for sound-in. The mic on the headset gives a lot of static and I would rather use the phone mic (girlfriend complains).
    So I tried this: Under Tools>Settings>General>Enhancement, I set the Default to Headphones.
    Still, when I connect my headset it says "Default Enhancement: Headset" and the headset mic is automatically used.
    The default enhancement settings does not seem to matter.
    Does anyone know if there is a way to solve this? Is there a way to manually switch between the headset and phone mics?
    Thanks!

    Thanks for the reply. I am not using a bluetooth headset but a cabled one (that one that came with the phone for me -- I guess nokia skimped a bit here, not shipping with a bt headset).
    I was recently told basically the same thing you are saying in a store, that it is not possible to use the mic for sound-in during a headset call. He also said that any cabled headset or even *headphones* will be recognized as a headset by nokia phones because they all have the same 3 connectors (right, left, mic) on the 2.5mm jack. Can that really be right?
    So that means that even if I get a set of cabled headphones for my e51, I will not be able to use them for sound-out during a call?
    cheers

  • Can I use multiple IDs for one iTunes and multiple devices

    We have one family computer with iTunes, my older brother has an iPhone and I have an iPhone. A family ID was previously used to purchase songs for the family to share. My older brother has created an apple ID for his iPhone, and l have a yet unused apple ID. my brother downloaded songs etc onto the family iTunes that I would like to share, there are songs on the family apple ID that we would both like. Can you download purchases from multiple apple IDs into one iTunes  account, then sync that data onto multiple phones that each have a separate ID? Is iTunes linked to one ID? Can purchases from multiple IDs be grouped together in our family account. Also do I Actually need a separate Apple for my iPhone to prevent private messages and contacts being shared?
    Thanks for any advice

    I forgot to add my iPhone is brand new and unused, and also that the iTunes account has non purchased songs on there. Can these be shared. As it is a new computer the purchases from the family ID have not been downloaded yet

Maybe you are looking for

  • Inserting records in master detail form

    I am moving an existing Webdb Application to portal. In the application there is a master detail form along the following lines Dept Id: 10 Dept Name: IMS Employee ID Employee Name etc 1586 Julie Wilks Currently users can insert/update/delete detail

  • Scheduled wake / lid closed

    Got my Macbook Pro yesterday, and I'm having a blast! One question about sleep and wake issues though, sorry for the n00b ignorance. I have a program that I'd like to kick off to run at 5 AM every day. (It's Isilox, an app that downloads pages from t

  • IPhoto green corrupted screen in fullscreen edit mode when adjusting shadow

    I am using iPhoto '09 version 8.1.1 and was editing a photo in full screen mode. Operating system is 10.6.2 and the machine is a MacBook Pro 15" 1.83 GHz Intel Core Duo. Graphics card is ATI Radeon X1600. I moved to the next photo but then arrowed ba

  • I want to display html textbox information in worddoc when i click submit

    hi , my problem is i want to display html textbox information in worddoc when i click on submit button. i want do open word doc when i perform submit please help its very urgent. Thanks. Raj

  • BR Studio

    Hi Gurus can some one tell me about BR Studio tool? is it free ? how do you install it? are the same features available in BRTOOLS for back up and recovery for portal available in BRSTUDIO? Regards Buddhike