Active Topics

 


Reply
Thread Tools
Posts: 64 | Thanked: 13 times | Joined on Apr 2010
#1
Dear All,
I am trying send SMS using Dbus using C
i studied paython vert SMS
http://gitorious.org/vertsms/vertsms...vertsms/sms.py

i tested this code: (i set the pdu fixed array to make it easier
i compared pdu array to vertsms pdustring and they are the same

but dbus_g_proxy_call always return false
need help urgent
#define MYTYPE (dbus_g_type_get_collection ("GPtrArray", DBUS_TYPE_G_UCHAR_ARRAY))


static void sendsms(SMS* sm)
{


DBusGConnection* dbus_conn;
DBusGProxy* dbus_proxy;


dbus_conn = dbus_g_bus_get(DBUS_BUS_SYSTEM, NULL);
dbus_proxy = dbus_g_proxy_new_for_name(dbus_conn, "com.nokia.phone.SMS", "/com/nokia/phone/SMS/ba212ae1","com.nokia.csd.SMS.Outgoing");

createsmspdu(sm);


GPtrArray* ptrarray;
GArray* array;

guchar values[] =
{33, 10, 12, 129, 2, 1, 145, 18, 85, 21, 0, 0, 10, 232, 50, 155, 253, 70, 151, 217, 236, 183};

ptrarray = g_ptr_array_new();
array = g_array_new(FALSE, FALSE, sizeof(guchar));

g_array_append_vals(array, values, sizeof(values)/sizeof(guchar));
g_ptr_array_add(ptrarray, (gpointer)array);







gboolean b = dbus_g_proxy_call(dbus_proxy,"Send",NULL,MYTYPE,pt rarray, G_TYPE_STRING,"",G_TYPE_INVALID);


if(!b)
{


logv( "Error sending");

}
else
logv( "Success sending");

g_ptr_array_free(ptrarray,TRUE);
g_object_unref(dbus_proxy);
dbus_g_connection_unref(dbus_conn);

}



thank you for taking time read this

Last edited by waelfarouk0; 2010-07-14 at 19:32.
 
qwerty12's Avatar
Posts: 4,274 | Thanked: 5,358 times | Joined on Sep 2007 @ Looking at y'all and sighing
#2
Looking at the original it's ripped from (http://talk.maemo.org/showpost.php?p...7&postcount=14), it's using dbus_g_proxy_call_no_reply, whilst you're using dbus_g_proxy_call. Because the latter also allows you to specify pointers for storing the values returned by the call, you must add another G_TYPE_INVALID (like when you're finished speciying the "in" arguments) to specify when you're done.

P.S. dbus_g_proxy_call supports GError. Use it
 
Posts: 64 | Thanked: 13 times | Joined on Apr 2010
#3
Originally Posted by qwerty12 View Post
Looking at the original it's ripped from (http://talk.maemo.org/showpost.php?p...7&postcount=14), it's using dbus_g_proxy_call_no_reply, whilst you're using dbus_g_proxy_call. Because the latter also allows you to specify pointers for storing the values returned by the call, you must add another G_TYPE_INVALID (like when you're finished speciying the "in" arguments) to specify when you're done.

P.S. dbus_g_proxy_call supports GError. Use it
i already used but application is panic on device if i use GError
GError* error = NULL;
dbus_g_proxy_call(dbus_proxy,"Send",&error,MYTYPE, pt rarray, G_TYPE_STRING,"",G_TYPE_INVALID);

thank you for fast reply
 
Posts: 64 | Thanked: 13 times | Joined on Apr 2010
#4
i added G_TYPE_INVALID no luck also fail
i also used original no luck
 
Posts: 64 | Thanked: 13 times | Joined on Apr 2010
#5
Originally Posted by qwerty12 View Post
Looking at the original it's ripped from (http://talk.maemo.org/showpost.php?p...7&postcount=14), it's using dbus_g_proxy_call_no_reply, whilst you're using dbus_g_proxy_call. Because the latter also allows you to specify pointers for storing the values returned by the call, you must add another G_TYPE_INVALID (like when you're finished speciying the "in" arguments) to specify when you're done.

P.S. dbus_g_proxy_call supports GError. Use it


I tried this
and i got this error from log on device
too many arguments in reply; expected 0 , got 2

what type of paramters i should specify

gboolean b = dbus_g_proxy_call(dbus_proxy,"Send",&error,myt,ptr array, G_TYPE_STRING,"",G_TYPE_INVALID,G_TYPE_INVALID);


if(!b)
{


logv( "Error sending:");
logv( error->message);

}
else
logv( "Success sending");
 
jflatt's Avatar
Posts: 534 | Thanked: 723 times | Joined on Oct 2009
#6
Originally Posted by waelfarouk0 View Post
i already used but application is panic on device if i use GError
GError* error = NULL;
dbus_g_proxy_call(dbus_proxy,"Send",&error,MYTYPE, pt rarray, G_TYPE_STRING,"",G_TYPE_INVALID);

thank you for fast reply
Looks to me like you're trying to send in a null pointer reference. Kaboom
 
jflatt's Avatar
Posts: 534 | Thanked: 723 times | Joined on Oct 2009
#7
Originally Posted by waelfarouk0 View Post
I tried this
and i got this error from log on device
too many arguments in reply; expected 0 , got 2

what type of paramters i should specify

gboolean b = dbus_g_proxy_call(dbus_proxy,"Send",&error,myt,ptr array, G_TYPE_STRING,"",G_TYPE_INVALID,G_TYPE_INVALID);


if(!b)
{


logv( "Error sending:");
logv( error->message);

}
else
logv( "Success sending");
Did you change the function call to dbus_g_proxy_call_no_reply as was suggested?
 
Posts: 64 | Thanked: 13 times | Joined on Apr 2010
#8
Originally Posted by jflatt View Post
Did you change the function call to dbus_g_proxy_call_no_reply as was suggested?
YES no Luck, any advice pls?

Where can i find D-BUs interface XML defination?


Regards
Wael
 
Posts: 64 | Thanked: 13 times | Joined on Apr 2010
#9
hello,
any suggestions?
 
Posts: 64 | Thanked: 13 times | Joined on Apr 2010
#10
Dear All,
Fixed and Works now,
problem was in Mobile number encoding
fixed

dear qwerty12 thanks

i will post working functions to commuinty so everyone can use,
i have a question what if i want send unicode message
how can i set Data Coding Schema


Thanks
Wael
 
Reply


 
Forum Jump


All times are GMT. The time now is 20:14.