Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to create my php client stub code to access the wsdl methods in php.

I have tried all the samples (securities) with suceess:

Here is my code ...

$client = new WSClient(array("wsdl"=>"https://adotnetservice:443/ws_prueba?wsdl",
                         "to" => "wsdl_dgi_service.php",
                         "CACert" => "cert_dgi.crt"));

the call to wsclient constructor works well, when i call to

$proxy = $client->getProxy();

Mozilla firefox crashes ...

This is the error in client log ...

[Tue Jun 19 00:14:42 2012] [info]  [rampart] rampart_mod initialized
[Tue Jun 19 00:14:42 2012] [info]  [rahas]Rahas module initialized
[Tue Jun 19 00:14:42 2012] [debug] ..\..\src\core\phaseresolver\phase_resolver.c(140) Service name is : __ANONYMOUS_SERVICE__
[Tue Jun 19 00:14:42 2012] [debug] ..\..\src\core\phaseresolver\phase_resolver.c(722) Module name is:addressing
[Tue Jun 19 00:14:42 2012] [debug] ..\..\src\core\phaseresolver\phase_resolver.c(2006) Trying to add this handler AddressingInHandler to system pre defined phases , but those handlers are already added to global chain which run irrespective of the service
[Tue Jun 19 00:14:42 2012] [debug] ..\..\src\core\phaseresolver\phase_resolver.c(722) Module name is:addressing
[Tue Jun 19 00:14:42 2012] [debug] ..\..\src\core\phaseresolver\phase_holder.c(131) Add handler AddressingOutHandler to phase MessageOut
[Tue Jun 19 00:14:42 2012] [debug] ..\..\src\core\phaseresolver\phase_resolver.c(722) Module name is:addressing
[Tue Jun 19 00:14:42 2012] [debug] ..\..\src\core\phaseresolver\phase_resolver.c(722) Module name is:addressing
[Tue Jun 19 00:14:42 2012] [debug] ..\..\src\core\phaseresolver\phase_holder.c(131) Add handler AddressingOutHandler to phase MessageOut
[Tue Jun 19 00:14:42 2012] [debug] ..\..\src\core\phaseresolver\phase_resolver.c(722) Module name is:addressing
[Tue Jun 19 00:14:42 2012] [debug] ..\..\src\core\phaseresolver\phase_resolver.c(2006) Trying to add this handler AddressingInHandler to system pre defined phases , but those handlers are already added to global chain which run irrespective of the service
[Tue Jun 19 00:14:42 2012] [debug] ..\..\src\core\phaseresolver\phase_resolver.c(722) Module name is:addressing
[Tue Jun 19 00:14:42 2012] [debug] ..\..\src\core\phaseresolver\phase_holder.c(131) Add handler AddressingOutHandler to phase MessageOut
[Tue Jun 19 00:14:42 2012] [debug] ..\..\src\core\phaseresolver\phase_resolver.c(722) Module name is:addressing
[Tue Jun 19 00:14:42 2012] [debug] ..\..\src\core\phaseresolver\phase_resolver.c(722) Module name is:addressing
[Tue Jun 19 00:14:42 2012] [debug] ..\..\src\core\phaseresolver\phase_holder.c(131) Add handler AddressingOutHandler to phase MessageOut
[Tue Jun 19 00:14:42 2012] [debug] ..\..\src\core\phaseresolver\phase_resolver.c(722) Module name is:addressing
[Tue Jun 19 00:14:42 2012] [debug] ..\..\src\core\phaseresolver\phase_resolver.c(2006) Trying to add this handler AddressingInHandler to system pre defined phases , but those handlers are already added to global chain which run irrespective of the service
[Tue Jun 19 00:14:42 2012] [debug] ..\..\src\core\phaseresolver\phase_resolver.c(722) Module name is:addressing
[Tue Jun 19 00:14:42 2012] [debug] ..\..\src\core\phaseresolver\phase_holder.c(131) Add handler AddressingOutHandler to phase MessageOut
[Tue Jun 19 00:14:42 2012] [debug] ..\..\src\core\phaseresolver\phase_resolver.c(722) Module name is:addressing
[Tue Jun 19 00:14:42 2012] [debug] ..\..\src\core\phaseresolver\phase_resolver.c(722) Module name is:addressing
[Tue Jun 19 00:14:42 2012] [debug] ..\..\src\core\phaseresolver\phase_holder.c(131) Add handler AddressingOutHandler to phase MessageOut
[Tue Jun 19 00:14:42 2012] [debug] wsf_wsdl.php(206) [WSF/PHP] calling for the wsdl info
[Tue Jun 19 00:14:42 2012] [info]  [rampart] rampart_mod shutdown
[Tue Jun 19 00:14:42 2012] [info]  [rahas] Rahas module shutdown
[Tue Jun 19 00:14:47 2012] [debug] wsf.c(241) wsf version - 2.1.0 
[Tue Jun 19 00:14:47 2012] [debug] wsf.c(242) php version - 5.3.0 
[Tue Jun 19 00:14:48 2012] [debug] wsf.c(241) wsf version - 2.1.0 
[Tue Jun 19 00:14:48 2012] [debug] wsf.c(242) php version - 5.3.0 

What do I need to do ?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.