Computing.Net > Forums > Web Development > send MMS using MM7 protocol and php

Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.

send MMS using MM7 protocol and php

Reply to Message Icon

Name: emonchan
Date: October 8, 2004 at 08:00:30 Pacific
OS: redhat server
CPU/Ram: Xeon 2.9 / 1024 MB
Comment:

I'm trying to send an MMS to openwave mm7 server using, not openwave mms sdk but only php and pear-soap extension.

I am now at a point where I can't go further, if you have some links or some doc to help me or even help me to complete my php code:

<?
include("SOAP/Client.php");

$url = 'http://edev.openwave.com:8080/mm7';
$namespace= 'http://www.3gpp.org/ftp/Specs/archive/23_series/23.140/schema/REL-5-MM7-1-0';

$soapclient = new SOAP_Client($url,$namespace);

$method = 'SubmitReq';

$params = array('MM7Version'=>'5.3.0',
'SenderIdentification'=>array(
'VASPID'=>'16179433222','VASID' =>'reicherV',
'SenderAddress'=>array('RFC2822Address'=>'test@test.com')), 'Recipients'=> array('To'=>array('Number'=>'1617433848')), 'MessageClass'=>'Personal','DeliveryReport'=>'false',
'ReadReply'=>'false','Priority'=>'Low',
'Subject'=>'Test SOAP mm7','ChargedParty'=>'Sender');

$soapheader = new SOAP_Header('{urn:http://schemas.xmlsoap.org/soap/envelope/}Header',NULL, array('TransactionID'=>'ID_1234','ContentType'=>'multipart/related',
'VASPID'=>'vasp','VASID'=>'vasp'));

$soapclient->addHeader($soapheader);
$response = $soapclient->call($method,$params,$namespace);

print_r($response);
?>


I get a soap_fault object (a big array) with the message:
no operation SubmitReq in wsdl

I tried a lot of different method names MM7_Submit ... nothing seems to work.
I also tried with a nowsms test server, I have the same error.
If somebody has some ideas, I'd be really happy.

Thanks



Sponsored Link
Ads by Google
Reply to Message Icon

Related Posts

See More







Post Locked

This post is quite old and has been locked from receiving new replies. Please create a new posting instead.


Go to Web Development Forum Home


Sponsored links

Ads by Google


Results for: send MMS using MM7 protocol and php

.htaccess and PHP www.computing.net/answers/webdevel/htaccess-and-php/286.html

html input type=file and php www.computing.net/answers/webdevel/html-input-typefile-and-php/214.html

FrontPage and PHP Files www.computing.net/answers/webdevel/frontpage-and-php-files/2908.html