Newbie in creating JNLP have questions

Ok I have never setup a JNLP application, but I would like to give it a try. I am reading the java documentation "Deploying Software with JNLP and Java Web Start," though I believe that article was from 2002.
I was under the impresion that JNLP would basically be like adding some tags onto my webpage, putting some XML files in my web server directory, etc. I have some general godaddy.com hosting package and I don't have direct access to the web server.
After reading this article it seems like I have to edit some web.xml file in the conf directory, and all this other stuff that I'm not so sure. Is this true, or am I misunderstanding something. I can't imagine everybody is running their own java app server.

Ok I have never setup a JNLP application, but I would
like to give it a try. I am reading the java
documentation "Deploying Software with JNLP and Java
Web Start," though I believe that article was from
2002.Go here for the latest instructions:
http://java.sun.com/j2se/1.5.0/docs/guide/javaws/developersguide/contents.html
After reading this article it seems like I have to
edit some web.xml file in the conf directory, and all
this other stuff that I'm not so sure. Is this true,
or am I misunderstanding something. I can't imagine
everybody is running their own java app server.What do you mean by "java app server"? Read the first link.

Similar Messages

  • Am being prompted to enter security questions when making a purchase on my new IPad.  I don't believe I have ever setup security questions on my apple id.  How to I create new security questions?

    I am being prompted to enter security questions when making a purchase on my new IPad.  I don't believe I have ever setup security questions on my apple id.  I have tried logging into my apple id and have chosen the security and priviacy settings to set up security questions.  However I am prompted to enter answers to security questions and am told they don't match.  How to I create new security questions or reset them? 

    You need to ask Apple to reset your security questions; ways of contacting them include phoning AppleCare and asking for the Account Security team, clicking here and picking a method for your country, and filling out and submitting this form.
    They wouldn't be security questions if they could be bypassed without Apple verifying your identity.
    (104011)

  • I have question related ejb create method.

    hi pals
    i'm rookie about ejb.
    so i have a lot of wonders.
    i saw create method in ejb stateful session bean.
    but the create method have parameter like this "create(john)"
    the parameter "john" is not used in session bean.
    I really wonder parameter "john" s role.
    i'll expect reply. thanks for reading.
    P.S)when i delete this parameter in source, there were errors
    of course, i modified everyting related parameter "john".
    but there were errors still~

    The bean developer writes the create method for a Stateful Session Bean, so it's up to the developer
    to decide which (if any) parameters are needed at creation time. If a particular parameter is not used
    in the body of the ejbCreate method, that's a developer oversight. It's no different than writing any other
    plain Java method that ignores one of its parameters. It's not a fatal error but it's probably indicative of
    a mistake in the bean logic. All the EJB container cares about is that the signature of the create method
    in the Home/LocalHome interface matches a corresponding ejbCreate method in the bean class.
    --ken                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • How can I create a new Question thread?

    How to create a new "Question Thread" regarding the account payment ?

    Hello MotionBoy,
    There are two ways to go about creating a new thread to run a step.  The first is to create a new sequence, into which you put the LabVIEW step you want to run and any other steps that may go along with it.  Then use a sequence call step to call this newly created sequence.  Set the Execution Options of the Sequence call step to 'Use New Thread.'  This will allow you to run a set of steps in a new thread, not just a VI.  The second method, which is only available for a LabVIEW VI, is to use the “Run VI Asynchronously” step.  This can be accessed if you right-click within your sequence and select Insert Step » LabVIEW Utility » Run VI Asynchronously.  This step will allow you to call a VI and have it automatically open in a new thread.  You can further customize this step by opening the configuration menu in the Step Settings.
    To address the current behavior of your steps I would like to know if the modules in steps 1 & 2 pass data between them or it would be desirable for them to do so?  If so you are going to need a more complex synchronization structure such as TestStand/LabVIEW queues. There is a simple example you may want to look at in the TestStand examples, under the Synchronization folder that demonstrates how to use queues. Otherwise the above solution should be all you need.
    John B.
    Applications Engineer
    National Instruments

  • Custom splash screen not appearing in the Dynamic created jnlp()

    Hi,
    I am not able to show my custom splash screen while starting the webstart application, instead getting the "sun webstart logo". I am dynamically generating the jnlp file using jsp (struts application). Application is working perfectly except custom splash screen. Below is my jsp which will generate the jnlp on fly. The test.gif file is in place.
    <% response.setContentType("application/x-java-jnlp-file");
      response.setHeader( "Pragma", "no-cache");
      response.setDateHeader( "Expires", 0 );%>
    <%@ page import="java.io.*" %> 
    <%String baseURL = WebUtil.webUrlParser(request.getRequestURL().toString(),request.getContextPath(),request.getServerPort());%>
    <jnlp      spec="1.0+" codebase="<%=baseURL%>/cs_jnlp">
    <information>
        <title>Launching JNLP</title>
        <vendor>Satyasai</vendor>
        <icon href="/images/test1.jpg"/>
        <homepage href="docs/help.html"/>
       <description>test</description>
            <icon kind="splash" href="images/test.gif" />
       </information>
          <security>
            <all-permissions/>
         </security>
         <resources>
       <j2se version="1.6+"/>
       <jar href="<%=baseURL%>/cs_jnlp/AppLaunch.jar"/>
      </resources>
           <application-desc main-class="Launch" >
           <%
           int roleId = (Integer)session.getAttribute(Constant.USER_TYPE);
           String sessionID=(String)request.getAttribute("SELECTION_SESSION_ID");
           String action=(String)request.getAttribute("action");
           String userID = (String)session.getAttribute(Constant.LOGIN_ID);       
           String sessionType=(String)request.getAttribute("sessionType");        
           %>
           <argument><%=sessionID%></argument>
           <argument><%=action%></argument>
           <argument><%=userID%></argument>
           <argument><%=sessionType%></argument> 
    </application-desc>
    </jnlp>If I use normal servlet - jsp using RequestDispatcher to forward request to a jsp which on fly creates jnlp, it shows the my custom splash screen. I am not very sure where is the difference. If I look at both generated jnlps they are almost one and the same. Can any one throw some insight on this.
    Thanks & Regards,
    Satyasai

    Hi Andrew,
    Thanks for your response.
    1. I have launched it number of times but no luck.
    2. I have written a jsp (using servlet + jsp no struts frame work) which will create jnlp on fly, which is showing my custom splash screen. If you refer in the initial post, it is not working with struts kind of framework. See the below jsp which shows custom splash screen. It worked without href.
    3. All jnlps are well formed and perfectly working in my development environment. For security purposes I have not shown some of the texts and logos.
    <% response.setContentType("application/x-java-jnlp-file");
      response.setHeader( "Pragma", "no-cache");
      response.setDateHeader( "Expires", 0 );%>
    <%@page import="java.util.ArrayList" %>
    <%
    String client = (String)request.getAttribute("clientLocation");
    String fileNames = (String)request.getAttribute("filenames");
    String url= (String)request.getAttribute("serverFilesLocation");
    String baseURL = "http://"+request.getLocalAddr()+":"+request.getServerPort()+request.getContextPath();
    %>
    <jnlp spec="1.0+" codebase="<%=baseURL%>/sw_jnlp"> 
      <information>
        <title>Softwares Download</title>
        <vendor>test</vendor>
        <icon href="/images/test1.jpg"/>
        <homepage href="docs/help.html"/>
       <description>Software Downloads </description>
            <icon kind="splash" href="images/logo_small.gif" />
       </information>
       <update check="timeout" policy="always"/>
          <security>
          <all-permissions/>
      </security>
      <resources>
        <j2se version="1.6+"/>        
        <jar href="mod.jar"/>  
      </resources> 
      <application-desc main-class="InstallSW">
      <argument><%=client%></argument>
      <argument><%=fileNames%></argument>
      <argument><%=url%></argument>
      </application-desc>
    </jnlp>Thanks & Regards,
    Satyasai

  • Creating .jnlp files from .java files

    Last resort: Ask on the forums. I'm having a lot of trouble creating .jnlp files with only a .java file. For some reason if I do create project, the project does not run correctly, but when I make the file and run the file alone, it works perfectly fine. Most of the tutorials that I have read online ask me to do weird manifest .class stuff (in order to make JAR files, which i have failed to do even after attempting to make one after 3 hours). And still, when it comes to make the .jnlp file, I don't quite understand anything. When putting it on the web, I'm planning not to use php (html is in my mind right now), and I have aborted every single attempt at making the JAR files and whatnot.
    At this point, I'm not asking for anything other than a link to a tutorial that actually works, because all that I have tried (for the JAR files, especially) have been giving me errors. By the way, one really bothersome output that comes up is the "illegal option: j" when I use the Tool for the JAR file, and I have no idea what that means--I google it and find nothing. The .java itself extends JPanel, so it isn't really an applet.
    How to: Run an Applet
    Create an Applet Class by clicking File > New > File > File Type > Java Classes > Applet Class.
    Enter a name and path for the applet and click Finish.
    Build the file by pressing F7.
    Create an Applet HTML file by clicking File > New > File > File Type > Other > HTML Applet.
    Enter a name and path for the applet and click Finish.
    Open the HTML file in JCreator and modify the applet tag to match the name of the applet class.
    Open the Project Settings window and select the HTML file as the Run parameter.
    Click the Run Project button.It isn't really a code, but I tried doing this and the HTML Applet said code = ".class" Again, I don't have a class for the file. And when you do the "File > New > File > File Type > Java Classes > Applet Class," you get the .java file and a folder that says "components, with two classes in it. I was completely befuddled.

    http://forum.java.sun.com/thread.jspa?messageID=9783924

  • I have question CME 8.0 upgrade to CME 9.1

    Hi All,
    I want to upgrade CME 8.0 to CME 9.1 for use CP 3905.
    I have question CME 8.0 upgrade to CME 9.1. I can't  add dn phone type 3905. 
    Cisco Unified CME 9.1 Supported Firmware
    http://www.cisco.com/en/US/docs/voice_ip_comm/cucme/requirements/guide/cme91spc.html
    Cisco Unified CME and Cisco IOS Software Version Compatibility Matrix
    http://www.cisco.com/en/US/docs/voice_ip_comm/cucme/requirements/guide/33matrix.htm
    Step upgrade test.
    1. I upgrade IOS to 15.2(4)M
    sh ver
    Cisco IOS Software, C2900 Software (C2900-UNIVERSALK9-M), Version 15.2(4)M4, RELEASE SOFTWARE (fc2)
    Technical Support: http://www.cisco.com/techsupport
    Copyright (c) 1986-2013 by Cisco Systems, Inc.
    Compiled Thu 20-Jun-13 13:06 by prod_rel_team
    ROM: System Bootstrap, Version 15.0(1r)M9, RELEASE SOFTWARE (fc1)
    System returned to ROM by reload at 17:30:49 ict Mon Sep 2 2013
    System image file is "flash:c2900-universalk9-mz.SPA.152-4.M4.bin"
    Last reload type: Normal Reload
    Last reload reason: Reload Command
    Cisco CISCO2911/K9 (revision 1.0) with 471040K/53248K bytes of memory.
    Processor board ID FHK1449F18H
    4 Gigabit Ethernet interfaces
    1 ATM interface
    2 terminal lines
    4 Voice FXO interfaces
    4 Voice FXS interfaces
    1 Internal Services Module (ISM) with Services Ready Engine (SRE)
       Cisco Unity Express 8.5.1 in slot/sub-slot 0/0
    DRAM configuration is 64 bits wide with parity enabled.
    255K bytes of non-volatile configuration memory.
    254464K bytes of ATA System CompactFlash 0 (Read/Write)
    License Info:
    License UDI:
    Device#   PID                   SN
    *0        CISCO2911/K9          FHK1449F18H    
    Technology Package License Information for Module:'c2900'
    Technology    Technology-package           Technology-package
                  Current       Type           Next reboot 
    ipbase        ipbasek9      Permanent      ipbasek9
    security      None          None           None
    uc            uck9          Permanent      uck9
    data          None          None           None
    2. sh telephony-service
    CONFIG (Version=9.1)
    =====================
    Version 9.1
    Max phoneload sccp version 17
    Max dspfarm sccp version 18
    Cisco Unified Communications Manager Express
    For on-line documentation please see:
    http://www.cisco.com/en/US/products/sw/voicesw/ps4625/tsd_products_support_series_home.html
    protocol mode default
    ip source-address 10.0.3.1 port 2000
    ip qos dscp:
    ef (the MS 6 bits, 46, in ToS, 0xB8) for media
    cs3 (the MS 6 bits, 24, in ToS, 0x60) for signal
    af41 (the MS 6 bits, 34, in ToS, 0x88) for video
    default (the MS 6 bits, 0, in ToS, 0x0) for serviceservice directed-pickup
    no auto-reg-ephone
    load 6921 SCCP69xx.9-2-1-0
    load 8941 SCCP894x.9-1-2-SR-1
    max-ephones 48
    max-dn 48
    max-conferences 8 gain -6
    dspfarm units 0
    dspfarm transcode sessions 0
    conference software
    privacy
    no privacy-on-hold
    hunt-group report delay 1 hours
    hunt-group logout DND
    max-redirect 10
    voicemail 7777
    cnf-file location: system:
    cnf-file option: PER-PHONE-TYPE
    network-locale[0] US   (This is the default network locale for this box)
    network-locale[1] US
    network-locale[2] US
    network-locale[3] US
    network-locale[4] US
    user-locale[0] US    (This is the default user locale for this box)
    user-locale[1] US
    user-locale[2] US
    user-locale[3] US
    user-locale[4] US
    srst mode auto-provision is OFF
    srst ephone template is 0
    srst dn template is 0
    srst dn line-mode single
    time-format 12
    date-format mm-dd-yy
    timezone 41 SE Asia Standard Time
    no transfer-pattern is configured, transfer is restricted to local SCCP phones only.
    keepalive 30 auxiliary 30
    timeout interdigit 10
    timeout busy 10
    timeout ringing 30
    timeout transfer-recall 0
    timeout ringin-callerid 8
    timeout night-service-bell 12
    caller-id name-only: enable
    web admin system name netbright  secret 5 $1$DfTG$Zy1UCClcZMYYgVSjS19Hu.
    web admin customer name boyheha  password cisco
    edit DN through Web:  enabled.
    edit TIME through web:  enabled.
    background save interval 10 minutes
    Log (table parameters):
         max-size: 150
         retain-timer: 15
    create cnf-files version-stamp 7960 Sep 02 2013 10:52:43
    transfer-system full-consult
    transfer-digit-collect new-call
    local directory service: enabled.
    Extension-assigner tag-type ephone-tag.
    3. sh flash
    sh flash
    -#- --length-- -----date/time------ path
    2         2903 Nov 30 2010 21:35:32 +07:00 cpconfig-29xx.cfg
    3       677820 Dec 29 2011 16:39:38 +07:00 admin_user.js
    4         1038 Nov 30 2010 21:35:50 +07:00 home.shtml
    5       115712 Nov 30 2010 21:35:58 +07:00 home.tar
    6      1697952 Nov 30 2010 21:36:10 +07:00 securedesktop-ios-3.1.1.45-k9.pkg
    7       415956 Nov 30 2010 21:36:22 +07:00 sslclient-win-1.1.4.176.pkg
    8     99077424 Sep 2 2013 17:30:04 +07:00 c2900-universalk9-mz.SPA.152-4.M4.bin
    9         4118 Dec 29 2011 16:39:38 +07:00 admin_user.html
    10           0 Dec 29 2011 09:32:04 +07:00 flash
    11        4118 Dec 29 2011 16:30:42 +07:00 flash/admin_user.html
    12      677820 Dec 29 2011 16:30:44 +07:00 flash/admin_user.js
    13        1029 Dec 29 2011 16:30:44 +07:00 flash/CiscoLogo.gif
    14        1019 Dec 29 2011 16:30:46 +07:00 flash/CME_GUI_README.TXT
    15         953 Dec 29 2011 16:30:46 +07:00 flash/Delete.gif
    16       16344 Dec 29 2011 16:30:46 +07:00 flash/dom.js
    17         864 Dec 29 2011 16:30:46 +07:00 flash/downarrow.gif
    18        6315 Dec 29 2011 16:30:46 +07:00 flash/ephone_admin.html
    19        4558 Dec 29 2011 16:30:46 +07:00 flash/logohome.gif
    20        3978 Dec 29 2011 16:30:48 +07:00 flash/normal_user.html
    21       78428 Dec 29 2011 16:30:48 +07:00 flash/normal_user.js
    22        1347 Dec 29 2011 16:30:48 +07:00 flash/Plus.gif
    23         843 Dec 29 2011 16:30:48 +07:00 flash/sxiconad.gif
    24         174 Dec 29 2011 16:30:48 +07:00 flash/Tab.gif
    25        2496 Dec 29 2011 16:30:50 +07:00 flash/telephony_service.html
    26         870 Dec 29 2011 16:30:50 +07:00 flash/uparrow.gif
    27       10230 Dec 29 2011 16:30:50 +07:00 flash/xml-test.html
    28        3412 Dec 29 2011 16:30:50 +07:00 flash/xml.template
    29     2942935 Dec 29 2011 16:07:42 +07:00 flash/apps11.8-5-3TH1-6.sbn
    30      503269 Dec 29 2011 16:07:44 +07:00 flash/cnu11.8-5-3TH1-6.sbn
    31     2104751 Dec 29 2011 16:07:48 +07:00 flash/cvm11sccp.8-5-3TH1-6.sbn
    32      340615 Dec 29 2011 16:07:50 +07:00 flash/dsp11.8-5-3TH1-6.sbn
    33     1616686 Dec 29 2011 16:07:52 +07:00 flash/jar11sccp.8-5-3TH1-6.sbn
    34         670 Dec 29 2011 16:07:52 +07:00 flash/SCCP11.8-5-3S.loads
    35         674 Dec 29 2011 16:07:54 +07:00 flash/term06.default.loads
    36         674 Dec 29 2011 16:07:54 +07:00 flash/term11.default.loads
    37        1916 Dec 29 2011 16:07:54 +07:00 flash/MISCH-1.3.3.SBN
    38         900 Dec 29 2011 16:07:54 +07:00 flash/CP7921G-1.3.3.LOADS
    39         900 Dec 29 2011 16:07:56 +07:00 flash/CP7925G-1.3.3.LOADS
    40         674 Dec 29 2011 16:07:56 +07:00 flash/term42.default.loads
    41         674 Dec 29 2011 16:07:56 +07:00 flash/term62.default.loads
    42         670 Dec 29 2011 16:07:56 +07:00 flash/SCCP42.8-5-3S.loads
    43         655 Dec 29 2011 16:07:56 +07:00 flash/term31.default.loads
    44         654 Dec 29 2011 16:07:58 +07:00 flash/term41.default.loads
    45         654 Dec 29 2011 16:07:58 +07:00 flash/term45.default.loads
    46         654 Dec 29 2011 16:07:58 +07:00 flash/term61.default.loads
    47         654 Dec 29 2011 16:07:58 +07:00 flash/term65.default.loads
    48         654 Dec 29 2011 16:07:58 +07:00 flash/term70.default.loads
    49         654 Dec 29 2011 16:08:00 +07:00 flash/term71.default.loads
    50         654 Dec 29 2011 16:08:00 +07:00 flash/term75.default.loads
    51         651 Dec 29 2011 16:08:00 +07:00 flash/SCCP31.8-5-3S.loads
    52         650 Dec 29 2011 16:08:00 +07:00 flash/SCCP41.8-5-3S.loads
    53         650 Dec 29 2011 16:08:02 +07:00 flash/SCCP45.8-5-3S.loads
    54         650 Dec 29 2011 16:08:02 +07:00 flash/SCCP70.8-5-3S.loads
    55         650 Dec 29 2011 16:08:02 +07:00 flash/SCCP75.8-5-3S.loads
    56          61 Dec 29 2011 16:08:02 +07:00 flash/SCCP69xx.8-5-3-0.loads
    57           0 Dec 29 2011 09:33:02 +07:00 flash/Desktops
    58           0 Dec 29 2011 09:33:04 +07:00 flash/Desktops/320x212x12
    59      131470 Dec 29 2011 16:08:04 +07:00 flash/Desktops/320x212x12/CampusNight.png
    60       80565 Dec 29 2011 16:08:04 +07:00 flash/Desktops/320x212x12/CiscoFountain.png
    61        8156 Dec 29 2011 16:08:04 +07:00 flash/Desktops/320x212x12/CiscoLogo.png
    62      138278 Dec 29 2011 16:08:04 +07:00 flash/Desktops/320x212x12/FOUNTAIN.PNG
    63         740 Dec 29 2011 16:08:06 +07:00 flash/Desktops/320x212x12/LIST.XML
    64      109076 Dec 29 2011 16:08:06 +07:00 flash/Desktops/320x212x12/MorroRock.png
    65      108087 Dec 29 2011 16:08:06 +07:00 flash/Desktops/320x212x12/NantucketFlowers.png
    66       10820 Dec 29 2011 16:08:06 +07:00 flash/Desktops/320x212x12/TN-CampusNight.png
    67        9657 Dec 29 2011 16:08:08 +07:00 flash/Desktops/320x212x12/TN-CiscoFountain.png
    68        2089 Dec 29 2011 16:08:08 +07:00 flash/Desktops/320x212x12/TN-CiscoLogo.png
    69        7953 Dec 29 2011 16:08:08 +07:00 flash/Desktops/320x212x12/TN-Fountain.png
    70        7274 Dec 29 2011 16:08:08 +07:00 flash/Desktops/320x212x12/TN-MorroRock.png
    71        9933 Dec 29 2011 16:08:10 +07:00 flash/Desktops/320x212x12/TN-NantucketFlowers.png
    72           0 Dec 29 2011 09:33:10 +07:00 flash/Desktops/320x212x16
    73         740 Dec 29 2011 16:08:10 +07:00 flash/Desktops/320x212x16/LIST.XML
    74           0 Dec 29 2011 09:33:10 +07:00 flash/Desktops/320x216x16
    75         740 Dec 29 2011 16:08:10 +07:00 flash/Desktops/320x216x16/LIST.XML
    76           0 Dec 29 2011 09:33:10 +07:00 flash/Ringtones
    77        8224 Dec 29 2011 16:08:10 +07:00 flash/Ringtones/Analog1.raw
    78        8307 Dec 29 2011 16:08:10 +07:00 flash/Ringtones/Analog2.raw
    79        5280 Dec 29 2011 16:08:12 +07:00 flash/Ringtones/AreYouThere.raw
    80        5040 Dec 29 2011 16:08:12 +07:00 flash/Ringtones/AreYouThereF.raw
    81        8206 Dec 29 2011 16:08:12 +07:00 flash/Ringtones/Bass.raw
    82       12240 Dec 29 2011 16:08:12 +07:00 flash/Ringtones/CallBack.raw
    83       16066 Dec 29 2011 16:08:14 +07:00 flash/Ringtones/Chime.raw
    84        8160 Dec 29 2011 16:08:14 +07:00 flash/Ringtones/Classic1.raw
    85       16080 Dec 29 2011 16:08:14 +07:00 flash/Ringtones/Classic2.raw
    86       10800 Dec 29 2011 16:08:14 +07:00 flash/Ringtones/ClockShop.raw
    87        2823 Dec 29 2011 16:08:14 +07:00 flash/Ringtones/DistinctiveRingList.xml
    88        9665 Dec 29 2011 16:08:16 +07:00 flash/Ringtones/Drums1.raw
    89       13610 Dec 29 2011 16:08:16 +07:00 flash/Ringtones/Drums2.raw
    90       15928 Dec 29 2011 16:08:16 +07:00 flash/Ringtones/FilmScore.raw
    91       16244 Dec 29 2011 16:08:16 +07:00 flash/Ringtones/HarpSynth.raw
    92        8245 Dec 29 2011 16:08:18 +07:00 flash/Ringtones/Jamaica.raw
    93       16127 Dec 29 2011 16:08:18 +07:00 flash/Ringtones/KotoEffect.raw
    94       12776 Dec 29 2011 16:08:18 +07:00 flash/Ringtones/MusicBox.raw
    95        8223 Dec 29 2011 16:08:18 +07:00 flash/Ringtones/Piano1.raw
    96       15422 Dec 29 2011 16:08:18 +07:00 flash/Ringtones/Piano2.raw
    97        9360 Dec 29 2011 16:08:20 +07:00 flash/Ringtones/Pop.raw
    98        7200 Dec 29 2011 16:08:20 +07:00 flash/Ringtones/Pulse1.raw
    99        4000 Dec 29 2011 16:08:20 +07:00 flash/Ringtones/Ring1.raw
    100       4000 Dec 29 2011 16:08:20 +07:00 flash/Ringtones/Ring2.raw
    101       4000 Dec 29 2011 16:08:22 +07:00 flash/Ringtones/Ring3.raw
    102       4000 Dec 29 2011 16:08:22 +07:00 flash/Ringtones/Ring4.raw
    103       4000 Dec 29 2011 16:08:22 +07:00 flash/Ringtones/Ring5.raw
    104       4000 Dec 29 2011 16:08:22 +07:00 flash/Ringtones/Ring6.raw
    105       4088 Dec 29 2011 16:08:22 +07:00 flash/Ringtones/Ring7.raw
    106        495 Dec 29 2011 16:08:24 +07:00 flash/Ringtones/Ringlist.xml
    107      10858 Dec 29 2011 16:08:24 +07:00 flash/Ringtones/Sax1.raw
    108      14233 Dec 29 2011 16:08:24 +07:00 flash/Ringtones/Sax2.raw
    109      16100 Dec 29 2011 16:08:24 +07:00 flash/Ringtones/Vibe.raw
    110    8095286 Dec 29 2011 16:08:38 +07:00 flash/apps37sccp.1-3-4-0.bin
    111    2942935 Dec 29 2011 16:08:44 +07:00 flash/apps31.8-5-3TH1-6.sbn
    112    2935993 Dec 29 2011 16:08:48 +07:00 flash/apps42.8-5-3TH1-6.sbn
    113    2935993 Dec 29 2011 16:08:54 +07:00 flash/apps45.8-5-3TH1-6.sbn
    114    2935993 Dec 29 2011 16:09:00 +07:00 flash/apps75.8-5-3TH1-6.sbn
    115    2933329 Dec 29 2011 16:09:06 +07:00 flash/apps41.8-5-3TH1-6.sbn
    116    2933329 Dec 29 2011 16:09:12 +07:00 flash/apps70.8-5-3TH1-6.sbn
    117    2599169 Dec 29 2011 16:09:16 +07:00 flash/APPSH-1.3.3.SBN
    118    2591877 Dec 29 2011 16:09:22 +07:00 flash/APPS-1.3.3.SBN
    119    2118620 Dec 29 2011 16:09:26 +07:00 flash/SYSH-1.3.3.SBN
    120    2103754 Dec 29 2011 16:09:30 +07:00 flash/cvm70sccp.8-5-3TH1-6.sbn
    121    2101414 Dec 29 2011 16:09:34 +07:00 flash/cvm41sccp.8-5-3TH1-6.sbn
    122    2100804 Dec 29 2011 16:09:38 +07:00 flash/cvm45sccp.8-5-3TH1-6.sbn
    123    2100554 Dec 29 2011 16:09:42 +07:00 flash/cvm75sccp.8-5-3TH1-6.sbn
    124    2100286 Dec 29 2011 16:09:46 +07:00 flash/cvm31sccp.8-5-3TH1-6.sbn
    125    2099070 Dec 29 2011 16:09:52 +07:00 flash/cvm42sccp.8-5-3TH1-6.sbn
    126    2083047 Dec 29 2011 16:09:56 +07:00 flash/SYS-1.3.3.SBN
    127    1939872 Dec 29 2011 16:10:00 +07:00 flash/WLANH-1.3.3.SBN
    128    1906272 Dec 29 2011 16:10:04 +07:00 flash/SCCP69xx.8-5-3-0.zz
    129    1892036 Dec 29 2011 16:10:08 +07:00 flash/GUIH-1.3.3.SBN
    130    1887312 Dec 29 2011 16:10:12 +07:00 flash/jar75sccp.8-5-3TH1-6.sbn
    131    1882934 Dec 29 2011 16:10:16 +07:00 flash/jar45sccp.8-5-3TH1-6.sbn
    132    1848343 Dec 29 2011 16:10:20 +07:00 flash/GUI-1.3.3.SBN
    133    1828410 Dec 29 2011 16:10:24 +07:00 flash/jar70sccp.8-5-3TH1-6.sbn
    134    1756328 Dec 29 2011 16:10:28 +07:00 flash/jar42sccp.8-5-3TH1-6.sbn
    135    1628021 Dec 29 2011 16:10:30 +07:00 flash/jar41sccp.8-5-3TH1-6.sbn
    136    1616425 Dec 29 2011 16:10:34 +07:00 flash/jar31sccp.8-5-3TH1-6.sbn
    137    1379535 Dec 29 2011 16:10:36 +07:00 flash/WLAN-1.3.3.SBN
    138     939293 Dec 29 2011 16:10:38 +07:00 flash/TNUXH-1.3.3.SBN
    139     896477 Dec 29 2011 16:10:40 +07:00 flash/TNUX-1.3.3.SBN
    140     537925 Dec 29 2011 16:10:42 +07:00 flash/dsp41.8-5-3TH1-6.sbn
    141     537925 Dec 29 2011 16:10:42 +07:00 flash/dsp70.8-5-3TH1-6.sbn
    142     524969 Dec 29 2011 16:10:44 +07:00 flash/cnu45.8-5-3TH1-6.sbn
    143     524917 Dec 29 2011 16:10:46 +07:00 flash/cnu42.8-5-3TH1-6.sbn
    144     524876 Dec 29 2011 16:10:48 +07:00 flash/cnu75.8-5-3TH1-6.sbn
    145     503753 Dec 29 2011 16:10:48 +07:00 flash/cnu31.8-5-3TH1-6.sbn
    146     500084 Dec 29 2011 16:10:50 +07:00 flash/cnu70.8-5-3TH1-6.sbn
    147     499644 Dec 29 2011 16:10:50 +07:00 flash/cnu41.8-5-3TH1-6.sbn
    148     496521 Dec 29 2011 16:10:52 +07:00 flash/music-on-hold.au
    149     340615 Dec 29 2011 16:10:54 +07:00 flash/dsp31.8-5-3TH1-6.sbn
    150     340615 Dec 29 2011 16:10:54 +07:00 flash/dsp42.8-5-3TH1-6.sbn
    151     340615 Dec 29 2011 16:10:56 +07:00 flash/dsp45.8-5-3TH1-6.sbn
    152     340615 Dec 29 2011 16:10:56 +07:00 flash/dsp75.8-5-3TH1-6.sbn
    153     264368 Dec 29 2011 16:10:58 +07:00 flash/DSP69xx.0-0-0-3.zz
    154     165355 Dec 29 2011 16:10:58 +07:00 flash/B016-1-0-3.SBN
    155     146463 Dec 29 2011 16:10:58 +07:00 flash/B015-1-0-3.SBN
    156      44896 Dec 29 2011 16:11:00 +07:00 flash/BOOT69xx.0-0-0-14.zz
    157      11601 Dec 29 2011 16:11:00 +07:00 flash/CME-8-0-Full-Readme-v.1.0.txt
    158       5134 Dec 29 2011 16:11:00 +07:00 flash/7970-71-75-Background-readme-v1.txt
    159       1916 Dec 29 2011 16:11:00 +07:00 flash/MISC-1.3.3.SBN
    160          0 Dec 29 2011 09:44:30 +07:00 flash/GUI
    161       1029 Dec 29 2011 16:39:40 +07:00 CiscoLogo.gif
    162       1019 Dec 29 2011 16:39:40 +07:00 CME_GUI_README.TXT
    163        953 Dec 29 2011 16:39:40 +07:00 Delete.gif
    164      16344 Dec 29 2011 16:39:40 +07:00 dom.js
    165        864 Dec 29 2011 16:39:40 +07:00 downarrow.gif
    166       6315 Dec 29 2011 16:39:42 +07:00 ephone_admin.html
    167       4558 Dec 29 2011 16:39:42 +07:00 logohome.gif
    168       3978 Dec 29 2011 16:39:42 +07:00 normal_user.html
    169      78428 Dec 29 2011 16:39:42 +07:00 normal_user.js
    170       1347 Dec 29 2011 16:39:42 +07:00 Plus.gif
    171        843 Dec 29 2011 16:39:44 +07:00 sxiconad.gif
    172        174 Dec 29 2011 16:39:44 +07:00 Tab.gif
    173       2496 Dec 29 2011 16:39:44 +07:00 telephony_service.html
    174        870 Dec 29 2011 16:39:44 +07:00 uparrow.gif
    175      10230 Dec 29 2011 16:39:44 +07:00 xml-test.html
    176        481 Dec 28 2011 13:05:32 +07:00 SCCP69xx.9-2-1-0.loads
    177      45308 Dec 28 2011 13:05:58 +07:00 BOOT69xx.0-0-0-14.zz.sgn
    178     224952 Dec 28 2011 13:06:24 +07:00 DSP69xx.0-0-0-8.zz.sgn
    179    2725992 Dec 28 2011 13:06:52 +07:00 SCCP69xx.9-2-1-0.zz.sgn
    180       3412 Dec 29 2011 16:39:46 +07:00 xml.template
    182     177314 Feb 17 2012 01:15:36 +07:00 crashinfo_20120217-011536-ict
    183     237859 Mar 8 2012 15:54:52 +07:00 crashinfo_20120308-155452-ict
    184     214488 Mar 28 2012 05:00:24 +07:00 crashinfo_20120328-050025-ict
    185     216265 Apr 19 2012 08:43:58 +07:00 crashinfo_20120419-084359-ict
    186        720 Dec 12 2012 15:57:10 +07:00 vlan.dat
    187     215451 May 30 2012 23:40:52 +07:00 crashinfo_20120530-234053-ict
    188     221236 Jun 21 2012 00:02:30 +07:00 crashinfo_20120621-000230-ict
    189     263610 Jul 19 2012 17:10:52 +07:00 crashinfo_20120719-171052-ict
    190      17026 Dec 27 2012 11:01:50 +07:00 pre_autosec.cfg
    67989504 bytes available (192163840 bytes used)
    4. sh
    (config-ephone)#type ?
      12SP    12SP+ and 30VIP phones
      6901    Cisco IP Phone 6901
      6911    Cisco IP Phone 6911
      6921    Cisco IP Phone 6921
      6941    Cisco IP Phone 6941
      6945    Cisco IP Phone 6945
      6961    Cisco IP Phone 6961
      7902    Cisco IP Phone 7902
      7905    Cisco IP Phone 7905
      7906    Cisco IP Phone 7906
      7910    Cisco IP Phone 7910
      7911    Cisco IP Phone 7911
      7912    Cisco IP Phone 7912
      7920    Cisco IP Phone 7920
      7921    Cisco IP Phone 7921
      7925    Cisco IP Phone 7925
      7926    Cisco IP Phone 7926
      7931    Cisco IP Phone 7931
      7935    Cisco IP Conference Station 7935
      7936    Cisco IP Phone 7936
      7937    Cisco IP Conference Station 7937
      7940    Cisco IP Phone 7940
      7941    Cisco IP Phone 7941
      7941GE  Cisco IP Phone 7941GE
      7942    Cisco IP Phone 7942
      7945    Cisco IP Phone 7945
      7960    Cisco IP Phone 7960
      7961    Cisco IP Phone 7961
      7961GE  Cisco IP Phone 7961GE
      7962    Cisco IP Phone 7962
      7965    Cisco IP Phone 7965
      7970    Cisco IP Phone 7970
      7971    Cisco IP Phone 7971
      7975    Cisco IP Phone 7975
      7985    Cisco IP Phone 7985
      8941    Cisco IP Phone 8941
      8945    Cisco IP Phone 8945
      CIPC    Cisco IP Communicator
      IP-STE  SCCP IP STE
      anl     SCCP Gateway (AN)
      ata     ATA  phone emulation for analog phone
      bri     SCCP Gateway (BR)
    I should go to next step ?
    Thank You
    Sarawut Sampaothong

    Hi Jorge,
    http://www.cisco.com/en/US/products/sw/voicesw/ps4625/products_configuration_example09186a00808f33eb.shtml
    Voice Register Global Parameters Configuration
    voice register global                    
    mode cme 
    !--- Set Cisco IOS SIP registrar to CME mode.
    source-address 192.168.10.1 port 5060
    !--- Set the source address for phone registration.
    max-dn 20
    !--- Set max extensions.
    max-pool 10
    !--- Set max phones.
    load 7970 SIP7 SIP70.8-2-1S
    !--- Specify phone loads for each phone type.
    load 3911 SIP3951.8-0-2-9
    !--- Specify phone loads for each phone type.
    authenticate register
    !--- Set authentication for phone registration.
    authenticate realm cisco.com
    tftp-path flash: 
    !--- Specify path for tftp files.
    create profile
    !--- Create configuration files for all phones.
    dialplan-pattern 1 4085251... extension-length 3 
    !--- Configure dial-plan pattern for the system.
    step . 1  I uplaod  APP3905.9-2-1-0.zz  and CP3905.9-2-1-0.loads to flash .
    step . 2
    I config
    (config-register-global)#load ?
      3905       Select the firmware load file for 3905
      3911       Select the firmware load file for 3911
      3951       Select the firmware load file for 3951
      6901       Select the firmware load file for 6901
      6911       Select the firmware load file for 6911
      6921       Select the firmware load file for 6921
      6941       Select the firmware load file for 6941
      6945       Select the firmware load file for 6945
      6961       Select the firmware load file for 6961
      7905       Select the firmware load file for 7905
      7906       Select the firmware load file for TNP 7906 phone
      7911       Select the firmware load file for TNP 7911 phone
      7912       Select the firmware load file for 7912
      7941       Select the firmware load file for TNP 7941 phones
      7941GE     Select the firmware load file for TNP 7941GE phones
      7942       Select the firmware load file for TNP 7942 phones
      7945       Select the firmware load file for TNP 7945 phones
      7960-7940  Select the firmware load file for Telecaster 7960 & 7940 phones
      7961       Select the firmware load file for TNP 7961 phones
      7961GE     Select the firmware load file for TNP 7961GE phones
      7962       Select the firmware load file for TNP 7962 phones
      7965       Select the firmware load file for TNP 7965 phones
      7970       Select the firmware load file for TNP 7970 phones
      7971       Select the firmware load file for TNP 7971 phones
      7975       Select the firmware load file for TNP 7975 phones
      8941       Select the firmware load file for 8941 phones
      8945       Select the firmware load file for 8945 phones
      8961       Select the firmware load file for RT 8961 phones
      9951       Select the firmware load file for RT 9951 phones
      9971       Select the firmware load file for RT 9971 phones
      ATA        Select the firmware load file for ATA
      ATA-187    Select the firmware load file for ATA-187
    Netbright_Router(config-register-global)#load 3905 ?
      WORD  firmware filename for 3905 [without .loads]
    (config-register-global)#load 3905 CP3905.9-2-1-0
    step 3 . all step Voice Register Global
    I should go to next step ?
    Thank You
    Sarawut Sampaothong

  • I am being forced to create 3 security question from your dropdown list and I can choose the questions but can't enter anything in the answer field??

    I am being forced to create 3 security question from your dropdown list and I can choose the questions but can't enter anything in the answer field??

    The problem is twenty three people leaving or twenty three thousand leaving has zero impact on a carrier with over 100 million customers. And they have the lowest churn rate. So if 10,000 or 20,000 or more churn out it means little to the carrier.
    If you have a real lawyer he/she will advise you that you have no case. The device was not lost or stolen by the carrier, you were not eligible for a new device, and like any business who employs large numbers of poorly trained personnel who make low wages what was told to you is not in writing. So a verbal exchange does not hold up.
    In fact in Verizon's customer agreement it has such a disclaimer against any verbal exchanges so if you have that agreement in writing, go get them.
    The posting on public forums and places like Face Book, Linkin, Google+ or a personal web site can open you up to a lawsuit for Dilution of Trade Name, and other offences. However if you have proof then go for it.
    Unfortunately that is how big business works today. A pity

  • Hi; i have questions in Illustrator cs6 in windows 8:

    hi; i have questions in Illustrator cs6 in windows 8:
    adobe illustrator has detected some registry association issues, which need to be rectified for illustrator to work properly. to fix this, right click illustrator.exe and select "run as administrator" to have the required privileges. illustrator will then attempt to correct this problem.
    I, of course, choose yes and everything starts up with no problem. I close Illustrator and start it up again and I get the same error. I can use Illustrator with no problems, but this error comes up every single time I start Illustrator.

    Issue: Adobe Illustrator has detected some registry association issues, which need to be rectified for Illustrator to work properly.  To fix this, right click Illustrator.exe and select "Run as Administator" to have the required privileges.  Illustrator will then attempt to correct this problem
    If this is happening on non admin accounts the below solution can fix the issue.
    Resolution: Make  the user an administrator and open the Illustrator  then removed the administrator rights and if you launch the application again, it will use the registry created in admin mode and this will corrected the problem.

  • I created my itunes account YEARS ago!! And I can't remember the answers to my security questions? Because I cannot remember the answers I cannot make purchases in the app store. Please help me create new security questions.

    I created my itunes account YEARS ago!! And I can't remember the answers to my security questions? Because I cannot remember the answers I cannot make purchases in the app store. Please help me create new security questions. Please help me.

    If you have a rescue email address (which is not the same thing as an alternate email address) set up on your account then you can try going to https://appleid.apple.com/and click 'Manage your Apple ID' on the right-hand side of that page and log into your account. Then click on 'Password and Security' on the left-hand side of that page and on the right-hand side you might see an option to send security question reset info to your rescue email address.
    If you don't have a rescue email address (you won't be able to add one until you can answer 2 of your questions) then see if this user tip helps you get the questions reset :https://discussions.apple.com/docs/DOC-4551
    e.g. you can try contacting iTunes Support :http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Account Management , and then try Apple ID Account Security
    or try ringing the number for Apple  in your country and ask to talk to the Account Security Team : http://support.apple.com/kb/HE57

  • Hi All, I have question about the iMac operating system. I have the last updated. The problem when I manage the place of the folder windows they are all mixing up. I mean they not on the place where I left them. how to set they stay on the same place. Tks

    Hi All, I have question about the iMac operating system. I have the last updated. The problem when I manage the place of the folder windows they are all mixing up. I mean they not on the place where I left them. how to set they stay on the same place? I know there are different possibilities to set.
    I tried but it not helped for me. What I can do? How and where can set this they stay on their place?
    Thanks.
    laci

    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Repair Database. If that doesn't help, then try again, this time using Rebuild Database.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. (In Library Manager it's the FIle -> Rebuild command)
    This will create an entirely new library. It will then copy (or try to) your photos and all the associated metadata and versions to this new Library, and arrange it as close as it can to what you had in the damaged Library. It does this based on information it finds in the iPhoto sharing mechanism - but that means that things not shared won't be there, so no slideshows, books or calendars, for instance - but it should get all your events, albums and keywords, faces and places back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one. 
    Regards
    TD 

  • HT5312 Dear Apple Support ,  I can't remember my security question answers , so Please help me to Create new Security Question for my Account .  Best wishes

    Dear Apple Support , I can't remember my security question answers , so Please help me to Create new Security Question for my Account .  Best wishes
    <Email Edited by Host>

    Welcome to the user to User Technical Support Forum provided by Apple.
    Please do not post personal information on a Public Forum.
    I have requested the Hosts remove it for you
    For your issue...
    See Here > Apple ID: Contacting Apple for help with Apple ID account security
              Ask to speak with the Account Security Team...
    Or Email Here  >  Apple  Support  iTunes Store  Contact
    More Info >  Apple ID: All about Apple ID security questions
    Note:
    You can only set up and/or change a Rescue Email Before you forget the questions/answers.

  • I can't remember my security question answers , so Please help me to Create new Security Question for my Account .

    rt ,
    This is ***majed*** ,I can't remember my security question answers , so Please help me to Create new Security Question for my Account .
    Best wishes,

    If you have a rescue email address (which is not the same thing as an alternate email address) set up on your account then the steps half-way down this page give you a reset link on your account : http://support.apple.com/kb/HT5312
    If you don't have a rescue email address (you won't be able to add one until you can answer your questions) then you will need to contact iTunes Support / Apple in your country to get the questions reset.
    Contacting Apple about account security : http://support.apple.com/kb/HT5699
    When they've been reset (and if you don't already have a rescue email address) you can then use the steps half-way down the HT5312 link above to add a rescue email address for potential future use

  • I can't remember my security question answers , so please help me to Create new Security Question for my Account : ********  , Best wishes

    I can't remember my security question answers , so please help me to Create new Security Question for my Account : **********
    , Best wishes
    <Personal Information Edited by Host>

    We are fellow users here on these user-to-user forums, you're not talking to iTunes Support nor Apple - I've asked the hosts to remove your email address from your post (it's not a good idea to post personal info on any public forum).
    If you have a rescue email address (which is not the same thing as an alternate email address) on your account then the steps half-way down this page will give you a reset link on your account : http://support.apple.com/kb/HT5312
    If you don't have a rescue email address (you won't be able to add one until you can answer your questions) then you will need to contact Support in your country to get the questions reset.
    Contacting Apple about account security : http://support.apple.com/kb/HT5699
    When they've been reset (and if you don't already have a rescue email address) you can then use the steps half-way down the HT5312 link above to add a rescue email address for potential future use

  • I have question about hooking up an external hdd to a time capsule and still have my printer hooked up as well. Anyone got any tips for me, how to do it and what brand of harddrive that will work best for me 1 or 2 TB

    i have question about hooking up an external hdd to a time capsule and still have my printer hooked up as well. Anyone got any tips for me, how to do it and what brand of harddrive that will work best for me 1 or 2 TB

    You just need a powered hub.. if you already use one then fine.
    Plug in just about any external hard disk will work fine. Format has to be readable by the TC.. ie fat32.. or much better HFS+.. plug it into a Mac to prepare the drive.
    Pick whatever size suits.. nowadays 2TB are most economical.
    WD, Seagate have goobled up all the minor players.. so pick one.
    Whatever suits your budget and asthetics.
    NOTE.. The USB on the TC is fine for printers.. IMHO it is the wrong way to go with USB disks.. use the internal disk of the TC.. USB is less than half the native speed plugged into a Mac.. TC to USB is slow.. far slower than internal drive.. or using external drive as external.

Maybe you are looking for