Advertisement
christiansalazarh

webservice clase controller

Jul 10th, 2013
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.44 KB | None | 0 0
  1. <?php
  2. class SiteController extends CController
  3. {
  4.     public function actions()
  5.     {
  6.         return array(
  7.             'ws'=>array('class'=>'CWebServiceAction',),
  8.         );
  9.     }
  10.      /***
  11.           @param string $argX  argumento declarado (importante)
  12.           @return string  (importante)
  13.           @soap
  14.      */
  15.     public function getObtenerMensajeRemoto($argX)
  16.     {
  17.         return "HOLA REMOTO, TU MENSAJE ES: ".$argX;
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement