|
Hi, all,
How to created fastcgi SOAP server? can you write a sample code here?
i have a cgi SOAP service already, but for better performance,
we want to use fastcgi for sure. but cannot make it working.
and i googled a lot, cannot find a solution yet.
use SOAP::Transport::HTTP;
SOAP::Transport::HTTP::CGI
-> dispatch_to('JEmbedWS')
-> handle;
we used above code for current cgi SOAP server.
and i tried
use SOAP::Transport::HTTP;
SOAP::Transport::HTTP::FCGI
-> dispatch_to('JEmbedWS')
-> handle;
no luck.
thanks.
Best Regards,
Andy |