Looking for a client/server that supports multiple protocol and delivery

Hi all, I don't know if this the right place to ask my question,here it goes.
I am looking to develop a client-server that supports multiple protocols such as HTTP, HTTPS etc. I am looking for a framework( i don't know if that is correct or I need some kind of web-service (soap etc)) that would manage connection, security etc. I would like to like to devote most of my time in developing business objects with multiple delivery mechanism such as sending serilized java objects, xml message or soap message, or in some case JMS message as well. So I need a client server that can come in via TCP/IP or HTTP or anyother industry standard protocol and I should be able to service him with pub/sub model and also request/response model as well.
I don't know if I had explained what I need, I would like to know what technologies I should be evaluating and which direction I should be heading... Also the server I'm developing should be free of Java constraints if needed...
Also this service is not webbased service as now but if need arises I should have a flexibilty to make them web enabled in future. Also I would like to work with open source webservers or appservers if I need

Inxsible wrote:I installed i3 - along with the i3status - which I still have to figure out. I am liking what I see as of now. It reminds me of wmii -- when I used it way back when. However I do not like the title bar. I would much rather prefer a 1 px border around the focused window.
"i3 was created because wmii, our favorite window manager at the time, didn't provide some features we wanted (multi-monitor done right, for example), had some bugs, didn't progress since quite some time and wasn't easy to hack at all (source code comments/documentation completely lacking). Still, we think the wmii developers and contributors did a great job. Thank you for inspiring us to create i3. "
To change the border of the current client, you can use bn to use the normal border (including window title), bp to use a 1-pixel border (no window title) and bb to make the client borderless. There is also bt  which will toggle the different border styles.
Examples:
bindsym Mod1+t bn
bindsym Mod1+y bp
bindsym Mod1+u bb
or put in your config file
new_window bb
from: http://i3.zekjur.net/docs/userguide.html (you probably already found that by now )

Similar Messages

  • Making a chat server that supports multiple clients!

    This is what I got so far:
    import java.net.*;
    import java.io.*;
    public class Server{
         public static void main(String [] args){
              ServerSystem ssys = new ServerSystem();
              ssys.ServerMethod();
    class ServerSystem{
         static ServerSocket ss;
         public void ServerMethod(){
              try{
                   ss = new ServerSocket(27700);
                   boolean listening = true;
                   for(;listening;){
                        ClientThread ct = new ClientThread(ss.accept());
                        ct.start();
                        ss.close();
              }catch(Exception e){
                   System.exit(0);
    class ClientThread extends Thread{
         ServerSystem ssys = new ServerSystem();
         ServerSocket ss = ssys.ss;
         public void run(){
              try{
                   BufferedReader in = new BufferedReader(new InputStreamReader(ss.getInputStream()));
                   PrintWriter out = new PrintWriter(ss.getOutputStream(),true);
              }catch(Exception e){
                   System.out.println(e);
    }3 Errors:
    ClientThread ct = new ClientThread(ss.accept()); CONSTRUCTOR : CANNOT RESOLVE SYMBOL
    BufferedReader in = new BufferedReader(new InputStreamReader(ss.getInputStream())); METHOD : CANNOT RESOLVE SYMBOL InputStream
                   PrintWriter out = new PrintWriter(ss.getOutputStream(),true); METHOD : CANNOT RESOLVE SYMBOL OutputStream
    First of all, how do I fix those. Second, am I on the right track for a server that supports multiple clients? Please help me with this.
    Thanks!

    well, since I feel kinda bad for just re-posting the link to the API docs previously posted by supermicus I shall elaborate - though, since my reading for comprehension skills are clearly lacking, I will not attempt to teach you to read.
    This conversation should be held in the "New to Java Technology" forum, BTW.
    Java derives a lot of its power from the huge library of classes that ships with it, which is called the API. These classes are grouped into packages roughly along functional lines, so you should expect to see some relationship between the classes found in a given package - the java.net.* classes all pertain to networking. The API documentation describes three things about each class - fields that are available, constructors that you can use, and methods that you can call. Basically, anything at all that you can do with a given class (ThreadGroup, for instance) can be found in the documentation for that class. Typically (for non-static classes), you call the constructor that seems most appropriate via the "new" keyword, and, using the reference returned from that, you call the method that does what you want. It's all outlined in the docs.
    If you don't get what you need from the docs, then read the appropriate Tutorial (also in the list of links to the left of your screen) find the one on Threads and off you go.
    I hope this helped.
    Lee

  • [SOLVED]Looking for a tiling manager which supports multiple monitors

    I use musca and I absolutely have no problems with it other than this :
    http://bbs.archlinux.org/viewtopic.php? … 04#p774104
    I also tried emailing the musca distribution list but it bounced, so I am not sure how actively it is being maintained.
    So I am on the lookout for a new tiling window manager. I know Xmonad supports multiple monitors, but I do not know haskell and I was hoping to find something else as well. Xmonad is also not a manual tiler.
    So let me know if anyone of you knows of a tiler that has the above support.
    EDIT : I have already looked at the Comparison of Tiling Window Managers over at the wiki. Infact I was the one who added Musca's entry in that table.
    Last edited by Inxsible (2010-07-13 05:49:13)

    Inxsible wrote:I installed i3 - along with the i3status - which I still have to figure out. I am liking what I see as of now. It reminds me of wmii -- when I used it way back when. However I do not like the title bar. I would much rather prefer a 1 px border around the focused window.
    "i3 was created because wmii, our favorite window manager at the time, didn't provide some features we wanted (multi-monitor done right, for example), had some bugs, didn't progress since quite some time and wasn't easy to hack at all (source code comments/documentation completely lacking). Still, we think the wmii developers and contributors did a great job. Thank you for inspiring us to create i3. "
    To change the border of the current client, you can use bn to use the normal border (including window title), bp to use a 1-pixel border (no window title) and bb to make the client borderless. There is also bt  which will toggle the different border styles.
    Examples:
    bindsym Mod1+t bn
    bindsym Mod1+y bp
    bindsym Mod1+u bb
    or put in your config file
    new_window bb
    from: http://i3.zekjur.net/docs/userguide.html (you probably already found that by now )

  • Looking for oracle JDBC driver that support Rowset

    I am using oracle driver "oracle.jdbc.OracleDriver" downloaded from oracle.com and i am using cached rowset in my program but my program gave me runtime error :
    Exception in thread "main" java.lang.AbstractMethodError: oracle.jdbc.driver.OracleDatabaseMetaData.locatorsUpdateCopy()Z
    at com.sun.rowset.CachedRowSetImpl.execute(CachedRowSetImpl.java:757)
    at com.sun.rowset.CachedRowSetImpl.execute(CachedRowSetImpl.java:1385)
    at WebRowSetSample.main(WebRowSetSample.java:73)
    but if i used data driver provided by Data Direct "com.ddtek.jdbc.oracle.OracleDriver" then it is working fine but the problem is data direct driver is not free and cant be used in production server, so if anyone know any free driver that support oracle and rowset implementation or able to correct problem then plz help me out.
    thanks...

    Hi I am using latest driver from oracle site, but the problem is when i fire execute method of cahed rowset i throws error that i mentioned above, if you have any other driver than mail me on [email protected]

  • I'm looking for a music player that can skip forward and backwards a few seconds?

    I'm looking for a music player app that can skip forward and backwards a few seconds?

    MPD rocks, runs here for months without major problems.
    The client side is very flexible, you can choose many players:
    http://www.musicpd.org/clients.shtml
    For X, for console, etc..
    Edit:
    MPD supports Icecast also, to create streams.
    Last edited by mephisto (2007-05-15 14:00:36)

  • What is a good opensource rtmp server that support SharedObject.getRemote() and does sync events ?

    Since adobe stratus does not support shared objects what is a good alternate  open source
    rtmp server
    thanks    

    Red5

  • How to get alert for app server that experienced high memory and CPU utiliz

    Hi
    How to get  alerts configured and turned u201Conu201D for the  app server that experienced high memory and CPU utilization?
    And let me know where we can check this?
    Regards,
    Neni

    hi,
    Have you configured a Central Monitoring System (CEN)? This includes registering the agent on the CEN, starting it and configuring the Central Auto Reactions on CEN using RZ21 transaction.
    [http://help.sap.com/saphelp_nw70ehp1/helpdata/en/48/05c80724d63836e10000000a42189b/frameset.htm|http://help.sap.com/saphelp_nw70ehp1/helpdata/en/48/05c80724d63836e10000000a42189b/frameset.htm]
    Jansi

  • I am looking for a map app that will allow me to place pins where my clients offices are on a map and keep them save every time I open the app. Does anyone out there know of an app that will do this?

    I am looking for a map app that will allow me to place pins where my clients offices are on a map and keep them save every time I open the app. Does anyone out there know of an app that will do this?

    "Motion 5" is your friend.
    Michael Wohl has a nice 15 video series (free) about Motion 5 at http://www.macprovideo.com/tutorial/motion5101-overview-and-workflow-guide (right side)
    This is a "teaser" series to sell his tutorials but it is really good. Just saw it yesterday for the first time.
    While all you want is just to place pins, realize that Motion has so much more. All kinds of effects and they can be really customized. Maybe put their street address, contact name, and phone number by the pin?
    Motion 5: cheap at $49.99 (just got my download two days ago)
    Motion 5: Support Community athttps://discussions.apple.com/community/professional_applications/motion_5
    If you're using the map for, say, deliveries, and use an iPad, what you could do is have a general map of the area imported into Motion, create the pins and whatever, then save (share?) it to the iPad.
    Disclaimer: I have virtually no relationship with anything connected with this tutorial product, developer, or anything.

  • I'm looking for a music video that's not...

    I'm looking for a music video that's not on itunes. Where can I express a wish?
    (My wish: ofra haza "im nin alu" - musicvideo)
    I want it because of the good quality recording.
    Greetz!

    MPD rocks, runs here for months without major problems.
    The client side is very flexible, you can choose many players:
    http://www.musicpd.org/clients.shtml
    For X, for console, etc..
    Edit:
    MPD supports Icecast also, to create streams.
    Last edited by mephisto (2007-05-15 14:00:36)

  • Fatal error: Client does not support authentication protocol requested by server; consider upgrading MySQL client

    Fatal error: Client does not support authentication protocol
    requested by server; consider upgrading MySQL client in
    /homepages/28/d74942468/htdocs/cosmic/sites/onlinemove/Connections/db.php
    on line 9
    This is the error that comes up on the server where the site
    sits. The database is working on my local machine with the local
    settings, but wont connect due to the above.
    I think im using MySQL client 3.23 How do i upgrade?
    I found this on MySQL site:
    http://dev.mysql.com/doc/refman/5.0/en/old-client.html
    I'm not sure how to edit the connection string to make it
    accept the vaules.

    The_FedEx_Guy wrote:
    > Fatal error: Client does not support authentication
    protocol requested by
    > server; consider upgrading MySQL client in
    >
    /homepages/28/d74942468/htdocs/cosmic/sites/onlinemove/Connections/db.php
    on
    > line 9
    > I think im using MySQL client 3.23 How do i upgrade?
    The MySQL client that the error refers to isn't the version
    of MySQL,
    but the MySQL library bundled with PHP. It sounds as though
    your hosting
    company has upgraded to MySQL 4.1 or higher, but is still
    using PHP 4.
    > I'm not sure how to edit the connection string to make
    it accept the vaules.
    You can't. It's the way that the user account passwords are
    stored in
    MySQL. You need to get the hosting company to upgrade to PHP
    5 or to
    reset the passwords in MySQL using the OLD_PASSWORD()
    function. This
    needs to be done by someone with top-level administrative
    privileges on
    the database.
    David Powers, Adobe Community Expert
    Author, "Foundation PHP for Dreamweaver 8" (friends of ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

  • Has the ODI same installable for both Client & Server?

    Has the ODI same installable for both Client & Server?
    i.e. Team with multiple developers is concurrently working on ODI project. Repository is very much same. They just need the Designer Module in their desktop.
    Is there separate installable for development IDE for ODI (Designer Module) instead of complete ODI which may include the server also?
    Thanks In Advance
    priyadarshi.

    Hi ,
    You can install only the client in multiple machine if multiple user are going use/share the same repository ... and you should be having the same
    snps_login_work.xml
    snps_login_security.xml
    in all your client installations....so that you can have multiple users created and share the same repositroy ...
    hope this helps
    Thanks
    Ananda

  • Looking for form filling app that can do this

    I am looking for an iPad app that can do this. I know it would need some type of cloud/web based backend to setup and manage but I'm looking for the following:
    We are a fire and security company. Many jobs require multiple documents to be created such as a service ticket, alarm activity log and maybe another form. The problem is if the tech needs to fill out the service ticket and activity log, those forms require in many ways the same information such as description of problem and end results and then each form has it's own separate info required. Right now the tech either has to retype all the similar data or try to copy and paste between the different fillable PDF files.
    I'm looking for a solution that will allow me to select which forms are needed and then it will populate the required fields to fill in and when complete it will export it to PDF on the appropriate company document templates and allow signatures to be placed before printing via AirPrint and emailing it to customer and our office.
    Does anyone know of a solution like this? It is not an easy thing to look for on Google.

    To more easily find compatible apps:
    iOSSearch - search the iTunes store for compatible apps.
    Apple Club - filter apps by iOS version.
    Starting when iOS 7 was released, Apple now allows downloading the last compatible version of some apps (iOS 4.2.1 and later only)
    App Store: Downloading Older Versions of Apps on iOS - Apple Club
    App Store: Install the latest compatible version of an app
    You first have to download the non-compatible version on your computer. Then when you try to purchase the version on your iPod you will be offered a compatible version if one exists.

  • Looking for a virtual app that will allow me to take a photo then be able to add details

    Looking for a virtual app that I can use in my event planning and designing that I can take a pic on my iPad and then design the pic to my personal needs?

    "Motion 5" is your friend.
    Michael Wohl has a nice 15 video series (free) about Motion 5 at http://www.macprovideo.com/tutorial/motion5101-overview-and-workflow-guide (right side)
    This is a "teaser" series to sell his tutorials but it is really good. Just saw it yesterday for the first time.
    While all you want is just to place pins, realize that Motion has so much more. All kinds of effects and they can be really customized. Maybe put their street address, contact name, and phone number by the pin?
    Motion 5: cheap at $49.99 (just got my download two days ago)
    Motion 5: Support Community athttps://discussions.apple.com/community/professional_applications/motion_5
    If you're using the map for, say, deliveries, and use an iPad, what you could do is have a general map of the area imported into Motion, create the pins and whatever, then save (share?) it to the iPad.
    Disclaimer: I have virtually no relationship with anything connected with this tutorial product, developer, or anything.

  • I'm looking for the stock footage that you see in iMovie at the apple store.

    I'm looking for the stock footage that you see in iMovie at the apple store. Does anyone know where to find it.

    Credit Safebrowser
    The Padlock is no longer part of Firefox; it was removed beginning in Firefox 4. The padlock shows that there is a secure connection but does not supply additional information. You could have made a typographical error and still have been connected to a secure connection. The padlock was replaced in Firefox 3 with the Site Identity Button. Familiarize yourself with the Site Identity Button at the left end of the Location Bar:
    https://www.mozilla.com/en-US/firefox/security/identity/
    https://support.mozilla.com/en-US/kb/Site+Identity+Button
    http://www.dria.org/wordpress/archives/2008/05/06/635/
    You can install this add-on if you wish:
    https://addons.mozilla.org/en-US/firefox/addon/padlock-icon/

  • Looking for NNTP client for iPhone

    looking for NNTP client for iPhone!!!
    thanks and please help. when I use Windows Mobile I can use NNTP client.

    Hey all.
    I'm actually the developer of that app--and as Irish John points out it was originally an app for the jailbroken devices.
    However, I'm currently in the process of writing it for 2.*, and hope to have it out in the coming weeks. It will be free, or very close to it.
    If you're interested in being informed of when this happens, feel free to star this issue: http://code.google.com/p/inewsgroup/issues/detail?id=56 .
    If you have any questions/comments/thoughts/feature requests, feel free to email me at [email protected] .
    Take care .

Maybe you are looking for

  • Dynamic Recovery Solutions and odd DOFD

    So I have a new collection on EQ Dynamic Recovery Solutions, and the OC is Checksmart. It was reported 7/2015 with a DOFD of 10/2014.   Roughly 7 to 10 years ago, I was stuck in the payday advance loop and routinely got advances from Checksmart. So I

  • Keynote won't accept pasted items (graphics, eqs, etc)

    I have a serious issue. The new Keynote 6,0 will not let me paste in graphics from say, Safari. It just pastes a genetic "text" label. I often import equations from Grapher.app and it wont let me paste that either, Anyone else see this issue?

  • Ipod Classic launches my computer

    When I connect my Ipod classic to my laptop (in disk mode), my computer is launched instead of Itunes. I am using Itunes 7.6.0.29 as my Ipod stopped working on Itunes 7.7.1.11 Guys any one help me please.

  • My iPad apps keep crashing

    Hi! I Got my iPad a month ago, and was working great. I really loved it and keep taking it everywhere I go. The problem is, all the apps that came with it (safari, mail, youtube, etc) keep crashing now. I mean, I tap to inicialize them, they open, st

  • MSA - MSY: CPResult Mandatory in Activity

    In MSA Application I want to set the CPResult field mandatory in any activity. I tried to set it this way in MSY: - Go to Sales Transactions Settings. - Field Property Maintenance. - Create New: Sales Trans: ZACT (my activity) Business Object: BOACTI