I am reading SIP RFC 3261. I didn't get the difference between sip uri and sips uri. Can Some one help.
1
There are 1 best solutions below
Related Questions in SIP
- Configure Asterisk as SIP outbound proxy (as a SIP server relay)
- Samsung Galaxy S5 speakerphone\microphone issue
- Added SIP-headers in MSPL application missing/being removed in Lync 2013
- setKeepAliveTimeout is deprecated in iOS9
- Mobicents presence server. How to register softphone?
- pjsua and sip registration: error=Invalid URI (PJSIP_EINVALIDURI)
- SIP API SipManeger returns null
- How to create a Java object in C++ using JNI?
- How Kamailio transformations work?
- receiving service from SIP without using a server
- SIP and Webrtc Integration iOS
- sip client for android device with wired conenction
- How to get audio samples in linphone to pass to other interface or to save them?
- Setting Up Restcomm on Ubuntu 14.04 (EC2)
- How to share RTP's ssrc value between calling and called party in sip call?
Related Questions in RFC
- HTTP Status Code Priority and Processing
- RFC 1071 - Calculating IP header checksum confusion in C
- How to parse CMS (RFC 5652)
- IETF, W3C, etc.: de iure or de facto standards?
- What does a URI look like that is not a name?
- Java - Sockets - display names of all files on server
- How does getaddrinfo work with a dualstack source?
- How to implement SEQUENCE as specified in an RFC
- What does "clock sequence" mean?
- ASN.1 definitions for basic SNMP exchanges
- php headers mail headers "554 Message not allowed - Headers are not RFC compliant[291]"
- Implementation of IDNs in JIDs as specified in RFC 6122
- Can HTTP headers contain colons in the field value?
- HTTP Header User-Agent Field Format Required?
- Split Text Documents Into Pages (in Vim?)
Related Questions in SIPS
- How do I know if sips -g failed?
- Insert one image into another using a mac command line tool
- BMP Image Processing in Intel Mac
- Piping an image retrieved using curl to sips to change format without saving intermediate file
- Convert a PDF to Images using sips
- How to output the sips image in directory
- Bitrise bash script - command not found
- Difference between SIP and SIPS URI?
- Is there a way to install sips on a Linux machine?
- Scaling of image (scriptable image processing system)
- Memory issue with sips (scriptable image processing system)
- mac sips program seems to ignore --padColor option
- SIPS Image Manipulation
- Use sips command on mac to trim bottom of image
- How to programmatically make Mac OS X ICNS with 10 different images using sips or other
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
First note from rfc3261:
Second note, which I guess is your question can be found in section 26.2.2 (SIPS URI Scheme), ie: it indicates that all hops needs to be secured, most commonly over TLS link.
Other rules apply when sips appears in a To or From header. For example, when sips appears in a To header, it indicates the "wish" to use secure links. When used in the Request-URI, it's a MUST.
When using sips, you may also needs to use sips in Contact headers. The sips URI will end up being used in Request-URI for other request within dialog, so you have to care about using the right sip/sips in Contact headers.