This post is specifically for the people who have requested me to help them set up voip on their Nokia N85.
I have written a post to Set up VoIP setting on Nokia E63.
If you have voip set up on your mobile and have access to a WiFi or 3G connection, you can save money by using the Internet to connect your call instead of using your mobile phone minutes. Make your calls from anywhere in the world to anywhere for just a few cents a minute. Voip is easy to configure and inexpensive to use.
Note: The first most important part of setting up the SIP VoIP setting is to update you mobile to latest firmware.
Once you have updated your mobile software.
Download the application for SIP from SIP VoIP Application for Nokia N85.
Note: Download SIP VoIP 3.0x setting for N85.
After you have downloaded the SIS (settings file) on your PC.
- Use Nokia PC Suit software on your PC to install it on to the phone.
- Once the installation is complete restart your phone.
- You will be able to see VoIP Settings on your phone.
Then follow the instruction’s for setting up the voip in the following post. Set up VoIP setting on Nokia E63.
Please post your comments to let me know if that worked. This will help others too.
Thank you
I came across this error when I tried to Install MS SQL 2005 on Vista.I have installed SQL plenty of times and never had problems before on my XP.
My Problem :
The SQL 2005 did install correctly on my 64bit Vista but I was not able to log on to the server and it gave the following error
Login failed for user ‘PC-Name\UserName’. (.Net SqlClient Data Provider)
Error Number: 18456 – Severity: 14 – State: 1
I have recently purchased Nokia E63. So far all I would say that it is really worth the price. It has many features one of the best thing I like about the phone is Voip client which can use WiFi connection as well.
There is no need of additional softwares to use these settings.
I am registered to few SIP enabled voip services such as Freecall and Actionvoip. International calls with these are really cheaper.
If you own one of the e series phone you can use the settings to configure you phone to use sip for making calls.
Below are the steps to configure Voip Client on Phone
Navigate to Home > Tools > Settings > Connection > SIP Setting
Select Option > New SIP Profile
Profile Name: Any Name
Service Profile: IETF
Default Access point: Your Wi-Fi Network or Internet Connection
Public user name: username@sip.provider.com(sip.actionvoip.com)
Use Compression: No
Registration: Always on (or the other one, if you want it to be on-demand)
Use Security: No
Proxy Server: Do nothing
Registrar Settings
- Registrar Server address: sip.provider.com
- Realm: sip.provider.com
- User Name: username
- Password: password
- Transport Type: UDP
- Port: 5060
Once you are done with this
Navigate to Home > Tools > Settings > Connection > Internet Tel.
Select Options > New Profile and Name it.
Select SIP profile created above
And Now you are done.
Go to contacts and you will see Internet Call in the options and make a test call.
Enjoy Voip calls on your Mobile.
Thank you
For Nokia N85 Please go to the following post.
Nokia N85 SIP Settings for VoIP Setup
આ માણસ જાણે મોબાઇલ થઈ ગયો
જરૂર જેટલી જ લાગણીઓ
રિચાર્જ કરતો થઈ ગયો
ખરે ટાણે જ ઝીરો બેલેન્સ
દેખાડતો થઈ ગયો
આ માણસ જાણે મોબાઈલ થઈ ગયો!
સામે કોણ છે એ જોઈને
સંબંધ રિસિવ કરતો થઈ ગયો
સ્વાર્થનાં ચશ્મા પહેરી મિત્રતાને પણ
સ્વીચ ઓફ કરતો થઈ ગયો
આ માણસ જાણે મોબાઈલ થઈ ગયો!
આજે રીટા તો કાલે ગીતા એમ
મોડેલ બદલતો થઈ ગયો
મિસિસને છોડીને મિસને
એ કોલ કરતો થઈ ગયો
આ માણસ જાણે મોબાઈલ થઈ ગયો!
પડોશીનુ ઊંચું મોડેલ જોઈ
જુઓને જીવ બાળતો થઈ ગયો
સાલું, થોડી રાહ જોઈ હોત તો!
એવું ઘરમાં યે કહેતો થઈ ગયો
આ માણસ જાણે મોબાઈલ થઈ ગયો!
હોય બરોડામાં અને છું સુરતમાં
એમ કહેતો એ થઈ ગયો
આજે હચ તો કાલે રિલાયન્સ એમ
ફાયદો જોઈ મિત્રો પણ બદલતો થઈ ગયો
આ માણસ જાણે મોબાઈલ થઈ ગયો!
ઈનકમિંગ – આઉટ ગોઈંગ ફ્રીનાં ચક્કરમાં
કુટુંબનાં જ કવરેજ બહાર એ થઈ ગયો
હવે શું થાય બોલો
મોડેલ ફોર ટુ ઝીરો એ થઈ ગયો
આ માણસ જાણે મોબાઈલ થઈ ગયો!
Note: Received as a forwarded email.
Recently I was asked to write a code to send entire Aspx page as an HTML mail using VB.Net.
Private Function ReadAspxPage(ByVal url As String) As String
Dim htmlPage As String
Dim objResponse As System.Net.WebResponse
Dim objRequest As System.Net.WebRequest = System.Net.HttpWebRequest.Create(url)
objResponse = objRequest.GetResponse()
Dim readpage As New System.IO.StreamReader(objResponse.GetResponseStream())
htmlPage = readpage.ReadToEnd()
readpage.Close()
Return htmlPage.toString()
End Function
Private Function GetEmailTemplate(ByVal templateName As String) As String
Dim sr As IO.StreamReader = New IO.StreamReader(System.Web.HttpContext.Current.Server.MapPath(templateName))
Dim body As String = sr.ReadToEnd()
sr.Close()
sr.Dispose()
Return body
End Function

