Search found 7 matches

by Vladimir
Mon Sep 11, 2017 7:43 pm
Forum: Inetlab.MMS.MM7
Topic: Is it still supported?
Replies: 1
Views: 74972

Is it still supported?

Hello,
I discovered that MM7 library has last release date as of: Version 0.9.0 11.03.2016
Is it still under support and are you expect Version 1.xx in a nearest future?
by Vladimir
Sat Aug 19, 2017 11:35 am
Forum: Inetlab.SMPP v1.1 & v1.2
Topic: Unable to build application after upgrade
Replies: 1
Views: 76680

Unable to build application after upgrade

Hello,
I have just upgraded SMPP library to v 1.2.5 and now I am unable to build project: https://www.screencast.com/t/JrfHxJtDJvU1
Have you made breaking changes in comparison to version 1.1.22?
Is there any easy fix now?

Thank you.
by Vladimir
Mon Jun 05, 2017 7:04 pm
Forum: Inetlab.MMS.MM7
Topic: MMS C# Example
Replies: 1
Views: 75096

MMS C# Example

Hello,

where I can see full example with C# how to send/receive MMS?

Thank you.
by Vladimir
Mon Jun 27, 2016 8:37 pm
Forum: Inetlab.SMPP v1.1 & v1.2
Topic: Duplicated SMS in evDeliverSm
Replies: 3
Views: 20509

Re: Duplicated SMS in evDeliverSm

Hello alt,
here is link https://drive.google.com/file/d/0B061QFcI7KB_b1RiRWgzZV9PX1k/view?usp=sharing to txt with dump.
1. I launched SmppClientDemo.exe
2. Sent SMS from 13233646644 to 18772485354 with the message "Test Message"
3. Saved everything what I got in Log area.

As you can see - there is ...
by Vladimir
Sun Jun 26, 2016 7:36 pm
Forum: Inetlab.SMPP v1.1 & v1.2
Topic: Duplicated SMS in evDeliverSm
Replies: 3
Views: 20509

Duplicated SMS in evDeliverSm

Hello,

I am using Inetlab.SMPP against bandwidth.com service. I discovered that for some reason incoming messages are being appeared in evDeliverSm instead of evDataSm.
Actually - this is not big issue, but when I send message with SourceAddr = +1xxx DestAddr = +1yyy and Message = "zzz", I receive ...
by Vladimir
Sat Jun 18, 2016 12:31 pm
Forum: Inetlab.SMPP v1.1 & v1.2
Topic: MessageComposer DestAddr
Replies: 1
Views: 12494

MessageComposer DestAddr

Hello,
MessageComposer has awesome event - evFullMessageReceived
However - I did not find a way to identify destination address in evFullMessageReceived handler.
There is MessageEventHandlerArgs is an argument. args.Parts[0] does not have property DestAddr but have SourceAddr.

How can I get ...
by Vladimir
Tue Jun 07, 2016 8:53 pm
Forum: Inetlab.SMPP v1.1 & v1.2
Topic: Client status is not Bound - what is the reason?
Replies: 1
Views: 13295

Client status is not Bound - what is the reason?

Hello!
I have exact code as in example:
SmppClient client = new SmppClient();
client.Connect("smpp.server.com", 7777);
if (client.Status == ConnectionStatus.Open)
{
Logger.Write("Connected to SMPP server");
client.Bind("username", "password");
if (client.Status == ConnectionStatus.Bound ...