Client Platform? Server Platform?


I know not everyone is interested in getting a truckload of business intelligence about the users of their software. But for those of you who think the Desktop Analytics project is pretty cool, tell me a little bit about your development platforms.

Do you use Java or .Net to develop your desktop software? Or are you maybe using C++ with MFC or WxWidgets? Anyone selling desktop software built with Ruby or Python?

Do you have a server? Is it Windows or Linux? Do you have your own server, or do you use a VPS account? Or just a shared web server, with PHP/MySQL? Do you have permission to install your own software into your server environment? Are you already running a Java app server? Tomcat, or something else?

Whatever platforms people seem interested in are the ones I’ll focus on in my development, so express you preferences here!

socially-bookmark this article:
Add 'Client Platform? Server Platform?' to Del.icio.us Add 'Client Platform? Server Platform?' to digg Add 'Client Platform? Server Platform?' to FURL Add 'Client Platform? Server Platform?' to blinklist Add 'Client Platform? Server Platform?' to My-Tuts Add 'Client Platform? Server Platform?' to reddit Add 'Client Platform? Server Platform?' to Feed Me Links! Add 'Client Platform? Server Platform?' to Technorati Add 'Client Platform? Server Platform?' to Socializer 

10 Responses to “Client Platform? Server Platform?”

  1. Bob Says:

    Using Visual Studio, C++, proprietary GUI tools, no server.

  2. Jon Lundberg Says:

    I’m currently using WTL, but that is likely to change to C#/.NET 3.X for my next project.

    Server side I’m using a shared LAMP host. I’d consider Wordpress as a benchmark for accessibility and ease of install.

  3. Yanic Says:

    Using java for a cross-platform development tool - an editor for UML sequence diagrams, check my link.

  4. Doug Says:

    Desktop app is C++ with MFC. Server is a custom server built using C++ (also Windows only). Some day it might integrate with PHP but right now it uses simple templates.

  5. Sohail Says:

    Focus on one and you’re unnecessarily cutting people off. If I have learnt anything in my short time here, platforms are difficult to predict but every platform from now till the machines achieve sentience will need to interface with C.

    Write a C dll which does all the work, export nicely to each language, profit. Feel free to use .NET behind the scenes though.

  6. benji Says:

    I’m planning on an embeddable library with C bindings, but I’m a little bit unsure about how to proceed.

    I think most users of high level (and primarily object-oriented) languages will balk at an API that consists entirely of free functions. So the language-specific wrappers will almost certainly create an object-oriented facade around those functions.

    But I’m not really sure how to do that. Anyone have any tips? Maybe links to some articles describing a good set of techniques?

  7. Sohail Says:

    Just write a generator yourself. Say its driven from a api.xml file:

    Some doc here

    Some doc here
    Some doc here

    So given the above Foo class, your C-API would look like:

    // _1 b/c number of parameters (C doesn’t allow overloading)
    foo*
    new_foo_1(int something);

    void
    delete_foo(foo * fooptr);

    int
    foo_bar_1(foo * fooptr, int some_param);

    Should take you all about one day to write per language you want to target. Try C++ to start. I’ve done this too many times to count.

  8. Sohail Says:

    Ugh… I pulled a noob: XML in blog comment.. Sorry!

  9. Dmitriy Says:

    .NET 2.0 (C#).
    Considering using Qt for the next product.

    Servers:
    1. A bunch of local servers (Windows 2003, Solaris 10, Fedora 9, openSUSE 10.3) on VMWare Server and Microsoft Virtual Server).
    2. Web hosting account with VERIO. Cannot install custom .exe’s.
    3. Virtual Server account (with full Admin privileges) with VPSLAND. Here, I *can* install my custom executables, - using Remote Desktop.

    No, no Java yet. Might have to switch the current DBMS to Sun JavaDB (or, IBM Cloudscape, or Apache Derby) for the next release: if so, will need Java runtime then.

  10. Gili Tzabari Says:

    I use Java on both the client and server end.

    I self-host for now under Windows (Tomcat) but plan on migrating to a dedicated server in the future as the need arises.

Leave a Reply