View Single Post
  #2 (permalink)  
Old 07-02-2007, 11:37 PM
mikes2277 mikes2277 is offline
Member
 
Posts: 11
Default

OK, I have made a little bit of progress...well I think anyway:

PHP Code:
<?PHP
        $client 
= new SoapClient(NULL,
                array
                (
                        
"location" => "https://mail.myzimbraserver.com:7071/service/soap/",
                        
"uri"      => "urn:zimbra"
                
)
        );

        print(
                
$client->__call("AuthRequest",
                        array
                        (
                                new 
SoapParam("admin""name"),
                                new 
SoapParam("mypass""password")
                        ),
                        array
                        (
                                
"uri"           => "urn:zimbraAdmin",
                                
"soapaction"    => "urn:zimbraAdmin#AuthRequest"
                        
)
                )
        . 
"\n");

?>

Which now gives me the same messy output but start off with:
Code:
Fatal error: Uncaught SoapFault exception: [soap:Receiver] system failure: Request not allowed on port 7071
Anyone know what I'm still doing wrong here?
Thanks!
Reply With Quote