Hi Marek harbour have a solution for SOAP.CLIENT and afaik is not possible a soap server, but harbour have a lot of capability underground
A SOAP server is simply special code that listens for SOAP messages and acts as a distributor and interpreter of SOAP documents. External Web services may interact with application servers, which process SOAP requests from a variety of clients. The Windows Communication Foundation (or WCF), is an API for building connected, service-oriented applications. WCF can use SOAP messages between two processes http://www.microsoft.com/downloads/details.aspx?FamilyID=2a8e06d9-188d-4ec8-ba2d-d3deb96fc06d&DisplayLang=en Please post here any info that you have 2009/10/14 Horodyski Marek (PZUZ) <[email protected]>: >>-----Original Message----- >>From: Massimo Belgrano [mailto:[email protected]] >>Sent: Wednesday, October 14, 2009 10:10 AM >>To: Harbour Project Main Developer List. >>Subject: Re: [Harbour] Web Services in Harbour >> >>Hi marek >>You have made an interesting question follow my info i have >>not an harbour reply but somebody can help, translate > > [...] > >>UDDI (Universal Description, Discovery and Integration) a >>directory for storing information about web services WSDL (Web >>Services Description Language) XML-based language for >>locating and describing Web services. >> >> example we will use ASP.NET to create a simple Web Service >>that converts the temperature from Fahrenheit to Celsius > > On the Wikipedia page could read a lot more:) > > > [...] >><WebMethod()> Public Function CelsiusToFahrenheit (ByVal >>Celsius As String) As String >> dim cel >> cel=trim(replace(Celsius,",",".")) >> if cel="" or IsNumeric(cel)=false then return "Error" >> return ((((cel) * 9) / 5) + 32) >>end function >> >>end class >> >>For microsoft webservice are evolved in WCF >>http://msdn.microsoft.com/en-us/library/ms731082.aspx >>Simple Web Service using WCF >>http://www.codeproject.com/KB/WCF/WCFWebService.aspx > > I need such an example - but it served in Harbor. > In our business applications are beginning to talk with him after > SOAP.CLIENT - SOAP.SERVE. > In the middle there is intermediate bus for WebServices. > > Regards, > Marek Horodyski > _______________________________________________ > Harbour mailing list > [email protected] > http://lists.harbour-project.org/mailman/listinfo/harbour > -- Massimo Belgrano _______________________________________________ Harbour mailing list [email protected] http://lists.harbour-project.org/mailman/listinfo/harbour
