fiorix / go-smpp

SMPP 3.4 Protocol for the Go programming language
MIT License
218 stars 135 forks source link

timeout waiting for response - RESOLVED using RespTimeout parameter #106

Closed tahseenjamal closed 9 months ago

tahseenjamal commented 2 years ago

Is this go-smpp issue or issue at the SMPP Server ?

Any message submitted to SMPP throws back "timeout waiting for response"

Munmendu commented 1 year ago

This issue i also observed. As per the code,callback should hit for SMPP_SM_RESP but it never hit,although all SUBMIT_SM are sent from application.

Can anyone help us for the same.

Munmendu commented 1 year ago

Solution is there. We had fixed it.After internal review we will update.

tahseenjamal commented 9 months ago

@fiorix Is this 'timeout waiting for response' resolved ?

fiorix commented 9 months ago

I think this is a question to @Munmendu who claims to have a solution. I have not had visibility into the problem or solution and haven't actively used this code in over 5 years now ;)

tahseenjamal commented 9 months ago

@fiorix I figured it out. In transceiver we have to set value for RespTimeout parameter

RespTimeout : 10 * time.Second

and the issue stopped completely