如何用Soap::Lite包

如何用Soap::Lite包

#!/usr/bin/perl

use SOAP::Lite;
use Encode;
use utf8;
my $ret = SOAP::Lite  
    -> uri('http://10.0.1.156:8080/FCService/SystemConnectiveTest')
    -> proxy('http://10.0.1.156:8080/FCService')
    -> isAlive()
    -> result;
   print "$ret\n";

报错:Unexpected Content-Type 'text/html; charset=ISO-8859-1' returned
是怎么回事,求助!急!急!急!急!急!急!急!急!急!
可加我的msn:bingo821220@hotmail.com
WSDL档案在http://10.0.1.156:8080/FCService吗?
如果不是..再仔细看看文档吧...
http://search.cpan.org/~mkutter/ ... ldDocs/SOAP/Lite.pm

QUOTE:
  use SOAP::Lite;
  print SOAP::Lite
    -> uri('http://www.soaplite.com/Temperatures')  #--只是一个ID, 类似java里面的package name ..
                                                                                #用来识别每一个Webserivce..在MS的Webservice
                                                                                #这个uri一定要跟 Server端WSDL里面写的uri一模一样...
    -> proxy('http://services.soaplite.com/temper.cgi') #--真正的Web Service的位置..
    -> f2c(32)  #--使用的method
    -> result; #--得到的结果

谢谢!!我已经解决了那个问题