Applet digital certificate is diplaying before applet loads

Hi All,
I have a drop-down in a jsp page. I want to display a signed applet when I select a particular option from that drop-down list.
In http mode the digital certificate is displaying only when I select that particular option from dropdown list. (working fine)
Problem:
But in https mode the digital certificate is diplaying whenever that jsp loads.(i.e. certificate is diplaying before selecting an value from dropdown list)
Suggestions please.
Thanks,
Krishna

I am having a similar issue.  Clients using a system running an old version of Crystal Reports are encountering a warning that the digital signature has expired.  It appears to only affect clients using Java 1.5.0 and newer.
Is there a way to update the digital signature?

Similar Messages

  • Login applet digital signature

    Hello,
    The digital signature of the login applet is only valid from: Wed Sep 01
    02:00:00 CEST 2004 to Fri Sep 02 01:59:59 CEST 2005, so I get a warning
    when I login via Webbrowser. I'm using SGD EE 4.1. Is there an update
    available, or do I have to migrate to 4.2?
    Sincerely,
    Robert Niess

    I am also having a problem with the SGD login applet signature being outdated? Is there any patch to this issue? It may be related to another issue I am having.

  • Applet HelloWorld class HelloWorld could not be loaded.

    Dear Colleagues
    I am very new to Java, but have followed the advice of a number of people here and read one or two tutorials.
    I thought I had managed to write my first HelloWorld! application/applet in that I can see HelloWorld.java and HelloWorld.class in the bin folder in MS-DOS, but once I had coded the HTML page to view it (both in Netscape and Explorer) I received the following message in the status bar:
    Applet HelloWorld class HelloWorld could not be loaded.
    The HTML page has been written exactly as it should be and the HelloWorldApp class file, the HelloWorldApp (File for Forte for Java), the HelloWorld (File for Forte for Java), and the HTML page are all located together in the bin folder of the jdk1.3.1 directory.
    In my C:\Autoexec.bat file I have the following:
    SET BLASTER=A220 I7 D1 T2
    SET SNDSCAPE=C:\WINDOWS
    rem - By Windows Setup - C:\WINDOWS\COMMAND\MSCDEX.EXE /D:CD1
    @ECHO OFF
    PROMPT $P$G
    PATH=C:\WINDOWS;C:\WINDOWS\COMMAND;C:\JDK1.3\BIN
    SET PATH=%PATH%;C:\WINDOWS\Twain_32\Scanwiz;C:\WINDOWS\Twain\Scanwiz
    SET PATH=%PATH%;C:\PROGRA~1\COMMON~1\MDLSHA~1\ISIS
    SET CLASSPATH=
    Any advice on what I am doing wrong would be appreciated.
    Thank you.
    Steve Higham

    The could be several things here that are the problem. Firstly doe the applet runb using the appletviewer. If so then there is problably a problem with the HTML code you are using to call the Applet. If the HTML file esides in a different directory than the .class file then make sure the 'CODEBASE' field points to the directory containing the .class file. Can you post your HTML for us to see?
    Ash..

  • Applet that archieve jar file fail to load picture

    hello...
    i already can display my applet , but the ploblem is the applet canot display the picture...
    the class that i include in the jar file is can run and will display the picture...
    wat is the ploblem?
    thanks...

    This is my full code
    package dir.yew;
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import java.util.*;
    import java.applet.*;
    import javax.swing.*;
    import javax.swing.tree.*;
    import javax.swing.event.*;
    public class DirTree
         extends JPanel {
         public static final String APP_NAME = "Directories Tree";
         public static final ImageIcon ICON_COMPUTER =
              new ImageIcon("computer.gif");
         public static final ImageIcon ICON_DISK =
              new ImageIcon("disk.gif");
         public static final ImageIcon ICON_FOLDER =
              new ImageIcon("folder.gif");
         public static final ImageIcon ICON_EXPANDEDFOLDER =
              new ImageIcon("expandedfolder.gif");
         protected JTree  m_tree;
         protected DefaultTreeModel m_model;
         protected JTextField m_display;
         public DirTree() {
              DefaultMutableTreeNode top = new DefaultMutableTreeNode(
                   new IconData(ICON_COMPUTER, null, "My Computer"));
              DefaultMutableTreeNode node;
              File[] roots = File.listRoots();
              for (int k=0; k<roots.length; k++) {
                   node = new DefaultMutableTreeNode(new IconData(ICON_DISK,
                        null, new FileNode(roots[k])));
                   top.add(node);
                node.add( new DefaultMutableTreeNode(new Boolean(true)));
              m_model = new DefaultTreeModel(top);
              m_tree = new JTree(m_model);
              m_tree.putClientProperty("JTree.lineStyle", "Angled");
              IconCellRenderer renderer = new
                   IconCellRenderer();
              m_tree.setCellRenderer(renderer);
              m_tree.addTreeExpansionListener(new
                   DirExpansionListener());
              m_tree.addTreeSelectionListener(new
                   DirSelectionListener());
              m_tree.getSelectionModel().setSelectionMode(
                   TreeSelectionModel.SINGLE_TREE_SELECTION);
              m_tree.setShowsRootHandles(true);
              m_tree.setEditable(false);
                   JScrollPane splitPane = new JScrollPane(
              new JScrollPane(m_tree)
              setLayout( new BorderLayout() );
              add( splitPane );
         DefaultMutableTreeNode getTreeNode(TreePath path) {
              return (DefaultMutableTreeNode)(path.getLastPathComponent());
         FileNode getFileNode(DefaultMutableTreeNode node) {
              if (node == null)
                   return null;
              Object obj = node.getUserObject();
              if (obj instanceof IconData)
                   obj = ((IconData)obj).getObject();
              if (obj instanceof FileNode)
                   return (FileNode)obj;
              else
                   return null;
           class DirExpansionListener implements TreeExpansionListener {
            public void treeExpanded(TreeExpansionEvent event) {
                final DefaultMutableTreeNode node = getTreeNode(
                    event.getPath());
                final FileNode fnode = getFileNode(node);
                Thread runner = new Thread() {
                        public void run() {
                             if (fnode != null && fnode.expand(node)) {
                                  Runnable runnable = new Runnable() {
                                       public void run() {
                                            m_model.reload(node);
                                  SwingUtilities.invokeLater(runnable);
                runner.start();
            public void treeCollapsed(TreeExpansionEvent event) {}
         class DirSelectionListener
              implements TreeSelectionListener {
              public void valueChanged(TreeSelectionEvent event) {
                   DefaultMutableTreeNode node = getTreeNode(
                        event.getPath());
                   FileNode fnode = getFileNode(node);
                   if (fnode != null)
                        m_display.setText(fnode.getFile().
                             getAbsolutePath());
                   else
                        m_display.setText("");
         public static void main(String argv[]) {
              JFrame frame= new JFrame( "FileSystem Viewer");
              DirTree dir = new DirTree();
              frame.getContentPane().add(dir);
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              frame.pack();
              frame.setVisible(true);
    class IconCellRenderer
         extends    DefaultTreeCellRenderer {
         public IconCellRenderer() {
              setLeafIcon(null);
              setOpenIcon(null);
         public Component getTreeCellRendererComponent(JTree tree,
              Object value, boolean sel, boolean expanded, boolean leaf,
              int row, boolean hasFocus) {
              // Invoke default implementation
              Component result = super.getTreeCellRendererComponent(tree,
                   value, sel, expanded, leaf, row, hasFocus);
              DefaultMutableTreeNode node =
                   (DefaultMutableTreeNode)value;
              Object obj = node.getUserObject();
              setText(obj.toString());
            if (obj instanceof Boolean)
                   setText("Retrieving data...");
              if (obj instanceof IconData) {
                   IconData idata = (IconData)obj;
                   if (expanded)
                        setIcon(idata.getExpandedIcon());
                   else
                        setIcon(idata.getIcon());
              else
                   setIcon(null);
              return result;
    class IconData {
         protected Icon   m_icon;
         protected Icon   m_expandedIcon;
         protected Object m_data;
         public IconData(Icon icon, Object data) {
              m_icon = icon;
              m_expandedIcon = null;
              m_data = data;
         public IconData(Icon icon, Icon expandedIcon, Object data) {
              m_icon = icon;
              m_expandedIcon = expandedIcon;
              m_data = data;
         public Icon getIcon() {
              return m_icon;
         public Icon getExpandedIcon() {
              return m_expandedIcon!=null ? m_expandedIcon : m_icon;
         public Object getObject() {
              return m_data;
         public String toString() {
              return m_data.toString();
    class FileNode {
         protected File m_file;
         public FileNode(File file) {
              m_file = file;
         public File getFile() {
              return m_file;
         public String toString() {
              return m_file.getName().length() > 0 ? m_file.getName() :
                   m_file.getPath();
         // Alternatively we copud sub-class TreeNode
         public boolean expand(DefaultMutableTreeNode parent) {
              DefaultMutableTreeNode flag =
                   (DefaultMutableTreeNode)parent.getFirstChild();
              if (flag==null)       // No flag
                   return false;
              Object obj = flag.getUserObject();
              if (!(obj instanceof Boolean))
                   return false;      // Already expanded
              parent.removeAllChildren();  // Remove Flag
              File[] files = listFiles();
              if (files == null)
                   return true;
              Vector v = new Vector();
              for (int k=0; k<files.length; k++) {
                   File f = files[k];
                   if (!(f.isDirectory()))
                        continue;
                   FileNode newNode = new FileNode(f);
                   boolean isAdded = false;
                   for (int i=0; i<v.size(); i++) {
                        FileNode nd = (FileNode)v.elementAt(i);
                        if (newNode.compareTo(nd) < 0) {
                             v.insertElementAt(newNode, i);
                             isAdded = true;
                             break;
                   if (!isAdded)
                        v.addElement(newNode);
              for (int i=0; i<v.size(); i++) {
                   FileNode nd = (FileNode)v.elementAt(i);
                   IconData idata = new IconData(DirTree.ICON_FOLDER,
                        DirTree.ICON_EXPANDEDFOLDER, nd);
                   DefaultMutableTreeNode node = new
                        DefaultMutableTreeNode(idata);
                   parent.add(node);
                   if (nd.hasSubDirs())
                        node.add(new DefaultMutableTreeNode(
                             new Boolean(true) ));
              return true;
         public boolean hasSubDirs() {
              File[] files = listFiles();
              if (files == null)
                   return false;
              for (int k=0; k<files.length; k++) {
                   if (files[k].isDirectory())
                        return true;
              return false;
         public int compareTo(FileNode toCompare) {
              return  m_file.getName().compareToIgnoreCase(
                   toCompare.m_file.getName() );
         protected File[] listFiles() {
              if (!m_file.isDirectory())
                   return null;
              try {
                   return m_file.listFiles();
              catch (Exception ex) {
                   JOptionPane.showMessageDialog(null,
                        "Error reading directory "+m_file.getAbsolutePath(),
                        DirTree.APP_NAME, JOptionPane.WARNING_MESSAGE);
                   return null;
    }

  • Could not access the digital certificate. could not load keystore file (password may be incorrect)

    I am trying to create my IPA, I have gone through all the steps to create my certificates etc from Apple but keep getting the above error message when I try to publish my file.  (I am using the Flash CS5 iphone packager, not the command line)  Mac OSX
    Here is the tutorial I am following: http://help.adobe.com/en_US/as3/iphone/WS789ea67d3e73a8b2-240138de1243a7725e7-7ffc.html
    What are some things to try to troubleshoot?
    Thanks!

    Hi All!
    I’ve just finished an application but I’m having problems generating the .BAR file that I want to submit to the AppWorld. These are the commands I’m executing
    First - "C:\Program Files (x86)\Adobe\Adobe Flash Builder 4\sdks\blackberry-tablet-sdk-0.9.3\bin\blackberry-keytool" -genkeypair -keystore bbDevCertificate.p12  -storepass myPass -dname "cn=Company" -alias " Company "
    Second  - "C:\Program Files (x86)\Adobe\Adobe Flash Builder 4\sdks\blackberry-tablet-sdk-0.9.3\bin\blackberry-airpackager" -package AppName_signed.bar AppName-app.xml blackberry-tablet.xml AppName.swf splash.png icons/icon128.png
    Finally  - "C:\Program Files (x86)\Adobe\Adobe Flash Builder 4\sdks\blackberry-tablet-sdk-0.9.3\bin\blackberry-signer" -verbose -cskpass myCSKPass -keystore bbDevCertificate.p12  -storepass myPass AppName_signed.bar RDK
    My blackberry-tablet.xml is:
    <qnx>
        <initialWindow>
            <systemChrome>none</systemChrome>
            <transparent>false</transparent>
        </initialWindow>
        <publisher>Company</publisher>
        <category>core.games</category>
        <icon>
            <image>icons/icon128.png</image>
        </icon>
        <splashscreen>splash.png</splashscreen>
    </qnx>
    The problem comes at the first step. I'm using Flash Professional CS5. When I generate the p12 certificate and I try to export my app using that certificate and the password that I've set, it gaves me the next error:
    "Error creating files.
    Could not access the digital certificate. unable to retrieve key (password may be incorrect)"

  • Asa ssh/vnc plugins digital certificates expired

    Hi,
    we've got our new asa set up now (more or less). But what gets us is that the Cisco ssh/vnc plugins and the java applet for port forwarding all come up with "digital certificate expired". Now this is not going to instill confidence in our users.
    We are running 8.0(4)3 and asdm 6.1(3) and the plugins are the latest available from Cisco's software download page
    (ssh-plugin.08030, vnc-plugin.080130).
    Are newer ones available?
    Thanks
    Dorothea

    BTW this could be of help:
    http://www.cisco.com/en/US/docs/security/asa/asa80/release/notes/asarn80.html#wp241924
    You probably want to install a code signer certificate.
    While this seems to be what you're looking for, I have never managed to generate a bundle such that Java doesn't complain at all anymore...

  • Second popup applet auto-close the first popup applet

    I have a configuration which works in the following way
    1) There's a button on Applet 1, which will pop-up Applet 2 using the ShowPopup method.
    2) In Applet 2, there's a field which has MVG applet.
    I observed the following behaviour:
    1) Click buttons on Applet 1 which pops-up Applet 2.
    2) In Applet 2, click the MVG pick which pops-up the MVG applet.
    3) Close the MVG applet by clicking the X button on the browser window.
    4) When the MVG applet closes, it also auto-close Applet 2. Focus return to Applet 1.
    The expected behaviour is MVG applet close, and focus should return to Applet 2, not auto-close Applet 2.
    Any thoughts?

    Okay, I figured out how to launch an applet from another applet [A]. It was a matter of using a URLClassLoader to load applet [B]. The problem now is that there are some security issues. Even if I sign the applet [B], a security warning is not presented when applet[B] is initilialized. As a result, reading from a file on the local machine can not be done (Security exceptions).
    Any ideas? Thanks in advance.

  • "no access to the digital certificate" - Trying to export my first iOS app from Flash - Help please

    Hello
    I'm trying to export my first iOS app from flash to my desktop / on the device (Flash Pro CC, Iphone5)
    I followed the instructions on the adobe website to build an air app for iOS but on the last step it
    doesn't export the app.
    What I've done so far:
    - Apple developer account
    - creating the certificate + convert it to .p12
    - app ID / Name etc.
    - creating the provisioning profile from apple
    - iOS Air app in flash (Only Text "Hello world" with a tween)
    Now i have to load the certificates into Flash & enter a password (is it the password that
    i entered in the certificate or from my developer account/ Apple ID password? Both didn't work at the end)
    When i klick on publish in the last step than it loads a while but then i get the Error:
    "no access to the digital certificate"
    What is wrong? Can you help me please.

    Also, I should say, when I go into my phone on the computer and try to install an app, I get this message:
    Unable to start operation. Installer is already in use.
    Any ideas

  • How can I delete a digital certificate in Firefox's certificate store?

    <blockquote>Locking duplicate thread.<br>
    Please continue here: [/questions/780242]</blockquote><br>
    The company that manages my health savings account has just told me that my digital certificate (didn't know I had one) needs to be deleted from my browser's "certificate store" before I can (or they can) establish a new one. I cleared the cache, but am still getting this message.

    Hi Gordon50501,
    You would have to manage the bookmark folders on a Desktop computer. [[How do I set up Firefox Sync?]] would allow you to do this.
    You can remove individual bookmarks by tap an holding on one of the bookmarks and selecting "Remove"

  • CIDX Adopter Digital Certificates

    Guys,
    Here is the scenario..
    We are getting the HTTPS message from external system to XI.
    We are using CIDX Adopter to read external message and validate the digital certificates and map to ORDERS05 Idoc. As soon I trigger the message from external system (HTTPS message), I am seeing message in XI RWB adopter engine, when CIDX adopter is trying the validate the digital signatures somehow it is pointing to J2EE_GUSET user. And it is giving error as below mention.
    <b>ERROR</b>
    "Signature verification failed, alerted;Error when accessing keystore:service_ssl
    Signature verification failed, alerted
    Unexpected error while packing the CIDX message -
    null
    Message Processing caused Failure. -
    BTD handler indicated processing error
    Error encountered while receiving inbound action; See nested exception for detailed error message -
    Message Processing caused Failure. -
    Message Processing caused Failure. -
    BTD handler indicated processing error
    Delivery of the message to the application using connection CIDXAdapter failed, due to: Error encountered while receiving inbound action; See nested exception for detailed error message. "
    <b>Regarding Digital Certificates</b>
          We got the digital certificates from my external party and installed and
           created the Key stores in XI Visual Administration tool.
           We configured in sender agreement by selecting those key stores..
    Can any one help me on how to resolve the issue, is there any problem in Visual Admin Toll, while installing the certificates..
    Thanks
    Murali
    Message was edited by:
            Murali Babu Pallabothula

    HI,
    See the below links
    HTTP* Errors /people/krishna.moorthyp/blog/2006/07/23/http-errors-in-xi
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/55ba9790-0201-0010-aa98-ce8f51ea93cd
    also see the below links may be useful..
    See the below links
    /people/sap.user72/blog/2005/06/16/using-digital-signatures-in-xi
    SAP Java Cryptographic Toolkit
    http://help.sap.com/saphelp_nw04/helpdata/en/8d/cb71b8046e6e469bf3dd283104e65b/content.htm
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/55ba9790-0201-0010-aa98-ce8f51ea93cd
    http://help.sap.com/saphelp_nw04/helpdata/en/fb/322f41d606ef23e10000000a155106/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/45/341a2176b74002e10000000a155369/frameset.htm
    Also see the below threads.
    how to deal with digital signatures when converting messages?
    Certificates Vs Digital Signatures
    Security Issues: SSL on SOAP Adapter and Digital Signature in BPM
    message level security: difference digital signature and certificate
    Loading Invoice XML IDoc with digital signature via XI into R/3
    Regards
    CHilla

  • New to Weblogic 7 - How do I verify digital certificates?

    Hello, I am new to Weblogic and my department has 2 servers running Weblogic 7 and they have asked me to verify whether the servers have both root and intermediate digital certificates installed. How do I check for this?

    Backup the library with this User Tip. (Also any other personal data)
    Deauthorize the old computer before it goes away.
    Restore the backup to your new computer using the same tool used to back it up.
    Keep your backup up-to-date in future.
    tt2

  • Applet Viewers Don't lke my applet

    As far as I can tell they just don't like my applet.
    I have two other applets and they work fine.
    The status bar shows Starting Applet... (I have breakpoints on every method, public void start() is not executed)
    Then it shows Applet Loaded, and freezes.
    I am using Eclipse 3.0.1, and I use the debugger, but nothing but the constructor gets excecuted.
    I have checked everything I know about applets against the other applets, but as far as I can tell this one isn't missing anything. It has:
    public void start()
    public void init()
    public <init>()
    and they all have breakpoints, just the constructor gets excecuted, then it just freezes, the Applet menu won't even work.
    Please advise.

    It will pause the thread when it interprets a line
    with an Eclipse Breakpoint on it, then it highlights [etc]Yeah that's how a debugger works. The question is what triggers some of the methods in your class to get invoked.
    If the methods aren't even being invoked, the problem isn't your class, the problem is in the thing that calls your class. So that's either Eclipse, or more likely you're not using it right. For example maybe you're assuming that the init and start methods should get called even when they wouldn't.
    Now, any ideas why the applet viewer freezes, and the
    browser crashes when they load my applet?In this case, the problem is in your class. I'm guessing you have an infinite loop.
    You may want to try using the debugger on a class that looks like this:
    public class TestApplet {
      public static void main(String[] argv) {
        Applet a = new MyApplet();
        a.init();
        a.start();
        a.stop();
    }

  • "Choose a digital certificate" pop up when save Excel spreadsheet in IE

    One reporting page in our SSL application will generate an Excel spreadsheet. User will be prompted to either Save it to harddrive or Open it within the IE.
    If user chooses to Open it inside IE, then go "File --> Save as", this "Choose a digital certificate" dialog box will pop up, but there's nothing to choose. User has to click on OK/Cancel for about 12 times before it actually allows user the save...
    to create this spread sheet from jsp page i haved used
    <%@ page language="java" contentType="application/vnd.ms-excel; charset=ISO-8859-1"
         pageEncoding="ISO-8859-1" %>

    I don't think this has nothing to do with Excel.
    Go to Tools - Internet Options - Security Tab and click on the "Custom Level" button. Then find the option: "Don't prompt for client certificate selection when no certificate or only one certificate exists" and set it to "enable"

  • Coldfusion secure FTP & digital certificates

    Hello !
    I am currently in the process of developing a corporate CF intranet site that is behind a corporate firewall and part of the application will need to send a data file (FTP put) to a remote FTP server using secured FTP (FTPS). I have never used Coldfusion before for either secured or unsecured FTP.  I am planning on using the CFFTP tag to open the connection and send the data file but I have a number of other questions regarding the use & installation of the digital certificates.:
    Current development environment setup:
    CF version 9 standard edition running on Windows Server 2008 R2
    Microsoft IIS 7
    Current production environment setup:
    CF version 9  enterprise edition running on Windows Server 2008 R2
    Microsoft IIS 7
    1.  The data file that is being created must be sent to a finanacial institution and they will be providing a digital certificate (p12 format) to me.  What do I do with that certificate once I get it ?  I have installed SSL certificates before on http web sites with IIS without any issues but I am not sure what to do with the certificate for secured FTP.  Do I import the certificate into IIS using the MMC snap on or does the certificate need to be integrated into Coldfusion in some other way and if so, what needs to be done ?
    2.  What other steps need to be prior to being able to use the CFFTP tag for a secured FTP send ?
    I would appreciate as much help as possible as I haven't used CF for FTP before.
    Thank you.

    Dave,
    Thank you for answering.
    1.  I have imported the certificate into the cacerts file by using the following command:
         keytool -import -keystore ../lib/security/cacerts -alias x  -file c:\downloads\y
         where x was the alias name I assigned and y was the certificate name (extension of 'der').
    I tried importing a p12 and p7b certificate but neither of those worked.  I received the message 'Not a valid X.509 Certificate' from the command.  I then successfully imported a Base64 certificate (der).  I believe the certificate has been successfully imported because I ran the following and it shows the MD5 fingerprint:
         keytool -list -alias x -keystore ../lib/security/cacerts
         where x is my alias name I assigned in the original import
    2.  I then ran the following CFM command replacing the '*'s with the appropriate server name, user name, and password
         <cfftp action="open" connection="conn1" secure="yes" server="********" username="******" password="*****" port="21"
         </cfftp>
         I am getting the CF error
    An error occurred while establishing an sFTP connection.
    Verify your connection attributes: username, password, server, fingerprint, port, key, connection, proxyServer, and secure (as applicable). Error: User Authentication failed.
    Any suggestions or help would be appreciated.
    Thank you.

  • WebVPN-Problem with Digital Certificate and AAA

    Hello everyone,
    I have a problem during configuring WebVPN on ASA 5520 using AAA and digital certificate of Microsoft. (MSCEP)
    Currently, The WebVPN service is enabled and it worked well with AAA (local or external) only,
    But now, I want to use both AAA and Certificate for most secure-I mean that the users will be authenticated 2 times (firstly, it is checked by valid certificate then user/pass is second one).
    Here are details:
    I tried installation CA server (Microsoft CA service combined with SCEP) and register ASA with CA server (ASA work as subordinate CA)-->these steps is ok, asa has registed, then client use web-browser request CA and it's issued by CA administrator then it is installed on web-browser.
    Testing:
    The Client tried to test with access SSL VPN, the welcome WEBVPN message prompt user/pass but the message is "Logon Failed" before I give user and pass,
    Does anyone know and advise ?
    Thanks
    Khanh

    Hi all,
    Here are attach files for my issuse,
    Khanh

Maybe you are looking for

  • Password is lost when I save the Crystal Report

    We use Crystal Reports v. 11.5.3.417, and our users access the crystal Reports using InfoView (Web Portal) We store the username and password inside the different Repor so the end-users of these reports don't have to know our database passwords in or

  • Derivation of batch number in Profitability Analysis for Sales document

    Hi Gurus We are trying to put Batch number in PA derived through sales order sales delivery document but due to timing issue like do not have billing document untill processed and PA derivation done scenario SA created with multiple line items Batch

  • Remove numbers after filename and add custom sequence?

    Hi, I have to rename quite much of rendered frames which names are like aoPass_000001.png...aoPass_099999.png. I have to replace those numbers to start from 0111111 for example witch I'll input manually when I run rename process. Right now I do it us

  • How Do I Store HTML in a String Variable and then display in JSF

    Hi, I generate some HTML code and store in a String varible (ie. String str = "<b>Hello World</b>";) I want to display the HTML in a JSF page. I tried using <h:outputText value="binding to the variable"/> and it prints out the entire string and not t

  • TS2313 My podcasts will no longer download.

    There is an exclimation mark to the left of the title of a new podcast and on the far right side shows the icloud icon.  What do I need to do to start downloading my podcasts again? Hard drive space is not an issue.