Internet Call From Mobile

i just want to know on which model we can me internet call & how to make internet call?
 is that require wifi only or wifi with VOIP?
Please help me....
Thank You.
Solved!
Go to Solution.

Almost all S60 nokia's can make internet calls when using apps like fring or nimbuzz.  It can be done over wi-fi or over 3G (if your network allows it).
The E series models, and most older FP1 models can directly connect to VoIP servers.  Many newer FP2 and S60v5 models cannot (but can still use apps like fring).
Read more about fring and nimbuzz here (and see compatible phones):
www.fring.com
www.mimbuzz.com
You can also find a lot out about VoIP on nokia by searching google.

Similar Messages

  • Not able to make call from Mobile(android)

    Hi,
    I am not able to make call from mobile device , i was using this till 18th Feb and after that i cannot make calls. I am using Express VPN to use skype and i checked the express VPN and it is working fine. I can make calls from my PC and laptop using express VPN. Please let me know what could be the issue , i have taken calling India subscription. I am using samsung galaxy s4 mobile and i tried in galaxy s2 also, both are not working. Please do the needful ASAP.

    Since last Tuesday a new update for Skype is available, version 4.7. You can download the latest update for Skype for Android in the Play Store. 
    With Skype 4.7 for Android, we are introducing aggressive battery savings that will allow to leave Skype running without noticeably affecting battery life. 
    This version also includes the following fixes:
    Workaround for the KitKat bug which caused a runaway process when the camera was synced in the background.
    Fix for audio and video calling on tablets that do not have Bluetooth.
    Now lists your Windows Live Messenger contacts in the Skype (default) view, not just the All contacts view.
    Could you please verify if this version solves the issue you are encountering? Please share your feedback.

  • I am receiving calls from 911,917,918,919,etc. I believe these are international calls from mobile phones in India. How do I stop/block them?

    I am receiving calls from 911, 917, 918, 919, etc. I believe these are international calls from mobile phones in India. How can I block/stop them?

    Unwanted calls are never pleasant! To confirm, are these calls only coming from 3 digits numbers? If coming from 10 digit number we offer 5 free blocks via https://wbillpay.verizonwireless.com/vzw/nos/safeguards/SafeguardProductDetails.action?productName=callMessageBlocking. While not the most convenient, we also offer the ability to change your phone number free via http://www.vzw.com/myverizon.
    Thank you,
    YaleK_VZW
    Follow us on Twitter @VZWSupport
    If my response answered your question please click the �Correct Answer� button under my response. This ensures others can benefit from our conversation. Thanks in advance for your help with this!!

  • Getting ioerrorevent type ioerror during webservice call from mobile app

    Hi,
    I building a mobile employee directory and for that I am using Flash Builder 4.6/AIR 3.1.0. I am using RESTful web service to get XML results and to display on my mobile application. I am getting the same below error when accessing the webservice from mobile app (Android - Galaxy Tab 7 inch).
    Error: [IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2 text="Error # 2032"] URL: http://adfdevp.alshaya.com:7013/RESTEmployeeDetails-EmployeeDetails-co">http://adfdevp.alshaya.com:7013/RESTEmployeeDetails-EmployeeDetails-co ntext-root/jersey/restlabhttp://adfdevp.alshaya.com:7013/RESTEmployeeDetails-http://adfdevp.alshaya.com:7013/RESTEm ployeeDetails-EmployeeDetails-co ntext-root/jersey/restlabEmployeeDetails-context-root/jersey/restlab
    The same code is working in Flash Builder 4.6. I have checked Network Monitor to "Disabled" before deploying to mobile. What am i doing wrong here? I am pasting my code below-
    <?xml version="1.0" encoding="utf-8"?>
    <s:View xmlns:fx="http://ns.adobe.com/mxml/2009" 
       xmlns:s="library://ns.adobe.com/flex/spark" title="HomeView" xmlns:dao="dao.*"
       xmlns:mx="library://ns.adobe.com/flex/mx">
    <fx:Script>
       <![CDATA[
        import mx.collections.ArrayCollection;
        import mx.collections.IList;
        import mx.collections.XMLListCollection;
        import mx.events.FlexEvent;
        import mx.rpc.events.FaultEvent;
        import mx.rpc.events.ResultEvent;
        import mx.rpc.xml.SimpleXMLDecoder;
        import mx.utils.ArrayUtil;
        import valueObjects.EmployeeDetail; 
        [Bindable] 
        private var myXml:XML;
        [Bindable]
        public var resultCollection:IList;
        public function handleXml(event:ResultEvent):void
         var xmlListCollection:XMLListCollection = new XMLListCollection(event.result.children());
         var xmlListCollectionValues:XMLListCollection = new XMLListCollection(event.result.emp.children());
         var resultArray:Array = xmlListCollection.toArray();
         var resultArrayValues:Array = xmlListCollectionValues.toArray();
         var objEmployeeDetails:EmployeeDetail;
         var resultCollection:ArrayCollection = new ArrayCollection();
         var j:int = 0;
         for(var i:int=0;i<resultArray.length;i++){
          objEmployeeDetails = new EmployeeDetail();
          objEmployeeDetails.brand = resultArrayValues[j];
          objEmployeeDetails.division = resultArrayValues[j+1];
          objEmployeeDetails.email = resultArrayValues[j+2];
          objEmployeeDetails.employee_name = resultArrayValues[j+3];
          objEmployeeDetails.employee_number = resultArrayValues[j+4];
          objEmployeeDetails.grade = resultArrayValues[j+5];
          objEmployeeDetails.mobile = resultArrayValues[j+6];
          objEmployeeDetails.position = resultArrayValues[j+7];
          j = j + 8;
          resultCollection.addItem(objEmployeeDetails);
         list.dataProvider = resultCollection;
         //return resultCollection;
        public function handleFault(event:FaultEvent):void
         //Alert.show(event.fault.faultDetail, "Error");              
        protected function sesrchEmployee():void
         xmlRpc.send();
       ]]>
    </fx:Script>
    <fx:Declarations>
       <dao:EmployeeDAO id="srv"/>
       <mx:HTTPService id="xmlRpc" 
           url="http://adfdevp.alshaya.com:7013/RESTEmployeeDetails-EmployeeDetails-co ntext-root/jersey/restlab"
           result="handleXml(event)" 
           fault="handleFault(event)" 
           resultFormat="e4x" showBusyCursor="true">
        <mx:request xmlns="">
         <data>{key.text}</data>
         <data>{key1.text}</data>
        </mx:request>
       </mx:HTTPService>
    </fx:Declarations>
    <s:navigationContent/>
    <s:titleContent>
       <s:VGroup width="100%">
       <s:HGroup width="100%">
        <s:Label top="40" paddingTop="10" paddingRight="13" height="29" text="Employee Name:"/>
        <s:TextInput id="key" width="559"/> 
       </s:HGroup> 
       <s:HGroup width="100%">
        <s:Label height="30" paddingTop="10" text="Employee Number:"/>
        <s:TextInput id="key1" width="100%"/> 
       </s:HGroup> 
       </s:VGroup> 
    </s:titleContent>
    <s:actionContent>
       <s:Button icon="@Embed('assets/search.png')" click="sesrchEmployee()"/>  
    </s:actionContent> 
    <s:List id="list" top="0" bottom="0" left="0" right="0"  
        change="navigator.pushView(EmployeeDetails, list.selectedItem)">
       <s:itemRenderer>
        <fx:Component>
         <s:IconItemRenderer label="{data.employee_name}"
              messageField="position">
         </s:IconItemRenderer>
        </fx:Component>
       </s:itemRenderer>
    </s:List>
    </s:View>
    Please help me to resolve this issue as soon as possible. Appreciate your quick response in this regard.
    Thanks,
    Murtaza Ghodawala
    Mobile: +965 97180549
    [email protected]

    I am in the same boat, trying to get data from a site with simple Apache Basic Authentication.  I couldnt get the FB/AIR App for iPad to popup the login window. Then, I hard coded in my own login credentials as:
    URLRequestDefaults.setLoginCredentialsForHost("99.99.99.99", "alan", "1234");
    That worked to get logged in at least, and did bring back the data OK.
    Still working on the getting the popup the login window.

  • Calls from mobile

    i have a skype subscription to call landlines and mobiles from my laptop.  how do i do the same from my mobile ?

    Hi, Manolis..., and welcome to the Community,
    Your Skype Subscriptions (and credit, if you have purchased any Skype Credit travel with you as you sign on a Skype app on your smart phone or sign on using your laptop.   Skype To Go works the same, as well.
    Start by first downloading and installing the Skype app from whatever app store or directory is hosted by your wireless service provider.
    Regards,
    Elaine
    Was your question answered? Please click on the Accept as a Solution link so everyone can quickly find what works! Like a post or want to say, "Thank You" - ?? Click on the Kudos button!
    Trustworthy information: Brian Krebs: 3 Basic Rules for Online Safety and Consumer Reports: Guide to Internet Security Online Safety Tip: Change your passwords often!

  • How can I make internet calls from OS X 10.5.8?

    I want to make internet to landline calls with Mac OS X 10.5.8. Which applications will work with this operating system?
    I was previously using Skype until their recent compulsory upgrade, which is not compatible with my computer . A friend suggested Viber, but that also seems to require a more advanced version of OS X than my MacBook will support.
    Thank you,
    REM

    Buy a Snow Leopard DVD
    Any copies you find that can be downloaded besides being illegal are probably loaded with malware. so save yourselt the troubles and purchase a DVD.
    Allan

  • Is skype free for a video internet call from Chris...

    Question above. I can't find my brother's contact in the search function

    You can find contacts by searching by their name, Skype name, or e-mail address.  Skype name or e-mail address would be the most simplest way to get the right account.  So if you don't know that information you need to obtain that from your brother.  You can also provide him with your information and he can send you a contact request instead.  Skype to Skype audio/video calls are free.

  • VoIP Phone Call from mobile to PC - Streaming the audio and playing it back

    In short:
    How can I stream the audio captured from a mobile to PC and play it back.
    In brief:
    I am trying to develope an application to chat(voice) between a J2ME program and a Java program which is running in a PC.
    Currently I am able to send and receive the text message by using SIP protocol after establishing session by using SIP protocol.
    As a next step, I want to capture the audio and play back in PC and Mobile.
    Now, I am able to capture audio from the microphone of the mobile.
    Player p =Manager.createPlayer("capture://audio?rate=8000&bits=8&Channels=1");
                    p.realize();
                    // get the RecordControl over this Player
                    RecordControl rc = (RecordControl)p.getControl("RecordControl");
                    // create an OutputStream which the RecordControl will use
                    // to write write the recorded data.
                    ByteArrayOutputStream output = new ByteArrayOutputStream();
                    rc.setRecordStream(output);
                    // start the recording
                    rc.startRecord();
                    p.start();How can I stream it to PC and play it back? Also, I need to send audio captured from PC to mobile and have to play it back.
    Pl. do reply.

    now I am able to play the stream (with some delay),
    while(inputStream.read(buf)!=-1) {
                        try {
                            ByteArrayInputStream recordedInputStream = new ByteArrayInputStream(buf);
                            play2 = Manager.createPlayer(recordedInputStream, "audio/x-wav");
                            System.out.println("Playback player created...");
                            play2.prefetch();
                            System.out.println("Playback player prefetched...");
                            play2.realize();
                            System.out.println("Playback player realized...");
                            play2.start();
                            System.out.println("Playback player started...");
                        } catch (MediaException ex) {
                            ex.printStackTrace();
                        } catch(Exception e) {
                            e.printStackTrace();
                        }But, the problem is , I have to play the audio, as well as capture the audio to create the duplex communication.
    Is it possible to do the audio capture and playback simultaneously? If it is not possible, pl suggest an idea to achieve this.
    null

  • Installing Gizmo and setting up internet call on m...

    Hi,
    I installed Gizmo on my nokia E51.. The installation process was pretty simple.. I was provided with a 10 cent credit on my account.. I tried making a internet call from the option on my nokia e51.. I was not able to get through with the call. I was always shown the message ' Unable to register the phone for internet'... It would be nice if anyone guide me to setup internet calling on my nokia E51..
    Thanks,
    Ibrahim

    The ipod touch currently support 802.11b/g wireless standards and the following security standards. WEP, WPA and WPA2.
    Make sure your security on your wireless networks is one of these otherwise your ipod touch will not connect also make sure you type the network key correctly as the the keyboard in portrait mode is quite small and wrong keys can accidently be pressed.
    Dib.

  • Internet call

    how can i make internet call from nokia C6-01?

    Firstly you need to install:http://www.developer.nokia.com/info/sw.nokia.com/id/d476061e-90ca-42e9-b3ea-1a852f3808ec/SIP_VoIP_Se... It is set to deliver Symbian^3 SIP VoIP 3.1 by default
    On your C6-01 go to Settings > Connectivity > Admin settings - Net settings - added new option ( advance VOIP settings). Open advance VOIP settings  - Create new service 
    Happy to have helped forum in a small way with a Support Ratio = 37.0

  • Siri wont call people or search internet (im from UK), please help

    Basically i got my new iphone at the weekend, all was working well, siri included. now when i say for example call hayley, it says: "calling hayley mobile....." and just stays there doing nothing, same as if i say search internet
    All other functions seem to work meaning of life etc. I have done everything in the siri troubleshoot section, correct region/language set, linked it to me on contacts etc
    any ideas?
    Cheers

    If you have sireet installed remove it from cydia

  • My skype subscription to call Nigeria mobile from ...

    I subscribed for 400 minutes monthly option to call Nigerian mobiles and landlines, the problem is that when i call, it rings and when someone picks up, i can't hear and he cant hear me also and the call drops after about 5 seconds automatically then 1 minute is gone. I have lost 9 minutes without hearing anything, but skype to skype calls work fine. Making mobile calls dont connect from my android skype and i have the latest update.
    Solved!
    Go to Solution.

    ChelseaKris wrote:
    I subscribed for 400 minutes monthly option to call Nigerian mobiles and landlines, the problem is that when i call, it rings and when someone picks up, i can't hear and he cant hear me also and the call drops after about 5 seconds automatically.
    Hello and welcome to the Skype Community!
    Your account shows that you are calling from the UAE. Please note that the UAE blocks all outbound VoIP traffic including Skype. You could try using a VPN to access the internet.
    p.s. No post duplication please. Duplicate removed. Thank you.
    TIME ZONE - US EASTERN. LOCATION - PHILADELPHIA, PA, USA.
    I recommend that you always run the latest Skype version: Windows & Mac
    If my advice helped to fix your issue please mark it as a solution to help others.
    Please note that I generally don't respond to unsolicited Private Messages. Thank you.

  • Call a mobile from LCCS

    Hi,
    I need know about the way, I will call to a mobile through LCCS. Any API or class is used to call from LCCS to mobile.
    Kindly let me know any POC on ASAP.
    Thanks
    Mayank Vijay

    Hi,
    Thanks for your reply. The AudioPublisher/AudioSubscriber are for voice call over the internet. If i am not wrong.
    I am creating a chat application like sykpe. So i need know how to I call from the application to the mobile by using LCDS.
    I'm serching on internet did not find any thing about this article.
    If you get any helpful link. Let me know.
    Thanks
    Mayank vijay

  • Calling Alv Report From Mobile

    Hi All,
    I need some information to cal a alv report from mobile. I created one report ans can see the selection screen in gui after calling. Here the screen is really big i need to adjust the size because it may take more load and time if i call from a mobile . Is it possible to call the same from mobile or do i need any separate application to call this from mobile. Please *** you valuable suggestions.
    Regards
    Madhu.

    Hello Madhu,
    What is your system details?
    Kernel and BASIS?
    Device OS & Browser?
    What are the GUI Configuration settings of the ITSMobile Service?
    What ITSMobile Generation STYLE was used?
    Perhaps useful notes:
    1037715  ITSmobile: Supported screen elements
    1309633  ITSmobile: custom OMRT controls auto-recognized at runtime
    1312835 ITSmobile: page navigation in ALV Grid on Windows Mobile
    1668784 ITSmobile: new features for ALV Grid
    Regards,
    Oisin

  • Calling a Web Service from Mobile - UI options

    Hi Team,
    I have a scenario where the backend SAP functionality is exposed as a web service and we need to call it online from a mobile handheld device (Symbol with Pocket PC client 2003, IE browser 4.0). Is it possible to call this web service from the handheld? Do we have to write the web service call on the J2EE stack using NetWeaver developer studio?
    Also, what UI technology is recommended for showing the data from the web service call. The idea is to get some user input on the handheld, and then post a transaction via the web service on SAP. I discussed with some of my colleagues and they recommend to use JSP/Servlets for this. Does anybody has a better idea, (the JSP/Servlets does not seem correct). Should we use native XSLT or something else.
    Please note that the Mobile Web Dynpro has limitations on the UI side and the "onEnter", "setFocus" does not work, specifically on the netweaver 2004s release. The backend ERP system we have is 2004s and I'm trying to make a web service call from a NW 2004 client.
    Any ideas or pointers will be appreciated and points awarded. Thanks for your time.

    Hi Sanjay!
    Yes, To call a WebService you will have to write your Own Application using NWDS.I donot have any specific recommendation for the UI Technology to be used.
    Usage of "OnEnter" and "SetFocus" with NW2004s has certain limitations below.
    "OnEnter" is not a supported feature as of now especially for WD applications on Handheld Devices.
    "SetFocus" will work on IE6.0 Standard Desktop Browser with WAS7.0 SP06 and i believe it will work in hand held devices if your using WAS7.0(NW2004s)SP8 and you are using the latest Symbol Device that has Windows Mobile 5.0 OR Windows CE.NET 5.0.I understand that there could be some limitations with the OS and the IE you are currently running in the device.
    Let me know your views.
    Thank You
    Gisk

Maybe you are looking for