.NET
SoftAutoFlow - Business process modeling and executing framework
Submitted by heshan on Tue, 03/24/2009 - 13:41
Official Website : http://project-saf.tk/
- heshan's blog
- Add new comment
- Read more
- 872 reads
-
Using Cookie in NuSOAP
Submitted by heshan on Tue, 11/25/2008 - 12:49Fault
Array ( [faultcode] => soap:Server [faultstring] => Server was unable to process request. ---> Current session has no workflow instance associated with it. Send activation message to start new instance in current session. [detail] => )
Fix for the solution
Description
adds a new Cookie into $this->cookies array
* return: if cookie-set was successful returns true, else false
* access: public
boolean setCookie (string $name, string $value)
* string $name: Cookie Name
- heshan's blog
- 3 comments
- Read more
- 1003 reads
-
using NuSoap: consume a .NET web service in 10 min
Submitted by heshan on Tue, 11/25/2008 - 11:44The WSDL file
This is the URL for a WSDL file that hosted at a IIS server. http://www.webservicex.com/TranslateService.asmx?wsdl
So let's try to compose by our-self the content of the body of our SOAP message to query this web service, we will use NuSoap to achieve the job: we must use the targetnamespace this way, this .NET web service doesn't like the namespace prefix generated automatically by NuSoap
wsdl:definitions targetNamespace="http://www.webservicex.net"
nothing really difficult here, just follow the wsdl, or, use the tool TcpTunnelGui with a working client, or see the documentation generated by the .NET web service on-line
- heshan's blog
- 14 comments
- Read more
- 12029 reads
-