Command Prompt / Console

Hi, I am building a personalised java development environment and have come unstuck.
I wish to create a JPanel that behaves very much like a console window allowing execution of commands (taken from a JTextField) and displaying standard output and standard error.
my console almost outputs the standard output and standard error, although it sometimes truncates the first character and replaces it with a line feed (sometimes...??). my main problem is that i cant figure out how to execute a command on System eg "echo hello" so that my console behaves properly and returns the standard output.
below is the code for my JPanel, an important section to view would be the ActionListener attached to my JTextField.
thanks for reading this far :)
import java.awt.*;
import java.awt.event.*;
import java.io.*;
import javax.swing.*;
import javax.swing.event.*;
import javax.swing.text.*;
public class ConsoleOutput extends JPanel
     final Color TEXTBG= new Color(0, 0, 100);
     final Color TEXTFG= new Color(200, 200, 200);
     PipedInputStream piOut;
     PipedInputStream piErr;
     PipedOutputStream poOut;
     PipedOutputStream poErr;
     JTextArea textArea = new JTextArea();
     JTextField inputField = new JTextField();
     Font outputFont = new Font("Monospace", Font.PLAIN, 10);
     Font inputFont = new Font("Monospace", Font.BOLD, 12);
     public ConsoleOutput() throws IOException
          this.setPreferredSize(new Dimension(450,700));
          this.setBackground(Xjde.BGCOLOR);
          // Set up text area
          textArea.setBorder(BorderFactory.createEmptyBorder());
          textArea.setEditable(false);
          textArea.setPreferredSize(new Dimension(450,650));
          textArea.setBackground(TEXTBG);
          textArea.setForeground(TEXTFG);
          textArea.setFont(outputFont);
          // Set up input field
          inputField.setBorder(BorderFactory.createEmptyBorder());
          inputField.setPreferredSize(new Dimension(450,30));
          inputField.setBackground(TEXTBG);
          inputField.setForeground(TEXTFG);
          inputField.setFont(inputFont);
          inputField.addActionListener(new ActionListener()
               public void actionPerformed(ActionEvent evt)
                    textArea.append(inputField.getText() + "\n");
                    try
                         Process p = Runtime.getRuntime().exec(inputField.getText());
                    catch(IOException e) { System.out.println(e); }
                    inputField.setText("");
          // Set up System.out
          piOut = new PipedInputStream();
          poOut = new PipedOutputStream(piOut);
          System.setOut(new PrintStream(poOut, true));
          // Set up System.err
          piErr = new PipedInputStream();
          poErr = new PipedOutputStream(piErr);
          System.setErr(new PrintStream(poErr, true));
          // Create reader threads
          new ReaderThread(piOut).start();
          new ReaderThread(piErr).start();
          this.add(textArea);
          this.add(inputField);
          textArea.append("Welcome to Xjde v1.0 Java Development Environment\nEdd Burgess 2007\n");
          textArea.append("\n" + System.getProperty("user.dir") + ">");
          textArea.setCaretPosition(textArea.getDocument().getLength());
     class ReaderThread extends Thread
          PipedInputStream pi;
          ReaderThread(PipedInputStream pi)
               this.pi = pi;
               this.setDaemon(true);
          public void run()
               final byte[] buf = new byte[1024];
               try
                    while (true)
                         final int len = pi.read(buf);
                         if (len == -1)
                              break;
                         SwingUtilities.invokeLater(new Runnable()
                              public void run()
                                   textArea.append(new String(buf, 0, len));
                                   textArea.setCaretPosition(textArea.getDocument().getLength());
                                   // Keep the text area down to a certain character size
                                   //int idealSize = 1000;
                                   //int maxExcess = 500;
                                   //int excess = textArea.getDocument().getLength() - idealSize;
                                   //if (excess >= maxExcess)
                                   //     textArea.replaceRange("", 0, excess);
               catch (IOException e)
          public void newLine()
               textArea.append("\n" + System.getProperty("user.dir") + ">");
               textArea.setCaretPosition(textArea.getDocument().getLength());
}

web definition of 'come unstuck' :
come unstuck (British & Australian)
if a person or something they are trying to achieve comes unstuck, they have problems which cause them to fail. Athletes who don't prepare properly for the humid conditions will certainly come unstuck. The negotiations came unstuck over disagreements about the wording.

Similar Messages

  • Can i login to essbase console by using command prompt

    Hi All,
    Is thr any possiblity to login in to essbase console by using command prompt
    normally we login to console and will give credentails and login as same way can we do from command prompt??
    Thanks in advance
    Regards,
    SM

    Hello ,
    You can check the login through the Essbase command utility.
    go to command prompt . type - essmsh
    then you will be able to see MaxL prompt
    enter the command login username password;
    you can use this utility to load data , import export running calc etc...
    Thanks,
    KKT

  • Having trouble finding command prompt on AIX machine

    I've successfully set up the server stats monitor to collect stats from iostat, vmstat etc. on a solaris box, but I'm having trouble getting the same information from an AIX machine using ssh.
    -- I'm able to plink and login successfully to the aix machine
    -- I've added the rsa2 key fingerprint to the registry of the windows machine where eload is installed.
    Here's the top of the error message:
    "Monitor configuration failure alert: monitor id=<ip address>:ds_ConsoleEngine_<ip address>_null_4.16 alert=<ip address>:ds_ConsoleEngine_<ip address>_null_4.16
    (message id=console.configFailureAlert): Error returning value: host key fingerprint is....
    <snip>
    When I scan the rest of the error message, I can see that I was successfully logged in. I have a feeling that the command prompt wasn't found.
    Any suggestions?
    thanks.

    Some additional info...
    If I open a windows command prompt and use plink to login to the servers, this is what I get on solaris:
    C:\Empirix\e-LoadDataCollector\bin>plink -ssh userid@solarismachine
    returns a command prompt that looks like:
    &#8592;]0;userid@solarismachine:~&#8592;[m&#8592;[m&#8592;[m&#8592;[Uuserid@solarismachine:~#> &#8592;[K
    The AIX box returns the following as the command prompt:
    &#8592;]0;userid@aixmachine:~&#8592;[m&#8592;(B&#8592;[m&#8592;[m          &#8592;[Uuserid@aixmachine:~#> &#8592;[K
    I specified ~#> as the command prompt in eLoad.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Pass the text file name to the command prompt using servlet

    hi to all,
    I have a HTML page that takes the user inputs. Once the user clicks on the submit button on the HTML page, these values will be capture by a servlet and then store into a text file. A new text file is generated each time the user clicks on the submit button.
    Now, i need to call a command prompt window and then pass the text file name to another program for execution. Any idea how i can pass the text file name to the command prompt???
    Thanx a lot....
    kinki

    hi, thanx 4 ur reply.
    But i not onli want to display the file name on the Tomcat command prompt. I must also able to call up a program to execute the command. If i used System.out.println(); it onli display the value on the console windows. But not executing it... anyway where i can do it???.
    thanx...
    Kinki

  • How do i get a output in CSV of a SQL query executed via SQL Command prompt

    Hi All,
    I have a question with reference to SQL command prompt. I have a sql query which runs properly and gives proper execution in SQL Management console in GUI.
    This report is used to pull the free disk space report of our servers
    As i want to schedule it as a report so i want to script it to run via SQL command prompt. I made the script and it works fine if i enter it in SQL command prompt. When i try to extract the output to a CSV File it fails. Below is the details of the command
    i am using to query to pull the data. Can anyone help me in getting the output of this query in SQL command prompt.
    sqlcmd -W -s , -S Servers FQDN
    use operationsmanager
    Go
    Query:"select Path, InstanceName, SampleValue 
    from PerformanceDataAllView pdv with (NOLOCK)
    inner join PerformanceCounterView pcv on pdv.performancesourceinternalid = pcv.performancesourceinternalid
    inner join BaseManagedEntity bme on pcv.ManagedEntityId = bme.BaseManagedEntityId
    where SampleValue < '20' and CounterName='% Free Space' and TimeSampled > '2014-08-06 11:00:00.00'
    order by countername, timesampled" -s "," -o "C:\DataSqlCmd.csv"
    Go
    When i enter the command without the quotes when the query is starting and ending and also without the output command (-s "," -o "C:\DataSqlCmd.csv") it is working and shows the output in the command prompt. Below is the screen shot for
    your reference.
    Due to security reasons i have to erase the server names:
    But when i add the line to extract the output ( -s "," -o "C:\DataSqlCmd.csv") It gives me this error:
    The exact command would be:
    sqlcmd -W -s , -S CINMLVSCOM01.e2klab.ge.com
    use operationsmanager
    Go
    "select Path, InstanceName, SampleValue 
    from PerformanceDataAllView pdv with (NOLOCK)
    inner join PerformanceCounterView pcv on pdv.performancesourceinternalid = pcv.performancesourceinternalid
    inner join BaseManagedEntity bme on pcv.ManagedEntityId = bme.BaseManagedEntityId
    where SampleValue < '20' and CounterName='% Free Space' and TimeSampled > '2014-08-06 11:00:00.00'
    order by countername, timesampled" -s "," -o "C:\DataSqlCmd.csv" -h-1
    Go
    saying the syntax is not correct or some thing as per the below screenshot.
    Can any one please help. Below is just the query whi i use to get the output in SQL management studio.
    Can any one make a command for the below quer so i can directly execute and test for getting the output.
    select Path, InstanceName, SampleValue 
    from PerformanceDataAllView pdv with (NOLOCK)
    inner join PerformanceCounterView pcv on pdv.performancesourceinternalid = pcv.performancesourceinternalid
    inner join BaseManagedEntity bme on pcv.ManagedEntityId = bme.BaseManagedEntityId
    where SampleValue < '20' and CounterName='% Free Space' and TimeSampled > '2014-08-06 11:00:00.00'
    order by countername, timesampled
    Gautam.75801

    Can you try the below query?
    select Path, InstanceName, SampleValue
    from PerformanceDataAllView pdv with (NOLOCK)
    inner join PerformanceCounterView pcv on pdv.performancesourceinternalid = pcv.performancesourceinternalid
    inner join BaseManagedEntity bme on pcv.ManagedEntityId = bme.BaseManagedEntityId
    where SampleValue < 20 and CounterName like '% Free Space' and TimeSampled > '2014-08-06 11:00:00.00'
    order by countername, timesampled
    -- replace the below query part in the below SQLCMD C:\>SQLCMD -S SERVERNAME -E -d operationsmanager -Q "select * from sys.databases ds with (nolock) where name='master'" -s "," -o "F:\PowerSQL\MyData.csv" -h -1
    SQLCMD -S SERVERNAME -E -d OperationsManager -Q "select Path, InstanceName, SampleValue
    from PerformanceDataAllView pdv with (NOLOCK)
    inner join PerformanceCounterView pcv on pdv.performancesourceinternalid = pcv.performancesourceinternalid
    inner join BaseManagedEntity bme on pcv.ManagedEntityId = bme.BaseManagedEntityId
    where SampleValue < '20' and CounterName='% Free Space' and TimeSampled > '2014-08-06 11:00:00.00'
    order by countername, timesampled" -s "," -o "c:\MyData.csv" -h -1
    Refer for the other ways 
    http://dba.stackexchange.com/questions/23566/writing-select-result-to-a-csv-file
    --Prashanth

  • Displaying login sessions on workstations using Command Prompt

    Hi there,
    Anyone know of a command similar to wmic.exe /node:IP-or-HostName ComputerSystem Get UserName in a Command Prompt which displays remote login sessions on a workstation rather than the console login sessions that use local accounts set up
    on workstations.
    Thanks,
    RocknRollTim
    P.S. I was redirected by a couple of forum users off the Microsoft Community Forum.

    Hi Ben Lavender,
    Thank you for responding to my forum thread again and thank you for making the correction on the WMIC command, I tried both sets of commands for WMIC and found that the WMIC command in your previous post was invalid whereas the one you posted last was correct
    and was showing results, however there a few questions I would like to ask with regards to the WMIC command you posted last. How far back does the command go? When there are no dates and times next to account entries, does this mean that users have never logged
    on to that machine or does this mean that the remote system has never retained this information in it's registry? I remember doing an error check on the machine I tested this command on as it was having performance problems and was developing a bad sector
    on the disk at the time, would this cause the information not to display as expected? Also I configure out the date and time entry for each account entry but what does the information after the decimal point mean? Does it represent milliseconds for the time
    element? Lastly I tried running the psloggedon app from the psloggedon suite on my Windows 7 x64 machine and now when I come to run it, it appears for a split second and then disappears, the same also happens for all the other apps from the psloggedon suite
    after agreeing to license agreement for each app. I decided to do some research to confirm what are the system requirements to run the apps from this suite and the website says that it's only compatible with systems that have Windows XP and higher and/or Windows
    Server 2003 and higher which I thought should have worked, I then decided to run the apps as Run As Administrator and they did the same thing as before, I also changed the compatibility settings of each app to run as Windows XP Service Pack 3 but again they
    all did the same thing as before, does this mean that the suite of apps aren't compatible with 64-bit systems and only work with 32-bit systems?
    Your help would be much appreciated.
    Kind regards,
    RocknRollTim       

  • Launching Index Tuning Wizard from command prompt

    I have been playing with index tuning wizard and I could not figure how to launch it from command line (Manual says it can be launched via management console or oracle expert).
    DB2 and SQL Server provide executables which can be launched from command line. For example, below command evaluates given workload on target database and recommends something if necessary.
    Command> itw -d <targetDB> -w <workloadFile> -o <indexRecommendations>
    Is it possible to launch Oracle Index Tuning Wizard from command prompt in a similar way?
    -fa

    "TNS No Listener" => Start the listener
    To be connected as SYSDBA you dont need a password if your are logged in the DBA group, you just have to :
    PROD_:id
    uid=102(oracle) gid=103(oinstall)
    PROD_:sqlplus "/ as sysdba"
    SQL*Plus: Release 8.1.7.0.0 - Production on Wed Jul 23 11:46:50 2003
    (c) Copyright 2000 Oracle Corporation. All rights reserved.
    Connected to:
    Oracle8i Enterprise Edition Release 8.1.7.4.0 - Production
    With the Partitioning option
    JServer Release 8.1.7.4.0 - Production
    SQL> show user
    USER is "SYS"
    SQL>
    Fred

  • Calling command prompt from inside a servelt?

    Hello all, I have an issue with calling the command prompt cmd.exe from inside a servlet to perform a .rtf to .pdf conversion for me. I believe the problem might be more Windows permissions oriented but I will see what you think? (I am at a loss on this one) I am using the standard call of -
    Process proc = Runtime.getRuntime().exec("cmd.exe /c C:\\BatchPDF.exe "+rtfFile.getAbsolutePath()+" "+pdfFile.getAbsolutePath());
    - Just calling a .rtf file and converting it to .pdf no biggie. But! oh there is always a but!
    If I start tomcat locally using the startup.bat in the tomcat /bin dir, I have no problems with my servlet launching cmd.exe and converting the files.
    However,
    If I start tomcat as a system service from the services control pannel, My servlet just hangs and will not launch cmd.exe? Tomcat is set to start as the servers Admin account when started as a service, should this not let it open the command prompt? Also, cmd.exe has full permissions to everyone! Is it possible that it might be a Catalina Policey that is preventing this? Again, I am lost and hope someone might have had this problem and fixed it before!
    Thank You in Advance,
    Lance

    It might be because of when starting as a service it
    has no "console" (just a guess). But anyway, you don't
    need the "cmd.exe /c" part - just run the .exe(meaning, the *PDF.exe)                                                                                                                                                                                                                                                                                                                                                                                   

  • Pressing ENTER in Command Prompt to solve hanging

    Hi,
    Does anyone know why sometimes Java hangs, unless you press ENTER in the
    Command Prompt for Windows 2K? After pressing ENTER it continues execution.
    It happens with WebLogic sometimes too. It will not print anything on the
    console until I press ENTER.
    I'm sure lots of Java developers have experienced this weird problem.
    Thanks,
    Duke
    [email protected]

    That is what we call a "feature" of an enterprise-class OS ;-)
    Peace,
    Cameron Purdy
    Tangosol Inc.
    Tangosol Coherence: Clustered Coherent Cache for J2EE
    Information at http://www.tangosol.com/
    "Chad McDaniel" <[email protected]> wrote in message
    news:[email protected]..
    On windows machines be very careful to turn off the "mark" option in
    the shell preferences. It can halt the server.
    Daniel Hoppe <[email protected]> writes:
    Hi,
    because you marked something in the command prompt. Marking stops
    execution. Enter means 'copy' and continues execution...
    Daniel
    -----Original Message-----
    From: Duke Nguyen [mailto:[email protected]]
    Posted At: Thursday, December 13, 2001 3:16 AM
    Posted To: ejb
    Conversation: pressing ENTER in Command Prompt to solve hanging
    Subject: pressing ENTER in Command Prompt to solve hanging
    Hi,
    Does anyone know why sometimes Java hangs, unless you press
    ENTER in the
    Command Prompt for Windows 2K? After pressing ENTER it
    continues execution.
    It happens with WebLogic sometimes too. It will not print
    anything on the
    console until I press ENTER.
    I'm sure lots of Java developers have experienced this weird problem.
    Thanks,
    Duke
    [email protected]

  • Exporting Business Rules from command prompt

    Hi,
    I'm wondering if there is any way to export Business Rules to XML automatically through command prompt (instead of manually doing it through EAS Console).
    Thanks,
    Ryan

    The documentation is availabe at - http://www.oracle.com/technetwork/middleware/performance-management/documentation/index.html
    Go to Foundation Services > Lifecycle Management Guide > "Using Lifecycle Management Utility"
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Running multiple commands in command prompt

    Hi
    I am having the following scenario
    open command prompt
    open xilinx command prompt
    switch to xmd console
    run a set of commands
    print the final output to screen
    I am having the following doubts
    Can system exec.vi take multiple commands as standard input?
    If yes what is the delimiter?
    If no what other options I have to achieve my goal
    Thanks

    Why not write a batch file and start that with System Exec?
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • Exchange Powershell issue while loading the snapin on command prompt, in Exchange server 2010.

    Hi,
    When we launch the Exchange powershell via command prompt..  with below command:
    PowerShell.exe -PSConsoleFile "D:\Program Files\Microsoft\Exchange Server\V14\Bin\ExShell.psc1"
    it throws the following error:-
    Following errors occured when loading the console
    D:\Program Files\Microsoft\Exchange Server\V14\Bin\ExShell.psc1:
    can not load windows powershell snap-in microsoft.exchange.management.powershell.e2010 because of the following error:
    no snap-ins have been registered for windows powershell version 2
         We are using Exchange server 2010 SP3 rollup 5 and EXCHANGE Server 2010 SP01.We see the issue on both the servers
       Can you please provide the steps to reslove the issue.
    Thanks & Regards,
    Sanjeev Gupta

    I have got the resolution of the problem. In my environment, the Powershell.exe which was being launched from command prompt, was 32 bit exe, while it was needed 64 bit exe.
    It was occuring because in system path there was 32 bit powershell.exe was present. So, after replacing the exe with 64 bit exe, the problem was solved.
    Thanks for the help provided above..
    Regards,
    Sanjeev

  • Darwin/BSD Command Prompt after Logging into OSX 10.2.4

    I just installed OSX 10.2.4 and after I log in, it sends me to a black command prompt which says the following:
    Darwin/BSD (Macintosh.local.) (console)
    Login:
    I tried using the login and password I use at the OSX login screen, but it doesnt work.
    Any Ideas?

    jtmhsk:
    If you do a search on Darwin, you will find that ther are many questions and three or four basic solutions offered, not all of which work in every case.
    In your case, since you have a new installation, I suggest that make sure you have a good backup, then reformat, zero all data, re-install the OS, and restore your data.
    To reformat, zero and re-install:
    Boot from the install CD holding down the "C" key.
    Select language
    Go to the Installer menu and launch Disk Utility.
    Select your HDD (manufacturer ID) in left side bar.
    Select Partition tab in main panel. (You are about to create a single partition volume.)
    Select 1 partion in pulldown menu above Volume diagram.
    Type in name in Name field (usually Macintosh HD)
    Select Volume Format as Mac OS Extended (Journaled)
    Click Partition button at bottom of panel.
    Select Erase tab
    Select the Macintosh volume under Manufacturer ID.
    Select on Security Options button.
    Select Zero all data.
    (This process will map out bad blocks on your HDD. However, it could take several hours. If you want a quicker method, don't go to Security Options and just click the Erase button.)
    Quit Disk Utility.
    Open installer and begin installation process.
    Choose to Customize and deselect Foreign Language Translations and Additional Printer drivers.
    Check box to install X11.
    Proceed with installation.
    After installation computer will restart for setup.
    After setup, reboot computer.
    Go to Applications > Utilities > Disk Utility.
    Select your HDD (manufacturer ID) in left side bar.
    Select First Aid in main panel.
    Click Repair Disk Permissions.
    Connect to Internet.
    Go to Apple Menu > Software Update.
    Install all updates.
    Computer will restart after updates.
    Go to Applications > Utilities > Disk Utility.
    Select your HDD (manufacturer ID) in left side bar.
    Select First Aid in main panel.
    Click Repair Disk Permissions.
    Please do not hesitate to post back should you have further questions or comments.
    Good luck.
    cornelius

  • Need Command Prompt, system reboots at startup

    Laptop will not boot to XP pro windows.  loops at reboot.    I do not have CD's for the system.  I used another XP service pack 2 install CD but when accessing the repair console the install CD cannot find any hard drives.   I used the Recovery console for the thinkpad and ran  all diagnostic tests and everything past.   I cannot find where I can access a command prompt so I can run the CHKDSK on the system to repair the corrupted boot file.  I sooner not use the restore the system until I see if the chkdsk works since the system has service pack 3 and other updates which are not restored and this may not fix the boot problem.
    How can I get to a command prompt?

    Here is more info About ACHI http://en.wikipedia.org/wiki/Advanced_Host_Control​ler_Interface
    Select compatibilty then boot windows cd to access command promp. If you have achi mode windows cannot see any disks

  • Command Prompt Filepath Keeps Alternating

    Hi there,
    Can anyone tell me why Command Prompt sometimes points to C:\Users\<username> instead of C:\Windows\System32 where it should be defaulting to. The PC is on a Windows Domain. Your help would be much appreciated.
    Kind regards,
    RocknRollTim

    Hi Michael Shao,
    Sorry for the delay in getting back to you and you're right it is to do with the Environment Variables but still I haven't had time to do any testing on this as I have had lots of projects on the go, hopefully I will have time to test this when I have
    a few minutes and to give you feedback on how I'm getting on. The only way I can get this to work under my profile as well as other profiles on my PC without changing the Environment Variables is by re-creating each profile, however I have noticed
    that my profile keeps changing from an Administrator user to a Remote Desktop user each time I create it and sometimes reverts back when logging off as well as shutting down and rebooting the PC which is strange, I do recall
    originally creating the profile on the PC as a Standard user and then changed it to a Remote Desktop user as this was the only way I could get into my PC at the time plus I didn't have privileges to use the SBS facilities such as Remote
    Web Access, Outlook Web App and the VPN outside of work which are new aspects to the business in which my IT Manager granted me access to them using User Groups in AD as well as SBS in order to grant me access to my own PC via Remote
    Desktop outside of work using the SBS console. SBS facilities such as Outlook Web App were accessible internally before these changes happened. Other SBS facilities such as Remote Web Access especially the mobile site version weren't
    accessible and required all the SBS services on the server to be enabled plus before when this happened I had to keep adding exceptions in all web browsers on my PC at home as it wouldn't allow me access to Remote Web Access as well as Outlook Web App
    without these exceptions, now they work without adding these exceptions in every web browser on my PC at home. Maybe re-creating the profiles might be another possible solution.
    Regards,
    RocknRollTim     
    P.S. I forgot to also mention that having the services for SBS on the server were also required in order for them to become accessible.

Maybe you are looking for

  • Error  while import XML file from Production to Dev., But has GREEN status

    Hi, I tried to export/import bex queries through XML transportation. Transportation is being done from Production system to Development. In transport connection I selected required query and then I exported to Development. export of file is done succ

  • Network/internet problems when updating to iTunes 10.1.2

    I have never ran into this problem and cannot seem to fix it. I am currently using iTunes 10.1.1 with no problems. Just recently, I tried to update to iTunes 10.1.2, and the install went fine, but for some reason it will not let me use the internet a

  • PI 7.1 - TX_MISSING_IMAP_CONT

    Hello all, I meet my first blocking issue on 7.1 version in SXMB_MONI : - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="">   <SAP:Category>Application</SAP:Category>

  • Pics are not visible in received mail

    This has been happening a lot. Someone will send me an email with a picture or multiple pictures in it, and instead of the pictures I get little blue boxes with question marks in them. When I right click on the box, there is a single option "download

  • Opera Mini - Nokia Asha 201

    I have just lost my opera mini on my nokia asha 201 phone on the menu screen....how can i get it back on the menu screen please help???? Moderator's Note: The subject was amended as the post was moved to a more appropriate board.