You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
may be I do not correctly understand how registration of an User Agent should work but here is my question:
When I try to register a user agent to my phonesystem then I create a SipProvider with default config. and then I use a RegisteringUserAgent to do the registration with RegisteringUserAgent.loopRegister(...).
The thing is SipProvider has some allowed methods configured but what is configured ther is not used for registration and hence the registration request send to the SIP server does not contain any allowed methods.
I would expect that, when in RegistrationClient.register(...) the SipMessage is created, the configuration from SipProvider is used.
Is this a bug or a lack of understanding?
The text was updated successfully, but these errors were encountered:
The SipProvider defines the basic transport. The RegistrationClient uses this transport to send REGISTER packets to the registrar (typically your VOIP router). The basic settings are configured in SipOptions, while the additional settings for registration are given in RegistrationOptions.
You can try out the process with org.mjsip.examples.UserAgentCli by copying the default/template settings /mjsip-examples/.mjsip-ua.template to /mjsip-examples/.mjsip-ua and adjust them to your environment before start.
Hi,
may be I do not correctly understand how registration of an User Agent should work but here is my question:
When I try to register a user agent to my phonesystem then I create a SipProvider with default config. and then I use a RegisteringUserAgent to do the registration with RegisteringUserAgent.loopRegister(...).
The thing is SipProvider has some allowed methods configured but what is configured ther is not used for registration and hence the registration request send to the SIP server does not contain any allowed methods.
I would expect that, when in RegistrationClient.register(...) the SipMessage is created, the configuration from SipProvider is used.
Is this a bug or a lack of understanding?
The text was updated successfully, but these errors were encountered: