Yii web hizmetleri bir test yöntemi ile sorun

3 Cevap php

Yii çerçevesinde web hizmetleri aşina olabilir burada kimse var mı?

Ben aşağıdaki test metodu ilan:

/**
  * Send a single SMS message
  * 
  * @param string $username Username
  * @param string $password Password
  * @param string $identifier Valid Identifier to use
  * @param string $mobileNumber Mobile Number to send message to
  * @param string $message Message to send
  * @return string 'OK' on success, error message on failure
  * @soap
  */
 public function singleSms($username, $password, $identifier,$mobileNumber, $message){
  return "username=$username, pwd=$password, source=$identifier, mobno=$mobileNumber, msg=$message";
 }

Ben bu yöntemi çağırmak çalıştığınızda Ama şu yanıtı alıyorum:

− − WSDL − SOAP-ERROR: Parsing WSDL: Couldn't load from 'http://sms.chillnethosting.co.za/index.php?r=sms/webservice' : Start tag expected, '<' not found

Web Service URL: Ben URL çağırdığınızda WSDL üretir

Herhangi bir düşünce?

3 Cevap

Ben sorunun ne olduğunu anlamaya başardı. Bu WSDL benim tarayıcıda önbelleğe alınmış gibi görünüyor. Aldığım hata, daha önce yapılan bir yazım hatası nedeniyle oldu, ama tarayıcı bunu önbelleğe.

Tüm cevaplar için teşekkürler.