Web Server - Implementing additional features

Hello everybody..
I'm coding a simple multi-threaded Java Web Server.
I need some help in adding these implementations:
1) Collect inputs (from a feedback or contact form) and then store them in a ".txt" or another ".html" file
2) Make my Web Server communicate with other Web Servers on the Internet and having retrieved infos displayed on web page
I would be glad if anyone could help me with these 2things right now..
Thanks!
(PS: I will give points generously!)
Message was edited by:
wakish

It is foolish on your part if you are thinking that I'm expecting some codes to be thrown here..
By the nature of my my "questions" or "queries" in my 1st msg, you SHOULD know that I'm just expecting some "high-level" guidance or instructions about HOW I should proceed!
Thank you!
PS: If you don't want to help, simply turn away! Don't post irrelevant and foolish msg as the one from DrClap

Similar Messages

  • Sun Java System Web Server 7.0 available

    I am delighted to announce that Sun Java System Web Server 7.0 is now available for download, purchase, deployment, and more.
    This release builds on the highly scalable and stable heritage of Web Server. It features an entirely re-designed Administration interface designed around clusters, easy access to frequently performed tasks, simplification of frequently performed tasks., and a fully scriptable command line interface featuring functional parity with the browser-based interface.
    In addition to the administration changes this release features:
    o Full 64-bit support for Solaris SPARC and Solaris AMD64 platforms
    o Regular expression pattern matching for URL re-writing and mass hosting
    o If/Then/Else constructs within request processing
    o Advanced sed based input and output filters
    o Dynamic loading of Certificate Revocation Lists (CRLs) without requiring daemon restart
    o Elliptic Curve Cryptography (ECC)
    o Built in request mapping for protection against abnormal load patterns and Denial of Service protection
    o WebDAV ACL support
    o Out-of-box Java support for Servlets 2.4, JSP 2.0, JSF 1.1, JSTL 1.1, JWSDP 2.0 based web services
    o Java session failover and recovery within a cluster of peers
    o Integrated HTTP reverse proxy User-Agent
    o Bundled FastCGI client for use with third party scripting environments such as Perl, PHP, Ruby on Rails, etc
    o Enhancement of perfdump, stats-xml, and SNMP as well as more ability to monitor the Java container and the ACL system
    o Much more
    The software can be downloaded from:
    http://www.sun.com/download/products.xml?id=45ad781d
    The documentation is available at:
    http://docs.sun.com/app/docs/coll/1308.3

    If 7.0 was released, how come http://www.sun.com/webserver still only talks about 6.1?

  • Procedure for Certificates if implementing Terminating SSL at web server

    Hello Gurus,
    We have implemented "Terminating SSL at Web Server" and have generated Certificates for the Server which hosts OHS. My doubt is
    Do we need to generate Certificates for all the server that has EPM components or if it is correct if we generate Certificate only for OHS server.
    Also if we also want to implement SSL for Essbase and making use of Wildcard Certs, can we add the ailas name for Essbase server to the SAN and use the same wallet on the server hosting Essbase server?
    Thanks.

    I meant @Policy(uri = "policy:Wssp1.2-2007-Https.xml") Also I read this article which is talking about the policy file http://chrismuir.sys-con.com/node/1075471/mobile
    Couple of questions:
    1. As I said in my last thread, since Verisign certificate is installed in the web server, I can view the certificate details in the browser for any https requests to that server instead of just for this webservice request. How to block/filter other requests from using the certificate when involed using https?
    2. When do we need policy files?
    Edited by: user8115570 on Feb 6, 2012 2:55 PM

  • Implementing X509 installed in web server for service deployed in weblogic

    I need some advise on what I am doing is the right way of implementing one way x509 certificate.
    1.JWS file is created using wsdlc ant task and deployed in weblogic 10.3.0 with no security policy annotations.
    2.Installed Verisign certificate in Sun One Java server and enabled SSL and added some configurations to redirect webservices request to weblogic server
    3.Created client and added -Djavax.net.debug=all as VM argument and verified the Sun One Java server verisign certificate details in the logs.
    So far there is no issue but today I was reading about security policy file and I don’t know whether I am missing that in the webservice class or not. But because I can verify the certificate data from webserver I am thinking x509 certificate is installed and my webservice is using that certificate. Am I right?
    Can someone point out if I am missing something and let me know the details on the same? Thanks

    I meant @Policy(uri = "policy:Wssp1.2-2007-Https.xml") Also I read this article which is talking about the policy file http://chrismuir.sys-con.com/node/1075471/mobile
    Couple of questions:
    1. As I said in my last thread, since Verisign certificate is installed in the web server, I can view the certificate details in the browser for any https requests to that server instead of just for this webservice request. How to block/filter other requests from using the certificate when involed using https?
    2. When do we need policy files?
    Edited by: user8115570 on Feb 6, 2012 2:55 PM

  • Getting [Microsoft][ODBC SQL Server Driver] Optional feature not implemented

    I am using below mentioned code to insert values in MSAccess 2000 which having table structure as mentioned below:-
    Field Name Data Type
    TodaysDate Date/Time
    Cart ID Number
    Client Name Text
    Campaign Text
    Team & Segment Text
    Duration Number
    Tape ID Text
    Start Date Date/Time
    End Date Date/Time
    Station Text
    Code:-
    private boolean enterDataIntoMSAccessDatabaseusingPreparedStatement()
       try {
      ps = connection.prepareStatement("INSERT INTO Cart ID Details VALUES (?,?,?,?,?,?,?,?,?)");
      System.out.println("After Query");
       catch (SQLException se) {
      generateErrorMessage("Error in Prepared Statement \n " + se.getMessage() );
       return false;
       catch (Exception e)
      generateErrorMessage("Unexpected Error Occured \n " + e.getMessage());
       String todaysDate = cartIDApplicationAddCartIDDatejTextField.getText().trim();
       String cartID = cartIDApplicationAddCartIDCartIDjTextField.getText().trim();
       String clientName = cartIDApplicationAddCartIDClientNamejTextField.getText().trim();
       String campaign = cartIDApplicationAddCartIDCampaignjTextField.getText().trim();
       String teamSegment = cartIDApplicationAddCartIDTeamAndSegmentjTextField.getText().trim();
       String duration = cartIDApplicationAddCartIDDurationjTextField.getText().trim();
       String tapeID = cartIDApplicationAddCartIDTapeIDjTextField.getText().trim();
       String startDate = cartIDApplicationAddCartIDStartDatejTextField.getText().trim();
       String endDate = cartIDApplicationAddCartIDEndDatejTextField.getText().trim();
       String station = cartIDApplicationAddCartIDDELjCheckBox.getText().substring(0, 3);
      System.out.println(station);
       try {
      System.out.println("Before ps.setString()");
      SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-mm-dd", Locale.ENGLISH);
      System.out.println("Simple Date Format");
       /*ps.setString(1, todaysDate);
      ps.setString(2, cartID );
      ps.setString(3, clientName);
      ps.setString(4, teamSegment);
      ps.setString(5, duration);
      ps.setString(6, tapeID);
      ps.setString(7, startDate);
      ps.setString(8, endDate);*/
      System.out.println("1");
      ps.setDate(1, new java.sql.Date(simpleDateFormat.parse(todaysDate).getTime()));
      ps.setString(2, cartID);
      ps.setString(3, clientName);
      ps.setString(4, campaign);
      ps.setString(5, teamSegment);
      ps.setString(6, duration);
      ps.setString(7, tapeID);
      ps.setDate(8, new java.sql.Date(simpleDateFormat.parse(startDate).getTime()));
      ps.setDate(9, new java.sql.Date(simpleDateFormat.parse(endDate).getTime()));
      ps.setString(10, station);
      System.out.println("After ps.setString()");
      ps.executeUpdate();
       catch (SQLException se) {
      generateErrorMessage("Error while inserting data in database \n " + se.getMessage());
       return false;
       catch (Exception e)
      generateErrorMessage("Unexpected Error Occured \n" + e.getMessage() );
       return true;
    I got below error after implementing the above code:-
    [Microsoft][ODBC SQL Server Driver]Optional feature not implemented.
    Kindly help me for the same.

    >>  [Microsoft][ODBC SQL Server Driver]  
    I don't see anything Oracle in your question.   It looks like you're getting an error using Microsoft's SQL Server driver, did you mean to post this to a forum on  Microsoft's site perhaps?

  • Microsoft][ODBC SQL Server Driver]Optional feature not implemented

    this is my program code for java jdbc:odbc SQL connectivity
    but iam getting the error as
    *java.sql.SQLException: [Microsoft][ODBC SQL Server Driver]Optional feature not implemented*
    package desktopapplication2;
    import java.sql.*;
    * @author Bharat Raj Verma
    public class db {
        void get(String gr,String fn,String ln,String job ,Integer rate,Integer ot,String att,long amt,String cmt)
          try
             Connection con=null,con1=null;
            Statement stmt2;
            String query = "Update dbo.attend SET Gr = ? , fn = ? ,ln = ?, job = ? , rate = ? , ot = ? , att = ? ,amt = ? , comment = ?";
           // String query1 = "Select accnum rom dbo.newacc where accnum= ?";
            String url = "jdbc:odbc:bharat";
          Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
            con = DriverManager.getConnection(url,"","");
            con1 = DriverManager.getConnection(url,"","");
            System.out.println("connection Established");
            stmt2 = con.createStatement();
            Statement stmt = con1.createStatement();
            ResultSet rs;
            rs=stmt.executeQuery("select * from dbo.attend");
            while(rs.next())
                String cmp1= rs.getString("gr");
                if(cmp1.equalsIgnoreCase(gr))
                        PreparedStatement ps1 = con.prepareStatement(query);
                        System.out.println("Insisde RS");
                        ps1.setString(1,gr);
                        ps1.setString(2,fn);
                        ps1.setString(3,ln);
                        ps1.setString(4,job);
                        ps1.setInt(5,rate);
                        ps1.setInt(6,ot);
                        ps1.setString(7,att);
                        ps1.setLong(8,amt);
                        ps1.setString(9,cmt);
                        System.out.println("SSS");
                      //  ps1.setString(1,gr);
                        ps1.executeUpdate();
                       System.out.println("Success");
          catch(Exception e1)
              System.err.println(e1);
    }This is the SQL table in which iam trying to insert the value
    SET ANSI_PADDING OFF
    create table attend
    Gr VARCHAR(20) primary key,
    fn VARCHAR (25),
    ln VARCHAR(25),
    job VARCHAR(25),
    rate integer,
    ot integer,
    att varchar(10),
    amt varchar (10),
    comment varchar(70)
    )the complete output is
    init:
    deps-jar:
    Compiling 1 source file to C:\Documents and Settings\Bharat Raj Verma\My Documents\NetBeansProjects\DesktopApplication2\build\classes
    compile:
    run:
    connection Established
    Insisde RS
    java.sql.SQLException: [Microsoft][ODBC SQL Server Driver]Optional feature not implemented
    BUILD SUCCESSFUL (total time: 29 seconds)
    here is the stack trace
    java.sql.SQLException: [Microsoft][ODBC SQL Server Driver]Optional feature not implemented
    at sun.jdbc.odbc.JdbcOdbc.createSQLException(JdbcOdbc.java:6958)
    at sun.jdbc.odbc.JdbcOdbc.standardError(JdbcOdbc.java:7115)
    at sun.jdbc.odbc.JdbcOdbc.SQLBindInParameterBigint(JdbcOdbc.java:1225)
    at sun.jdbc.odbc.JdbcOdbcPreparedStatement.setLong(JdbcOdbcPreparedStatement.java:592)
    at desktopapplication2.db.get(db.java:47)
    at desktopapplication2.DesktopApplication2View.jButton1ActionPerformed(DesktopApplication2View.java:394)
    at desktopapplication2.DesktopApplication2View.access$800(DesktopApplication2View.java:22)
    at desktopapplication2.DesktopApplication2View$4.actionPerformed(DesktopApplication2View.java:183)
    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1849)
    at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2169)
    at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
    at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
    at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)
    at java.awt.Component.processMouseEvent(Component.java:5517)
    at javax.swing.JComponent.processMouseEvent(JComponent.java:3135)
    at java.awt.Component.processEvent(Component.java:5282)
    at java.awt.Container.processEvent(Container.java:1966)
    at java.awt.Component.dispatchEventImpl(Component.java:3984)
    at java.awt.Container.dispatchEventImpl(Container.java:2024)
    at java.awt.Component.dispatchEvent(Component.java:3819)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4212)
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3892)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3822)
    at java.awt.Container.dispatchEventImpl(Container.java:2010)
    at java.awt.Window.dispatchEventImpl(Window.java:1791)
    at java.awt.Component.dispatchEvent(Component.java:3819)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    Plz can anyone help ???

    and what was the solution?
    thanks in advance
    brindy

  • [ODBC SQL Server Driver]Optional feature not implemented

    Hi,
    Has anyone faced such error @ analysis,
    Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 43113] Message returned from OBIS. [nQSError: 43119] Query Failed: [nQSError: 16001] ODBC error state: S1C00 code: 0 message: [Microsoft][ODBC SQL Server Driver]Optional feature not implemented. [nQSError: 16012] ODBC error occurred while binding the parameters of a SQL statement. (HY000)
    we are having some issue on DBfeature check box issue.
    Thanks
    Deva

    Hi,
    Yes. after that only i am getting error. if i enabled Query DBMS then report is working with out error (we don't want to use query dbms option that's i just query dbms off option by Reset to default) then its thoewing error.
    Thanks
    Deva

  • Adobe RH Server 6 = "Adobe RH6 + Additional features"

    Greetings to all :-)
    Right now, I'm working on the trial version of RH2002. My
    company and ofcourse all our members are new to RH. My PM was
    impressed on the help file which i developed using this trial
    version. At last, he decided to purchase the latest version of RH
    and he gave me a list and asked which one to purchase. Here is the
    list:
    No Item Rate
    1 RoboHelp Office 6 WIN (1 lic) Rs 55,400.00
    2 RoboHelp Office 6 Win (2 - 14 lics) Rs 53,600.00
    3 RoboHelp Office 6 WIN (15+ lics) Rs 52,500.00
    4 RoboHelp Server 6 WIN (1 - 7 lics) Rs 108,000.00
    5 RoboHelp Server 6 WIN (8+ lics) Rs 105,000.00
    I browsed the adobe site to know the latest version. I came
    to an understanding that "Adobe RH Server 6" has got more
    additional features that "Adobe RH6" and cooly said to him, that
    we'll go in for "Adobe RH server 6" (5th item specified in the
    list) I've also worked on the trial version of "Adobe RH6" but i've
    not even tried "Adboe RH Server 6" thinking that some additional
    features specified in the adobe site would be available in this.
    Lateron, i entered into the forum, to see if there were any
    topics discussed regarding this...ofcourse there were many...really
    i was much more afraid on seeing those relevant topics and kindly
    excuse me as i need some more clarity....Are these two separate
    products???. To go in for "Adobe RH server 6", should we purchase
    "Adobe RH6" also. I thought, if we purchase "Adobe RH Server 6", we
    will have get the same "Adobe RH6 software (Help authoring tool)"
    with some additional features". Pls give me your valuable inputs on
    this as this is killing me because i've already informed my PM
    without understanding the products in detail.
    Should I ask for "Adobe RH Server6" or "both 'Adobe RH
    Server6' and Adobe RH6'"
    Thanks a lot in advance!!

    Hi, Launcher1
    I certainly don't want to discourage you from looking at
    RoboHelp Server 6. At the same time I want to help you understand
    the differences.
    Your two main needs apparently are: to link and search among
    multiple merged projects. You can do that NOW with "plain" WebHelp
    (or FlashHelp) without RoboHelp Server!
    So, what would you get extra with RH Server 6 and what
    exactly are the Pro advantages? For that, you might want to take a
    look at my article on the Adobe Developer Network which covers
    Adobe RoboHelp Server 6.
    http://www.adobe.com/devnet/robohelp/articles/rhserver_06.html
    So, basically, the "Pro" version provided by RH Server 6
    gives you Feedback Reports on what your users are looking for and
    the ability to search the text of MS Word, Excel, Powerpoint and
    Adobe Acrobat PDF files which you cannot do with the "plain"
    RoboHelp 6. These are tremendous advantages and many companies find
    this worth the extra money. Remember, you don't have to buy RH
    Server for each author, only one copy for the server. The authors
    get RH 6.
    As for "porting" RH 6 to RH Server 6, that's simple. You
    really don't need to port them at all! You simply take the exact
    same project from the RH 6 authoring tool and publish it to the RH
    Server 6. So, it's not so much the tool you use to develop the
    project (it's the same in all cases). Rather, it is the destination
    of where you publish the project that makes the difference.
    Hope this helps. If it doesn't, ask some more!
    Thanx,
    john

  • Can data be passed to an external web server using the "in-course web browsing" feature in ver. 7?

    Can data be passed to an external web server using the "in-course web browsing" feature in ver. 7? I would like to display a simple web page, and I would like to pass to that web page the answers to all the quiz questions, quiz score, etc. In other words, instead of passing quiz results to a SCORM-compliant LMS like Moodle, I'd like to pass that data to a Drupal Webform using a URL like:
    https://www.example.com/my-drupal-webform?param1=value1&param2=value2...&paramn=valuen
    Is this possible?
    Thanks,
    John

    You have to make sure every step in MOS Document ID 726414.1 that is applicable to your E-Business Suite 12.1.x release is performed. Enabling ASADMIN is just one of the steps. In spite of following all the steps in this Document you continue to get the error when clicking "Generate WSDL", please log a Service Request with Oracle Support.I will check all steps again. Maybe I missed one... Thanks!

  • SSL implementation on iplanet web server 6.0

    Hi,
    we've successfully implemented verisign SSL certificate on iplanet web server 6.0 and we have configured the a parent directory to non-ssl class and the a sub directory to the ssl-class. when we tried to run a JSP page, we are getting an error that the page is not found.
    if both are configured for the same directory (ie.. the parent directory then its working fine)....
    can anybody tell me what went wrong with the implementation...
    thanks in advance,
    regards
    Ramachandran

    How did you configure one directory use ssl and another director not? Are you using only one listener?
    I would like to configure my iws to work like this:
    a directory like server/app uses ssl3
    another directory like server/appler uses ssl3 without client authentication. Important: I�m not able to create another listener. I must use listerners already created.

  • Can we implement Blogs feature in Web Page Composer

    Hi Experts,
    We are newly implementing Web Page Composer.
    any body could you please let me know the what exactly web page composer do and its key capabiliites.
    Is it possible to implement Blogs feature in Web Page Compoers
    If yes please let me know how
    if no please let me know how to over come this.
    Thanks
    Mukesh

    hi buddy
    take a look at this link
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/90347add-ad06-2a10-81a0-e613acff5236
    and also browse through the home page for wpc
    https://www.sdn.sap.com/irj/sdn/nw-cm?rid=/webcontent/uuid/40321b10-8c42-2a10-3b89-9f67c9ff6065
    http://help.sap.com/saphelp_nw70/helpdata/EN/46/8401ab8f0c6cd2e10000000a1553f6/frameset.htm
    thanks,
    GLM

  • Issue with Feature Deployment when DB and Web Server are on different machine

    Hi,
    We are trying to deploy our Custom Processes as site feature.
    In Visual studio it shows Deployment Succeeded but feature is not available in Site features.
    when we checked “Central Administration -> Manage Farm Solution” it shows below error.
    Web Server : The solution was successfully deployed.
    DB Server IP : Elements of type 'Receivers' are not supported at the 'Farm' scope. This feature could not be installed.
    DB Server IP : Elements of type 'Receivers' are not supported at the 'Farm' scope. This feature could not be installed.
    We are able to ping DB server from Web Server .
    Also , we are able to add custom fields and lookup manually in web Server and those are getting reflected in DB .
    Thanks,
    Abhijit

    Hello,
    I would probably post this in the SharePoint forum as deploying features is a SharePoint process and not Project / Project Server (even if the feature is related to Project Server).
    Paul
    Paul Mather | Twitter |
    http://pwmather.wordpress.com | CPS |
    MVP | Downloads

  • Is the Apache web server feature limited without OS X Server edition?

    I couldn't really find a post that answers my question so here it is...
    I want to use the built-in Apache web server (a.k.a "Web Sharing") in OSX 10.4, I was just wondering if I am limited on the amount of simultaneous connections/requests? I know only a limited amount (like 5) can connect to my system over a network, unless I install Mac OSX Server. Is the Apache Server stuck under these same restrictions? I'd rather run it from my Mac than have to make a separate linux box for the site (and I don't want to have to fork out $1,000 for OSX Server, lol). I am running Mac OS 10.4.9. If someone could tell me if they know anything regarding this, I'd appreciate it. Thank you

    There are differences between the Apache installation in Mac OS X client and Mac OS X Server, but if you're likely to encounter them you should be running Server anyway.
    Most of the changes relate to additional apache modules that are installed (which you could add to client if you're up to it) and performance tuning.
    The latter is likely to be something you can tweak to cover your needs.
    Apache will spawn a new process for each active connection, with an upper limit set to prevent it running away. The limit is higher in Mac OS X Server, but you can increase the default in Mac OS X client to better suit your needs.
    Edit the file /etc/httpd/httpd.conf and look for the line:
    <pre class=command>MaxClients 50</pre>
    (note, your number may be different). You can change the number to any reasonable figure - but don't set it much higher than you actually expect to need.

  • Mobile Web Server "take a picture" feature

    Hi to all!
    I installed this application:
    http://mymobilesite.net/
    and I think it's great!
    Only a question: does the "take a picture" feature work? When I try to take a picture from my phone (a Nokia N82) remotely, it always says: Unable to take a picture at the moment!
    Message Edited by mr_wolf on 08-Mar-2009 11:20 AM
    I'm Winston Wolf, I solve problems

    Hello.
    Thank you for your help.
    I checked and now the only drive that has "/Data/Web server" is E: (so no other drive has it).
    After I uninstalled the previous Web Server, I checked and the folder was not present, so now it should be "fresh".
    When I turn on the web server, I can access it from the web, but I don't get any of the screens seen at http://mymobilesite.net/screenshots/
    Unfortunately right now if I try to turn on the web server I get "connection timed out", so I cannot post any screenshot of how it looks like for me.
    But I'm pretty sure some config file is screwed up. Can you please send me a copy of your "/Data/Web server" please?
    Kiitos,
    alfonso

  • Partial SSL implementation for iplanet web server

    Hi,
    I would like to make a web server SSL enabled partially.
    Say something like this
    https://mysite:8080/htmlfiles/log.html
    Only the above url should be SSL protected.
    Other urls like http://mysite:8080/entryservlet shouldnt be SSL enabled
    Thanks in advance
    Regards
    Thameem

    iWS4.x:
    Create two instances - one on Port 80 and runs without SSL, and one on Port 443 that uses SSL. Configure your docs roots such that htmlfiles/log.html is not part of the doc-root for the insecure instance.
    iWS/S1WS6.x:
    Create a single instance with two listen sockets and two virtual servers. Otherwise the same as above.

Maybe you are looking for

  • Production Variances of semifinished goods in COPA

    Hi, We are using Costing based COPA, which is updated at the time of billing. The production variances are posted to COPA when the settlement of the production orders are done. The production variances if brought within the purview of COPA report (ba

  • Updating no longer possible

    For some reason itunes will no longer update. I click on the update itunes button and nothing happens. I'm stuck at 10.2.1. I'm afraid to uninstall and then reinstall in case there is a system problem I am not aware of, in which case I will not have

  • Backing up iPad sticking

    I've just plugged my iPad into my Mac and as usual I get the Backing up [user's] iPad... message, but the progress bar just sticks. barely 2% along. Any ideas?

  • Appletviewer: Yes - Browser: No

    Please help, I'm just starting out with Java but can't even manage to say "Hello World". Which reminds me, manners! Hello World (not quite as impressive as I hoped for but it will do for now), From the appletviewer, it works fine but when I use the s

  • Getting 'unidentified error occured' while database connecting on local computer

    I have downloaded CS5 Dreamweaver trial version on my c omputer, with windows 7. I have also downloaded easy php as php-mysql-apache server on the same computer. While creating a databse connection, I get following message 'Undefined error ocurred'.