All Discussions - Web Services Forum http://www.web-services-forum.com/discussions/feed.rss Thu, 23 Feb 12 05:12:02 +0000 All Discussions - Web Services Forum en-CA Service-based application life-cycle http://www.web-services-forum.com/discussion/6/service-based-application-life-cycle Tue, 09 Nov 2010 16:31:52 +0000 slane 6@/discussions
http://www.s-cube-network.eu/results/deliverables/wp-jra-1.1
]]>
Python web service examples http://www.web-services-forum.com/discussion/5/python-web-service-examples Tue, 24 Aug 2010 18:35:47 +0100 slane 5@/discussions
There are a few python SOAP web service APIS,

One of the more feature rich ones is called ZSI : http://sourceforge.net/projects/pywebsvcs/, the api download contains samples for its use,

Some more light weight SOAP APIs:
soaplib > http://www.python.org/pypi/soaplib, this one is maintained by the python project
suds > https://fedorahosted.org/suds
Examples for these are also included within the source.


Python JSON web services:
http://json-rpc.org/wiki/python-json-rpc

Example:
>>> from jsonrpc import ServiceProxy
>>> s = ServiceProxy("http://jsolait.net/services/test.jsonrpc")
>>> print s.echo("foobar")


]]>
PHP Web Services Implementation Examples http://www.web-services-forum.com/discussion/4/php-web-services-implementation-examples Tue, 24 Aug 2010 09:31:47 +0100 slane 4@/discussions
Documentation provided in the with the PHP documentation for various web services realted classes:

http://php.net/manual/en/refs.webservice.php

Here is an example of a PHP SOAP client accessing and being authenticatied by a remote web service:

http://www.php.net/manual/en/book.soap.php#96033

]]>
Java Web Service Implementation Examples http://www.web-services-forum.com/discussion/3/java-web-service-implementation-examples Mon, 16 Aug 2010 15:12:15 +0100 slane 3@/discussions
http://docs.sun.com/app/docs/doc/820-7627/bnayk?a=view

These examples use the JAX-RS API from Glassfish to implement the web services,

The approach is quite simple, In order to expose a method as a web method within a web service you annotate the method you want to expose with @WebMethod and its containing calss with @WebService. then you publish the class to a glassfish instance, here is a simple example from the tutorial:


package helloservice.endpoint;

import javax.jws.WebService;

@WebService
public class Hello {
private String message = new String("Hello, ");

public void Hello() {}

@WebMethod
public String sayHello(String name) {
return message + name + ".";
}
}]]>
Key Web Service Standards http://www.web-services-forum.com/discussion/2/key-web-service-standards Wed, 09 Jun 2010 13:05:14 +0100 slane 2@/discussions
From my experience the big 3 required for every web services project are:

SOAP for communication
WSDL for describing interfaces
BPEL for composing service compositions

What are the other key optional ones ? CDL ? WS-Secuity ?]]>
SOA Implementation Technologies http://www.web-services-forum.com/discussion/1/soa-implementation-technologies Wed, 09 Jun 2010 12:04:11 +0100 slane 1@/discussions
Here are some to Start with:

CORBA
DCOM
Web Services]]>