Signed Applet - Using same alias while development

Hi,
I am working on Embedded Java Signed Applet. My applet using the TCP/IP thus required to load each time to my Lantronix XPort.
The problem is, every time I change something in the applet, I need to run the following commands again and finally load to Lantronix XPort.
And every time, I required to change the alias name i.e. signapplet17 in the following commands.
Is there any easy way while developing the signed applet
e.g. we can use the same alias name each time i.e. signapplet1 ( I reached to signapplet17)
Or we can avoid the following commands while developing.
jar cmf mainClass.txt DataMain.jar *.class
: Generate key pairs
keytool -genkey -alias signapplet17 -keystore mykeystore -keypass mykeypass -storepass mystorepass
: Sign the JAR file
jarsigner -keystore mykeystore -storepass mystorepass -keypass mykeypass -signedjar SDataMain.jar DataMain.jar signapplet17
: Export the public key certificate
keytool -export -keystore mykeystore -storepass mystorepass -alias signapplet17 -file mycertificate.cer
Thanks.

This is my code that i use to read the graph:
private Graph<Integer, Integer> loadGraph(int year, String type) {
     String graph_dir = ProjectDir.data_dir + "input/Network/vt_kn." + year + "-" + year + "/";
     String graph_name = "vt_kn." + year + "-" + year +".intern." + type;
          Graph<Integer, Integer>graph = new UndirectedSparseMultigraph<Integer, Integer>();
          try{
               GraphMLReader<Graph<Integer, Integer>, Integer, Integer> gmlReader
                    = new GraphMLReader<Graph<Integer, Integer>, Integer, Integer>();     
               gmlReader.load(graph_dir + graph_name +".graphml", graph);               
          } catch (Exception e) {
               e.printStackTrace();
System.out.println("loaded: " + graph_name);
return graph;
public class ProjectDir {
     public static final String data_dir = "F:/Apache/Tomcat 6.0/webapps/ROOT/app/Data/";
     public static final String script_dir = "../Script/";
     //F:/Apache/Tomcat 6.0/webapps/ROOT/VT/data/
Could you tell me how i could change this code so that i can load from a url instead of a file?

Similar Messages

  • Default security context for signed applets using WinXP+IE8

    What is the default security context for signed applets from the internet zone using Java 6 and WinXP+IE8 combination? My guess is that all file and socket access available for the user's Windows account is provided to the applet as well. Is this correct and if so, is there a way to limit these access privileges for signed applets from the internet zone?
    This information is surprisingly difficult to find given how security concious people now are using the internet.

    AntonBoer wrote:
    Thank you for your swift reply.
    Unfortunately your answer reflects to my worst fears. Frankly I find this security model naiive. Anyone with euros can get their applet signed so that is no security control at all.The same naive security model applies to just about anything signed and downloaded; not just to Java Applets.
    >
    Working for a corporate IT how I am supposed to allow Java installations on any of our computers with internet access? That automatically means I am providing them as platforms to whoever wishes to run Java code on them (given that the user of course visits the web site). I would have expected Sun to put more effort into this but it appers nothig have changed in this regard for 10 years.I don't see this as a Sun problem; it is indicative of what I consider to be a general security weakness for all computer systems. For example, for Windows, Vista just added more user involvement in the trust process but it still allows programs to run pretty much unconstrained if the user agrees to them running.
    For some time I have advocated a more fine grained approach. I would like to see ALL programs run in a sandbox that a user can specify what and what cannot be done by each individual program. Unfortunately, this would annoy the hell out of most users so it has little chance of every of ever being accepted. The average user just wants a run-and-forget-about-security model.

  • Signed applet using ssl connection Problem!

    Hi all.
    The problem is that when I sign my applet and try to connect trough SSL the IAIK throughs ClassCastException when trying to load the client certificate.
    1. I added client certificate ( DER format ) to the applet jar.
    2. I signed an applet with another certificate so it whould have all permissions.
    3. My applet tried to create SSL connection and failed throwing
    java.lang.ClassCastException: iaik.asn1.structures.Name

    I have found a solution for a similar problem. Check out http://java.sun.com/j2se/1.4.1/docs/guide/security/jsse/JSSERefGuide.html#Troubleshooting

  • How to read client's home directory files using  signed applets

    hi
    i want to konw the exact procedure for the creation of signed applets . using that i want to read my client files....
    Thanks
    Dileep

    google: http://www.google.com/search?q=how+to+sign+an+applet

  • Problems with signed Applet for File Download under JRE 1.4 (works with 1.3

    Dear all,
    i encountered a very strange behaviour with JRE 1.4x. A signed applet used for file download worked on all platforms (Windows NT, 2000 and XP wth/wthout SP...) until I installed JRE 1.4.x (1.4.1 or 1.4.2)
    I get an EOFException when downloading binary files (for ASCII it works fine) when trying to readByte() from a DataInputStream. But not immideately, but after x bytes in the while-loop. Security is fine (I know there have been changes to that in jre 1.4, the applet itself can be started an runs with ASCII files for transfer)
    Does anyone know, what has changed in jre1.4.
    As I said, it works fine under jre 1.3.x
    The relevant code is below: byte bt = dis.readByte(); causes the error
    try{
    // Get URL from Server
    URL uFile = new URL(sFilename);
    sThisURLFile = uFile.getFile();
    Integer inte = new Integer(i);
    //open input stream for the file on server
    DataInputStream dis = new DataInputStream(new BufferedInputStream
    (uFile.openConnection().getInputStream()));
    //open output stream for the file on local drive
    String sFilenameOnly = sThisURLFile.substring(sThisURLFile.lastIndexOf('/')+1);
    int iDotPos = sFilenameOnly.lastIndexOf(".");
    String sExt;
    if (iDotPos > 0) {
    sExt= sFilenameOnly.substring(iDotPos);
    } else {
    sExt = "";
    File fileOut = new File(sDownloadDir + sThisURLFile.substring(sThisURLFile.lastIndexOf('/')+1) );
    DataOutputStream dos = new DataOutputStream(new
    BufferedOutputStream(new FileOutputStream(fileOut)));
    //read one byte from input stream, and write that byte to output stream
    long nByte = 0;
    int iCnt = 0;
    iFilesizeDone ++;
    while (nByte < iFilesize){
    String sErrPs = new String();
    try{
    sErrPs = "00";
    byte bt = dis.readByte();
    sErrPs = "01";
    dos.writeByte(bt);
    } catch (EOFException ee)
    System.err.println("internal EOFException: " + ee.getMessage());
    System.out.println("Error Filesize is " nByte " of " iFilesize "---" + sErrPs);
    break;
    nByte++;
    iFilesizeDone ++;
    iCnt ++;
    if(iCnt >= 10240) {
    ShowProgress(nByte, iFilesize, iFilesizeDone, iFilesizeTotal); // repaint does not work during init-procedure
    iCnt = 0;
    line = "Progress: Total: " + ((iFilesizeDone*100)/iFilesizeTotal) + " perc, " + iFilesizeTotal/1024 +" kbytes" ;
    labLine.setText(line);
    //dos.flush(); // improves Client performance (Agent-Call!)
    dis.close();
    dos.close();
    }// End try
    catch (EOFException ee)
    System.err.println("EOFException: " + ee.getMessage()e);
    catch (SecurityException se)
    System.err.println("SecurityException: " + se.getMessage());
    catch (IOException ioe)
    System.err.println("IOException: " + ioe.getMessage());

    perhaps they've changed something with the file blocking.
    btw, you should try to use something like this
    DataInputStream dis = new DataInputStream(is);
    byte[] buffer=new byte[8192];
    int numBytesRead;
    while ( dis.available()>0 ) {
         numBytesRead = dis.read(buffer);
    }               

  • Security Exception executing a signed Applet

    Dear All,
    I get a security exception (file permission ) when i try to execute a signed applet using java plugin version 1.4.2._02, the same applet works good in java plugin version 1.3.1_04.
    Any ideas...???
    Thanks in advance
    KSRK123

    Although not a solution for us as we are tied to the 1.2.2 plugin for now, we did try out 1.3.1_10 and it worked fine without any modifications to cacerts.
    Please see our listings (below) and let us know if anything comes to mind. I'm fairly new to this but I thought the whole idea with 1.2.2 was that we shouldn't have to mess with the cacerts or policy files on a clients machine. Rather the Root Certificate of the browser was used for verification??
    http://forum.java.sun.com/thread.jsp?forum=32&thread=480668&tstart=0&trange=15
    http://forum.java.sun.com/thread.jsp?forum=63&thread=480895&tstart=0&trange=15

  • Signed Applet aah ... im getting crazy...

    Hello
    I have looked on all tutorials i can find about making an applet an signed applet, but none have WORKED for me.
    I want the applet to be able to communicate with a server using sockets , if im right applet arent allowed to communicate with sockets if the applet isnt signed.
    If im right you have to make the applet to a jar file to get it signed , am i right?
    Can you please write an tutorial about how to make the applet signed (to make it able to communicate with an server using sockets).
    Please make it like stepped like this:
    1. Blablablabla
    2. Blablablabla
    Thank you so much if you post.
    /javaguy
    PS. if you wonder why i ask this questiong the answer is that im trying to make an online game.

    You can use signing tool from Mozilla ,
    http://www.mozilla.org/projects/security/pki/nss/tools.
    Use this tutorial,
    http://java.sun.com/javase/6/docs/technotes/guides/plugin/developer_guide/rsa_signing.html
    See this topic Signing Applets Using Netscape Signing Tool
    It has worked for me. Let us know if you face any problem with this.
    --Sachin                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Creating RSA signed applets

    Is there anyway by whicch I can test my RSA signed applet by using self issued certificates??
    I created a RSA signed applet using the documentation available on
    http://java.sun.com/products/plugin/1.3/docs/rsa_signing.html
    I used a self-signed certificate but it doesn't work. It gives me a security exception.

    Found a way :)
    Details at http://forum.java.sun.com/thread.jsp?forum=63&thread=152882
    Cheers
    Abraham Khalil

  • Signed Applet not loading on Mac OS X if using HTTPS protocol

    Hi All,
    I need to open a trusted applet on Mac OS 10.2. The applet works fine if using HTTP protocol. But if the protocol used is HTTPS the the applet does not loads and "javax.net.ssl.SSLException - untrusted server cert chain" exception comes on the console.
    The error comes for both - Verisign and javakey - signed applet.
    On seaching for possible solution on the net, i came across following link: http://www.macosxhints.com/article.php?story=20020525101202503&query=Workaround+for+secure+Java+applet+problems
    It says that this is Mac's known bug and gives the workaround as:
    1. Access the problematic site with Internet Explorer on Windows. Click on the padlock item and export the certificate to a file.
    2. Copy the certificate to your Mac.
    3. Use the command
    sudo keytool -import -trustcacerts -keystore /Library/Java/Home/lib/security/cacerts -file mycert.cer
    to import the certificate file to your keystore (substitute mycert.cer with the name of the file containing the certificate). The keystore is password protected - the default password is "changeit".
    4. Restart your browser
    But the client cannot be asked to do all this to run the applet.
    Is this problem being solved by Mac in their java implementation or is there any other possible solution?
    Thanx in advance.
    Regards,
    Charu

    I am experiencing the same problem - I notice it does not happen on OS9.2 using IE but appears a problem on all browsers on OSX
    Apple gave me the following reply.....
    Re: Bug ID# 3268633: cannot load applet class under https connection
    Hello Andrew,
    Thank you for bringing this problem to our attention. We have received feedback
    from engineering on your
    reported issue.
    Please know that to get Java to recognize the certificate you will need to do
    one of two things, depending
    on which VM you are using. Since you want it to work with Internet Explorer, we
    will assume Java 1.3.1.
    In Java 1.3.1 you'll need to add the certificate to
    /Library/Java/Home/lib/security/cacerts using
    /usr/bin/keytool to import the certificate into the certificate database.
    In Java 1.4.1 you should be able to just add the certificate to the keychain
    using certtool. For more
    details on how to do this, please refer to the information found at
    <http://java.sun.com/j2se/1.4.1/docs/tooldocs/solaris/keytool.html>. After
    doing so, if you should require
    further help from Apple in resolving this issue, we recommend that you request
    assistance from Developer
    Technical Support. This must be done by filing a Technical Support Incident.
    So I am supposed to tell every Mac user to do the above am I?!!!

  • I'm trying to develop a PKI enabled plugin for firefox using add-on builder. how do you call a java applet using add-on javascript on add-on builder ?

    i have a signed applet which encrypts and digitally signs text information. i need to call this applet from the add-on javascript on firefox's add-on builder . how do i do it ?
    i've tried using contentScript and contentScriptFile to load the html file which calls the applet vis applet tag , it doesnt work.
    this is the error which croped up:
    Java Plug-in 1.6.0_26
    Using JRE version 1.6.0_26-b03-383-11A511 Java HotSpot(TM) 64-Bit Server VM
    User home directory = /Users/sreer1990
    c: clear console window
    f: finalize objects on finalization queue
    g: garbage collect
    h: display this help message
    l: dump classloader list
    m: print memory usage
    o: trigger logging
    q: hide console
    r: reload policy configuration
    s: dump system and deployment properties
    t: dump thread list
    v: dump thread stack
    x: clear classloader cache
    0-5: set trace level to <n>
    java.lang.NullPointerException
    at sun.net.www.ParseUtil.toURI(ParseUtil.java:261)
    at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:861)
    at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:836)
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1172)
    at sun.plugin.PluginURLJarFileCallBack.downloadJAR(PluginURLJarFileCallBack.java:81)
    at sun.plugin.PluginURLJarFileCallBack.access$000(PluginURLJarFileCallBack.java:48)
    at sun.plugin.PluginURLJarFileCallBack$2.run(PluginURLJarFileCallBack.java:150)
    at java.security.AccessController.doPrivileged(Native Method)
    at sun.plugin.PluginURLJarFileCallBack.retrieve(PluginURLJarFileCallBack.java:127)
    at sun.net.www.protocol.jar.URLJarFile.retrieve(URLJarFile.java:186)
    at sun.net.www.protocol.jar.URLJarFile.getJarFile(URLJarFile.java:50)
    at sun.net.www.protocol.jar.JarFileFactory.get(JarFileFactory.java:70)
    at sun.net.www.protocol.jar.JarURLConnection.connect(JarURLConnection.java:104)
    at sun.plugin.net.protocol.jar.CachedJarURLConnection.connect(CachedJarURLConnection.java:201)
    at sun.plugin.net.protocol.jar.CachedJarURLConnection.getJarFileInternal(CachedJarURLConnection.java:145)
    at sun.plugin.net.protocol.jar.CachedJarURLConnection.getJarFile(CachedJarURLConnection.java:91)
    at com.sun.deploy.security.DeployURLClassPath$JarLoader.getJarFile(DeployURLClassPath.java:752)
    at com.sun.deploy.security.DeployURLClassPath$JarLoader.access$800(DeployURLClassPath.java:631)
    at com.sun.deploy.security.DeployURLClassPath$JarLoader$1.run(DeployURLClassPath.java:698)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sun.deploy.security.DeployURLClassPath$JarLoader.ensureOpen(DeployURLClassPath.java:690)
    at com.sun.deploy.security.DeployURLClassPath$JarLoader.<init>(DeployURLClassPath.java:652)
    at com.sun.deploy.security.DeployURLClassPath$3.run(DeployURLClassPath.java:400)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sun.deploy.security.DeployURLClassPath.getLoader(DeployURLClassPath.java:389)
    at com.sun.deploy.security.DeployURLClassPath.getLoader(DeployURLClassPath.java:366)
    at com.sun.deploy.security.DeployURLClassPath.getResource(DeployURLClassPath.java:230)
    at sun.plugin2.applet.Plugin2ClassLoader$2.run(Plugin2ClassLoader.java:966)
    at java.security.AccessController.doPrivileged(Native Method)
    at sun.plugin2.applet.Plugin2ClassLoader.findClassHelper(Plugin2ClassLoader.java:955)
    at sun.plugin2.applet.Applet2ClassLoader.findClass(Applet2ClassLoader.java:134)
    at sun.plugin2.applet.Plugin2ClassLoader.loadClass0(Plugin2ClassLoader.java:250)
    at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Plugin2ClassLoader.java:180)
    at sun.plugin2.applet.Plugin2ClassLoader.loadClass0(Plugin2ClassLoader.java:240)
    at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Plugin2ClassLoader.java:180)
    at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Plugin2ClassLoader.java:161)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:247)
    at sun.plugin2.applet.Plugin2ClassLoader.loadCode(Plugin2ClassLoader.java:675)
    at sun.plugin2.applet.Plugin2Manager.createApplet(Plugin2Manager.java:3046)
    at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Plugin2Manager.java:1498)
    at java.lang.Thread.run(Thread.java:680)
    Exception: java.lang.NullPointerException

    Try posting at the Web Development / Standards Evangelism forum at MozillaZine. The helpers over there are more knowledgeable about web page development issues with Firefox. <br />
    http://forums.mozillazine.org/viewforum.php?f=25 <br />
    You'll need to register and login to be able to post in that forum.

  • How can i use the commapi in an signed applet

    I have a simple code of listing all system ports,
    the code works in a simple program
    but when I use it in a signed applet i have this error :
    java.lang.NoClassDefFoundError: javax/comm/CommDriver
    Thank you for your help

    Did you include the comm api jar file in the archive tag of your applet tag?
    something along the lines of:
    archive="myapplet.jar,commapi.jar"
    and make sure it is deployed in the same directory as your myapplet.jar.

  • Problem while I try to run Applet using Appletviewer

    Hi,
    I have developed a simple Applet using JDeveloper 1.1, here I am
    using a Dataset, a QueryDataSet and a grid.
    When I run the Applet within JDeveloper it runs just fine, but
    when I use the Appletviewer, the Applet starts of well but gives
    the following error:
    "borland.jbcl.dataset.DataSetException: Operation cannot be
    performed on an open DataSet"
    Please let me know what I am doing wrong.
    Thanks,
    Prag.
    null

    This may be a problem with JDK inconsistency problem. Make sure
    your appletviewer IS Java 1.1 compliant. Also, have you properly
    deployed your applet to a jar file?
    Here are the instructions for deploying a database applet:
    Hope this helps..
    -Chris
    Task 7: Deployment
    The following requirements apply when deploying a database
    applet:
    The database must be on the same server as the Web Server (or use
    a connection manager).
    Must have a JDK 1.1 compatible browser, such as Netscape 4.0.4 or
    Internet Explorer 4.0.
    Creating the Java Archive (.jar) file
    Select File|New
    Click the Deployment tab
    Double-click the Simple Archive Profile icon.
    The Simple Archive Profile wizard (SAP wizard) is displayed.
    On the Welcome page, click Next.
    On page one of the SAP wizard, enter or browse to set the Archive
    Path. Set the name of the jar to db_applet.jar.
    Click Next.
    Page two displays the names of all files in your project. Accept
    the default value of deploying all of the files and click Next.
    On page three, Dependencies, shift-click each item in the list
    "List items that you do not want to appear in the archive to
    select them all.
    Click Remove.
    In most cases, developers prefer to ship only their own classes
    in the .jar file, with separate .jars that store common files
    used by all of their Java programs. For the sake of simplicity,
    you are going to create a .jar file that includes all of the
    classes necessary to run your applet. By removing all of the
    libraries, you indicate that no classes should be omitted from
    your deployed .jar file.
    Click Finish.
    Deploying the applet
    Using a file manager, copy the db_applet.jar file you have just
    created to the Web Server.
    Copy the tutorial.EmpApplet.html file to the same directory as
    your .jar file.
    The tutorial.EmpApplet.html file can be found in the project
    directory (by default, the \myprojects directory under the
    JDeveloper root directory) or you can extract the file from the
    .jar using any PK-ZIP compatible file compression utility.
    Using any text editor, modify the <APPLET> tag in the
    tutorial.EmpApplet.html file to include an ARCHIVE tag that
    references your .jar file. Your <APPLET> tag should include this
    information:
    <APPLET CODEBASE = "." CODE = "tutorial.EmpApplet.class"
    NAME = "TestApplet" WIDTH = 400 HEIGHT = 300 HSPACE
    = 0 VSPACE = 0 ALIGN = middle ARCHIVE =
    "db_applet.jar">
    To test the applet, open the tutorial.EmpApplet.html file through
    a web server using a Java 1.1 enabled browser.
    Congratulations! You have completed your first database applet.
    You created a program that queries data from Oracle tables,
    displays the data in data-aware controls, allows for viewing and
    editing, displays status messages to a StatusBar, and includes a
    NavigatorControl component.
    Prag Ratra (guest) wrote:
    : Hi,
    : I have developed a simple Applet using JDeveloper 1.1, here I
    am
    : using a Dataset, a QueryDataSet and a grid.
    : When I run the Applet within JDeveloper it runs just fine, but
    : when I use the Appletviewer, the Applet starts of well but
    gives
    : the following error:
    : "borland.jbcl.dataset.DataSetException: Operation cannot be
    : performed on an open DataSet"
    : Please let me know what I am doing wrong.
    : Thanks,
    : Prag.
    null

  • IMessage - when two people use same password to sign into iTunes and Apple

        Myself and partner both use the same password to sign in to Apple and iTunes - we have different emails but use same email to sign in, and we both have different Apple iPhone numbers.
    iMessages used to work really well - he would get his texts on his phone, and mine on mine. Now it's all over the place.
    How do I fix this? I don't know if I've done anything, or if the system has changed. But very frustrating.
    Thanks,
    Belinda

    I would recommend creating a separate Apple ID for yourself and then set up Family Sharing/Home Sharing in order to continue sharing iTunes content between the two accounts. This will help keep your iMessage and FaceTime services separate between the two of you while also saving you from having to purchase content twice.

  • Developing applets using ocf

    Hello
    The wallet demo is a frame window based application using swing
    We wanted an applet version of the same
    So we changed the extends frame part to extends JFrame
    But there are security exceptions which are thrown
    So we refered the programmers guide for OCF
    But it discusses only for java platform versions 1.1 and 1.2
    It is mentioned that the security models are changing
    Where do we get information on how to develop applets using OCF framework for java platform 1.3
    Are there some examples for the same
    Thanks in advance
    Regards
    Kumar

    Hello
    Thanks once again
    But what are the resources that the applet is trying to access?
    What are the permissions to be given.
    Any small examples could be given
    Infact now we are able to run it in appletviewer but not using IE.
    The exception thrown is
    java.security.AccessControlException access denied java.io.FilePermission images/initialize.gif read
    So what permissions to set and where
    Is it possible to grant all permissions to start with
    policy.grant(All)
    Are there seperate permissions so that one directory alone or a file alone is accessed
    Thanks once again
    kumar
    It's related to J2SE not Java Card.
    Applets run in a sandbox by default, whic offers very
    little access to resources of the machine it's running
    on. It's a security feature that prevents your machine
    from very easily being compromised. To set outside
    that sandbox requires changes to the java.policies and
    java.security.policies, and certificates.

  • How to develop signed applet

    Hello Friends
    I am working on chat application using applet.
    But simple applet throw exception for different database server than application server.
    So how can solve this problem ?
    Is Signed Applet a solution ?
    If yes how to develop signed applet ?

    Hello Friends
    I am working on chat application using applet.
    But simple applet throw exception for different
    database server than application server.
    So how can solve this problem ?Best by not letting your applet access the database, and letting the application server do that instead.
    Is Signed Applet a solution ?Yes.
    If yes how to develop signed applet ?http://www.google.com/search?hl=en&q=how+to+sign+an+applet

Maybe you are looking for

  • OIM 11g R2 - Setting a field as mandatory while provisioning through catalo

    Hi, May I know how i can make a field as mandatory (Red Asterick) while trying to provision an account through catalog wizard.I dont see any option to set required=true while creating a form for an application instance.Thanks.

  • Issue with HelveticaNeue text not being included when printing to Adobe PDF?

    I have a document (Word 2010 docx) with a section of HelveticaNeue text on the front page that when printing through Adobe PDF the text does not appear. Using Acrobat 9.4.6 Tried the same document with: Win2Pdf - Displays correctly Converted to .doc

  • Do I need to open ports for NTP?

    I just noticed that my hwclock was off by nearly 30 seconds. It's almost certainly due to the recent initscripts update. As I was looking into resetting the clock, I found out that openntpd is deprecated so I've switched to ntp, configured the daemon

  • Activity Prices as Zero and in Decimal

    Dear Gurus, In accordance to our project requirement we need to fulfill the following two scenarios:- a) Activity Prices as Zero. b) Activity pricess in 4 decimal places, eg, 4.8989. The problem is a) When I put the activity price as 0, the system do

  • What is Self Referencing Synonym?

    Who can explain to me with an example? I searched from metalink and google, can get much useful information. Thanks!