Help!!!   I cant restart Tomcat Server  -StandardServer.await: create[8005]

help!!! I cant restart Tomcat Server
The following error is thrown on startup console:
嚴重的: StandardServer.await: create[8005]:
java.net.BindException: Cannot assign requested address: JVM_Bind
     at java.net.PlainSocketImpl.socketBind(Native Method)
     at java.net.PlainSocketImpl.bind(PlainSocketImpl.java:365)
     at java.net.ServerSocket.bind(ServerSocket.java:319)
     at java.net.ServerSocket.<init>(ServerSocket.java:185)
     at org.apache.catalina.core.StandardServer.await(StandardServer.java:373)
     at org.apache.catalina.startup.Catalina.await(Catalina.java:662)
     at org.apache.catalina.startup.Catalina.start(Catalina.java:614)
     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     at java.lang.reflect.Method.invoke(Method.java:597)
     at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:289)1)I checked that no any process occupy port 8080 and 8005
2)I modified the server.xml and change other port to use. the error is still shown
Does anyone know what the problem is?
thanks a lot!
Edited by: perfectlifepan on Aug 17, 2010 3:50 AM

In the past I have accidentally had my Tomcat service started and tried to start it up another instance in a development environment causing this error (recreated it just now):
java.net.BindException: Address already in use: JVM_Bind:8080Yours is
java.net.BindException: Cannot assign requested address: JVM_Bindwhich leads me to believe from a few quick web searches that it might be an underlying network(ip) problem and not a port problem.
(wifi/lan switching? permission problem?)
Either way it seems like something a classic reboot would solve. :-)
Good luck!

