Git Product home page Git Product logo

f3ktime's Introduction

README for f3ktime

This is f3k timesend webservice prototype

Installing

Install the newest version from github:

git clone https://github.com/wws22/f3ktime.git

Briefing

The main purpose contain in develop the universal interface between stopwatch and score counting program during F3K aeromodelling contests.

F3K timesend WS sequence diagram

The project includes:

Sample of WSDL:

docs/f3ktime.wsdl

XSD for datatypes:

docs/f3ktime.xsd

Samples of SOAP interaction:

docs/Samples.txt

The Example of server side code:

src/timesend/f3k.java

This code can try with SOAP UI <https://www.soapui.org/>

NB!

It's very important to use equal values for PORT & PATH by compatibility reasons.

The best practice contain is in use DNS Service Discovery (DNS-SD) like a Zeroconf, Bonjour, mDNS-SD <http://www.dns-sd.org>. That make possible to find the f3ktime-server automatically from smartphone or any other device in your LAN.

We has tried to use Zeroconf library <https://github.com/faceless2/cu-zeroconf> and has been very satisfied.

It was looked like:

Zeroconf zeroconf = new Zeroconf();
zeroconf.addAllNetworkInterfaces();
Service s = zeroconf.newService("f3ktime", "http", 6543).putText("path", "/services/timesend/f3k");
s.announce();
/*
 Place your WS here :
 Object implementor = new f3k();
 String endpoint = getWsEndpoint();
 Endpoint.publish(endpoint, implementor);
 ...
*/
s.cancel();
zeroconf.close();

Where:

PORT = 6543
PATH = /services/timesend/f3k
SERVICE = f3ktime

We has used the own fixed version of cu-zeroconf. For install from github enter:

git clone https://github.com/wws22/cu-zeroconf
git checkout fixes

Servers & Clients

More about F3K/DLG

You can read them online at <https://en.wikipedia.org/wiki/Discus_Launch_Glider>.

Authors and contact info

Victor Selukov <victor [dot] selukov [at] gmail.com>

f3ktime's People

Contributors

wws22 avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.