Security problem with OAS 4.0.8

I have set up 2 virtual paths
seam/seamcart/ and cfi/cfi_cart. There are users who belong to realms and these realms are in turn assigned the virtual path. Also the virtual paths are protected.
Both these virtual paths have the same DAD .
My problem is if the user gets to know the procedure name he can execute it from the url specifying any virtual path even if he is not authorized to do so.
I am a total newbee in OAS and I hope I have explained the problem to get some responses. If you need more information please do let me know.
Help.
Thanks
Anurag

As this forum is specific to the Oracle9iAS Portal product, you might try posting your question to the general Oracle 9i Application Server forum.

Similar Messages

  • Security problem with Google Recaptcha plugin

    Hi all,
    Found a security problem with Google Recaptcha plugin. If I delete the tag containing the recaptch(on some page) with Firebug, I can authorize myself without validating with Recaptcha. If someone knows how to fix this problem, I'll be be very thankful.
    Thanks in advance,
    Regards Ivan

    Hi Ivan,
    you can secure it by adding an "Item specified is NOT NULL" validation to your page.
    Will update the documentation and try to add a permanent fix in a new version of the plug-in.
    Thanks for letting us know!
    Patrick
    My Blog: http://www.inside-oracle-apex.com
    APEX 4.0 Plug-Ins: http://apex.oracle.com/plugins
    Twitter: http://www.twitter.com/patrickwolf

  • Possible security problem with my iPhone4, it seems like it has been hacked into and my hotmail, facebook and university accounts (which all have different passwords) and proceed to change my passwords on me. This has happened twice.

    I seem to be having security problems with my iPhone4, it seems like someone has hacked into my hotmail, facebook and university accounts (which all have different passwords) and proceed to change my passwords on me. This has happened twice and I have not left my phone unattended at any time that I can recall nor have I accessed these accounts from another source (i.e. computer/laptop) since changing my passwords after the first hacking occurred. Please help.

    Anyone else at your university complaining about the same thing?  It is more likely someone is stealing passwords by sniffing traffic over the university wifi or with a man-in-the-middle attack or by other means external to your phone.  Try a Google search on "steal password" (without quotes) or "steal SSL password" and you'll learn more than you wanted to know about how passwords get stolen.
    Some related info:
    http://en.wikipedia.org/wiki/Session_hijacking
    http://en.wikipedia.org/wiki/Man-in-the-middle_attack

  • NT security problems with file I/O

    I have 2 problems with file I/O. When I read from a file I use the getAbsolutePath() method that is part of the File class to find what directory the files are currenlty. The problem is that the returned path says that the file is on the desktop no matter what directory the file really is in. The second problem is that I am unable to save files anywhere but the desktop. I must run the class files from the desktop too to get it to work.
    I am using NT 4.0 for development. I'm guessing that these problems might be NT security related. Could someone help me?
    Code below:
    import java.awt.*;
    import java.applet.*;
    import java.net.*;
    import java.io.File;
    import java.awt.event.*;
    //import java.security.*;
    //import sun.security.*;
    //import java.awt.Window;
    //import com.ms.security.*;
    public class Edit extends Applet implements ActionListener, ItemListener
    String Gselect;
    reader readit;
    int mhz, khz;
    TextField textField1;
    String freq = "000.000";
    String data;
    Choice freqC;
    Button ActivateB, SaveB, /*CancelB, HelpB,*/ DeleteB;
    Checkbox SetC;
    int NotUsedReply[] = new int[200];
    int HwListReply[] = new int[200];
    public void init()
    readit = new reader();
    String myFile="satellite.st1";
    // myFile = myFile.concat(Gselect);
    File satellite = new File(myFile);
    textField1 = new TextField();
    textField1.setText( "(void) " );
    add( textField1 );
    SetC = new Checkbox("TRAP-RX");
    add(SetC);
    SetC.addItemListener(this);
    freqC = new Choice();
    freqC.setSize(20,50);
    freqC.add("000.000");
    add(freqC);
    freqC.addItemListener(this);
    ActivateB = new Button("Activate");
    add(ActivateB);
    ActivateB.addActionListener(this);
    SaveB = new Button("Save");
    add(SaveB);
    SaveB.addActionListener(this);
    DeleteB = new Button("Delete");
    add(DeleteB);
    DeleteB.addActionListener(this);
         /*CancelB = new Button("Cancel");
    add(CancelB);
    CancelB.addActionListener(this);
         HelpB = new Button("Help");
    add(HelpB);
    HelpB.addActionListener(this);*/
    //textField1.setText( data );
    for(int a = 1; a < 9; a++)
    data = readit.getData(satellite.getAbsolutePath(), a);//("E:\\forte4j\\system\\Projects\\Zebra\\satellite.st1", a);
    freqC.addItem(data);
    textField1.setText(satellite.getAbsolutePath() );
    public void paint(Graphics g)
    //g.drawString("Radio Setup Files",20, 20);
    //g.drawString(getParameter("wse"),20, 20);
    public void actionPerformed(ActionEvent event)
    if(event.getSource() == ActivateB)
    activator();
    if(event.getSource() == SaveB)
    /*if(event.getSource() == CancelB)
    stop();
    if(event.getSource() == HelpB)
    if(event.getSource() == DeleteB)
    public void itemStateChanged(ItemEvent e)
    if(e.getItemSelectable() == SetC)
    textField1.setText("Check box 1 clicked!");
    if(e.getItemSelectable() == freqC)
    freq = ((Choice)e.getItemSelectable()).getSelectedItem();
    public void activator()
    makeMHZ();
    makeKHZ();
    if(mhz > 254)
    int StartLink[]={0x0c,0x01,0x07,0x00,0x00,0x00,0x00,0x00,0x00};          //New Link Proc Start
    int TrapConfig[]={0x25,0x80,0x00,0x00,0x00,0xb7,0x00,0x0c,0x0b,          //TRAP Configuration
    0x00,0x00,0x00,0xff,0xa0,0xff,0x0d,0xff,0xe8,
    0xff,0x0d,0xff,0x00,0xff,0x15,0xff,0xb0,0xff,
    0xff,0xff,0x94,0x0a,0x01,0x06,0x1a,0x00,0x0d,
    0x2d,0x21};
    TrapConfig[11]=(mhz-255);
    TrapConfig[12]=(khz/5);
    int SetUserOutput[]={0x41,0x42,0x49,0x54,0x52,0x41,0x50,0x20,0x34, //Sets User Output Format
    0x35,0x34,0x35,0x30,0x30,0x2e,0x30,0x4e,0x30,
    0x38,0x32,0x34,0x35,0x30,0x30,0x2e,0x30,0x57,
    0x30,0x31,0x30,0x30,0x2e,0x30,0x30,0x4b,0x4d,
    0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
    0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
    0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
    0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
    0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
    0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
    0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
    0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
    0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
    0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
    0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
    0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
    0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
    0x00,0x00};
    sendget CmdFunc;
    CmdFunc=new sendget();
    try
    //PolicyEngine.assertPermission(PermissionID.SYSTEM);
    Socket h = new Socket("192.9.200.155",9000);
    Socket s = new Socket("192.9.200.155",9001);
    Socket t = new Socket("192.9.200.155",9002);
    int j;
    CmdFunc.SendCmd(h,0,0x01,null);
    CmdFunc.GetCmd(h,HwListReply);
    CmdFunc.SendCmd(s,9,0x1e,StartLink); //New Link Proc Start
    CmdFunc.GetCmd(s,NotUsedReply);
    CmdFunc.SendCmd(s,37,0x00,TrapConfig); //TRAP Configuration
    CmdFunc.GetCmd(s,NotUsedReply);
    CmdFunc.SendCmd(s,155,0x03,SetUserOutput);//Sets User Output Format
    CmdFunc.GetCmd(s,NotUsedReply);
    catch(Exception e){}
    else
    textField1.setText( "000.000 is the null choice. Try another." );
    public void receiveText1( String select )
    Gselect=select;
    public void makeMHZ()
    String y = freqC.getSelectedItem();
    y = y.substring(0,3);
    mhz = Integer.parseInt(y);
    //textField1.setText( y );
    public void makeKHZ()
    String y = freqC.getSelectedItem();
    y = y.substring(4,7);
    khz = Integer.parseInt(y);
    //textField1.setText( y );
    import java.awt.*;
    import java.applet.*;
    import java.io.RandomAccessFile;
    import java.io.FileNotFoundException;
    import java.io.IOException;
    import java.io.LineNumberReader;
    import java.awt.event.*;
    import com.ms.security.*;
    import netscape.security.*;
    import netscape.util.*;
    public class saver extends Applet implements ActionListener
    String nameS = "Data.txt";
    String dataS = "Default Data";
    Button saveB;
    public void init()
    saveB = new Button("SaveFile");
    add(saveB);
    saveB.addActionListener(this);
    public void actionPerformed(ActionEvent event)
    if(event.getSource() == saveB)
    RandomAccessFile RAF;
    byte array0[] = dataS.getBytes();
    try
    if (Class.forName("com.ms.security.PolicyEngine") != null)
    PolicyEngine.assertPermission(PermissionID.SYSTEM);
    if(Class.forName("netscape.security.PrivilegeManager") != null)
    netscape.security.PrivilegeManager.enablePrivilege("UniversalFileWrite");
    catch (Throwable cnfe)
    try
    RAF = new RandomAccessFile(nameS, "rw");
    // RAF.writeUTF(dataS);
    RAF.write(dataS.getBytes());
    RAF.close();
    catch(Exception e)
    public void receiveND(String name, String data)
    if(name != null)
    nameS = name;
    dataS=data;
    import java.io.RandomAccessFile;
    import java.io.FileNotFoundException;
    import java.io.IOException;
    import java.io.LineNumberReader;
    //import java.security.*;
    import com.ms.security.*;
    import netscape.security.*;
    import netscape.util.*;
    public class reader
    //Signature sig;
    public String getData(String filename, int pass)
    //String nameS = "Data.txt";
    String dataS = "Default Data Sucks";
    String comma = ",";
    int get = pass, count=0, top=0, bottom=0;
    char[] work;
    try
    if (Class.forName("com.ms.security.PolicyEngine") != null)
    PolicyEngine.assertPermission(PermissionID.SYSTEM);
    if(Class.forName("netscape.security.PrivilegeManager") != null)
    netscape.security.PrivilegeManager.enablePrivilege("UniversalFileRead");
    catch (Throwable cnfe)
    try
    //sig.sign();
    //nameS = filename;
    RandomAccessFile RAF = new RandomAccessFile(filename, "r");
    // dataS = RAF.readUTF();
    dataS = RAF.readLine();
    RAF.close();
    catch(Exception e)
    return e.toString();
    work = dataS.toCharArray();
    for(int i = 0; i < dataS.length(); i++)
    if( work[i] == ',' )
    count++;
    if(get == count)
    bottom = i + 1;
    if( (work[i] == ',') && (count > get) && (top == 0) )
    top = i;
    dataS = dataS.substring(bottom,top);
    return dataS;
    }

    import java.awt.*;
    import java.applet.*;
    import java.net.*;
    import java.io.File;
    import java.awt.event.*;
    //import java.security.*;
    //import sun.security.*;
    //import java.awt.Window;
    //import com.ms.security.*;
    public class Edit extends Applet implements ActionListener, ItemListener
    String Gselect;
    reader readit;
    int mhz, khz;
    TextField textField1;
    String freq = "000.000";
    String data;
    Choice freqC;
    Button ActivateB, SaveB, /*CancelB, HelpB,*/ DeleteB;
    Checkbox SetC;
    int NotUsedReply[] = new int[200];
    int HwListReply[] = new int[200];
    public void init()
    readit = new reader();
    String myFile="satellite.st1";
    // myFile = myFile.concat(Gselect);
    File satellite = new File(myFile);
    textField1 = new TextField();
    textField1.setText( "(void) " );
    add( textField1 );
    SetC = new Checkbox("TRAP-RX");
    add(SetC);
    SetC.addItemListener(this);
    freqC = new Choice();
    freqC.setSize(20,50);
    freqC.add("000.000");
    add(freqC);
    freqC.addItemListener(this);
    ActivateB = new Button("Activate");
    add(ActivateB);
    ActivateB.addActionListener(this);
    SaveB = new Button("Save");
    add(SaveB);
    SaveB.addActionListener(this);
    DeleteB = new Button("Delete");
    add(DeleteB);
    DeleteB.addActionListener(this);
    /*CancelB = new Button("Cancel");
    add(CancelB);
    CancelB.addActionListener(this);
    HelpB = new Button("Help");
    add(HelpB);
    HelpB.addActionListener(this);*/
    //textField1.setText( data );
    for(int a = 1; a < 9; a++)
    data = readit.getData(satellite.getAbsolutePath(), a);//("E:\\forte4j\\system\\Projects\\Zebra\\satellite.st1", a);
    freqC.addItem(data);
    textField1.setText(satellite.getAbsolutePath() );
    public void paint(Graphics g)
    //g.drawString("Radio Setup Files",20, 20);
    //g.drawString(getParameter("wse"),20, 20);
    public void actionPerformed(ActionEvent event)
    if(event.getSource() == ActivateB)
    activator();
    if(event.getSource() == SaveB)
    /*if(event.getSource() == CancelB)
    stop();
    if(event.getSource() == HelpB)
    if(event.getSource() == DeleteB)
    public void itemStateChanged(ItemEvent e)
    if(e.getItemSelectable() == SetC)
    textField1.setText("Check box 1 clicked!");
    if(e.getItemSelectable() == freqC)
    freq = ((Choice)e.getItemSelectable()).getSelectedItem();
    public void activator()
    makeMHZ();
    makeKHZ();
    if(mhz > 254)
    int StartLink[]={0x0c,0x01,0x07,0x00,0x00,0x00,0x00,0x00,0x00}; //New Link Proc Start
    int TrapConfig[]={0x25,0x80,0x00,0x00,0x00,0xb7,0x00,0x0c,0x0b, //TRAP Configuration
    0x00,0x00,0x00,0xff,0xa0,0xff,0x0d,0xff,0xe8,
    0xff,0x0d,0xff,0x00,0xff,0x15,0xff,0xb0,0xff,
    0xff,0xff,0x94,0x0a,0x01,0x06,0x1a,0x00,0x0d,
    0x2d,0x21};
    TrapConfig[11]=(mhz-255);
    TrapConfig[12]=(khz/5);
    int SetUserOutput[]={0x41,0x42,0x49,0x54,0x52,0x41,0x50,0x20,0x34, //Sets User Output Format
    0x35,0x34,0x35,0x30,0x30,0x2e,0x30,0x4e,0x30,
    0x38,0x32,0x34,0x35,0x30,0x30,0x2e,0x30,0x57,
    0x30,0x31,0x30,0x30,0x2e,0x30,0x30,0x4b,0x4d,
    0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
    0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
    0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
    0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
    0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
    0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
    0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
    0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
    0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
    0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
    0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
    0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
    0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
    0x00,0x00};
    sendget CmdFunc;
    CmdFunc=new sendget();
    try
    //PolicyEngine.assertPermission(PermissionID.SYSTEM);
    Socket h = new Socket("192.9.200.155",9000);
    Socket s = new Socket("192.9.200.155",9001);
    Socket t = new Socket("192.9.200.155",9002);
    int j;
    CmdFunc.SendCmd(h,0,0x01,null);
    CmdFunc.GetCmd(h,HwListReply);
    CmdFunc.SendCmd(s,9,0x1e,StartLink); //New Link Proc Start
    CmdFunc.GetCmd(s,NotUsedReply);
    CmdFunc.SendCmd(s,37,0x00,TrapConfig); //TRAP Configuration
    CmdFunc.GetCmd(s,NotUsedReply);
    CmdFunc.SendCmd(s,155,0x03,SetUserOutput);//Sets User Output Format
    CmdFunc.GetCmd(s,NotUsedReply);
    catch(Exception e){}
    else
    textField1.setText( "000.000 is the null choice. Try another." );
    public void receiveText1( String select )
    Gselect=select;
    public void makeMHZ()
    String y = freqC.getSelectedItem();
    y = y.substring(0,3);
    mhz = Integer.parseInt(y);
    //textField1.setText( y );
    public void makeKHZ()
    String y = freqC.getSelectedItem();
    y = y.substring(4,7);
    khz = Integer.parseInt(y);
    //textField1.setText( y );
    import java.awt.*;
    import java.applet.*;
    import java.io.RandomAccessFile;
    import java.io.FileNotFoundException;
    import java.io.IOException;
    import java.io.LineNumberReader;
    import java.awt.event.*;
    import com.ms.security.*;
    import netscape.security.*;
    import netscape.util.*;
    public class saver extends Applet implements ActionListener
    String nameS = "Data.txt";
    String dataS = "Default Data";
    Button saveB;
    public void init()
    saveB = new Button("SaveFile");
    add(saveB);
    saveB.addActionListener(this);
    public void actionPerformed(ActionEvent event)
    if(event.getSource() == saveB)
    RandomAccessFile RAF;
    byte array0[] = dataS.getBytes();
    try
    if (Class.forName("com.ms.security.PolicyEngine") != null)
    PolicyEngine.assertPermission(PermissionID.SYSTEM);
    if(Class.forName("netscape.security.PrivilegeManager") != null)
    netscape.security.PrivilegeManager.enablePrivilege("UniversalFileWrite");
    catch (Throwable cnfe)
    try
    RAF = new RandomAccessFile(nameS, "rw");
    // RAF.writeUTF(dataS);
    RAF.write(dataS.getBytes());
    RAF.close();
    catch(Exception e)
    public void receiveND(String name, String data)
    if(name != null)
    nameS = name;
    dataS=data;
    import java.io.RandomAccessFile;
    import java.io.FileNotFoundException;
    import java.io.IOException;
    import java.io.LineNumberReader;
    //import java.security.*;
    import com.ms.security.*;
    import netscape.security.*;
    import netscape.util.*;
    public class reader
    //Signature sig;
    public String getData(String filename, int pass)
    //String nameS = "Data.txt";
    String dataS = "Default Data Sucks";
    String comma = ",";
    int get = pass, count=0, top=0, bottom=0;
    char[] work;
    try
    if (Class.forName("com.ms.security.PolicyEngine") != null)
    PolicyEngine.assertPermission(PermissionID.SYSTEM);
    if(Class.forName("netscape.security.PrivilegeManager") != null)
    netscape.security.PrivilegeManager.enablePrivilege("UniversalFileRead");
    catch (Throwable cnfe)
    try
    //sig.sign();
    //nameS = filename;
    RandomAccessFile RAF = new RandomAccessFile(filename, "r");
    // dataS = RAF.readUTF();
    dataS = RAF.readLine();
    RAF.close();
    catch(Exception e)
    return e.toString();
    work = dataS.toCharArray();
    for(int i = 0; i < dataS.length(); i++)
    if( work == ',' )
    count++;
    if(get == count)
    bottom = i + 1;
    if( (work == ',') && (count > get) && (top == 0) )
    top = i;
    dataS = dataS.substring(bottom,top);
    return dataS;

  • Need to solve serious security problem with Oracle Reports URL

    As mentioned repeatedly on this forum, Oracle Reports allows serious security breaches that allow users to see reports that they did not generate -- it's easy to guess a legal URL by changing the getjobid parameter.
    I've reviewed the JavaDocs to part of the rwrun.jar file and reviewed some of the example report plugins. This shows promise in helping to solve this security problem but critical pieces are missing.
    1) The javadocs are accurate for only 10g (9.0.4) but not correct for 10g (10.1.2+), which we are currently using. I need access to the updated version of this javadoc.
    2) Even with the updated version of the JavaDoc, I haven't found a class from which to inherit that would give me the opportunity to generate random jobid values, which then would effectively prevent users from guessing other jobid values, and thereby gaining access to other's reports (which in our cases, may contain sensitive information.
    3) We have found that we can send the parameter=value of EXPIRATION=1 which helps protect such information, but this requires that every program which invokes a report be modified to add this parameter. It would be far better for the report server to be configured to use a java class we write that inherits from some rwrun.jar class that would by default, add the EXPIRATION=1 parameter.

    Hi,
    Thanks for our replies. I will ask to an administrator about this security problem, now I know it depends of a security parameter.
    But I would know if it could be possible to hide the technical name of the query in the url. It could improve the security level of our reports in a first time in this way.
    Thanks a lot,
    JW.

  • Problem with OAS 4.0.8.1.0

    Hello,
    OAS was working quite fine till three days back. All of a sudden now it does not repond to any of the requests. All the time it gives the messege'Internal error occured. Please Try again' . We tried various ways to solve the problem but none of them worked. We even reinstalled the OAS on a fresh machine,
    but still the problem persists.
    Is it a known Bug? It would be highly appreciable if any of you can help us out in
    solving the problem.
    Regards,
    Sachin Chhajed

    Sachin,
    There is a log file wrb.log where you can check the real error. The file is under
    orant/ows/admin/log
    Verify your error meesage and check in the online error reference what is causing the problem.
    By the way what version of the JDK are you are using. Because I'm having problems with one of my classes if I use java/util/TreeMap
    class.
    null

  • Problems with OAS Version 10.1.2.0.2

    Hallo,
    i have a few problems with my OAS.
    1. I will open my Apllikation on a machine with Windows 7 and my Applikation crashed. But on a machine with Windows XP it's ok.
    2. In the error log from the Apache I see the following:
    [Fri Oct 12 07:49:33 2012] [error] [client 129.4.171.104] [ecid: 1350020973:129.4.171.52:3964:10076:28283,0] File does not exist: d:/ekorsms/rsmsapp/forms/java/oracle/ewt/alert/resource/AlertBundle_de_DE.properties
    [Fri Oct 12 07:51:04 2012] [error] [client 129.4.171.116] [ecid: 1350021064:129.4.171.52:3964:9224:30461,0] File does not exist: d:/ekorsms/rsmsapp/forms/java/java/awt/KeyboardFocusManager.class
    [Fri Oct 12 07:51:08 2012] [error] [client 129.4.171.116] [ecid: 1350021068:129.4.171.52:3964:8500:25250,0] File does not exist: d:/ekorsms/rsmsapp/forms/java/java/awt/event/MouseWheelListener.class
    [Fri Oct 12 07:51:08 2012] [error] [client 129.4.171.116] [ecid: 1350021068:129.4.171.52:3964:9360:29187,0] File does not exist: d:/ekorsms/rsmsapp/forms/java/oracle/forms/registry/default.dat
    [Fri Oct 12 07:51:09 2012] [error] [client 129.4.171.116] [ecid: 1350021069:129.4.171.52:3964:9648:30109,0] File does not exist: d:/ekorsms/rsmsapp/forms/java/oracle/forms/engine/RunformBundle_de_DE.properties
    Thanks in advance
    Andre
    Germany

    Hi,
    This could happen if there is no sufficient space @ C:\PROGRA-2\JAVA\JRE15-1.0_1\bin\ and/or the user does not have permissions to the specified directory.
    Give a Try to below two methods
    1)Client PC where your facing the problem ie "But I run the program normally, then everything is ok. But I get the following error messages:"
    Go to Control Panel-->Jnitiator-->Clear the cache.
    Login As Administrator for that Client PC, and Run your Application,Let the Jnitiator Download All these files again.
    Check now whether you r still Getting WUC-19 Error
    2)Go to Control Panel-->Jnitiator-->Change The location where the Jnitiator dumps these files ie jacob.dll, INIsharedstubs.dll
    It should be C:\PROGRA-2\JAVA\JRE15-1.0_1\bin\
    Change it to a Location where it read and write permission .
    Also Please follow the below MetaLink id
    *WEBUTIL ERROR WUC-19 ON WINDOWS 7 WHEN UAC ENABLED [ID 1108346.1]*
    Regards
    Fabian

  • Problem with OAS Instance Name y Host Name to create trial ssl certificate

    Hi, everyone
    I have a problem when creating a trial ssl certificate from Verisign page, affer a live assistance, that page rejected my CSR generated from OAS, saying thay my common name has invalid characters.
    My Oracle Application Server installation name: Instance.HostName is:
    IAS_IND01.ind-internet
    So, Verisign told me this name can't contain "_" or "-" characters for example.
    I need to know if it's possible to change the instance name and if OAS host name changes also if i change server's host name.
    I wouldn't like to reinstall all over again.
    Please help.
    Regards
    David

    Hi,
    No your AS server will not automatic. even if you change your host name.
    If U 'll try to change your host name, be carefull when U 'll try to start you AS instacne
    it ' not start anymore , AS user hosts fill to get full quallified name of your host.
    U 've two choices
    -1 delete your AS, then change your hosts name, then new installtion of AS
    2- If U 've exprience with AS, just breng your AS down, change your hosts name,
    U 'll need to do some changes in your AS, just read admininstrator Guide.
    Cheers,
    Hamdy

  • Problems with OAS 4.0.8.1 and PTG

    With have some trial services with PTG in a very important telecom company. PTG seems to be working fine BUT the OAS listeners fails once a day.

    Hi,
    what version of PTG are you using? 101 or 102?
    Please direct your problem to Oracle Support and provide them with your log files.
    Marcus
    This problem description is not very helpfull so far...
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Nistor Boscan:
    With have some trial services with PTG in a very important telecom company. PTG seems to be working fine BUT the OAS listeners fails once a day.<HR></BLOCKQUOTE>
    null

  • Security problem with tomcat and Ms Access

    Hi there,
    I have read some other posts about this problem but I still do know what the solution is... I am using Tomcat 5.5 and Java 1.5 with Windows Vista Beta
    I have a class to connect de a Ms access, using ODBC. If I test it with a console main it works fine but when I try to connect using a servlet it does not work and I got this error trace:
    java.security.AccessControlException: access denied (java.lang.RuntimePermission accessClassInPackage.sun.jdbc.odbc)
         java.security.AccessControlContext.checkPermission(Unknown Source)
         java.security.AccessController.checkPermission(Unknown Source)
         java.lang.SecurityManager.checkPermission(Unknown Source)
         java.lang.SecurityManager.checkPackageAccess(Unknown Source)
         sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
         java.lang.ClassLoader.loadClass(Unknown Source)
         org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1267)
         org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1198)
         java.lang.ClassLoader.loadClassInternal(Unknown Source)
         java.lang.Class.forName0(Native Method)
         java.lang.Class.forName(Unknown Source)
         model.Conect.GeneraConexion(Conect.java:17)
         model.Mediador.creaConexion(Mediador.java:12)
         model.TestServlet.processRequest(TestServlet.java:23)
         model.TestServlet.doGet(TestServlet.java:35)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         java.lang.reflect.Method.invoke(Unknown Source)
         org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:243)
         java.security.AccessController.doPrivileged(Native Method)
         javax.security.auth.Subject.doAsPrivileged(Unknown Source)
         org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:275)
         org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:161)
    Any ideas? Thanks a lot in advanced.
    LJ

    Hi there,
    I have read some other posts about this problem but I still do know what the solution is... I am using Tomcat 5.5 and Java 1.5 with Windows Vista Beta
    I have a class to connect de a Ms access, using ODBC. If I test it with a console main it works fine but when I try to connect using a servlet it does not work and I got this error trace:
    java.security.AccessControlException: access denied (java.lang.RuntimePermission accessClassInPackage.sun.jdbc.odbc)
         java.security.AccessControlContext.checkPermission(Unknown Source)
         java.security.AccessController.checkPermission(Unknown Source)
         java.lang.SecurityManager.checkPermission(Unknown Source)
         java.lang.SecurityManager.checkPackageAccess(Unknown Source)
         sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
         java.lang.ClassLoader.loadClass(Unknown Source)
         org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1267)
         org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1198)
         java.lang.ClassLoader.loadClassInternal(Unknown Source)
         java.lang.Class.forName0(Native Method)
         java.lang.Class.forName(Unknown Source)
         model.Conect.GeneraConexion(Conect.java:17)
         model.Mediador.creaConexion(Mediador.java:12)
         model.TestServlet.processRequest(TestServlet.java:23)
         model.TestServlet.doGet(TestServlet.java:35)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         java.lang.reflect.Method.invoke(Unknown Source)
         org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:243)
         java.security.AccessController.doPrivileged(Native Method)
         javax.security.auth.Subject.doAsPrivileged(Unknown Source)
         org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:275)
         org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:161)
    Any ideas? Thanks a lot in advanced.
    LJ

  • Security problem with virtual host

    Hello,
    I am using flex builder3 and php5 to run an application built
    in codeIgniter 1.6.3 and flex. Problem is that I am using a virtual
    host to run codeigniter in browser. My doc root is
    htdocs\projects\FlexPHP . Here my flex files resides. In browser I
    can access it by giving following url :
    http://localhost/projects/FlexPHP/bin-debug/FlexPHP.html
    and I am accessing my php application in
    http://flexphp/ (path :
    htdocs\projects\FlexPHP\src\server-script)
    I am calling http service from flex ...
    <mx:HTTPService id="phpService"
    url="
    http://flexphp/profile/ProfileMngr"
    resultFormat="e4x" result="showResult()" useProxy="false"
    showBusyCursor="true" />
    <mx:Button label="Call PHP"
    click="phpService.send()"/>
    and getting following error
    [RPC Fault faultString="Security error accessing url"
    faultCode="Channel.Security.Error" faultDetail="Destination:
    DefaultHTTP"]
    at mx.rpc::AbstractInvoker/
    http://www.adobe.com/2006/flex/mx/internal::faultHandler()[E:\dev\3.0.x\frameworks\project s\rpc\src\mx\rpc\AbstractInvoker.as:216
    at
    mx.rpc::Responder/fault()[E:\dev\3.0.x\frameworks\projects\rpc\src\mx\rpc\Responder.as:49 ]
    at
    mx.rpc::AsyncRequest/fault()[E:\dev\3.0.x\frameworks\projects\rpc\src\mx\rpc\AsyncRequest .as:103]
    at
    DirectHTTPMessageResponder/securityErrorHandler()[E:\dev\3.0.x\frameworks\projects\rpc\sr c\mx\messaging\channels\DirectHTTPChannel.as:368]
    at flash.events::EventDispatcher/dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at flash.net::URLLoader/redirectEvent()
    I have placed cross-domain policy file in server-script
    folder as the urls are different but it didnt solve my problem.
    I have tried it with another virtual host which is not a
    codeigniter application , a simple php page returing a xml..working
    properly.
    Any help is appreciated. Thanks in advance.

    no problem from flex side.. need to escape crossdomain.xml
    file in htacess for codeigniter i.e RewriteCond $1
    !^(index\.php|images|application|uploads|robots\.txt|crossdomain\.xml)
    in htaccess file.

  • Security Problems with Signed Applet

    Hello All,
    I need help with signed applets.
    I have an applet pkged in a jar that uses other jars. I have signed the jar containing applet and all the other jars being used. However, when I try to run the applet in IE 6.0.xx, I get the following error
    java.lang.ExceptionInInitializerError
         at aaa.aaa.somemethod(xxx.java:192)
         at aaa.aaa.aaa.access$000(xxx.java:27)
         at aaa.aaa.aaa.$1.run(xxx.java:467)
    Caused by: java.security.AccessControlException: access denied (java.util.PropertyPermission user.home read)
         at java.security.AccessControlContext.checkPermission(Unknown Source)
         at java.security.AccessController.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkPropertyAccess(Unknown Source)
         at java.lang.System.getProperty(Unknown Source)
         ... 3 moreMy application is using Java 1.4.2.xx.
    Any help or pointers would be greatly appreciated.
    Thanks.

    Thanks harmmeijer and mjparme for your responses.
    I made some changes to my application and it does not now require the system property information. But now I am getting another exception related to class loader.
    I made the changes to the console as suggested by harmmeijer, and here is the stack trace. Also, I am not using any JavaScript explicitly.
    Registered modality listener
    Invoking JS method: document
    Invoking JS method: URL
    Referencing classloader: sun.plugin.ClassLoaderInfo@e0a386, refcount=1
    Loading applet ...
    Initializing applet ...
    Starting applet ...
    java.security.AccessControlException: access denied (java.lang.RuntimePermission getClassLoader)
         at java.security.AccessControlContext.checkPermission(Unknown Source)
         at java.security.AccessController.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkPermission(Unknown Source)
         at java.lang.ClassLoader.getSystemClassLoader(Unknown Source)
         at xxx.xxx.a...<init>(a.java:39)
         at  xxx.xxx.b...<init>(b.java:42)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
         at java.lang.reflect.Constructor.newInstance(Unknown Source)
         at java.lang.Class.newInstance0(Unknown Source)
         at java.lang.Class.newInstance(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Exception: java.security.AccessControlException: access denied (java.lang.RuntimePermission getClassLoader)
    java.security.AccessControlException: access denied (java.lang.RuntimePermission getClassLoader)
         at java.security.AccessControlContext.checkPermission(Unknown Source)
         at java.security.AccessController.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkPermission(Unknown Source)
         at java.lang.ClassLoader.getSystemClassLoader(Unknown Source)
         at xxx.xxx.a...ToolBus.<init>(a.java:39)
         at xxx.xxx.b....<init>(b.java:42)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
         at java.lang.reflect.Constructor.newInstance(Unknown Source)
         at java.lang.Class.newInstance0(Unknown Source)
         at java.lang.Class.newInstance(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Modality pushed
    Modality poppedmjparme as to your second point, the action is taking place in the same jar only. No other jar is involved at the stage where I am getting exception.
    Thankyou again and will appreciate your help.
    AC

  • Any Security Problems with Navigation with Short URLs?

    Hi ,
    I want to use Navigation with Short URLs for my users to access the portal. But if the users give that Short URLs to other non-users , will the URL open?
    I will give the role for the users only. Non-users will not have particular role.
    Are these Navigation with Short URLs are safe to use?
    Advise me.

    Hi,
    The iview have "EveryOne Role" and "Super Admin Role".
    The portal will not allow any "anonymous" users, because it needs atleast "EveryOne Role" for the access.
    Will this create any problem.
    I think the "EveryOne Role" is there for the user, if the iview1 assigned for role1 but still in the permissions of iview1 have the "Everyonerole" , it is allowing user to access this right?
    Then I need to remove the EveryOne Role from the permissions.
    Regards
    Kiran

  • Has Apple fixed 802.1x security problems with new apps?

    Previous versions of the software are unable to connect to many wi-fi networks due to poor support for enterprise security standards. This means that it is impossible to connect to many corporate or university networks. It also means that I cannot connect in the Air Canada lounges with the DataValet service that I normally use. It makes little sense to buy these apps when the underlying wi-fi service is so crippled.
    Does anyone know if 802.1x is properly supported now?

    Either there's a [secret in 1.1.3 that no one knows about except you|http://digg.com/apple/No802_1x_in_iPhone_patch_1_1_3_Where_is_the_loveApple], or you're confusing [802.1x|http://en.wikipedia.org/wiki/802.1x] and [802.11|http://en.wikipedia.org/wiki/802.11].

  • Security Problem with JDBC -- SQLServer without Eclipse IDE

    Hi,
    Good Evening.
    I am getting an error when i try to connect with SQL Server using pure JDBC.
    It is a little strange, because when i connect using IDE Eclipse, it works fine, but when a create a jar file and run in Windows or Linux, occurs the error below.
    Error:
    Exception in thread "main" java.lang.SecurityException> invalid SHA1 signaturee digest for com/microsoft/sqlserver/jdbc/CharactersStreamSetterArgs.class
    at sun.security.util.SignatureFileVerifier.verifySection<Unknown Source)
    I don't known what happens.
    Code:
    Class.forName('com.microsoft.sqlserver.jdbc.SQLServerDriver'); strConn = "jdbc:sqlserver://" + this.host + ":" + this.port + ";databaseName=" + this.sid; conn = DriverManager.getConnection(strConn, user, password);
    Anyone can help me?
    Thanks in advanced.
    Roberto Caetano

    my configurations are :
    -os : winxp
    -db: sql server 2005 express edition
    -jdk1.5.0_06.
    -jdbc drivers : sqljdbc_1.1.1501.101 / sqljdbc_1.2.2828.100 .
    the content of the file is like that :
    Manifest-Version: 1.0
    Created-By: Fat Jar Eclipse Plug-In
    Main-Class: mssql.Test_Connection
    Name: com/microsoft/sqlserver/jdbc/AppDTVImpl$SetValueOp.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: KrvkkdiHwdXHNmPcE9RQBQ==
    SHA1-Digest: 6opr4DKaQZj0Fr3FVaZUEm7jo8=+
    Name: com/microsoft/sqlserver/jdbc/AppDTVImpl.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: nDtY9xaWCEFHnuZII0/mQ==+
    SHA1-Digest: DKIMpF6OfIdlemGRNzve/44H5Bc=
    Name: com/microsoft/sqlserver/jdbc/AsciiFilteredInputStream.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: MDazBTywxhvxqlUrhkPxow==
    SHA1-Digest: OVOhhSHSPRJRBlmM65EINXM984=+
    Name: com/microsoft/sqlserver/jdbc/AsciiFilteredUnicodeInputStream.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: KFMWLcM7G/HaooQeoAslOA==
    SHA1-Digest: 4SOJmXOY0Av56Pc5u0qgF/GMzY=+
    Name: com/microsoft/sqlserver/jdbc/AuthenticationJNI.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: owvL9clivyEz2OD4njgW5g==
    SHA1-Digest: jacrgyzx0s31HQuYEGl4knZZtv4=
    Name: com/microsoft/sqlserver/jdbc/BaseInputStream.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: 8UwiSw2I6D8vJ0MAlHn8HQ==
    SHA1-Digest: AlpmKqvo88cY4iIqqn39PI2PFJw=
    Name: com/microsoft/sqlserver/jdbc/CharacterStreamSetterArgs.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: 5FVUasVuBJJNhBaJXckXXA==
    SHA1-Digest: NZmT0FEnwq+PkZK98nto8dWhuI=+
    Name: com/microsoft/sqlserver/jdbc/Column.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: QvaRl418P7vpLoCIwLy9hw==
    SHA1-Digest: NCKil6R7dY7PbYMwICn6oYQGAwU=
    Name: com/microsoft/sqlserver/jdbc/ColumnFilter.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: DM7QIlmxQqNTXJoTKTdgTw==
    SHA1-Digest: 4k5pCzi2O9lmADuEtNgj/DZUVJY=
    Name: com/microsoft/sqlserver/jdbc/DataType.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: LZ4lkzDrIxj6wb8yqarWRQ==
    SHA1-Digest: q2D0ord4ZMVzBkDZWMO0L8h0zBM=
    Name: com/microsoft/sqlserver/jdbc/DataTypeFilter.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: kcoFF4FJarGc8yX0K7Tsfg==
    SHA1-Digest: 6zvSgP97xHEVQURGizMQx8F6dQw=
    Name: com/microsoft/sqlserver/jdbc/DataTypes.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: OZduC9x5pV8ae5UiBGq7Q==+
    SHA1-Digest: zJlNR3lNWvwgC7ofCaVvTQO4FdM=
    Name: com/microsoft/sqlserver/jdbc/DDC.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: zl5b7X4pW9iywH3vQhSOBQ==
    SHA1-Digest: xk6f2qt5vWcRsXGWxXWDEJmQxpQ=
    Name: com/microsoft/sqlserver/jdbc/DTV$SendByRPCOp.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: 7bEGlb/JluzfBUvBDKWHvQ==
    SHA1-Digest: gIHpiBKFMFAz/tsSPSGrq4lAFj4=
    Name: com/microsoft/sqlserver/jdbc/DTV.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: vaRSwQ78bW//c1VTyKnb9A==
    SHA1-Digest: nfrW3P32MeIw8qg8d3DHQ7YNQrM=
    Name: com/microsoft/sqlserver/jdbc/DTVExecuteOp.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: G8QurVN7tYmnmTjVJ6uZvA==
    SHA1-Digest: VGB6KQ59o6DxxlbTolM/rd58Roo=
    Name: com/microsoft/sqlserver/jdbc/DTVImpl.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: pGAgujRv1V/xT1nSuIjzw==+
    SHA1-Digest: oX7PSsDkD2M9KF2UYCfxddM140=+
    Name: com/microsoft/sqlserver/jdbc/FailoverInfo.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: 6JP2wEBAsNkBr0LxF4whg==+
    SHA1-Digest: IvB9xfJ8XmekkvwJBIcaKbQFv0=+
    Name: com/microsoft/sqlserver/jdbc/FailoverMapSingleton.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: aF5O7S7CvEWL794WD6OiQ==+
    SHA1-Digest: 1KJIQf9oSWCxvQwRXCOfy3wKAOw=
    Name: com/microsoft/sqlserver/jdbc/FailoverServerPortPlaceHolder.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: pkRfv6DJMJ1cbI0ZySddcg==
    SHA1-Digest: 8BTm4gf0DsRZjQcXvpJWShsifaU=
    Name: com/microsoft/sqlserver/jdbc/InputStreamGetterArgs.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: xv6Xhp0ZG2p99HyHmlYIbA==
    SHA1-Digest: xCBFkC12sCx1RE4GmpzCuIuTLM=+
    Name: com/microsoft/sqlserver/jdbc/InputStreamSetterArgs.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: J8uf9qc9dWOO2ibbpzNFkQ==
    SHA1-Digest: PRyCdDhkvkt5FBLLAb+YzEnB3I=+
    Name: com/microsoft/sqlserver/jdbc/IntColumnFilter.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: MJCCL/Pb4N3FVU3u4UGfw==+
    SHA1-Digest: mGfh77qp7SqLpYmUPk9IDXdYJL4=
    Name: com/microsoft/sqlserver/jdbc/JDBCCallSyntaxTranslator.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: Biaf0h6ft3Z5YrDDoVwXmw==
    SHA1-Digest: w3Ptfkjn3GSjLaSyVlUY74tBQ9g=
    Name: com/microsoft/sqlserver/jdbc/Parameter$GetTypeDefinitionOp.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: nOiCtsYETd5f6VdQTVGsOw==
    SHA1-Digest: PfMpi0gL1onZJFUBIQiItbnGgo0=
    Name: com/microsoft/sqlserver/jdbc/Parameter.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: QobDlCAy7wlVufP8gcFAQ==+
    SHA1-Digest: TlTkHWixps0mjL/f4P9TMnpNGg=+
    Name: com/microsoft/sqlserver/jdbc/ParameterUtils.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: BJwnBdb3lCPbe777p406Q==+
    SHA1-Digest: dMcur/9Ic0DiHxqGqhXBlIkWrtc=
    Name: com/microsoft/sqlserver/jdbc/PLPInputStream.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: hi0aHdabPRCPLLRUgJM6Ig==
    SHA1-Digest: MkgTRyeFLK/xU2xIWmxYncwXD4=+
    Name: com/microsoft/sqlserver/jdbc/PLPXMLInputStream.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: ayb78OAA4rxOCs5tj9rEAw==
    SHA1-Digest: eA50cKPfKgujA/N3pOiYVxrEZBY=
    Name: com/microsoft/sqlserver/jdbc/PrecisionFilter.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: aHy3gx9qL5ijl3tCkU2tA==+
    SHA1-Digest: SSUICkdKyafZY970D62alfpjyfs=
    Name: com/microsoft/sqlserver/jdbc/ScrollWindow.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: myWNT/crSiPrLAkPVMTlzw==
    SHA1-Digest: q0ZyiZZzZhFD3iKvMgTVPNjnHM=+
    Name: com/microsoft/sqlserver/jdbc/ServerDTVImpl.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: jpyUZ7Yc9o1nPdxvsQZy6w==
    SHA1-Digest: ZmTZWrBm/Ut2zEd7Am5LYEDk8E=+
    Name: com/microsoft/sqlserver/jdbc/SimpleInputStream.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: pjWOjG0JtKNajWWbsfhL9w==
    SHA1-Digest: RUGgaa5ZizY+ufR9abFnE4+37I=+
    Name: com/microsoft/sqlserver/jdbc/SLocaleMapItem.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: V9Do452KY5ID7rmgJWCbtA==
    SHA1-Digest: t2BXjxOEgH9hO0D0JZYTgHVbRrM=
    Name: com/microsoft/sqlserver/jdbc/SQLCollation.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: SE0dFaQH4uV/rKccaBZhSg==
    SHA1-Digest: NgGOCBHt37HI1GKXVU2m7MuiCZY=
    Name: com/microsoft/sqlserver/jdbc/SQLJdbcVersion.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: hHmVef0QLYbOfjA8D/PTA==+
    SHA1-Digest: 0LDcCKZMfMDTNGaQJeO11IayR/A=
    Name: com/microsoft/sqlserver/jdbc/SQLServerBlob.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: EoQWPH+Hg7k1hqGwFfQrw==+
    SHA1-Digest: jjmx72oDGk33XVdLdvEGvTbjt4=+
    Name: com/microsoft/sqlserver/jdbc/SQLServerBlobInputStream.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: xvligoWsSNvIbXPhf7RVQ==+
    SHA1-Digest: E41qtDrniBZ/vhDmloDP09PMPEU=
    Name: com/microsoft/sqlserver/jdbc/SQLServerBlobOutputStream.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: 3lP3NpbZYGKBiaD1QolVOg==
    SHA1-Digest: n94OEcWf3bvzv2n/OxtF/nvAWKk=
    Name: com/microsoft/sqlserver/jdbc/SQLServerCallableStatement$1ExecDoneHandler.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: IdATatJ0uvx8f84YHDbA7Q==
    SHA1-Digest: 9R3L6eOSI5nIbQLLppMDG6VmJik=
    Name: com/microsoft/sqlserver/jdbc/SQLServerCallableStatement$1OutParamHandler.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: 9eINbGaphxjNDDl0N9FzuA==
    SHA1-Digest: PYHZskir/KroYtt5Qxc53mksc6s=
    Name: com/microsoft/sqlserver/jdbc/SQLServerCallableStatement$1ThreePartNamesParser.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: aDlNWb0hhOD2CJm0sNQtLQ==
    SHA1-Digest: E7D4PXImN3RLNVdix4LEtQoG3Vk=
    Name: com/microsoft/sqlserver/jdbc/SQLServerCallableStatement.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: FrMyeRMPh3z/DVC7YsMYww==
    SHA1-Digest: C1VeMECh92ssAtsGRXU4gFLcrSE=
    Name: com/microsoft/sqlserver/jdbc/SQLServerClob.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: ToPV4GRUVh0Jr6VlgbFCRg==
    SHA1-Digest: w1WtM1F6N208efp1Duvoed3p98=+
    Name: com/microsoft/sqlserver/jdbc/SQLServerClobAsciiInputStream.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: frEBjWcXC6r4eU3GwzxToQ==
    SHA1-Digest: VMtsPTDullEEyIsxSKaROaiVkNU=
    Name: com/microsoft/sqlserver/jdbc/SQLServerClobAsciiOutputStream.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: 8ZUub0EulZVXTHyXFzzLgA==
    SHA1-Digest: X6SLryGWPiEheb4zvi8NpAvvlBI=
    Name: com/microsoft/sqlserver/jdbc/SQLServerClobCharacterReader.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: mTTxF0lk6R4cmKcTaqQvA==+
    SHA1-Digest: tqjib1+L1KRfkxlr5L5zrXmtFs=+
    Name: com/microsoft/sqlserver/jdbc/SQLServerClobWriter.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: Ru5HKt19anL9/F8tAk8+A==+
    SHA1-Digest: PNI6PkDs5dQur1aL8aZfYxwI6ks=
    Name: com/microsoft/sqlserver/jdbc/SQLServerConnection$1ConnectionCommand.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: b8k7fJuxhQtl4Z5PVbopVQ==
    SHA1-Digest: 9ye9Pgj9P6VjVghn3dIVU5CxLU=+
    Name: com/microsoft/sqlserver/jdbc/SQLServerConnection$1DTCCommand.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: INB9j4Mys5q1j39Kb1frzA==
    SHA1-Digest: 4E4pvcjzufvIDL1zLCN1ezguj/8=
    Name: com/microsoft/sqlserver/jdbc/SQLServerConnection$1LogonProcessor.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: xXERxh6EKNOhyPkjxnZHYg==
    SHA1-Digest: G/McSB9K8oavRpnANxfriiGLYjo=
    Name: com/microsoft/sqlserver/jdbc/SQLServerConnection$LogonCommand.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: VbUNLXs3JcBY6mRxH0Gew==+
    SHA1-Digest: W1oCAj6tWQqsS5WWLJzqzXpIjuI=
    Name: com/microsoft/sqlserver/jdbc/SQLServerConnection.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: ukyApHFBROjacLamWuLOfg==
    SHA1-Digest: ozapup9ZhovU65UQdc5GEmapAAw=
    Name: com/microsoft/sqlserver/jdbc/SQLServerConnectionPoolDataSource.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: tCCb43ZUS/zQwh43resvfQ==
    SHA1-Digest: LsN1Eksk8jx/kZ85KXbXmmPPvgE=
    Name: com/microsoft/sqlserver/jdbc/SQLServerConnectionPoolProxy.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: Ukf60CZx2gBL2VeIqKss6Q==
    SHA1-Digest: td0mO6AlbkU7qg3OOkmmGfbb/jw=
    Name: com/microsoft/sqlserver/jdbc/SQLServerConnectionSecurityManager.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: uYJooai7bXZzYPavcEEQw==+
    SHA1-Digest: SKQnRot6DNmdKbYDPn0Gyk7rwgU=
    Name: com/microsoft/sqlserver/jdbc/SQLServerDatabaseMetaData.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: D88Usnvd5yAL/dhkhe9Zeg==
    SHA1-Digest: TenfnnWHoTmTJBoY0/OCEm4OTkQ=
    Name: com/microsoft/sqlserver/jdbc/SQLServerDataSource.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: /bXQh8vsbTNbJFIu5Kxcsw==
    SHA1-Digest: SGBQVSoql5ToxpAoSvXTUe5cwA=+
    Name: com/microsoft/sqlserver/jdbc/SQLServerDataSourceObjectFactory.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: CYpa9Jr8T/Zf8rcDW40hzQ==
    SHA1-Digest: HLZtZjgqtC98Wrk2LsGsiQnGls=+
    Name: com/microsoft/sqlserver/jdbc/SQLServerDriver.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: zshMOXd/YEIJsyKpfQ9wgw==
    SHA1-Digest: hXcQGtLhfTYOa3aFWq22tElaZG0=
    Name: com/microsoft/sqlserver/jdbc/SQLServerException.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: lq23ZC1Zh7BykHpcPvrL0A==
    SHA1-Digest: jnt0iyDNlvX1cIXf0TZfGKqNuI=+
    Name: com/microsoft/sqlserver/jdbc/SQLServerParameterMetaData.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: II7ltsKXWveohelGSnL8A==+
    SHA1-Digest: fJrVP15RofvLl4MUWzTKuTNPNmQ=
    Name: com/microsoft/sqlserver/jdbc/SQLServerPooledConnection.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: DYdyX1uX1+ptMRdkjXmGg==+
    SHA1-Digest: FVrhnZQMRNKhCfCdn38K1QjxdT8=
    Name: com/microsoft/sqlserver/jdbc/SQLServerPreparedStatement$1PreparedHandleClose.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: Ks/NWndrZ8D7R7VX7v81jg==
    SHA1-Digest: qe2qUD7IJIni/dLgAExQgyW9x/Y=
    Name: com/microsoft/sqlserver/jdbc/SQLServerPreparedStatement$PrepStmtBatchExecCmd.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: CqiWHpE04CH1MEr/ORAqBA==
    SHA1-Digest: ufGGAEhJS9piDLcwXnK/HdbR0VU=
    Name: com/microsoft/sqlserver/jdbc/SQLServerPreparedStatement$PrepStmtExecCmd.class
    Digest-Algorithms: MD5 SHA1
    +MD5-Digest: J/TFdXECeUaZTy8ItGcbA==
    SHA1-Digest: nqo9O6Nb3bELP7x3JvtpzydFecU=
    Name: com/microsoft/sqlserver/jdbc/SQLServerPreparedStatement.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: 712g/SBx7UXb/QuOcCiUkw==
    SHA1-Digest: NvkliHWgAVcYuNtihyMpyjr7eAw=
    Name: com/microsoft/sqlserver/jdbc/SQLServerResource.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: TLtJUWaK9NsosZaEnPF0A==+
    SHA1-Digest: zKxWyVtrfJH3r1T7MfAJ1IMF4MI=
    Name: com/microsoft/sqlserver/jdbc/SQLServerResource_de.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: E0ITpAMOm3/12uT2ABkTw==+
    SHA1-Digest: 3WyeiHOv0SpHCvpqQa362lMe9gU=
    Name: com/microsoft/sqlserver/jdbc/SQLServerResource_es.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: SRA0***5xhNK763WLG+Sw==+
    +SHA1-Digest: /KRsDPtqAI6pWH9PQPX1ZdE46c=
    Name: com/microsoft/sqlserver/jdbc/SQLServerResource_fr.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: 6rCOBPChgstl2xJ7PdoesQ==
    SHA1-Digest: EpUWqvqIKTzs9yZKmdia2bzHb8w=
    Name: com/microsoft/sqlserver/jdbc/SQLServerResource_it.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: Em0Bw0BRQJGmXCzCHb7wA==+
    SHA1-Digest: /ibhwmn8BxJQ3DvZ220gSbSEwUA=
    Name: com/microsoft/sqlserver/jdbc/SQLServerResource_ja.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: oXJEk4ZxXYGbugt15DtNyw==
    SHA1-Digest: VMki788zmJzuaWNeBFnMuwyIbU=+
    Name: com/microsoft/sqlserver/jdbc/SQLServerResource_ko.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: GH6o929hB1ZFNEs46WnQxw==
    SHA1-Digest: sRMe5dXciopIvOgP3w0V0v02Kzc=
    Name: com/microsoft/sqlserver/jdbc/SQLServerResource_sv.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: 41UJW87qhrju6cCqR8lBVA==
    SHA1-Digest: fqkcnf9IAFRwurl4CVqsCppt8c=+
    Name: com/microsoft/sqlserver/jdbc/SQLServerResource_zh_CN.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: GDrcoCEhsyQP39yeykA1tw==
    SHA1-Digest: G/qAkBgLsukMyMBXJnoEiC00+Y=+
    Name: com/microsoft/sqlserver/jdbc/SQLServerResource_zh_TW.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: a9OENMRPkjd5Or7sKm47w==+
    SHA1-Digest: byfJQu9LZR/b5UWBb/xHgk0qc8=+
    Name: com/microsoft/sqlserver/jdbc/SQLServerResultSet$1CloseServerCursorCommand.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: bgSdFMh3rRTsb6RJ2MSYsA==
    SHA1-Digest: mgC/PUAr6OvLYQHZQ3NOl3v6KRo=
    Name: com/microsoft/sqlserver/jdbc/SQLServerResultSet$1CursorFetchCommand.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: ETHGFEJw6xxp6uZ0gVGEgQ==
    SHA1-Digest: DEXtoBYY/yiRUT11cju/H9JoRo=+
    Name: com/microsoft/sqlserver/jdbc/SQLServerResultSet$1DeleteRowRPC.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: YMc3h4J0PKZPbdkxucrV6A==
    SHA1-Digest: oMNOy7U0MfDjLKJY/rXqB9JaecY=
    Name: com/microsoft/sqlserver/jdbc/SQLServerResultSet$1InsertRowRPC.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: Pq3gYSCKvZCnn0uS9c4H9g==
    SHA1-Digest: xfmkmqjldysnYwiobk9Och3yU3c=
    Name: com/microsoft/sqlserver/jdbc/SQLServerResultSet$1ServerCursorFixup.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: knpVbJIjmot2hEm6/756fQ==
    SHA1-Digest: 0NFdr7+YS+xxNLDSXEmHUN1lt0=+
    Name: com/microsoft/sqlserver/jdbc/SQLServerResultSet$1ServerFetchHandler.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: ypDMH2UBGh4MWg9hZNpCzg==
    SHA1-Digest: OLD7lZIiaaAOiiY7S8l9yaRkh4Y=
    Name: com/microsoft/sqlserver/jdbc/SQLServerResultSet$1UpdateRowRPC.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: XQ/4DLfWDYfnjRs5csdmUg==
    SHA1-Digest: 5tgEWzJtKVD0cyQZEIEh7rwCpss=
    Name: com/microsoft/sqlserver/jdbc/SQLServerResultSet$FetchBuffer$FetchBufferTokenHandler.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: TOMon6DDTiB4iFrl80Yotw==
    SHA1-Digest: YEbZqGqQf1RVZ3ftnp5uAYVPdiw=
    Name: com/microsoft/sqlserver/jdbc/SQLServerResultSet$FetchBuffer.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: SSlLzOUtOHBEZdX8Dq2LGA==
    SHA1-Digest: OaDfXGsdoZAq5BHNZAb2CTpG8kY=
    Name: com/microsoft/sqlserver/jdbc/SQLServerResultSet.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: yDTrB3lndMb/MhroUTQS3w==
    SHA1-Digest: SXfUedcDCGACFfxL6JNn8O0VcIs=
    Name: com/microsoft/sqlserver/jdbc/SQLServerResultSetMetaData.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: RG3FGCtLCv2QQy/ZR2DoEQ==
    SHA1-Digest: ZMkJ5dUjiv2ZBQ7HuRpL2xtAiN8=
    Name: com/microsoft/sqlserver/jdbc/SQLServerSavepoint.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: rSpPBOd3pFexbAq4qdeAA==+
    SHA1-Digest: 3G5fNJgIBakIvv4aAWnPb3n3KJE=
    Name: com/microsoft/sqlserver/jdbc/SQLServerStatement$1NextResult.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: AFoe87pDR6SpxJzmFfNPw==+
    SHA1-Digest: f9MQypBr2/l5SGdokACgOVcli3o=
    Name: com/microsoft/sqlserver/jdbc/SQLServerStatement$ExecuteProperties.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: fQM74ufMBwnHpDk06PwsRg==
    SHA1-Digest: iX85wzfzAGratMtBSI1npijwes=+
    Name: com/microsoft/sqlserver/jdbc/SQLServerStatement$StmtExecCmd.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: bHU0XvlCLCGKbsHm9mG/g==+
    +SHA1-Digest: es8aifOlK24xF8AbsqJOxJx78Q=
    Name: com/microsoft/sqlserver/jdbc/SQLServerStatement.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: dBX7k8Btr8bijgJJs7CwoA==
    SHA1-Digest: Kx5szvdYTA165gZEqza0fbckqDM=
    Name: com/microsoft/sqlserver/jdbc/SQLServerXAConnection.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: RU3ADesYUzYpu9ZWs0Gww==+
    SHA1-Digest: nPtre40RztB8W6FpCLdbuJN3CDQ=
    Name: com/microsoft/sqlserver/jdbc/SQLServerXADataSource.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: 1YfhM9bKe6r9GYV7/7TwLQ==
    SHA1-Digest: VUTRrJc3aaVu5t3PzSAUiu1650=+
    Name: com/microsoft/sqlserver/jdbc/SQLServerXAResource.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: IZ03u5AgZBUoXGkYH8FZmQ==
    SHA1-Digest: ammsb/CuvvyUZjzkhGJSDOCXwLo=
    Name: com/microsoft/sqlserver/jdbc/StreamColumns.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: EIQ9aWknLSxB0QUCD8N3g==+
    SHA1-Digest: VUsN0QNLEMJX8zVlsarOs48dAaE=
    Name: com/microsoft/sqlserver/jdbc/StreamDone.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: 0zEBZeiCsq30Lzx1ybTUzw==
    SHA1-Digest: /k8012fx3L1igb4EtJv7/ozSBbY=
    Name: com/microsoft/sqlserver/jdbc/StreamError.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: TWSkmcx3mLSdgNyXKUXP3w==
    SHA1-Digest: U/xZDcZAEivRztUGaccCknZYZAM=
    Name: com/microsoft/sqlserver/jdbc/StreamInfo.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: WkXWbXpyb56zk/1NIHtkQ==+
    SHA1-Digest: opJPa29/fXDlqG0lSrLAB4uGm4o=
    Name: com/microsoft/sqlserver/jdbc/StreamLoginAck.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: cOa6txu1kQman9lXTM6tQg==
    SHA1-Digest: aFx2oE6cyrzEod/xbYocM/yTYXU=
    Name: com/microsoft/sqlserver/jdbc/StreamPacket.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: 93ifX3wybd+kyybjXvmSA==+
    SHA1-Digest: u4i3z8N/26aWvbesb3RC3lx9Dao=
    Name: com/microsoft/sqlserver/jdbc/StreamRetStatus.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: Lc3yNgwPwOLRseFmStjvg==+
    SHA1-Digest: QQGo91qQ2I3vO5VIPz0ZGqK2tQ=+
    Name: com/microsoft/sqlserver/jdbc/StreamRetValue.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: Zs9ihi0oknRRRQAYRkf/vA==
    SHA1-Digest: clage5yF7LxRezjb1swoMMfeVtI=
    Name: com/microsoft/sqlserver/jdbc/StreamSSPI.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: 6RHEqETZE4BK7mWshie2Uw==
    SHA1-Digest: Oew1yBSh9gczvlvchVHo3AFKQM=+
    Name: com/microsoft/sqlserver/jdbc/TDS.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: dO0UHIN/SW6vUeSzmfNqsQ==
    SHA1-Digest: t2fs/46/8vXk831guhQDXW4o5Y=+
    Name: com/microsoft/sqlserver/jdbc/TDSChannel$HostNameOverrideX509TrustManager.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: TYtYeEgPIr4G3fAN7Xa4w==+
    SHA1-Digest: K4YisS4owGiYy78koCO21gh1hc=+
    Name: com/microsoft/sqlserver/jdbc/TDSChannel$PermissiveX509TrustManager.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: /yggGPizOmX6ZtwfVFqdQ==+
    SHA1-Digest: QPL6px7AGSa7v8NaeIfUjqsEnIs=
    Name: com/microsoft/sqlserver/jdbc/TDSChannel$ProxyInputStream.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: AQ3nysJTlSXZcemIeSCR0A==
    SHA1-Digest: DMs7k9KmOIxuZOzP0LIIJNkPzHI=
    Name: com/microsoft/sqlserver/jdbc/TDSChannel$ProxyOutputStream.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: bdom5oSLvIa3gUMXb4X/xA==
    SHA1-Digest: SSf4ycrwEviG3kOPx2Y1Jm0HYuM=
    Name: com/microsoft/sqlserver/jdbc/TDSChannel$ProxySocket.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: n/RDAyFj0rxhcdAZZcxlSw==
    SHA1-Digest: RjFwsZKQ9fqt4oPZu49aTu/jlL4=
    Name: com/microsoft/sqlserver/jdbc/TDSChannel$SSLHandshakeInputStream.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: 2Hq5bOfM5O+ZkRGOeI7jw==+
    SHA1-Digest: QKtAd6iPOBmvgUIpqY0jHBCEXX8=
    Name: com/microsoft/sqlserver/jdbc/TDSChannel$SSLHandshakeOutputStream.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: tVt8UNtnbfCNluGAmR40gQ==
    SHA1-Digest: 1eJorvKJFE1p2TydhqppFjZTMuw=
    Name: com/microsoft/sqlserver/jdbc/TDSChannel.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: 1FVCaurZ4dxfXMr5b1UyVg==
    SHA1-Digest: TJhluep5/s3LnZJ9PKxmF6HNVI=+
    Name: com/microsoft/sqlserver/jdbc/TDSCommand$1AttentionAckHandler.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: px2jPUbbtZS5LISk5kvFnw==
    SHA1-Digest: Fghyqds9QQm3qjUt6ZG0GEyxYA=+
    Name: com/microsoft/sqlserver/jdbc/TDSCommand.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: ihuie5Pu3Q/dRuPOuEYn7w==
    SHA1-Digest: q/Nb/eEX4SMz6Btjb0ewdBgyo9w=
    Name: com/microsoft/sqlserver/jdbc/TDSPacket.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: GPrcJCKps8U3GFZZ2cv9UA==
    SHA1-Digest: Bp3t043cThJGevAmA0y1orjikHg=
    Name: com/microsoft/sqlserver/jdbc/TDSParser.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: cj2KCX97GmbhSwtbCHrRDA==
    SHA1-Digest: zMIJFyEfxZm5QCpqn2a2rclciCk=
    Name: com/microsoft/sqlserver/jdbc/TDSReader.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: GVTNRTKHfsxcIrrtwnNO/A==
    SHA1-Digest: CTiAFX6zGmusaNEpnbEOIZKRJlM=
    Name: com/microsoft/sqlserver/jdbc/TDSReaderMark.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: vmxP4o8xmrFP41fFqLlXQ==+
    SHA1-Digest: OikFwDggo1mQI27nicpP/ViyPIc=
    Name: com/microsoft/sqlserver/jdbc/TDSTokenHandler.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: 1b4h8VTpRwXcf2ydIV9Zw==+
    SHA1-Digest: B0M1HmLhm25qI991udMwFlp55ds=
    Name: com/microsoft/sqlserver/jdbc/TDSWriter.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: oGei/XbS7pK/sgdZE20swQ==
    SHA1-Digest: xsHqNdHufrZ1SG7xm1BlV71hrbs=
    Name: com/microsoft/sqlserver/jdbc/TimeoutTimer.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: qPVdK2tdV9Ric5IC8VTp4A==
    SHA1-Digest: WKHemeJfd8dco8mMHtuAigxB7dY=
    Name: com/microsoft/sqlserver/jdbc/TypeInfo.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: kyPtrRIFAvHLA2RLiPEaSA==
    SHA1-Digest: cgArSVVR2bDuDJYQQm6pT83ZPE=+
    Name: com/microsoft/sqlserver/jdbc/UDTTDSHeader.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: cFWFGGzYQsChDRXU4qwXnA==
    SHA1-Digest: i7XrxQlYeMa5MS58Pwh0uGXwZG0=
    Name: com/microsoft/sqlserver/jdbc/UninterruptableTDSCommand.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: uWgTVexos0jaqZfNFms95Q==
    SHA1-Digest: HXdjxOUegAqRKGJ2YsHGvb+ugU=+
    Name: com/microsoft/sqlserver/jdbc/Util.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: ow82U7DJQZ5B3Tasmac3A==+
    SHA1-Digest: zd/Eh2rYU1dblqcOpwLWf7NF1E4=
    Name: com/microsoft/sqlserver/jdbc/XAReturnValue.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: NXp3iNEEoqIMObIvKvTipQ==
    SHA1-Digest: odszdc6MFn6LhxmJtNoOevaWbY=+
    Name: com/microsoft/sqlserver/jdbc/XidImpl.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: RU7zurqsphCXK/s8xCvug==+
    SHA1-Digest: 2ECxDbL3kDDEXXPk/E3BJC0lMA=+
    Name: com/microsoft/sqlserver/jdbc/XMLTDSHeader.class
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: bYFJI5zkearxmFgmB7W4eg==
    SHA1-Digest: u5OikuNUbfMd0oFsxA9ljw9PJ0Y=
    Name: sqljdbc.jar
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: 1B2M2Y8AsgTpgAmY7PhCfg==
    SHA1-Digest: 2jmj7l5rSw0yVb/vlWAYkK/YBwk=
    Name: sqljdbc.jar.old
    Digest-Algorithms: MD5 SHA1
    MD5-Digest: 0sODYMNpQ2ytnSf/VNVnTw==
    SHA1-Digest: PU1a6zB4BuXkuUTLxGsgPjGvCI=+

Maybe you are looking for

  • Hi guys doubt on bapi please reply

    hi, i have doubt on which import parameters to be used in the bapi BAPI_ACC_GL_POSTING_REV_POST we have posting date and document no with us we are confused about what import parameters to be sent as an input to this bapi........... reward will be gi

  • Front Row not finding music anymore

    My front row has suddenly decided that it can't find my music anymore. It used to work but now it simply tells me that i need to add music to iTunes. any advice?

  • Missing Album Artwork

    I have this weird thing happening.. The puchased album does not show up when you look at it, yet the artist/album name is below it. It is completely black (no music note) but when you scroll to either side, you can than see the album cover picture..

  • EnqStoreTopHist: Lock Table Overflow

    Hello SAP agents, This is the error log from our basis team. As I checked with SD users, they didn't do anything special in VT01N/VT02N and there are no big volumn in their shipment. Maximun there will be 70 items inside. This will not cause any tabl

  • Forms , Reprots10g Deployment on Web Logic Server

    Currently, I am hosting my Forms and Reports 10g on Oracle Application Server 10g on Redhat Linux AS 4. How would I host Forms and Reports 10g on Web Logic Server? regards