Similar Messages

  • How can i avoid restarting tomcat server when servlet is modified?

    please advice me that how can i avoid restarting the tomcat server, whenever a servlet file is modified in my application. is their any way ?

    No probs. Here's how I do things...
    1. Install tomcat as normal (e.g. I install to C:\Apps\jakarta-tomcat-5.5.4)
    2. Create a webapps directory in your eclipse project with the following directory structure
    MyEclipseProject
       - src
       - conf
       - webapps
          - MyApplication
             - META-INF
             - WEB-INF
                - classes
                - lib
                - pages3. Set the project's output folder (e.g. bin folder) to webapps/MyApplication/WEB-INF/classes
    4. Put all your jar files in the lib directory
    5. Put JSPs / HTML in the pages directory (you may also want to create additional directories for TLDs, config files etc)
    6. Ensure your web.xml is in the WEB-INF directory
    7. Although it isn't essential I create a context.xml file and store it in META-INF, e.g.
    <Context reloadable="true">
        <!-- Default set of monitored resources -->
         <WatchedResource>WEB-INF/web.xml</WatchedResource>
         <WatchedResource>WEB-INF/conf/struts/struts-config.xml</WatchedResource>
         <WatchedResource>WEB-INF/conf/struts/tiles-defs.xml</WatchedResource>
         <WatchedResource>WEB-INF/conf/struts/validation.xml</WatchedResource>     
    </Context>I use this to set monitored resources that will trigger an automatic appliation reload and to configure JAAS (not shown). See the Tomcat documentation for additional information.
    8. In the 'conf' directory I create a server.xml file used to configure Tomcat (you can copy the one from your <TOMCAT_HOME>/conf/server.xml).
    After copying the file change appBase attribute in the host element to be the full path to the webapps directory. You can also change the HTTP and HTTPS ports if you wish
    9. Download and install the Tomcat Launcher plugin from Sysdeo.
    10. In Eclipse's Preferences menu you will see a new entry for Tomcat. Click this then
    a. Set your Tomcat Version
    b. Set your Tomcat Home
    c. Set "Context declaration mode" to server.xml
    d. Set the configuration file to the full path to your server.xml file created in step 8
    On the "Advanced " sub page select all relevant projects to add to the Tomcat classpath
    On the "JVM Settings" page add all the jars in your WEB-INF lib directory to the class path
    On the "Source Path" page select all relevant projects
    Now if you start Tomcat using the Tomcat icon, you will be able to remote debug your application. If you change web.xml (or any other file in your context.xml watched resources) it will automatically reload. Any changes to JSPs will automatically be picked up (providing your tell your browser not to use the page in cache - e.g. CTRL+F5 in IE)
    There are some limitations that I'm still working on however. Primarily that I haven't included the Tomcat Manager application in my webapps directory, so Sysdeo cannot perform a reload. This means that if I change a source file, and eclipse auotmatically rebuilds, Tomcat doesn't pick up the change unless I either change a watched resource file (e.g. web.xml) or stop and restart Tomcat.
    There's no reason why this can't be fixed, I just haven't got round to it yet.
    I'm sure there are lots of other (probably better) ways of achieving the same thing. This was the first method I tried and it worked, so I stuck with it. I'm not a Tomcat config guru and I'm sure other forum users could provide some improvements should they wish.
    Post if you get into trouble, however I won't be able to respond until next week.
    Cheers,
    Steve

  • Restarting of tomcat server while using jsp

    hi,
    Iam using a jsp page on tomcat server. It actually sends message to a phone, after that it comes back to the same jsp using the same url.
    But after it comes back, the jsp is not working properly. I have to restart tomcat server each time for it to work.
    As iam redirecting it back to the same jsp , i expect it to work properly as nothing is being changed. Its not practical to restart the server each time.
    Can anyone help me with this?
    Thanks in advance
    san

    Hi,
    Iam getting error at this particular point in the code
    DirContext ctx = new InitialDirContext(env);
    The function contains the following code
    Hashtable env = new Hashtable();
    env.put(Context.INITIAL_CONTEXT_FACTORY,
    "com.sun.jndi.ldap.LdapCtxFactory");
    env.put(Context.PROVIDER_URL,
    "ldap://" + ldapServer + ":" + String.valueOf(ldapPort) + "/" + rootDn);
    env.put(Context.SECURITY_AUTHENTICATION, "simple");
    env.put(Context.SECURITY_PRINCIPAL, ldapUserId);
    env.put(Context.SECURITY_CREDENTIALS, ldapPassword);
    DirContext ctx = new InitialDirContext(env);
    //at this point its gives array out of bound , java.util.vector error
    Attributes matchAttrs = new BasicAttributes(ignoreCase);
    if (matchRules != null) {
    Iterator attrIter = matchRules.keySet().iterator();
    while (attrIter.hasNext()) {
    String key = (String) attrIter.next();
    String value = (String) matchRules.get(key);
    matchAttrs.put(new BasicAttribute(key, value));
    response = ctx.search(searchBase, matchAttrs, returnAttrs);
    lastResult = new Vector();
    while (response.hasMore()) {
    HashMap attrMap = new HashMap();
    SearchResult sr = (SearchResult) response.next();
    Attributes attrs = sr.getAttributes();
    NamingEnumeration attrsEnum = attrs.getAll();
    while (attrsEnum.hasMore()) {
    Vector values = new Vector();
    Attribute attr = (Attribute) attrsEnum.next();
    for (int i = 0; i < attr.size(); i++) {
    values.add(attr.get(i));
    attrMap.put(attr.getID(), values);
    lastResult.add(attrMap);
    First time when i run it runs fine, but the second time , it gives error.

  • Restart tomcat from JSP----recall for jsp guru's

    hi thr
    I have buid a web based portal which give administrator power to do changes but to make these changes i need to restart tomcat server but my users are not It guys they found it very difficult to it.Is there anyway that i can restart server programatically.from JSP page using Java beans.Any idea will be helpful.
    Thanks in advance

    thanks guys i will go through that link but is there any code sample or a logic which can give idea how this works.
    Just like is we go to JRUN admin. we can start or restart server from front end in jsp.

  • Tomcat server installation on Windows 98

    hi,mine is P3 and I use Windows 98. I am trying to install tomcat server version 3.3.2, jdk version 1.4.
    I have set the paths of JAVA_HOME, TOMCAT_HOME to the respective directories as follows
    in the autoexec.bat file
    set JAVA_HOME=c:\jdk1.4
    set path=c:\jdk1.4\bin;c:\jdk1.4\lib
    set TOMCAT_HOME=C:\jakarta-tomcat-3.3.2
    set CLASSPATH=c:\jakarta-tomcat-3.3.2\lib\common\servlet.jar
    When i run startup.bat file it displays a message saying "starting tomcat in new window", but in the new window, i get a display like this:
    org.apache.tomcat.core.TomcatException: EmbededTomcat.initContextManager
    at org.apache.tomcat.startup.EmbededTomcat.initContextManager(EmbededTom
    cat.java:631)
    at org.apache.tomcat.startup.EmbededTomcat.execute1(EmbededTomcat.java:7
    91)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:30)
    at java.lang.reflect.Method.invoke(Method.java:306)
    at org.apache.tomcat.util.IntrospectionUtils.execute(IntrospectionUtils.
    java:52)
    at org.apache.tomcat.startup.Main.execute(Main.java:272)
    at org.apache.tomcat.startup.Main.main(Main.java:98)
    and even more.... And that new window hangs. Pls help me to install tomcat server.

    I only set Java_Home:
    @echo off
    set JAVA_HOME=c:\j2sdk1.4.2_01
    if "%OS%" == "Windows_NT" setlocal
    Thats the only line I added.
    You shouldnt need the other stuff, I am using a later version than you though.
    If I were you Id ditch your current version and get version 5.5 or whatever the latest stable release is.

  • Executes only if I restart tomcat

    I have a JSP page that invokes a function in a bean and the bean deletes some data from database. Basically no data is fed from user. The function has to be invoked on page load.
    Trouble is the required function is not performed each time I visit the page.
    But works fine if i restart tomcat server and visit the page!!!
    any insight into the trouble??
    Thanx.

    At what point do you call the method? It should not be done in the jspInit method if you want the code to execute each time the page is called (the init method is called only when the page is initialised, which is maybe only once.

  • Server Admin start/stop doesnt restart tomcat

    Is it just me or does the ServerAdmin app not restart tomcat? I just spent a good hour banding the desk about why the tomcat-users.xml file didnt agree with the manager app, only to find tomcat wasnt being restarted. In the end I killed it from the terminal and let the launchd bring it back up on its own...

    What you see in Object Explorer, is a connection to the server using your local machine credentials, not any "sa" credentials. When you click on the server in registered
    servers (or click "Connect" from Object Explorer), you get a dialog box where you can enter "sa" credentials (or whatever) to log into the server, manage the databases, run queries, etc.
    But the object explorer window doesn't care about those sa credentials, it is using your local machine credentials.
    So, you (user "pippo") open up SSMS and hit "Connect" in Object Explorer and fill in information (sysadmin) to connect to SERVER A - if "pippo" is a local administrator on SERVER A, you will get the green arrow and be able to manage
    by right-clicking in Object Explorer. If "pippo" is not a local admin on SERVER A, you won't be able to. It makes no difference at all that you logged into SSMS (connected to SERVER A through SSMS) as sysadmin.
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it

  • Can i do it without restart the tomcat server?

    Hi, guys
    I need your help. I'm making a chat application using Http Tunneling technique. The ChatClient is an applet, and the ChatServer is a servlet. They communicate through the http tunneling. When i code them at home, it's all work.But when i deployed them, on the web (internet), i encounter a problem. When i try to connect and communicate to the ChatServer, the ChatClient(applet) throw an IOException says that the destination server is not found. After some try at my own machine, i found out that the webserver where i put the ChatServer(servlet) must be restarted first. The problem is that i deployed my Chat Applet on web server (tomcat) that i could not restart (because it's a hosting service). Could any body give me some solution?
    You can see the chat applet through : http://www.webappcabaret.com/sudirman/ChatRedirector.jsp
    Please somebody give me your help

    Why do you feel that restarting Tomcat would make the servlet not give you the very same exception?

  • Updated to ios6 on my ipod touch 4g when i try to turn it on it doesn't, it just comes up with the itunes symbol and the usb, so i plugged into laptop opened itunes and it says to restore back to ios5 i pressed restore and it cant connect to server? help?

    updated to ios6 on my ipod touch 4g when i try to turn it on it doesn't, it just comes up with the itunes symbol and the usb, so i plugged into laptop opened itunes and it says to restore back to ios5 i pressed restore and it cant connect to server? help?

    Maunally restore it. In order to do this:
    -Download the iOS 5.1.1 firmware from here  http://www.redmondpie.com/download-5.1.1-ios-for-iphone-4s-4-3gs-ipad-ipod-touch -direct-official-links/
    1. After downloading the firmware from the given link, open iTunes and click on your device.
    2. Now press SHIFT on your keyboard and while pressing it click on "Restore".
    3. A dialog box will appear.
    4. Select the firmware you downloaded and click ok.
    5. Done!!! Your iPhone will now be restored to 5.1.1 and if you had backed up your iPod before, then you can put all its settings afterwards.

  • Okay so my ipod 5th generation, isnt turning on at all. It isnt charging either, its not responding at all. Now I cant restart it because my home button is broken.  So what do i do? I cant buy another one, N couldnt back it up on i Cloud. so help

    Okay so my ipod 5th generation, isnt turning on at all. It isnt charging either, its not responding at all. Now I cant restart it because my home button is broken.  So what do i do? I cant buy another one, N couldnt back it up on i Cloud. so help . this had happened to me before, so i left my ipod on the charger all day and left it alone and later that night turned on. but this time that didn't work. but this time i kept trying to turn it on while it was on the charger. i need this ipod. only this one. so please help

    Try:
    Turn on without Home/Power Button

  • Do we need to restart the Tomcat server each time when we modify servlets?

    Hi Friends,
    Do we need to restart the Tomcat server each time when we modify servlets. Or is there any otherway to achieve the functionalitly?
    Thanks and Regards,
    JG

    JamesGeorge wrote:
    Hi kajbj,
    Java guys are mostly using TOMCAT,so for me it seems to be the best place.That's not correct. Most people who are writing stuff for the web might be using Tomcat, but there are lots and lots of Java applications that aren't for the web.
    Is there any other reason behind your question.Yes, this forum is named "New to Java" and Tomcat questions shouldn't be asked here, even if people knows the answer to you question. You will probably get better and more detailed answers in a Tomcat forum. All othe guys there are actually using Tomcat, and they know the small differences between the different versions, and how they behave on different operating systems. They do also know if you need to make configurations changes, and where you should make them.
    So in future, please ask questions in a forum that is specific to the product that you are using.

  • This morning I was able to access iTunes Store on my computer and iPod 5G - and now I cant access the store at all - something about my network connections - help? ive restarted rebooted

    This morning I was able to access iTunes Store on my computer and iPod 5G - and now I cant access the store at all - something about my network connections - help? ive restarted rebooted

    Thank you so much for replying. But resetting my apple I'd Password seems to have done the trick. I am able to download apps :). Got me worried I even uninstalled kaspersky 2012 :( got to reinstall back

  • I cannot open my iphone 4s after download ios 7 and backup Itunes from Iphone to my PC. i cant restart my Iphone now. please help me.

    i cannot open my iphone 4s after download ios 7 and backup Itunes from Iphone to my PC. i cant restart my Iphone now. please help me.

    Hello nguyendexter2012,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at:
    Turn your iOS device off and on (restart) and reset
    http://support.apple.com/kb/ht1430
    Best of luck,
    Mario

  • Help : i cant start  James Mail Server

    hiii everybody , it seems to me that u all had started apache james mail server ... that's very good ... god with u all ... i am trying to start james server but i always fail ...
    i run the run.bat but it always give me exception ... the same exception i posted on many forums they told me that this exception is because that there is a service that users the port 25 of the smtp ... and they were right cause i had an iis running ... so i stoped it no change ... i formated the computer and installed xp ... i run it again ... the same exception
    so ...
    please help me to start james server any solutions ... why this exception
    here is the exception
    There was an uncaught exception:
    --- Message ---
    Error building configuration from file:/D:/Recovery from c/Java Samples/JAMES MAIL SERVER/james-2.2.0/apps/james/SAR-INF/config.
    --- Stack Trace ---
    org.apache.avalon.phoenix.interfaces.DeploymentException: Error building configuration from file:/D:/Recovery from c/Java Sample
    at org.apache.avalon.phoenix.components.deployer.DefaultDeployer.getConfigurationFor(DefaultDeployer.java:499)
    at org.apache.avalon.phoenix.components.deployer.DefaultDeployer.deploy(DefaultDeployer.java:325)
    at org.apache.avalon.phoenix.components.embeddor.DefaultEmbeddor.deployFile(DefaultEmbeddor.java:498)
    at org.apache.avalon.phoenix.components.embeddor.DefaultEmbeddor.deployFile(DefaultEmbeddor.java:491)
    at org.apache.avalon.phoenix.components.embeddor.DefaultEmbeddor.deployFiles(DefaultEmbeddor.java:476)
    at org.apache.avalon.phoenix.components.embeddor.DefaultEmbeddor.deployDefaultApplications(DefaultEmbeddor.java:466)
    at org.apache.avalon.phoenix.components.embeddor.DefaultEmbeddor.execute(DefaultEmbeddor.java:224)
    at org.apache.avalon.phoenix.frontends.CLIMain.run(CLIMain.java:158)
    at org.apache.avalon.phoenix.frontends.CLIMain.execute(CLIMain.java:144)
    at org.apache.avalon.phoenix.frontends.CLIMain.main(CLIMain.java:102)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at org.apache.avalon.phoenix.launcher.Main.startup(Main.java:94)
    at org.apache.avalon.phoenix.launcher.Main.main(Main.java:46)
    Caused by: java.net.MalformedURLException: no protocol: ../conf/james-fetchmail.xml
    at java.net.URL.<init>(URL.java:537)
    at java.net.URL.<init>(URL.java:434)
    at java.net.URL.<init>(URL.java:383)
    at org.apache.xerces.impl.XMLEntityManager.startEntity(XMLEntityManager.java:796)
    at org.apache.xerces.impl.XMLEntityManager.startEntity(XMLEntityManager.java:725)
    at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanEntityReference(XMLDocumentFragmentScannerImpl.java:1073)
    at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(XMLDocumentFragmentScannerIm
    at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(XMLDocumentFragmentScannerImpl.java:333)
    at org.apache.xerces.parsers.DTDConfiguration.parse(DTDConfiguration.java:524)
    at org.apache.xerces.parsers.DTDConfiguration.parse(DTDConfiguration.java:580)
    at org.apache.xerces.parsers.XMLParser.parse(XMLParser.java:152)
    at org.apache.xerces.parsers.AbstractSAXParser.parse(AbstractSAXParser.java:1169)
    at org.apache.avalon.phoenix.tools.configuration.ConfigurationBuilder.build(ConfigurationBuilder.java:129)
    at org.apache.avalon.phoenix.tools.configuration.ConfigurationBuilder.build(ConfigurationBuilder.java:116)
    at org.apache.avalon.phoenix.tools.configuration.ConfigurationBuilder.build(ConfigurationBuilder.java:97)
    at org.apache.avalon.phoenix.components.deployer.DefaultDeployer.getConfigurationFor(DefaultDeployer.java:493)
    ... 15 more
    rethrown from
    java.net.MalformedURLException: no protocol: ../conf/james-fetchmail.xml
    at java.net.URL.<init>(URL.java:537)
    at java.net.URL.<init>(URL.java:434)
    at java.net.URL.<init>(URL.java:383)
    at org.apache.xerces.impl.XMLEntityManager.startEntity(XMLEntityManager.java:796)
    at org.apache.xerces.impl.XMLEntityManager.startEntity(XMLEntityManager.java:725)
    at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanEntityReference(XMLDocumentFragmentScannerImpl.java:1073)
    at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(XMLDocumentFragmentScannerIm
    at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(XMLDocumentFragmentScannerImpl.java:333)
    at org.apache.xerces.parsers.DTDConfiguration.parse(DTDConfiguration.java:524)
    at org.apache.xerces.parsers.DTDConfiguration.parse(DTDConfiguration.java:580)
    at org.apache.xerces.parsers.XMLParser.parse(XMLParser.java:152)
    at org.apache.xerces.parsers.AbstractSAXParser.parse(AbstractSAXParser.java:1169)
    at org.apache.avalon.phoenix.tools.configuration.ConfigurationBuilder.build(ConfigurationBuilder.java:129)
    at org.apache.avalon.phoenix.tools.configuration.ConfigurationBuilder.build(ConfigurationBuilder.java:116)
    at org.apache.avalon.phoenix.tools.configuration.ConfigurationBuilder.build(ConfigurationBuilder.java:97)
    at org.apache.avalon.phoenix.components.deployer.DefaultDeployer.getConfigurationFor(DefaultDeployer.java:493)
    at org.apache.avalon.phoenix.components.deployer.DefaultDeployer.deploy(DefaultDeployer.java:325)
    at org.apache.avalon.phoenix.components.embeddor.DefaultEmbeddor.deployFile(DefaultEmbeddor.java:498)
    at org.apache.avalon.phoenix.components.embeddor.DefaultEmbeddor.deployFile(DefaultEmbeddor.java:491)
    at org.apache.avalon.phoenix.components.embeddor.DefaultEmbeddor.deployFiles(DefaultEmbeddor.java:476)
    at org.apache.avalon.phoenix.components.embeddor.DefaultEmbeddor.deployDefaultApplications(DefaultEmbeddor.java:466)
    at org.apache.avalon.phoenix.components.embeddor.DefaultEmbeddor.execute(DefaultEmbeddor.java:224)
    at org.apache.avalon.phoenix.frontends.CLIMain.run(CLIMain.java:158)
    at org.apache.avalon.phoenix.frontends.CLIMain.execute(CLIMain.java:144)
    at org.apache.avalon.phoenix.frontends.CLIMain.main(CLIMain.java:102)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at org.apache.avalon.phoenix.launcher.Main.startup(Main.java:94)
    at org.apache.avalon.phoenix.launcher.Main.main(Main.java:46)
    The log file may contain further details of error.
    Please check the configuration files and restart Phoenix.
    If the problem persists, contact the Avalon project. See
    http://jakarta.apache.org/avalon for more information.
    Shutting down Phoenix.
    i am waiting for replies please help me ...

    Hi,
    I had the same problem.
    Simply had some spaces in my path to james.
    Moved it to another directory and it worked.
    Found this, helped me.
    http://www.mail-archive.com/[email protected]/msg02980.html
    Have fun!

  • Help on using Tomcat server

    hi there
    currently i am creating a web service running on Tomcat server. but it does not support the SOAP services. do i need a seperate package, if i need to send message using SOAP? if so, where can i get it.

    http://xml.apache.org/soap/index.html
    Jesper

Maybe you are looking for

  • Installing 8.1.6 OCI drivers with 8.1.5 RDBMS

    Hi, I developpe an application in java 1.2.2 which have to connect to an Oracle 8.1.5 Database. Or 8.1.5 OCI or thin Driver don't support java 1.2.x so I try to use 8.1.6 OCI with 8.1.5 Database as it is said in JDBC FAQ : "JDBC 8.1.6 drivers can tal

  • My E52 lost Mail For Exchange after software updat...

    After I updated my E52 software the phone seems to have lost it's mail for exchange client. Setting up webbased email accounts like hotmail is no problem (though through Nokia Messaging), but when when I try to setup my work email it just tell me tha

  • Java 3D problem ...

    I have a problem with java 3d, I would appreciate some help! I use JBuilder 2005. I run Hello3d and it runs ok. its code follows: package untitled1; * <p>Title: </p> * <p>Description: </p> * <p>Copyright: Copyright (c) 2006</p> * <p>Company: </p> * @

  • Desktop manager and windows 8

    I have attempted to get desktop manager to work with windows 8 for months.  I have ensured that I have followed various instructions including enabling .net 3.5 without success.  I install the desktop manager and my computer recognises the playbook w

  • Small problem led to big problem

    I had a few contacts that existed on my Centro which did not exist on my desktop.  So I contacted the Palm Chat Support.  The person who helped me had me perform several things which eventually led to my phone getting stuck in a loop.  Things were no