Webservice RPC Encoded problem

Hi,

Im desesperated with this problem.

I generate a webservice using Yii "CWebServiceAction", but when i try consume it from netbeans or intellij idea 9 (java) e get the error:

The Webservice generate is encoded, as you can see on wsdl:

To generate it, im using the code on my controller:


    public function actions()

    {

        return array(

            'wslogin'=>array(

                'class'=>'CWebServiceAction',

            ),

        );

    }

WHAT I CAN DO????

To you see the problem, check this:

http://stackoverflow.com/questions/412772/java-rpc-encoded-wsdls-are-not-supported-in-jaxws-2-0

and this:

http://xfire.codehaus.org/FAQ

As you see rpc encoded is not supported anywhere, only document/literal style.

Please help me!!