Re: How to send TLV for USSD Push

2010-02-03 Thread Alejandro Guerrieri
You're not specifying the smsc-id, but you've filtered the TLV's to only go
thru Unicel1. Try commenting the smsc-id line, or specifying the smsc on
the url.

Also check the logs to see if you find something in there.

Regards,

Alex

On Wed, Feb 3, 2010 at 1:33 PM, GSM Revolution gsm@gmail.com wrote:

 Hi,

 I want to push USSN through kannel but unable to send.

 Configuration for TLV for USSD is -

 *group = smpp-tlv
 name = service_type
 tag = 0x0501
 type = octetstring
 length = 2
 smsc-id = Unicel1

 group = smpp-tlv
 name = message_payload
 tag = 0x0424
 type = octetstring
 length = 20
 smsc-id = Unicel1

 group = smpp-tlv
 name = dest_bearer_type
 tag = 0x0007
 type = integer
 length = 2
 smsc-id = Unicel1*


 I am passing request through http request -
 before encoding of metadata is 
 -*?smpp?service_type=3dest_bearer_type=4message_payload=0203040506
 *
 After url encode
 *
 http://localhost:8080/cgi-bin/sendsms?user=XYZpassword=ABCfrom=testto=011234554321metadata=%3Fsmpp%3Fservice%5Ftype%3D3%26dest%5Fbearer%5Ftype%3D4%26message%5Fpayload%3D0203040506
 *

 In bearerbox I do not see any TLV parameters.

 Do i require any patch for this??

 Please help me out of this issue

 Thanks in advance

 Regards
 Ricky



Re: How to send TLV for USSD Push

2010-02-03 Thread ricky123

Hi Alex,

Thanks for your reply.
I removed smsc-id from conf file, still i do not see any change in log.


Alejandro Guerrieri wrote:
 
 You're not specifying the smsc-id, but you've filtered the TLV's to only
 go
 thru Unicel1. Try commenting the smsc-id line, or specifying the smsc on
 the url.
 
 Also check the logs to see if you find something in there.
 
 Regards,
 
 Alex
 
 On Wed, Feb 3, 2010 at 1:33 PM, GSM Revolution gsm@gmail.com wrote:
 
 Hi,

 I want to push USSN through kannel but unable to send.

 Configuration for TLV for USSD is -

 *group = smpp-tlv
 name = service_type
 tag = 0x0501
 type = octetstring
 length = 2
 smsc-id = Unicel1

 group = smpp-tlv
 name = message_payload
 tag = 0x0424
 type = octetstring
 length = 20
 smsc-id = Unicel1

 group = smpp-tlv
 name = dest_bearer_type
 tag = 0x0007
 type = integer
 length = 2
 smsc-id = Unicel1*


 I am passing request through http request -
 before encoding of metadata is
 -*?smpp?service_type=3dest_bearer_type=4message_payload=0203040506
 *
 After url encode
 *
 http://localhost:8080/cgi-bin/sendsms?user=XYZpassword=ABCfrom=testto=011234554321metadata=%3Fsmpp%3Fservice%5Ftype%3D3%26dest%5Fbearer%5Ftype%3D4%26message%5Fpayload%3D0203040506
 *

 In bearerbox I do not see any TLV parameters.

 Do i require any patch for this??

 Please help me out of this issue

 Thanks in advance

 Regards
 Ricky

 
 

-- 
View this message in context: 
http://old.nabble.com/How-to-send-TLV-for-USSD-Push-tp27435666p27435812.html
Sent from the Kannel - User mailing list archive at Nabble.com.




Re: How to send TLV for USSD Push

2010-02-03 Thread Elton Hoxha
Hi,

I have succeded sending all USSD commands in a simpler way, I mean
configuration and parameters point of view.

In conf file:

group = smpp-tlv
name = mydata
tag = 0x0501
type = integer
length = 1
smsc-id = ussdmenu
and send-sms url looks like:
http://10.1.5.30:x/cgi-bin/sendsms?username=kotpassword=kotfrom=187to=xxtext=hellometa-data=%3Fsmpp%3Fmydata%3D3


Hope it helps

On Wed, Feb 3, 2010 at 1:33 PM, GSM Revolution gsm@gmail.com wrote:

 Hi,

 I want to push USSN through kannel but unable to send.

 Configuration for TLV for USSD is -

 *group = smpp-tlv
 name = service_type
 tag = 0x0501
 type = octetstring
 length = 2
 smsc-id = Unicel1

 group = smpp-tlv
 name = message_payload
 tag = 0x0424
 type = octetstring
 length = 20
 smsc-id = Unicel1

 group = smpp-tlv
 name = dest_bearer_type
 tag = 0x0007
 type = integer
 length = 2
 smsc-id = Unicel1*


 I am passing request through http request -
 before encoding of metadata is 
 -*?smpp?service_type=3dest_bearer_type=4message_payload=0203040506
 *
 After url encode
 *
 http://localhost:8080/cgi-bin/sendsms?user=XYZpassword=ABCfrom=testto=011234554321metadata=%3Fsmpp%3Fservice%5Ftype%3D3%26dest%5Fbearer%5Ftype%3D4%26message%5Fpayload%3D0203040506
 *

 In bearerbox I do not see any TLV parameters.

 Do i require any patch for this??

 Please help me out of this issue

 Thanks in advance

 Regards
 Ricky