Hi Tamas!
Its not possible to change whole contact header in update, like you already noticed ... I believe this restriction comes from SIP standards, but not sure. Anyway, what you can do is...
Type: Posts; User: tkot; Keyword(s):
Hi Tamas!
Its not possible to change whole contact header in update, like you already noticed ... I believe this restriction comes from SIP standards, but not sure. Anyway, what you can do is...
Hi melanlife!
Hmm, I also could not find that SipStrConsts::EPublish even
documantation indicates its there. But no worries ;)
Those strings defined in SipStrConsts are just those already...
Hi mobixie!
Bit off-topic, but build-in VoIP details can be found from...
Hi!
Build in VoIP does not provide any API's, so you cannot programmatically send DTMF's as far as know ... sorry :(
tkot
Hi!
All SIP errors can be found SIP API header files (siperr.h).
In this case it says:
/** Invalid SIP response received from registrar*/
const TInt KErrSIPInvalidRegistrarResponse = -17701;...
Hi!
Closest SIP based build-in video client is Video Sharing. Thats SIP-based one-way video application to enrich CS-call in 3G network. There is no build-in IP-only 2-way 'video...
Hi!
That crash is quite good hint. I am quite sure, that you have problems using cleanupstack -> wrong instances get deleted some point -> crash. So, double/triple check usage of cleanupstack to...
Hi!
Refresh should work there.
Have you check what CSIPRefresh::IntervalL() returns to you, after you get 200 OK for subscribe. If server returned expires:60, that function should return 60 and...
Hi miikkis!
The element of message that you are interested of is not SDP, but SIP -> using SDP API does no good.
What you need, is to use SIP API. I assume you are using build-in SIP to send...
Hi!
The document lists codecs that VoIP does support (like G.711, G.729, etc) ... thats why you do not find anything about G.723.
In N95 VoIP it is not possible later to add any new codecs by...
Hi Nakkoush!
Sorry to tell you, but there is no G.723 support
in Nokia N95 VoIP :( ... and its not possible to add later either.
Check this for details:...
Hi gpalvia!
This is very common issue, please search this forum for solutions. Try keywords like incoming, invite, sip and/or ecom!
tkot
Hi Teemu!
Can't see anything horrobly wrong with the code, so before checking it more carefully, please answer few questions.
You say problem is "nothing is received at the server end". How you...
Hi raj_rr7!
To my knowledge, there is no thread safe Symbian libraries. RTP is no exception, so it is not thread safe.
In Symbian, the number one technique to multitask is active-objects, those...
Hi!
Good you get it working.
Need to clarify however, that Symbian active object (CActive) is not a thread! In practise this means,that when you have 10 active objects, you still only have 1...
Hi George2209
I's propably possible to get processes A and B to talk each other the way you described (by making both servers), but thats not the recommended way!
If your problem is to get...
Hi!
Dig my memory and could not find similar problems as you describe. I know few succesfull similar cases, but only on HW ... so cannot say anything about emulator.
Couple of comments &...
Hi!
Note, I am not socket specialist, just trying to give some ideas ;) That said, can't see anything wrong with the principle of your read code, so don't think thats the problem. I actually...
Hi!
To my knowlegde, by creating application that takes all cpu you can block data flow to/from IP-stack. So, I dont know how your 'infinite loop' read mechanism is implemented, but make sure it...
Hi!
Check SipRtpExApp_Sample_Application_v1_0_en.zip found from this forum. There you will find inside 'sipengine' sample
code how to use SDP with INVITE, this function:
//...
Hi!
Have you installed sdk api plugin zip-package found from this forum? The sample uses Nokia RTP, which does not come in standard SDK.
So search S60_3rd_SDK_FP1_API_Plug-In_Pack_v2.zip and...
Hi Paul!
SIP Profiles do not directly depend on client resolver or vice-versa, so no need to touch your ecom.
When you say "hangs completely", do you mean that nothing works and you have to...
Hi!
\epoc32\include\siperr.h
/** DNS query for the remote address failed */
const TInt KErrSIPResolvingFailure = -17712;
tkot
Hi Rajat!
First create your dialog with invite. Then, you can send any 'extension requests' (like INFO) inside that dialog through base class:
CSIPDialogAssocBase::SendNonTargetRefreshRequestL...
Hi sodangerous!
What that code suppose to do, is to get UID of your application configured into your resolver plugin and 'test' that there really is such application.
The for-loop goes through...