资源说明:Sip Server written in Scala with a Web API! A simple REST front end allows you to post parameters or return simple XML to make and control phone calls.
#BlueScale BlueScale is an Open Source platform allowing web developers to create telecom and VoIP related products or services. It uses a simple REST front end to control the scalable SIP server at its core. ## Launching After unzipping the distribution, you need to create a BlueScaleConfig.xml file by copying the example BlueScaleConfig.Sample.xml. ListeningAddress and ListeningPort tag values must be a local IP and Port the server can bind to. ContactAddress must be the external IP your SIP trunking Provider will be sending SIP to, and needs to be forwarding to your machine. DestAddress and DestPort must be the gateway of your SIP trunking provider. CallbackUrl should point to the address of your web application that BlueScale will post to when an incoming call occurs. Once you finish editing your config, launch the run.sh script and you're ready to start building telco apps! ## System Requirements - Java 1.6 - a SIP trunking provider/gateway ## Example: Forward Incoming Calls 1. BlueScale will post a call status with the following parameters to URL specified in BlueScaleConifg.xml.CallId = 'A1234...', To = '7147779999', From = '9494445566', CallStatus = 'Unconnected', Direction = 'Incoming'2. Your application will respond to the post with BlueML, an XML Dialect for controlling BlueScale. This will cause the phone specified in the number tag to ring, and connect it to the incoming call.3. If and when the phone is answered that was specified in the Number tag, BlueScale will post a status for that call, with the same parameters as step one. 1112223333 9494445566 http://127.0.0.1:8081/Status CallId = 'B6789...', To = '1112223333', From = '9494445566', CallStatus = 'Connected', Direction = 'Outgoing'4. BlueScale will then post a conversation status with the following parameters.FirstCallId = 'A1234...' SecondCallId = 'B6789...' ConversationStatus = 'Connected'5. When either call hangs up, the connected call will also be hung up, and BlueScale will post back the new Disconnected Status.FirstCallId = 'A1234...' SecondCallId = 'B6789...' ConversationStatus = 'Disconnected'## Example: Click to Call 1. Execute an HTTP Post to the Bluescale URL http://[bluesacleIP]/Calls/ specifying the first number you wish to connect to:To = '7145551234' From = '9497773456' Url = 'http://127.0.0.1/'2. BlueScale will post a call status with the following parameteres:CallId = '123abc...', To = '7145551234' From = '9497773456' CallStatus = 'Connected', Direction = 'Outgoing'3. Your application will respond to the post with BlueML, an XML Dialect for controlling BlueScale. This will cause the phone specified in the number tag to ring, and connect it to the incoming call.4. If and when the phone is answered that was specified in the Number tag, BlueScale will post a status for that call, with the same parameters as step two. 9497773456 7145551234 http://127.0.0.1:8081/Status CallId = '567def...', To = '1112223333', From = '9494445566', CallStatus = 'Connected', Direction = 'Outgoing'5. BlueScale will then post a conversation status with the following parameters.FirstCallId = '123abc...' SecondCallId = '567def...' ConversationStatus = 'Connected'6. When either call hangs up, the connected call will also be hung up, and BlueScale will post back the new Disconnected Status.FirstCallId = '123abc...' SecondCallId = '567def...' ConversationStatus = 'Disconnected'## TODO - Ability to register SIP phones and expose the rigister through the Web API - Media support for playing .wav files to connected calls. - DTMF detection to allow postbacks when the keypad is pressed. - Official performance numbers. I'm pushing close to a thousand concurrent calls on my dual core laptop, more tests to come on beefier boxes.
本源码包内暂不包含可直接显示的源代码文件,请下载源码包。