How to install a java based irc client into a hand...

I've tried to install a java-based irc-client, but all I get is a webpage thanking for downloading. Something is updated for a while, but no application nor any new files seem to have been stored into the handheld nor mem-card.
Is there a way to installa programs straight from the web other than Ovi-service. I dod not find any links nor feature to browse outside the OVI-store selection. Ovi however loaded with the installer in my phone, XpressMusic 5310.
B.Sc Information tech
Phones I have or used to have: ancient Ericsson, Nokia: 6510, 2610, 5310 XpressMusic

Hey you can create java client using Eclispe or WSAD or far that matter any other IDE. crate a project save the WSDLs in a package. Right click on WSDL goto webservice option. From there you can generate client.
cheers,
sapan
Is it still open ?
cheers,
sapan
Edited by: sapan on Feb 25, 2009 1:17 AM

Similar Messages

  • How to Install SSIS COM Component on Client side

    Hi,
    I am new to BPC.
    I can't install SSIS COM Component on Client side.
    and i guess,  it lead BPC Excel , Data Manager is not working.
    Because all the user are local user on server side, no domain
    I have run OSoftSetup.exe,  but the result is
    Error (Login failed for user ". The user is not associated with a trusted SQL Server connection.)
    i have tried to change the OutlookSoft.config in OSoftSSIS_Client\Bin Folder
    and the config doesn't take any effect.
    How to How to Install SSIS COM Component on Client side?
    thx
    It is client side PC_MS\Logging\Log
    #ERROR#CustomXMLClt##EPM-BPC-MS##e17c2022-c7d4-4a0b-8515-b719441e3dbf###XMLParser : GetTagValue#hostname
    user########Plain##[LOG ID:22]System.NullReferenceException: Object reference not set to an instance of an object.
       at OSoft.Consumers.Common.CustomXML50.XMLParser.GetAttributeValue(String strKeyValue, String strAttKeyValue, String strSubKeyValue)#
    thx
    John

    But the problem is...in client side
    When opening Office 2007 Excel -> eTool -> Data Manager
    There have no option showed.
    and in C:\Documents and Settings\<user>\My Documents\PC_MS\Logging\Log
    it has following error.
    2010 08 21 17:15:35:875#+8:00#ERROR#CustomXMLClt##EPM-BPC-MS##51cea66a-13cd-49fc-afdd-7b492566bd12###XMLParser : GetTagValue#<HOSTNAME>
    BPCADM########Plain##[LOG ID:346]System.NullReferenceException: Object reference not set to an instance of an object.
       at OSoft.Consumers.Common.CustomXML50.XMLParser.GetAttributeValue(String strKeyValue, String strAttKeyValue, String strSubKeyValue)#
    2010 08 21 17:15:35:875#+8:00#ERROR#DMClientTools##EPM-BPC-MS##7aec1fbe-5fda-4c91-9c4a-1eec5e59911b###DMTools::ErrCheck#<HOSTNAME>
    BPCADM########Plain##[LOG ID:347]System.Exception: 91: Object reference not set to an instance of an object.
       at OSoft.Consumers.DataMgr.DMClientTools50.DMTools.ErrCheck(String strRtn)#
    2010 08 21 17:15:35:875#+8:00#ERROR#DMClientTools##EPM-BPC-MS##48f5a612-a046-4ef9-a56c-db565ef489d2###DMTools::GetServerInfo#<HOSTNAME>
    BPCADM########Plain##[LOG ID:348]System.Exception: 91: Object reference not set to an instance of an object.
       at OSoft.Consumers.DataMgr.DMClientTools50.DMTools.ErrCheck(String strRtn)
       at OSoft.Consumers.DataMgr.DMClientTools50.DMTools.GetServerInfo(String strContext, String strFilter, String strSecurity)#
    2010 08 21 17:15:35:890#+8:00#ERROR#DMConsole##EPM-BPC-MS##af7f7343-1cb2-4802-a667-2adbb1b8e2fd###basClientTools::ChangeClientSiteList#<HOSTNAME>
    BPCADM########Plain##[LOG ID:349]Subscript out of range#

  • How to install and use certificates on client?

    Hello everyone, and first of all sorry for my poor, italian-accented english.
    I have some questions about SSL and certificates. I'm developing a java desktop application, which should connect to a https server, authenticate with a previously downloaded certificate and then gain access. Some specs: I work on a Windows Xp Pro machine with Netbeans 6.1 and jdk 1.6.0_07.
    Now, I'm using HttpUnit libraries to connect the first time, login with basic authentication and download the certificate, but after i get it I'm not sure how to install the certificate (using java, it has to be an automated procedure) on the client machine and then how to use it to connect to the server. I've tried to use the code I've found here and after using it I can see the certificate inside Control Panel > Java > Securiy > Certificates > System, but I'm not sure I'm installing it in the correct way and/or in the correct path.
    Everytime I try to connect to the server I get back a HTTP 403 forbidden exception. Does someone know any tutorials/howtos/example codes to suggest to me? Or could tell me what's the right installation procedure using java? Any help would be very appreciated.
    Thanks in advance
    K.

    After banging my head on my keyboard for a lot of hours, I've got it!
    I was trying to install a *.pfx certificate, and that was bad. I tried to convert it in *.p12 or *.cer but that workaround didn't work. Finally I've found a small code to use a *.pfx certificate without installing it and... it works! No more 403 errors now, I can get that damn page. :)
    Here is the class I've used (I've found it somewhere googling around but I've lost the link, sorry. Anyway, I've modified it a little)
    import java.io.BufferedReader;
    import java.io.FileInputStream;
    import java.io.InputStreamReader;
    import java.net.*;
    import java.security.KeyStore;
    import javax.net.*;
    import javax.net.ssl.*;
    public class ConnectWithPfx {
       static final int HTTPS_PORT = 443;
       public static void main(String argv[]) throws Exception {
          // Get a Socket factory
          SocketFactory factory = SSLSocketFactory.getDefault();
          SSLSocketFactory socketFactory = null;
          try {
                KeyStore keyStoreKeys;
                KeyManagerFactory keyMgrFactory;
                SSLContext sslContext;
                keyStoreKeys = KeyStore.getInstance("PKCS12");               
                keyStoreKeys.load(new FileInputStream("mycertificate.pfx"),"certpassword".toCharArray());
                keyMgrFactory = KeyManagerFactory.getInstance("SunX509");
                keyMgrFactory.init(keyStoreKeys, "certpassword".toCharArray());
                sslContext = SSLContext.getInstance("SSL");
                sslContext.init(keyMgrFactory.getKeyManagers(), null, null);
                socketFactory = sslContext.getSocketFactory();
                Socket socket2 = factory.createSocket("www.my.host", HTTPS_PORT);
          } catch (Exception e) {
                e.printStackTrace();
            URL url = new URL("https://www.my.host/mypage");      
            // Open a HTTP connection to the URL assigning the SocketFactory we created before
            HttpsURLConnection conn = null;
            conn.setDefaultSSLSocketFactory(socketFactory);
            conn = (HttpsURLConnection) url.openConnection();              
            // Allow Inputs
            conn.setDoInput(true);
            // Allow Outputs
            conn.setDoOutput(true);
            // Don't use a cached copy.
            conn.setUseCaches(false);
            conn.setRequestProperty("Connection", "Keep-Alive");
            BufferedReader in = new BufferedReader(new InputStreamReader(conn.getInputStream()));
            String line;
            String response = "";
            while ((line = in.readLine()) != null) {
                response += line+"\n";
            System.out.println(response);
    }Hope this could be useful for someone else. Thanks to everyone who read or replied to my thread. :)

  • How to install  AS JAVA to exsting AS ABAP

    Hi,
    A task is assigned to me to fulfill the requirements of BW consultant for preparing the DASHBOARD.
    I got the below requirements from him :
    1. NW04s with J2ee engine
    2. Configuration Of ICM
    3. BI Content 3.5.3 SP6
    4. NW04s SPS14 (Visual Composer)
    5. Enterprise Portal 6.0 Or 7.0
    My current BW system configuration is: -
    OS: - SUN Solaris
    Database: - Oracle 10g
    SAP: - Ecc 6.0 SR1 (ABAP)
    *SP level: -
    SAP_BASIS: - SAPKB70011
    SAP_ABAP: - SAPKA70011
    SAP_APPL: - SAPKH60003
    SAP_BW: - SAPKW70012
    My queries regarding above requirements are
    1. I already have installed BW on ECC 6.0 (ABAP),Can I install JAVA stack in existing ABAP system? How ?
    2. How can I configure the ICM?
    3. What is BI content 3.5.3 SP6 & how can I install it?
    4. How can I install Visual Composer (NW04s SPS14)?
    Please help me to understand the above queries to fulfill the requirements.
    Thanks,
    Sachin

    Hi,
    1. I already have installed BW on ECC 6.0 (ABAP),Can I install JAVA stack in existing ABAP system? How ?
    A. Yes. You can install BI java stack as a separate Instance like ABAP instance. Just run the ./sapinst and select java stack.
    2. How can I configure the ICM?
    A. Use tcode:SMICM and check the all services. Then use tcode = SICF and activate all , Right click on Default option and select activate all servies.
    3. What is BI content 3.5.3 SP6 & how can I install it?
    A. BI_CONT 3.5.3 is used for extra features of BW.
       Use tcode = SAINT, then install BI_CONT3.5.3 based on steps.
    4. How can I install Visual Composer (NW04s SPS14)?
    A. Its simple. Better download visual Composer installation from SMP(http://service.sap.com/download or http://help.sap.com)
    Regards,
    Srini Nookala

  • How to install oracle java ?

    Hello i got some problems with oracle java install.
    I already got - jdk7-openjdk  and java-environment but when i go to website
    http://www.java.com/pl/download/testjava.jsp
    firefox dont run java and want me to install it. How i can fix it or what i have to install additionally ?

    karol wrote:Try https://wiki.archlinux.org/index.php/Br … ot_working
    its link for icetea java i want to install oracle java
    lucke wrote:You need icedtea-web-java7 if you want a browser plugin.
    oracle java cant be installed for firefox?

  • How to install 64bit java version

    Dear All,
    I need config jvm memory greater than 2G because "Account Analyst Report" issue.
    If I must need to install JAVA version 64bit, how can I do it?
    Platform is: Oracle Solaris on SPARC (64-bit)
    Current Java version is:
    java -version
    java version "1.6.0_21"
    Java(TM) SE Runtime Environment (build 1.6.0_21-b06)
    Java HotSpot(TM) Server VM (build 17.0-b16, mixed mode)
    Please Help!!
    Thanks,
    Jackie

    Hey, Guys,
    Thanks for your information.
    Customer's information:
    EBS version: 12.1.3
    Platform: Oracle Solaris on SPARC (64-bit)
    The instance was fine, after run pre-clone scripts, then OPP service can not start up.
    I tried these notes and doesn't work.
    At first, customer's error message is:
    "Invalid maximum heap size: -Xmx5120m
    The specified size exceeds the maximum representable size.
    Could not create the Java virtual machine."
    Then, I let customer set to 2G, 3G and 4G. Also doesn't help.
    I checked customer's context file:
    See following information:
    <oafm_jvm_start_options oa_var="s_oafm_jvm_start_options">-server -verbose:gc -Xmx256M -Xms64M -XX:MaxPermSize=128M -XX:NewRatio=2 -XX:+PrintGCTimeStamps -XX:+UseTLAB -XX:+UseParallelGC -XX:ParallelGCThreads=2 -Djava.security.policy=$ORACLE_HOME/j2ee/oacore/config/java2.policy -Djava.awt.headless=true -Dhttp.webdir.enable=false -Doracle.security.jazn.config=/AP/crp2/inst/apps/CRP2_m4000/ora/10.1.3/j2ee/oafm/config/jazn.xml</oafm_jvm_start_options>
    <oafm_jvm_stop_options oa_var="s_oafm_jvm_stop_options">-server -verbose:gc -Xmx256M -Xms64M -XX:MaxPermSize=128M -XX:NewRatio=2 -XX:+PrintGCTimeStamps -XX:+UseTLAB -XX:+UseParallelGC -XX:ParallelGCThreads=2 -Djava.security.policy=$ORACLE_HOME/j2ee/oacore/config/java2.policy -Djava.awt.headless=true -Dhttp.webdir.enable=false</oafm_jvm_stop_options>
    The max is 256M, min is 64M, then I let customer to increase the value, run autoconfig, but also doesn't help.
    Another engineer said customer should install 64bit java version on 64bit platform. His comments is:
    Please check the java version.
    The 32bit Java version can only address 2GB memory which in reality is 1500M for VM Heap Space.
    If customer needs more than 1500M VM Heap space, then they need to install the 64bit Java version.
    And customer run command:
    java -versionoutput is:
    java version "1.6.0_21"
    Java(TM) SE Runtime Environment (build 1.6.0_21-b06)
    Java HotSpot(TM) Server VM (build 17.0-b16, mixed mode)
    Then engineer provide solution:
    update FND_CP_SERVICES
    set DEVELOPER_PARAMETERS = 'J:oracle.apps.fnd.cp.gsf.GSMServiceController:-mx1024m'
    where SERVICE_ID = (select MANAGER_TYPE from FND_CONCURRENT_QUEUES
    where CONCURRENT_QUEUE_NAME = 'FNDCPOPP');
    and commit.
    But customer need config jvm memory greater than 2G because "Account Analyst Report" issue.
    If I must need to install JVM 64bit, how can I do it?
    Our EBS version is 12.1.3
    That's the whole process.
    Please HELP!!!
    Thanks,
    Jackie

  • How to install the Java XML libraries in the appropriate location in JDK1.3

    Hi,
    I'm new to XML. just wondering how to install xml libraries into the appropriate place. I'm useing jdk1.3
    Thanks a lot in advance for your help!
    JH

    Hi JaiDeep
    Thanks for the valid reply
    Finally i have decided to install the CE7.1 SP 3 version.
    But which version of jdk is supported by SP3 is not given at the site.
    Do u have any idea, if i install the CE7.1 SP3. and then can i install the SAP widget Foundation  also along with that.
    This tool requireds
    JAVA 1.6
    SUCUDE  PSE management install
    In the SAP Widget foundation guide has given the steps for the installation.
    But the url it has given will be going open in the SAP networkonly.
    http://nvpal168.pal.sap.corp:1080/wfws/foundationWS.jnlp
    What is difference in  SAP Widget Foundation Installation and SAP Widget Foundation as a Standalone Application ?
    How i need to proceed for the SAP Widget Foundation installation?
    where do we get the SUCUDE PSE management install?
    whether  the CE7.1 sp3 supports the java1.6 version?
    Regards
    Vijay
    Edited by: Vijay Krishna Meda on Jan 23, 2008 6:55 PM

  • How to install & enable Java Plugin2 in safari on windows

    how to enable java next generation plugin 2 in safari.I used this link to detect plugins in my safari http://www.pinlady.net/PluginDetect/JavaDetect.htm. and i get Next-Generation Java Plugin2 installed & enabled: false. can anybody help me how to enable or install the java plugin 2

    update safari and retry.
    if that fails, use a different browser to dl adobe story.

  • How to install correctly Java 1.5 on Mountain Lion?

    After Moiuntain Lion installing, I have re-install my Java 1.5 in my system.
    I need of it to run a build for a specific application. When I tried to do it, I got the following message:
    [javac] Invalid memory access of location 00000000 eip=0237da36
    I would like to know if Java 1.5 is fully supported on Mountain Lion?

    Thank you for your return
    But this article is related to the Java 1.6, not the 1.5 version .
    I need to find a way to re-install my jdk 1.5 on my Mountain Lion.
    Since my Lion update, when I try to use the sudo command, I have this kind of message:
    dyld: DYLD_ environment variables being ignored because main executable (/usr/bin/sudo) is setuid or setgid
    And also when I tried to build my project, I got this error:
    [javac] Invalid memory access of location 00000000 eip=0077da39

  • How to install SBOP BI 4.0 client tools

    Hello Everyone
    We have installed BO server and need to install the client tools on local desktop. Could anyone please guide me towards installing SBOP BI 4.0 Client Tools. I have downloaded the following tools
    1.     SAP CRYSTAL REPORTS FOR ENTERPRISE 4.0 SP02 WINDOWS (32B)
    2.     SBOP BI PLATFORM 4.0 SP02 CLIENT TOOLS WINDOWS (32B)
    3.     SBOP BI PLATFORM 4.0 SP02 LIVE OFFICE WINDOWS (32B)
    4.     SBOP BI Platform 4.0 - Temporary Keys       
    Do i need any more tools to download for clients. Is there a specific procedure in installing these components.
    Kindly guide.
    Thanks and Regards
    Ahmed

    Hi,
    there was a special installation order during XI 3.1 i`m not quite sure if there is one in BI4. To be sure i would recommend the following order:
    BI4 Clients
    BI4 Live Office
    CR for Ent
    The Installation process is pretty straight forward like installing an Office Package. So just only "Next" -> "Next" -> "Finish" and so on.
    You can find the official Installation guides under help.sap.com
    Regards
    -Seb.

  • Info on How to install adobe pdf as a printer into my device -printer file in windows 7

    Need information on how to install adobe pdf as a printer in my device-printer file in windows 7. I currently have adobe 8 pro & acrobat distiller on my pc.

    Acrobat appears to be running just fine- I am running windows 7 Ultimate 64 bit. I don't know why it just didn't automatically install- I just replaced an older HD that was going bad. Copied my entire system using windows mirrow image. Adobe pdf converter was in my device and printer file before and now its's not. I did have to reinstall several programs, such as Adobe Acrobat, etc.

  • How to install previous Java version?

    SL comes with Java SE 6 (32 and 64 bit). Is there a way to install previous version of Java? I am looking for J2SE 1.4.2.
    Any idea?
    Thanks

    It's not supported by Apple, but here's what was posted on another site. The user name is the same as yours, but since you're asking I'm presuming that it wasn't you. Note that I'm quoting; I haven't tried it myself; as with any such hack, unexpected consequences may arise:
    xsi wrote:I was able to get Java 1.4.2 working with Safari in Snow Leopard >tonight. Here's how to do it.
    1. Install Java 1.4.2 as outlined in this link:
    http://wiki.oneswarm.org/index.php/OSX_10.6_SnowLeopard
    Alternatively, extract Java 1.4.2 from the Java For Mac OS X 10.5 Update 4 installation package, and install it in a similar manner:
    http://support.apple.com/downloads/Javafor_Mac_OS_X_10_5_Update4
    2. Make sure that Java 1.4.2 is the first 32-bit application in the list. Under Java Preferences, my list reads:
    Java SE 6 64-bit
    J2SE 1.4.2 32-bit
    Java SE 6 32-bit
    3. Open Safari in 32-bit mode via the Get Info window for Safari. This is where I was getting screwed up. It finally occurred to me that Java 1.4.2 is a 32-bit application, but if Safari was opening in 64-bit mode, it wouldn't use the 32-bit Java apps.
    Once I opened Safari in 32-bit mode, Safari was able to use Java 1.4.2.
    Hope that helps.
    Message was edited by: Dave Sawyer

  • How to install outside java games in firefox os...(not from marketplace)

    Installing java games in firefox os

    Then can I install android apps in firefox os smartphone? If yes, then how?

  • How to install Sun Java System Application Server PE 9 in debian

    Hi,
    I have ubuntu installed on my system. I wanted to install the Sun Java System Application Server PE 9 on it. I didn't see any debian package for it on Sun's downloads. I downloaded the linux version and tried to install it. I got the following result...
    root@vineet :/usr/src# ./java_ee_sdk-5-linux.bin
    Checking available disk space...
    Checking Java(TM) 2 Runtime Environment...
    Error: Could not find the required version of the Java(TM) 2 Runtime Environment.
    This application needs version 1.5 or higher of the Java(TM) 2 Runtime
    Environment. If the required Java(TM) 2 Runtime Environment is not installed,
    you can download it from the following website:
    http://java.sun.com/j2se
    Or if you already have the required Java(TM) 2 Runtime Environment
    installed, try rerunning this application with the following usage:
    'java_ee_sdk-5-linux.bin' -javahome <Java(TM) installation directory>
    root@vineet:/usr/src# ./java_ee_sdk-5-linux.bin -javahome /usr/lib/j2re1.5-sun
    Checking available disk space...
    Checking Java(TM) 2 Runtime Environment...
    Launching Java(TM) 2 Runtime Environment...
    Error: There are no files requiring installation.
    Deleting temporary files...
    Any suggestions will be highly appreciated.
    Thanks,
    Vineet

    Hi,
    I have ubuntu installed on my system. I wanted to
    install the Sun Java System Application Server PE 9
    on it. I didn't see any debian package for it on
    Sun's downloads. I downloaded the linux version and
    tried to install it. I got the following result...
    root@vineet :/usr/src# ./java_ee_sdk-5-linux.bin
    Checking available disk space...
    Checking Java(TM) 2 Runtime Environment...
    Error: Could not find the required version of the
    Java(TM) 2 Runtime Environment.
    This application needs version 1.5 or higher of the
    Java(TM) 2 Runtime
    Environment. If the required Java(TM) 2 Runtime
    Environment is not installed,
    you can download it from the following website:
    http://java.sun.com/j2se
    f you already have the required Java(TM) 2 Runtime
    Environment
    installed, try rerunning this application with the
    following usage:
    'java_ee_sdk-5-linux.bin' -javahome <Java(TM)
    installation directory>
    oot@vineet:/usr/src# ./java_ee_sdk-5-linux.bin
    -javahome /usr/lib/j2re1.5-sun
    Checking available disk space...
    Checking Java(TM) 2 Runtime Environment...
    Launching Java(TM) 2 Runtime Environment...
    Error: There are no files requiring installation.
    Deleting temporary files...
    Any suggestions will be highly appreciated.
    Thanks,
    VineetDo you have java 5 sdk on your machine (Or at the very least java 5 re) ?
    Have you tried the command that they gave ?

  • How to install Personal Java Into Pocket PC? (IMPT)

    I download pjavawince.sh3.cap from http://java.sun.com/products/personaljava/ and download pjavawince.sh3.cap into My Pocket PC (HP jornada) SH3.
    When I double click the file in my Pocket PC it give me an error message
    "Setup Failed"
    The applciation cannot run on this device type. Please install the application specific to this device type.
    Anyone know what is the problems for this? My Pocket PC is HP Jornada 568. Anyway I do not understand what is SH3 stand for?
    Please help me if you know the problem!!!
    THANKS IN ADVANCE

    Hi,
    Jornada 568 is not using SH3 but ARM processor. If you are trying to install PJava for SH3 it will fail. Processor SH3 was used in Jornadas 54x series.
    Stan Berka
    I download pjavawince.sh3.cap from
    http://java.sun.com/products/personaljava/ and
    download pjavawince.sh3.cap into My Pocket PC (HP
    jornada) SH3.
    When I double click the file in my Pocket PC it give
    me an error message
    "Setup Failed"
    The applciation cannot run on this device type. Please
    install the application specific to this device type.
    Anyone know what is the problems for this? My Pocket
    PC is HP Jornada 568. Anyway I do not understand what
    is SH3 stand for?
    Please help me if you know the problem!!!
    THANKS IN ADVANCE

Maybe you are looking for

  • How do i back up my itunes metadata?

    I'm wondering if anybody could please help me. I've got over 25000 songs on my itunes and they're all located on my external harddrive (i cant fit them all on my computer's harddrive). I'm just worried that if anything happens to my laptop then i've

  • "Resetting" a component

    Hi, I have a WD component with two views A and B. The other view B has actually another WD component embedded. I can navigate between these two views. Now I would like to somehow "reset" the other component (in view B) when leaving it (=navigating ba

  • Unable to copy and paste entire word doc.

    I am trying to register for grad school and am in need of immediate help, any and all information pertaining to my problem would be useful! thank you to everyone The pdf I am unable to paste my entire word doc. to is the third one down on this page h

  • Out of process memory when indexing

    i'm trying to build an contains index on a big table (3M records) and i get this error: ERROR at line 1: ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine ORA-20000: interMedia Text error: DRG-50857: oracle error in drueixe ORA-04

  • Book without ISBN, how to link to the iBooks page?

    My book does not have an ISBN. How do I link to my book page in this case? Most videos and tuturials out there asume that your book as an ISBN number. I promise to give a free copy of my book to the person that just gives a straight answer: "You do i