E52 - Nokia SIP VoIP application - help needed

Hi there,
I am pretty new here.  I need the Nokia SIP VoIP application for my E52, something like SIP_VoIP_3_1_Settings_S60_3.... .sis
Where can I get it?
My problem is, that I can set up easily an VoIP service with my phone and it connects perfectly.  However, I can't use it with my E52 since I can't activitate it on my phone.  I would need the option:  > connection > Internet Tel. Settings   which is not there.
I guess I need the Nokia SIP VoIP application, however I can't find a compatible version, and the SIP_VoIP_3_1_Settings_S60_5_x_v1_0_en.sis does not work.
Thanx
Caristeo

Although I've never used it, I was able to install the SIP Settings program for my E73 (same OS and Feature Pack as your phone) from http://www.developer.nokia.com/info/sw.nokia.com/id/d476061e-90ca-42e9-b3ea-1a852f3808ec/SIP_VoIP_Se... .  (You need to make an account if you don't have one already.)  Download the "SIP VOIP 3.x" version.  I do have a Settings -> Connection -> SIP Settings option on my phone, as well as Control Panel -> Net Settings -> Advanced VOIP Settings.  Hope that helps.

Similar Messages

  • Nokia e52 WLAN/SIP/VoIP auto connects. Plz help.

    Hi,
     WLAN/SIP/VoIP on my E52 auto connects evey time it finds a wireless network. I have turned off WLAN monitor but problem is still there.
    Any ideas how can i make it manual?
    Thanks
    David
    Solved!
    Go to Solution.

    disable automatic internet connection from those apps which needs internet and by default they have automatic connection option like world traveler, world mate if u have installed it and mail for exchange.
    ¨Arm yourself because no one else here will save you¨

  • Nokia 710 - alarm/reminder help needed

    I'm new to Nokia 710 Lumia.  I don't like to have my phone switched on overnight.   I want to set various daily reminders so that when my phone is switched on they activate with a continuous alarm (until turned to snooze or off by me) even if the reminder time has passed.
    My Nokia alarm will only activate if the phone is switched on before the reminder time is due (not after) and various reminders I've tried only beep once and not continuously which is what I need.
    Does anyone know of an alarm/reminder app which has a continuous alarm and will also activate if  the phone is switched on after the reminder time has passed?

    Hi,
    Welcome to the forum!
    If you're asking for an application, sorry to inform you but we don't have the exact details about a certain application. You may search it on Store or Marketplace for a certain application.
    Hope this helps. 

  • First Spring Application .Help needed.java.lang.ClassNotFoundException

    Hi
    i am new to this site and java Springs, I couldn't find seprate spring forum so i am posting my question here.
    i hope its not a problem.
    I am very new to Springs and struggeling through my first Spring MVC application. can any one help me here.
    Here is what i have done uptill now.
    WEB.XML
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
        <servlet>
            <servlet-name>HelloSpring</servlet-name>
            <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
            <load-on-startup>1</load-on-startup>
            </servlet>
        <servlet-mapping>
            <servlet-name>HelloSpring</servlet-name>
            <url-pattern>*.htm</url-pattern>
        </servlet-mapping>
        <session-config>
            <session-timeout>      
                30
            </session-timeout>
        </session-config>
        <welcome-file-list>
         <welcome-file>
                index.jsp
            </welcome-file>
        </welcome-file-list>
    </web-app>
    HelloSpring-servlet.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN/EN" "http://www.springframework.org/dtd/spring-beans.dtd">
    <beans>
        <bean id="urlMapping" class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
            <property name="mappings">
                <props>
                    <prop key="/hello.htm">HelloSpringController</prop>
                </props>
            </property>
        </bean>
        <bean id = "HelloSpringController" class="HelloSpringController" />
    </beans>
    index.jsp
    <html>
        <head>
            <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
            <title>Hello Spring</title>
        </head>
        <body>
        <form action="hello.htm"  method="POST">
            What is your name?
            <input type="text" name="yourName" value="" />
        </form>
        </body>
    </html>
    welcome.jsp
    <%@page contentType="text/html"%>
    <%@page pageEncoding="UTF-8"%>
    <%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
       "http://www.w3.org/TR/html4/loose.dtd">
    <html>
        <head>
            <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
            <title>Hello Spring</title>
        </head>
        <body>
        Hello <c:out value="${name}" />
        </body>
    </html>
    HelloSpringController.java (in default package)
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import org.springframework.web.servlet.ModelAndView;
    import org.springframework.web.servlet.mvc.Controller;
    public class HelloSpringController implements Controller {
        public HelloSpringController() {
        public ModelAndView handleRequest(HttpServletRequest httpServletRequest,
                                          HttpServletResponse httpServletResponse)
                                            throws Exception {
            String name = httpServletRequest.getParameter("yourName");
            return new ModelAndView("welcome.jsp", "name", name);
    }After Entering name in the text box of index.jsp, i am getting the following error.
    exception
    javax.servlet.ServletException: Servlet.init() for servlet HelloSpring threw exception
         org.jboss.web.tomcat.security.CustomPrincipalValve.invoke(CustomPrincipalValve.java:39)
         org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:159)
         org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:59)
         org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
         org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
         org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:856)
         org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:744)
         org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
         org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112)
         java.lang.Thread.run(Unknown Source)
    root cause
    org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'urlMapping' defined in ServletContext resource [/WEB-INF/HelloSpring-servlet.xml]: Initialization of bean failed; nested exception is org.springframework.beans.factory.CannotLoadBeanClassException: Cannot find class [HelloSpringController] for bean with name 'HelloSpringController' defined in ServletContext resource [/WEB-INF/HelloSpring-servlet.xml]; nested exception is java.lang.ClassNotFoundException: HelloSpringController
         org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:451)
         org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:251)
         org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:156)
         org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:248)
         org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:160)
         org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:287)
         org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:352)
         org.springframework.web.servlet.FrameworkServlet.createWebApplicationContext(FrameworkServlet.java:330)
         org.springframework.web.servlet.FrameworkServlet.initWebApplicationContext(FrameworkServlet.java:266)
         org.springframework.web.servlet.FrameworkServlet.initServletBean(FrameworkServlet.java:236)
         org.springframework.web.servlet.HttpServletBean.init(HttpServletBean.java:126)
         javax.servlet.GenericServlet.init(GenericServlet.java:211)
         org.jboss.web.tomcat.security.CustomPrincipalValve.invoke(CustomPrincipalValve.java:39)
         org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:159)
         org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:59)
         org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
         org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
         org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:856)
         org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:744)
         org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
         org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112)
         java.lang.Thread.run(Unknown Source)
    root cause
    java.lang.ClassNotFoundException: HelloSpringController
         org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1332)
         org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1181)
         org.springframework.util.ClassUtils.forName(ClassUtils.java:201)
         org.springframework.beans.factory.support.AbstractBeanDefinition.resolveBeanClass(AbstractBeanDefinition.java:327)
         org.springframework.beans.factory.support.AbstractBeanFactory.resolveBeanClass(AbstractBeanFactory.java:1066)
         org.springframework.beans.factory.support.AbstractBeanFactory.isBeanClassMatch(AbstractBeanFactory.java:1094)
         org.springframework.beans.factory.support.AbstractBeanFactory.isSingleton(AbstractBeanFactory.java:354)
         org.springframework.context.support.AbstractApplicationContext.isSingleton(AbstractApplicationContext.java:745)
         org.springframework.web.servlet.handler.AbstractUrlHandlerMapping.registerHandler(AbstractUrlHandlerMapping.java:255)
         org.springframework.web.servlet.handler.SimpleUrlHandlerMapping.registerHandlers(SimpleUrlHandlerMapping.java:125)
         org.springframework.web.servlet.handler.SimpleUrlHandlerMapping.initApplicationContext(SimpleUrlHandlerMapping.java:103)
         org.springframework.context.support.ApplicationObjectSupport.setApplicationContext(ApplicationObjectSupport.java:73)
         org.springframework.context.support.ApplicationContextAwareProcessor.postProcessBeforeInitialization(ApplicationContextAwareProcessor.java:72)
         org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyBeanPostProcessorsBeforeInitialization(AbstractAutowireCapableBeanFactory.java:304)
         org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1168)
         org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:428)
         org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:251)
         org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:156)
         org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:248)
         org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:160)
         org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:287)
         org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:352)
         org.springframework.web.servlet.FrameworkServlet.createWebApplicationContext(FrameworkServlet.java:330)
         org.springframework.web.servlet.FrameworkServlet.initWebApplicationContext(FrameworkServlet.java:266)
         org.springframework.web.servlet.FrameworkServlet.initServletBean(FrameworkServlet.java:236)
         org.springframework.web.servlet.HttpServletBean.init(HttpServletBean.java:126)
         javax.servlet.GenericServlet.init(GenericServlet.java:211)
         org.jboss.web.tomcat.security.CustomPrincipalValve.invoke(CustomPrincipalValve.java:39)
         org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:159)
         org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:59)
         org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
         org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
         org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:856)
         org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:744)
         org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
         org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112)
         java.lang.Thread.run(Unknown Source)Can anybody tell me what is am doing wrong .. it will be a greate help...
    thanks in advance

    vikash_sharma wrote:
    Thanks for another quick reply
    here is the folder structure of war.
    HelloSpring.war
    -----------Bin (empty)Wrong. No need for this. Remove it.
    ------------src/HelloSpringController.javaWrong. Source code doesn't go in WAR.
    ------------WEB-INF/classes(empty)there's your problem. the HelloSpringController.class has to be in there.
    /libWhere are the Spring JARs?
    /META-INF
    /tldDon't need /tld.
    ------------welcome.jsp
    ------------index.jspWhere's your web.xml? Where is the Spring configuration?
    You're still blank. Not even close to correct. You don't seem to know Java well enough to tackle this. You will NOT be able to accomplish this by asking questions here. Go back and learn more basics.
    %

  • Nokia C5 VoIP applications (Skype, Fring) not supp...

    From what I have seen and read for last two days, there is an error while trying to install Skype or Fring application to Nokia C5 phones. This is probably because of new FW (062 or 071), because it worked with older versions (031). Nokia probably does not support VoIP on series without Wifi anymore. But this is a complete nonsense, these application would have worked good enough using 3G networks.
    Does anybody have a workarround for installing Skype or Fring? Please do not advice using download from OVI or Skype.com, hard reset, formating memory card etc., it is really not possible to install anyway. It probably fails during install of prerequisity called VoIPAudioSrv.

    Even i m facing the same problem in my nokia c5 symbian device..it's very irritating.fring and nimbuzz uses different versions of Voipaudioserv plugin. additionally m unable to login fring nw no matter hw much time i reinstall it doesn't go beyond the login screen.i'm using fring v4.05(17).if any one has the solution then please let us know.
    Thanks & regards.

  • Cannot connect to Nokia Music Manager! Help needed...

    I am using Windows Vista Home Premium with PC Suite version 6.83.
    Just got Nokia N95 and getting used to features however an issue concerning tranfering music from Laptop to phone. Originally simply sent tracks via blutooth however came across feature to sync music in PC Suite but try to open it and get this message:
    NokiaMusicManager has stopped working
    Check online for a solution and close program
    Close the program.
    Whats the problem?

    Hi bigman40
    Just a thought do you have windows Media Player 11 installed on your PC?
    Happy to have helped forum in a small way with a Support Ratio = 37.0

  • Compiling Application Help Needed

    Ok, I try compiling with TextPad my first application from the application tutorial (http://developer.java.sun.com/developer/onlineTraining/new2java/divelog/part1) and i get this error:
    C:\Documents and Settings\Nancy Schott\My Documents\Matt's Stuff\Programming\Divelog\DiveLog.java:50: cannot resolve symbol
    symbol : class Welcome
    location: class divelog.DiveLog
    tabbedPane.addTab("Welcome", null, new Welcome(), "Welcome to Dive Log");
    (the error is at the new Welcome() spot)
    1 error
    but it is with all of the tabbedPane.addTab stuff. Could someone help me, because I can not figure it out and the troubleshooting thing at the end of it didn't help.
    I compile useing the default TextPad command. It is something like
    javac $FileDir $File
    which means that for this it is saying
    javac C:\My Documents\Matt's Stuff\Programming\Divelog DiveLog.java
    Please Help!! Thanks

    here is my code for divelog:
    package divelog;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class DiveLog
         private JFrame dlframe; //not assigned yet
         private JTabbedPane tabbedPane; //not assigned yet
         public DiveLog()
              // Create a frame object to add the application GUI components to.
              dlframe = new JFrame("A Java Technology Dive Log");
              // Closes from title bar
              //and from menu
              dlframe.addWindowListener(new WindowAdapter()
                   public void windowClosing(WindowEvent e)
                        System.exit(0);
         // Tabbed pane with panels for Jcomponents
         // Instantiate JTabbedPane with keyword new
         tabbedPane =new JTabbedPane(SwingConstants.LEFT);
         // Calls method to set color
         tabbedPane.setBackground(Color.blue);
         tabbedPane.setForeground(Color.white);
         populateTabbedPane();
         dlframe.getContentPane().add(tabbedPane);
         dlframe.pack();
         dlframe.setSize(765, 690);
         dlframe.setBackground(Color.white);
         dlframe.setVisible(true);
         }// Ends constructor
         // Method header
         private void populateTabbedPane()
              //creates tabs with titles
              tabbedPane.addTab("Welcome", null, new Welcome(), "Welcome to Dive Log");
              //tabbedPane.addTab("Diver Data", null, new Diver(), "Click here to enter diver data");
              //tabbedPane.addTab( "Log Dives", null, new Dives(), "Click here to enter dives");
              //tabbedPane.addTab("Statistics", null, new Statistics(), "Click here to calculate" + " dive statistics");
              //tabbedPane.addTab("Favorite Web Site", null, new WebSite(), "Click here to see a web site");
              //tabbedPane.addTab("Resources", null, new Resources(), "Click here to see a list " + "of resources");
         }//Ends populateTabbedPane method
         private void buildMenu()
              // Opens buildMenu method
              JMenuBar mb = new JMenuBar();
              JMenu menu = new JMenu("File");
              JMenuItem item = new JMenuItem("Exit");
              //Closes the application from the Exit menu item.
              item.addActionListener(new ActionListener()
                   // Opens addActionListener method
                   public void actionPerformed(ActionEvent e)
                        // Opens actionPerformed method
                        System.exit(0);
                   } // Closes actionPerformed method
              }); // Closes addActionListener method
              menu.add(item);
              mb.add(menu);
              dlframe.setJMenuBar(mb);
         } //Ends the buildMenu method
         public static void main(String[] args)
              DiveLog dl = new DiveLog();
    }//Ends Class
    And here is my welcome class
    package divelog;
    import javax.swing.*;
    import java.awt.*;
    public class Welcome extends JPanel
    { // Opens class
    } // Closes class

  • Apps Patch application Help needed !

    Hi guys
    I have been asked a question that if i am applying a major patch family pack or roll up which after a considerable amount of time hangs/fails at a point . As a solution Oracle team suggest to apply another patch how should i proceed ?
    pls help
    thanks

    First try resetting your iPHone, i.e., hold down the sleep and home buttons, ignore the off slider, wait for the Apple logo to appear and then let go.
    If that does not work try acquiring a free app and see if the problem clears.
    Finally, you may need to deauthorize your computer in iTunes, then Authorize it again and resync.

  • Launching Browser From Swing Application - Help Needed

    Hi,
    I am opening a HTML file in Internet Explorer from my swing application.
    I am using the code given below
    private final static String WIN_FLAG = "url.dll,FileProtocolHandler";
    private final static String WIN_PATH = "rundll32";
    String cmd = WIN_PATH + " " + WIN_FLAG + " " + url;
    // url is HTML file Path
    Process p = Runtime.getRuntime().exec( cmd );
    The HTML file is opening up,but it always opens behind the swing application,that makes me every time to maximize the HTML file after it being opened up.
    I want to open it in front of the Swing Application.
    Any Help Please ?
    - Manikandan

    Browser Utility - Class to launch a URL in a web browser in
    a platform independent manner. Includes an optional swing
    GUI allowing user customization. [Open Source - GPL]
    http://ostermiller.org/utils/Browser.html
    BrowserLauncher - Open the system web browser with
    particular attention paid to various Macintosh systems.
    (Freeware)
    http://browserlauncher.sourceforge.net/
    Java World - With a little platform-specific Java code, you
    can easily use your system's default browser to display any
    URL in Windows or Unix.
    http://www.javaworld.com/javaworld/javatips/jw-javatip66.html
    JConfig - Class Libraries that allow a URL to be launched in
    a browser on Windows, Unix, or Macintosh. [Commercial]
    http://www.tolstoy.com/samizdat/jconfig.html
    Apple - MRJFileUtils.openURL() not implemented in Mac OS X.
    http://developer.apple.com/techpubs/macosx/ReleaseNotes/JavaGMWebReleaseNotes.html#MRJToolkit
    Apple - How one would open a URL in a web browser on a
    Macintosh.
    http://developer.apple.com/qa/java/java12.html

  • IPhoto broken - Empty window when I open the application - Help needed

    Hi Guys,
    Since my upgrade to Snow Leopard my iPhoto 09 has been completely broken. What I get when I start it up is an empty window. No pictures on the right pane and no menus on the left pane. I read many threads about iPhoto issues, and so I have tried to rebuild the library, reinstall iPhoto from the disk I got with my mac. Still the same problem: On startup, iPhoto opens with a completely blank window. All I have are the three buttons at the bottom left side of the window (+, info and enlarge). Only if I click "+" to add a new album the menus on the left pane (events, photos...) appear. A few clicks on these menus and iPhoto crashes. All this, done with a new, clean library. I moved the old one, and keep it for the day I'll get iPhoto to work again. Hope you guys can help. This is painfully frustrating.

    Thanks for help Terrence
    I am using Suitcase Fusion 2 and just activitating Helvetica Neue in Suitcase seemed to fix this problem I have had for several months.
    I highly recommend doing the activation in Suitcase instead of just droping it into the System Fonts folder. This will allow for Suitcase to activate or deactivate the font. If you put the font into one of your folders, Suitcase can not deactivate, which might be necessary if your job uses a different version of Helvetica Neue.

  • 'mymusic/itunes.exe is not a valid win32 application' **help needed** !!

    As i double click on the desktop shortcut to open itunes, i get an error message which is the following: 'mymusic/itunes.exe is not a valid win32 application'. I now cannot access itunes or any of my media/music!
    Background... I updated to the latest version of itunes, downloaded a few apps and music and re-synced my iPod touch. I then clicked on itunes store, and itunes just closed down and would then not reopen and now repeats the error message everytime.
    I have attempted to repair itunes by downloading the setup software again, i have also tried removing itunes from my pc with the intention to re-install all over again, however it wont let me uninstall itunes either!!
    Anybody have any suggestions?

    Can you open iTunes if you go to Program Files\iTunes and double click on iTunes.exe.
    If so, you can create a new short cut by right clicking on iTunes.exe and selecting Send to>>Desk top(create short cut)

  • Nokia 5800 VOIP SIP client that works!

    I have just installed the V Phone VoIP SIP client onto my UK Nokia 5800, and it works very well, "straight out of the box". I have it set up to use my sipgate.co.uk account, and it registers via WiFi immediately, with good clear call quality. Sometimes there is a bit of echo, but generally the call is clean.
    So here's a Nokia 5800 SIP VoIP application that does work - I thought that such a thing didn't exist. V Phone are an Australian outfit, found here: http://www.thevphone.biz/Products.html. I bought their Premium version for about £5.50 equivalent of Australian dollars, so it isn't expensive either.
    Recommended (and I don't have anything to do with them, if you were wondering).
    Tom

    Does it really work? My operator requires proxy. Is there an option in the settings to enter proxy server? I went on their website and saw there is only registrar, user and password. Also, when I try to purchase Premium Edition with G729 codec, I get an option to purchase V Phone - s60 - Standard Edition for 8.95 dollars. The price is really good but I wonder if it really works.

  • Nokia E52 and SIP Reregistration

    Hi,
    I have been using SIP profiles on my E71 for sometime now and it works great.  I have since bought an E52 and although I have it working, its not quite how I like it.
    On my E71, when I came into range of my Wireless network, my Nokia would register immedately, with the E52 I cannot seem to make it do so. 
    I have downloaded the SIP VoIP Settings Application and setup the SIP profile.  To enable it I go to the home page, select the wireless and enable the profile.  If I go out of range or wireless and come back in I need to re-enable it again, is there a way to make it automatic?
    Thanks
    Gavin 

    Let us in on your dirty little secret.
    ‡Thank you for hitting the Blue/Green Star button‡
    N8-00 RM 596 V:111.030.0609; E71-1(05) RM 346 V: 500.21.009

  • Error downloading SIP VOIP settings application

    Hello!
    I have a n85 and I've tried to download the SIP voip app 3.x from
    http://www.forum.nokia.com/info/sw.nokia.com/id/d476061e-90ca-42e9-b3ea-1a852f3808ec/SIP_VoIP_Settin...
    and it always give me an error.
    Is it possible that someone who downloaded it correctly could send it to me?
    Thanks!

    If your office network is behind a firewall that blocks the ports that are necessary for correct operation of SIP then there's nothing you can do to get it working properly. At least not directly.
    What you can try is using a 3rd-party application such as fring. Fring allows you to set up a generic SIP session with the VoIP provider of your choice. You connect to fring's systems over a single-port, proprietary connection, and fring connects to your SIP provider instead of you.
    It's obviously not as good as a direct connection between you and the VoIP provider but at least it works. I'm more or less forced to do that now with the N96 having no other real SIP support.
    Was this post helpful? If so, please click on the white "Kudos!" star below. Thank you!

  • How to use linphone - open sip VoIP library in Windows desktop application.?

    I want to develop an VoIP .net application in C# lang for windows desktop. Does anyone know any open sip VoIP library to use.? I know about Linphone. but it is available for Android, iOS and Windows(app developed using GTK- UI builder). If anyone knows how
    to use Linphone for windows then ans also will be appreciated.
    I am using MS visual studio for application development. Tell me its compiling steps as well. How to use that in WPF or WinForms.?
    Thanks in advance.

    Hello,
    The VoIP seems not MS product and can you clarify it? Basically, if it is third party product, you will need to ask for the API writer for details. For example, find a forum here:
    http://www.linphone.org/
    Regards,
    Barry Wang
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

Maybe you are looking for

  • Mixing hypervisors and Ironic with NSX

    I've been tasked with setting up a laboratory environment with OpenStack (Juno), and blades running KVM, Xen and VMware ESXi hypervisors, as well as bare-metal deployment of an arbitrary kernel, which I hope to do using Ironic (deploying CoreOS). It'

  • Front panel controls show up one at a time

    When I first open my main vi the controls on the front panel appear one at a time over 20-30 seconds.  The problem was compounded when a second front panel was made switching between the two the controls for the second panel pop up one at a time and

  • Is Apple a trustable place to repair my Macbook Pro?

    My macbook pro wouldn't turn on one day so I went to an Apple Store.They told me there was water damage, therefor it was going to cost $500 to fix the logic board(i never spilled anything on it)(my macbook is still under warenty). So, I told them to

  • Parameter mapping warnings

    I am using sp12, and am wondering if something has changed with parameter mapping, because I am using the same method I used when I was on sp9, but am now getting compilation warnings about my parameter mapping. I have an action with a string paramet

  • NetStream.Play.InsufficientBW when streaming server side playlist

    Hi I am streaming pre recorded audio files (mp4) to an AIR client. I have tried two different solutions, streaming the file directly with the NetStream.play("mp4:xxxxx.m4a") and creating a server side playlist, adding the same sound clip and then str