Struts--logic:tag-----------help required---urgent....

Hi All,
I have a JSP that has the following code
<%@ page import='java.util.List' %>
<%@ page import='java.util.Iterator' %>
<%@ page import='com.stgil.pos.personal.quickQuote.model.QuoteModel' %>
<%@ page import='com.stgil.pos.personal.quickQuote.model.QuoteRateMasterModel' %>
<%
     List masterList = (List)session.getAttribute("MASTERLIST");
%>
<%
     QuoteModel quoteModel = (QuoteModel) session.getAttribute("QUOTEMODEL");
%>
<FORM action="quoteRate.do">
<TABLE border="1">
          </br>
          <TR>
               <TD><bean:message key="QQ001.quote.no.quote.renew.no" /></TD>
               <TD><%=quoteModel.getQuoteNo()%> / <%=quoteModel.getQuoteRenewNo()%></TD>
               <TD><bean:message key="QQ001.insured" /></TD>
               <TD><%=quoteModel.getApplicantFullName()%></TD>
          </TR>
          <TR>
               <TD><bean:message key="QQ001.effective.date" /></TD>
               <TD><%=quoteModel.getQuoteBegindate()%></TD>
               <TD><bean:message key="QQ001.expiration.date" /></TD>
               <TD><%=quoteModel.getQuoteEndDate()%></TD>
               <TD><bean:message key="QQ001.term" /></TD>
               <TD><%=quoteModel.getQuoteTermCode()%></TD>
          </TR>
</TABLE>
Click on the submit button to rate for successful programs. Or Click
on the Review button against the program name to make necessary the
required corrections.<BR>
<BR>
Rating for multiple programs may take time.
<TABLE border="1" width="804">
          <tr>
               <TH><bean:message key="QQ001.program" /></TH>
               <TH><bean:message key="QQ001.edit.check.status</TH>
               <TH width="161"><bean:message key="QQ001.rate</TH>
          </tr>
          <%
     Iterator it = masterList.iterator();
          while(it.hasNext()){
          QuoteRateMasterModel quoteRateMasterModel =(QuoteRateMasterModel ) it.next();
          %>
          <TR>
               <TD><%=quoteRateMasterModel.getSubLineCode()%>
               </TD>
               <TD><% if(quoteRateMasterModel.getStatus().equals("E")) { %>
                              <div align="left"> <span style='font-family:Wingdings;mso-ascii-font-family:
                              "Times New Roman";mso-hansi-font-family:"Times New Roman";mso-char-type:symbol;
                              mso-symbol-font-family:Wingdings'><span style='mso-char-type:symbol;mso-symbol-font-family:
                              Wingdings'>&uuml;</span></span> </div>
               <% } else if(quoteRateMasterModel.getStatus().equals("N")) { %>
                              <div align="left"> <span style='font-family:Wingdings;mso-ascii-font-family:
                              "Times New Roman";mso-hansi-font-family:"Times New Roman";mso-char-type:symbol;
                              mso-symbol-font-family:Wingdings'><span style='mso-char-type:symbol;mso-symbol-font-family:
                              Wingdings'><font color="#FF0000">&ucirc;</font></span></span> </div>
               <% } %>
               </TD>
               <TD>
                    <input TYPE=CHECKBOX name="chkEditFlag" value='<%=quoteRateMasterModel.getSubLineCode() %>' CHECKED>
                    <% if(quoteRateMasterModel.getStatus().equals("E")) { %>
                    <% } else if (quoteRateMasterModel.getStatus().equals("N")){ %>
                              Review <img src="../../Images/pencil.gif" width="14" height="14"/>
               <% } %>
               </TD>
          </TR>
          <% } %>
</TABLE>
<BR>
     <DIV align="center"><INPUT type="submit" name="btnBack" value="Back"> <INPUT type="submit" name="btnSubmit" value="Submit"></DIV>
</FORM>
and in my action class i have
session.setAttribute("MASTERLIST",quoteRateMasterList);
I have to change the JSP using struts tags ......
also depending on the chechkec value of the checkbox i have to get those records back in my action class---something like this----
request.getParameterValues("chkEditFlag");
               requestArray = request.getParameterValues("chkEditFlag");
for each checked value i have to perform some action in the action class.....
can somebody help
thanks in advance

Hi Kamal, Thank you so much for ur response.
I am herewith writing in detail the flow of my program. The fetching of 50000 rows from the remote database is not consuming time, because i hit the database only once and fetch all the records in an array cursor and do the actual processing in a for loop at my end. Only the 'for loop' is consuming so much time. Please tell me if there is any other way the 'for loop' time can be reduced.
program flow
consider the table name as (T1) in another database with 50000 records and the table name as (T2) in my end with 1000 records
<Cursor Declaration>
while(1)
<Array Cursor Fetch from table(T1) containing 50000 records from another database. I Hit once and fetch all the records in the array cursor)>
:value1,-------------------Array Cursor
:value2
count=sqlca.sqlerrd[2]; (Here i take the count of records)
for (i=0;i<count;i++)-------------------------> here count value is 50000
     for (j=0;j<count1;j++)---------(count1 is the count of records in my side
table(T2)---here the count is 1000.)
          name_match();
          address_match();
} /* Here i close while loop */
name_match()
     here i use my logic to do name match. here i match the name field in T1 with the name field in T2 using some logic and if a match occurs i display it in the report. the matching logic is defined by the organization and cannot be changed.
Address_match()
     for address match i have to hit another table at my end containing address field and match with the address field in T1 and if a match occurs i display it in the report..
this is the logic i am using. The for loop is executing 50000000 times which is time consuming. is there any other way to achive this. Expecting your reply....thanks in advance.
Regards,

Similar Messages

  • JSP - Nested Jakarta Struts Logic Tags

    Hi,
    Simple question....
    Can Jakarta Struts Logic tags be nested when coding JSP's
    i.e.
    ==========================================
    <logic:iterate id="searchSizeTracker" name="searchSizeTracker" type="uk.co.troutlure.bom.SearchTrackerObject" scope="request">
    <logic:greaterEqual name='searchSizeTracker' property='page_no' value='<%searchActionForm.getCurrentPage()%>'>
    <logic:lessEqual name='searchSizeTracker' property='page_no' value='<%searchActionForm.getMaxPage()%>'>
    <logic:equal name='searchSizeTracker' property='page_no' value='<%searchActionForm.getCurrentPage()%>'>
    <jsp:getProperty name="searchSizeTracker" property="page_no"/>
    </logic:equal>
    <logic:notEqual name='searchSizeTracker' property='page_no' value='<%searchActionForm.getCurrentPage()%>'>
    <a href="<%=request.getContextPath()%>/performSearch.do?pageRequired=<bean:write name='searchSizeTracker' property='page_no'/>&action_id=<bean:write name='searchActionForm' property='currentActionId'/>&searchType=<bean:write name='searchActionForm' property='searchType'/>&currentScreen=search_reorder"><jsp:getProperty name="searchSizeTracker" property="page_no"/>
    </a>
    </logic:notEqual>
    </logic:lessEqual>
    </logic:greaterEqual>
    </logic:iterate>
    =========================================
    The above code sample seems to fail to get past the first <logic:greaterEqual tag even though the conditions are met. And the iterator just loops throught the rest of the SearchTrackerObjects.
    I'm not sure whether logic tags can be nested as shown???
    Thanks in advance.

    Yes you should be able to nest logic tags like that.
    However you seem to be wanting to limit the values that are iterated through using the greaterEqual and lessEqual tags.
    I would suggest you use the offset and length attributes on the logic:iterate tag:
    something like:
    <logic:iterate id="searchSizeTracker" name="searchSizeTracker" type="uk.co.troutlure.bom.SearchTrackerObject" scope="request" offset ="<%searchActionForm.getCurrentPage()%>" length="<%searchActionForm.getMaxPage() - searchActionForm.getCurrentPage()%>">Cheers,
    evnafets

  • How can I evaluate if a collection is empty or not with struts logic tag?

    How can I evaluate if a collection is empty or not with struts logic tag?
    I tried with logic empty tag. but the tag evaluated if a collection is null or not.
    I would like to do like this below.
    List list = new ArrayList();
    set(list);
    <logic:XXXX name="someForm" property="list">
    The list size is 0.
    </logic>thanks in advance.

    U can use :
    <logic:present name="urform" property="urlist">
    </logic:present>
    to check "urlist" is empty or not

  • How to use struts Logic tags in weblogic8.1

    hi
              i have used jakarta struts in JDeveloper there i used logic tags
              but the same i have to use in weblogic8.1 ,how should i use it
              i am new to weblogic platform
              it is very urgent
              please

    Hi harish,
              Procedure for using a Struts Tag Libraries in weblogic 8.1 :
              â€¢Copy the tag lib jar files under WEB-INF/lib ( if tag handler supplied as
              classes without package a jar file then we need to copy the classes
              under WEB_INF/classes.
              â€¢ Copy the tld files files under WEB-INF or create a directory under
              WEB-INF and copy tld files under this directory.
              â€¢ We need to give the information about the tag libraries in web.xml by
              adding the following lines to it as,
              <taglib>
              <taglib-uri>bean</taglib-uri>
              <taglib-location>/WEB-INF/struts-bean.tld</taglib-location>
              </taglib>
              <taglib>
              <taglib-uri>html</taglib-uri>
              <taglib-location>/WEB-INF/struts-html.tld</taglib-location>
              </taglib>
              <taglib>
              <taglib-uri>logic</taglib-uri>
              <taglib-location>/WEB-INF/struts-logic.tld</taglib-location>
              </taglib>
              To use tags in jsp file we need to add taglib directive as ,
              <%@ taglib uri="logic" prefix=“logic"%>
              <%@ taglib uri="html" prefix=“html"%>
              <%@ taglib uri="bean" prefix=“bean"%>
              Every tag can support zero or more number of attributes and a tag may or
              may not support body content
              Every Tag Library Uniquely identified by uri defined in web.xml.
              we can use the tags in jsp according to the tags and attributes which are defined in *.tld files.
              if we look at .tld files we can find several tags and its attributes.
              note :any jar files that are related to struts framework ,place under the lib directory of the webapplication.
              ----- Anilkumar kari

  • Help required  urgently please help

    i am facing problem on oracle 9i platform the problem is
    ORA-00379: no free buffers available in buffer pool DEFAULT for block size 16K
    WHILE I AM EXECUTING THIS SQL COMMAND
    SELECT * FROM PR_RMRDDATA_M
    PR_RMRDDATA_M IS ONE OF MY VERY BIG TABLE

    BPeasland wrote:
    I guess a response after 4.5 months means the help was not required urgently. ;)
    Cheers,
    BrianGlance at the timestamps again...
    It wasn't 4.5 months. It was a year and 4.5 months.
    <insert smiley emoticon here>
    Additionally, the original poster abandoned the thread after they stopped shouting at everyone.
    Their username profile shows they almost never return to mark anything "resolved".
    This thread is now locked to prevent more "me too" resurrection posts.

  • Java Mail,SMTP server not starting,help required urgently

    Hi i have been working on java mail .Yesterday it was working ok but today suddenely i am getting this thing.its not starting the smtp server i guess,just exiting and get the command prompt ..dont know what to do.help required how to go about this error
    am pasting the debug information.please check and let me know
    the compilation ,smtp server and others are all valid
    thanks
    Microsoft Windows XP [Version 5.1.2600]
    (C) Copyright 1985-2001 Microsoft Corp.
    C:\Documents and Settings\Pavan>cd C:\Program Files\Java\jdk1.5.0_07\bin
    C:\Program Files\Java\jdk1.5.0_07\bin>javac jdbcExample3.java
    C:\Program Files\Java\jdk1.5.0_07\bin>java jdbcExample3 smtpserver address
    DEBUG: JavaMail version 1.4ea
    DEBUG: java.io.FileNotFoundException: C:\Program Files\Java\jdk1.5.0_07\jre\lib\
    javamail.providers (The system cannot find the file specified)
    DEBUG: !anyLoaded
    DEBUG: not loading resource: /META-INF/javamail.providers
    DEBUG: successfully loaded resource: /META-INF/javamail.default.providers
    DEBUG: Tables of loaded providers
    DEBUG: Providers Listed By Class Name: {com.sun.mail.smtp.SMTPSSLTransport=javax
    .mail.Provider[TRANSPORT,smtps,com.sun.mail.smtp.SMTPSSLTransport,Sun Microsyste
    ms, Inc], com.sun.mail.smtp.SMTPTransport=javax.mail.Provider[TRANSPORT,smtp,com
    .sun.mail.smtp.SMTPTransport,Sun Microsystems, Inc], com.sun.mail.imap.IMAPSSLSt
    ore=javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Sun Microsyst
    ems, Inc], com.sun.mail.pop3.POP3SSLStore=javax.mail.Provider[STORE,pop3s,com.su
    n.mail.pop3.POP3SSLStore,Sun Microsystems, Inc], com.sun.mail.imap.IMAPStore=jav
    ax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Sun Microsystems, Inc],
    com.sun.mail.pop3.POP3Store=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP
    3Store,Sun Microsystems, Inc]}
    DEBUG: Providers Listed By Protocol: {imaps=javax.mail.Provider[STORE,imaps,com.
    sun.mail.imap.IMAPSSLStore,Sun Microsystems, Inc], imap=javax.mail.Provider[STOR
    E,imap,com.sun.mail.imap.IMAPStore,Sun Microsystems, Inc], smtps=javax.mail.Prov
    ider[TRANSPORT,smtps,com.sun.mail.smtp.SMTPSSLTransport,Sun Microsystems, Inc],
    pop3=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Sun Microsystems
    , Inc], pop3s=javax.mail.Provider[STORE,pop3s,com.sun.mail.pop3.POP3SSLStore,Sun
    Microsystems, Inc], smtp=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.S
    MTPTransport,Sun Microsystems, Inc]}
    DEBUG: successfully loaded resource: /META-INF/javamail.default.address.map
    DEBUG: !anyLoaded
    DEBUG: not loading resource: /META-INF/javamail.address.map
    DEBUG: java.io.FileNotFoundException: C:\Program Files\Java\jdk1.5.0_07\jre\lib\
    javamail.address.map (The system cannot find the file specified)
    C:\Program Files\Java\jdk1.5.0_07\bin>

    The debug output doesn't show an obvious problem. You're
    going to have to actually debug your program. A debugger
    might be helpful.

  • Printing a JPanel..............HELP required URGENTLY

    I m doing my application using JPanel which contains labels, textfields and buttons.
    Now I want to print this panel. Is it possible to print a JPanel. IF yes, then plz help me as I m stuck up into this big problem and due to which I m not able to complete my project.
    I tried many codes of printing, but I wasn�t able to print it. One of the code is given below which gives me an error in MouseListener and MouseEvent.
    //*********** Main User Interface Class ************
    public class ComponentPrintingTestUI extends JFrame implements MouseListener {
    //private static MyTextPane myTextPane;
    private static MyJPanel myJPanel;
    public ComponentPrintingTestUI() {
    initComponents();
    private void initComponents() {
    JFrame frame = new JFrame("ComponentPrintingTest");
    //JPanel contentPanel1 = new JPanel();
    //JPanel contentPanel2 = new JPanel();
    JPanel contentPanel3 = new JPanel();
    JPanel contentPanel4 = new JPanel();
    contentPanel3.setMaximumSize(new Dimension(270,170));
    contentPanel3.setMinimumSize(new Dimension(270,170));
    contentPanel3.setPreferredSize(new Dimension(270,170));
    //JButton textPrint = new JButton("Print TextPane");
    //textPrint.addMouseListener(this);
    JButton panelPrint = new JButton("Print JPanel");
    panelPrint.addMouseListener(this);
    //myTextPane = new MyTextPane();
    //myTextPane.setEditable(false);
    myJPanel = new MyJPanel();
    //contentPanel1.add(myTextPane, BorderLayout.CENTER);
    //contentPanel2.add(textPrint, BorderLayout.CENTER);
    contentPanel3.add(myJPanel, BorderLayout.CENTER);
    contentPanel4.add(panelPrint, BorderLayout.CENTER);
    //frame.add(contentPanel1, BorderLayout.NORTH);
    //frame.add(contentPanel2, BorderLayout.CENTER);
    frame.add(contentPanel3, BorderLayout.NORTH);
    frame.add(contentPanel4, BorderLayout.SOUTH);
    frame.setSize(1280,1024);
    frame.setVisible(true);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    public void mouseClicked(MouseEvent arg0) {
    // EditorFrame extends JFrame and has all the, well, editing stuff
    //EditorFrame frame = ClerkUtilities.getEventSourceFrame(e); // method simply grabs the source frame
    //PrintableTextPane tp = frame.getTextPane();
    PrinterJob printJob = PrinterJob.getPrinterJob();
    //PageFormat pf = printJob.defaultPage();
    //pf.setOrientation(PageFormat.LANDSCAPE);
    printJob.setPrintable(myJPanel);
    if (printJob.printDialog())
    try
    printJob.print();
    } // end try
    catch (Exception ex)
    ex.printStackTrace();
    } // end Exception catch
    } // end if
    //*********** Custom JPanel Class *************
    public class MyJPanel extends JPanel implements Printable {
    public MyJPanel() {
    initComponents();
    private void initComponents() {
    this.setMaximumSize(new Dimension(270,170));
    this.setMinimumSize(new Dimension(270,170));
    this.setPreferredSize(new Dimension(270,170));
    this.setBackground(Color.GRAY);
    public void paint(Graphics g) {
    super.paintComponent(g);
    Graphics2D g2 = (Graphics2D) g;
    g2.drawString("Sample drawstring", 20, 20);
    g2.drawString("Bottom line", 20, 150);
    public int print(Graphics g, PageFormat pageFormat, int pageIndex) throws PrinterException
    /* get component width and table height */
    Dimension dimension = this.getSize();
    double compWidth = dimension.width;
    double compHeight = dimension.height;
    System.out.println("Comp width: " + compWidth);
    System.out.println("Comp height: " + compHeight);
    Paper card = pageFormat.getPaper();
    card.setImageableArea(0, 0, 153, 243);
    card.setSize(153,243);
    pageFormat.setPaper(card);
    pageFormat.setOrientation(PageFormat.LANDSCAPE);
    /* get page width and page height */
    //double pageWidth = pageFormat.getImageableWidth();
    //double pageHeight = pageFormat.getImageableHeight();
    //double scale = pageWidth / compWidth;
    //double scale = compWidth / pageWidth;
    //System.out.println("Page width: " + pageWidth);
    //System.out.println("Page height: " + pageHeight);
    //System.out.println("Scale: " + scale);
    /* calculate the no. of pages to print */
    //final int totalNumPages= (int)Math.ceil((scale * compHeight) / pageHeight);
    if (pageIndex > 3)
    System.out.println("Total pages: " + pageIndex);
    return(NO_SUCH_PAGE);
    } // end if
    else
    Graphics2D g2d = (Graphics2D)g;
    g2d.translate(pageFormat.getImageableX(), pageFormat.getImageableY());
    System.out.println("Coords: " + pageFormat.getImageableX() + ", " + pageFormat.getImageableY());
    g2d.translate( 0f, 0f );
    //g2d.translate( 0f, -pageIndex * pageHeight );
    //g2d.scale( scale, scale );
    this.paint(g2d);
    return(PAGE_EXISTS);
    } // end else
    } // end print()
    //*********** Starter Class **********
    //public class ComponentPrintingTest {
    * @param args
    public static void main(String args[]) {
    java.awt.EventQueue.invokeLater(new Runnable() {
    public void run() {
    ComponentPrintingTestUI ui = new ComponentPrintingTestUI();
    //ui.setVisible(true);
    I m a newbie to java and don�t have any idea abt printing of Panel. Plz Plz Plz help me.
    Thanks in advance.

    mansi_b85, next time when you post a question:
    - please use code tags (http://forum.java.sun.com/help.jspa?sec=formatting);
    - don't flag your question as urgent which you have done in 3 of your 4 posts here. This implies that your question is more important than other people's questions and/or your time is more valuable than ours (ours as in people who (try to) answer your question). This is considered rude;
    - try writing whole words instead of that horrible sms-speak (plz and abt)
    - post swing related questions in the swing forum.
    Thanks.

  • ... PPL Help required Urgent for Viewing Data

    Hi . sorry for such simple question..
    I have displayed 3 different blocks on a same canvas1 and one block on tab canvas placed on the canvas1
    Now i made a menu bar where one of my menu is
    view data.
    behind that menu i m writing the code.
    select st_id from Site where st_id = :txtstid;
    but when i compile it says bad bind variable :txtstid;
    when i remove the colon, it says identifier required txtstid...
    Now what to do..
    Then i wrote..
    go_block('Site');
    go_item('item1')
    and now it compiled properly but when i run it .. it is not giong to that item..
    may b i m doing something wrong.. how to interact with menu s..
    cant i put the same functionality behind them as we do behind button press triggers..
    I need to do it urgent so kindly asses what is happening ..
    cant we place more than one block on same canvas and then access thier items
    with the block name.
    like Site.stid.
    stid by the way is the text item.. that contains the site ids.. at run time..
    Kindly gimme some advices. the form is so large that it is not easier me making it again..
    BR

    One more thing ppl...
    the same fucntionality is working behind the Button i have created..
    so plz help it out.. BR

  • GroupWise Help Required || Urgent

    hi Experts,
    please help me on below queries -
    (A) Create Contacts in Global Address book in Novell GroupWise server manually. i have exchange servers in my Organization and i want to view my exchange mailboxes in GroupWise Address book so that my users can directly send mails to exchange users via Address lists.(external contacts in exchange are known as mail contacts/contacts. also i dont want to use any third party tool for Dirsync/migration purpose).
    (B) Set Forwarder on GroupWise Mailbox so that new incoming mail will be deliver to remote domain recipient (exchange mailbox) with or without delivering to GroupWise Mailbox locally). i don't want to configure client rules to achieve this goal. i need this to be done via central administration tool for GroupWise servers.
    (C) if we create External Contact with different Email Domain Name (i.e. @XYZ.Com, which is my exchange SMTP Domain) and we have Primary Domain as @ABC.Com (this is my GroupWise SMTP Domain), in this condition can we assign additional email address to external User. so that my external user will have both GroupWise SMTP Email Address and Exchange SMTP Address. in this case new mails to my GroupWise ID should be delivered to my exchange Mailbox because i don't want to keep mailbox in Groupwise
    it is really urgent and any information or step by step docs or Urls are really appreciated.
    i have gone through the non-groupwise domain creation document but not sure what server and domain name entries i have to put during configuration for Non-Groupwise domain and external users. also what would be GIWA configuration. please provide me the SOPs if any one has already done this in past.
    regards,
    Aanand Karki

    AanandKarki wrote:
    >
    > hi Experts,
    >
    > please help me on below queries -
    >
    > (A) Create Contacts in Global Address book in Novell GroupWise server
    > manually. i have exchange servers in my Organization and i want to
    > view my exchange mailboxes in GroupWise Address book so that my users
    > can directly send mails to exchange users via Address lists.(external
    > contacts in exchange are known as mail contacts/contacts. also i dont
    > want to use any third party tool for Dirsync/migration purpose).
    >
    > (B) Set Forwarder on GroupWise Mailbox so that new incoming mail will
    > be deliver to remote domain recipient (exchange mailbox) with or
    > without delivering to GroupWise Mailbox locally). i don't want to
    > configure client rules to achieve this goal. i need this to be done
    > via central administration tool for GroupWise servers.
    >
    > (C) if we create External Contact with different Email Domain Name
    > (i.e. @XYZ.Com, which is my exchange SMTP Domain) and we have Primary
    > Domain as @ABC.Com (this is my GroupWise SMTP Domain), in this
    > condition can we assign additional email address to external User. so
    > that my external user will have both GroupWise SMTP Email Address and
    > Exchange SMTP Address. in this case new mails to my GroupWise ID
    > should be delivered to my exchange Mailbox because i don't want to
    > keep mailbox in Groupwise
    >
    > it is really urgent and any information or step by step docs or Urls
    > are really appreciated.
    This is all handled by our new GroupWise/Exchange coexistence solution.
    There's no need to create anything manually on either side. With
    coexistence configured, users on both sides automatically sync as
    contacts on the other side, plus you also get free/busy searching.
    Here's the documention on coexistence.
    http://www.novell.com/documentation/.../bookinfo.html
    Please note this also requires some additional licensing. Please
    contact your friendly Novell sales rep or partner for more assistance.
    Your world is on the move. http://www.novell.com/mobility/
    We know what your world looks like. http://www.novell.com/yourworld/

  • Help required URGENTLY regarding 9iASWE - logged in Username

    Hi,
    I have installed Oracle 9iASWE. I have been able to create services and access it through ptg/rm.
    One of my service needs to access the username through which the user has logged in. I have tried creating the bind variable :_User as a input parameter in my service. But i have not been able to get the user name . Can anybody tell me how do i exactly get the user name.
    Please reply if more details are required to get the solution.
    Please reply ASAP.
    email: [email protected]
    regards.

    Hi,
    Thanks for the reply. But we are not using URL Adapter.
    We are using a SQL Adapter and calling a stored procedure from it.
    We are using the :_User variable to get the username, but cannot figure out a way to pass it from the SQL Adapter to the procedure.
    Please help.
    regards
    Kamlesh

  • J2ME Help required (URGENT !!!)

    Hello everyone,
    Well I'm a newbie to this J2ME thing, I am working on a project right now which requires me to develop an application for my mobile phone Sony Ericsson W810i. This application accesses the on board camera and take images after every 1 sec and keep on saving the last 2 images in 2 different files or buffers. Once the images are obtained, Sobel Filter (Image processing) is applied on it for edge detection. Can anyone please help me with this all, I am really desperate and time is running out.
    At the moment, I found this code on Sony Ericsson Developer forums which works perfectly fine with my W810i, the link to the code is as follows,
    http://developer.sonyericsson.com/site/global/techsupport/tipstrickscode/java/p_java_0403.jsp
    Well this takes one image and shows it on the canvas, however I am still trying to figure out a way to remove the question it asks whenever i press the button SNAPSHOT, it asks "Do u want to allow the application to access Camera?", is there a way to remove this as well. Please let me know.
    Last thing, the getSnapshot is used as vc.getSnapshot(null), i read and changed it to vc.getSnapshot("encoding=jpeg");
    This works fine with my mobile as well, but now i cant find any help on how to apply image processing on this encoded jpeg !!! Well please reply, as much as u know, u dun have to answer all the questions, any information regarding this is helpful, I'll be extremely grateful !!!
    Thanks a lot,
    Regards,
    Mubin Khan

    Hi mobeenkhan
    You know, people are helping out voluntarily here. So it always helps to ask nicely. :-)
    This is what you need to know (not really, since you probably won't use it)
    A signed MIDlet may request higher access rights for specific actions by asking for them in the MIDlet-Permissions attribute of the MIDlet&#8217;s application descriptor.
    The permission name for audio / video recording is:
    javax.microedition.media.control.RecordControl
    The permission name for camera snapshot is:
    javax.microedition.media.control.VideoControl.getSnapshot
    Try a Google search for "jad permissions midlet media camera".
    And check whether, in your SE W810i, you can set the pernission for camera ( it may be called media access etc.) to 'Ask once per application' or something like that. This will be set from the File Manager (or Application manager, I haven't handled the W810i, only SE I've dealt with is the k700i), not when the app is running.
    If your application isn't digitally signed, you probably won't be able to select a setting like 'Never Ask' -- and a digital signature can be fairly expensive, not something you might want to go for unless you're going to earn something out of marketing your products.
    Be nice to everybody :-)
    Darryl

  • Table Maintanance Help Required-urgent

    Hi All,
    I generating table maintanance generator for the table zuser_Secobjects. In this table GUID is a primary key and APPLN,APPLN_TYPE,PARTNER_TYPE are the non primary keys.  I am using two screens method here. on both screens i am not showing GUID ( i am hiding this field in screen1 and screen 2) whenvere new record is created for every record guid is going to create. now my reuirement when i click on position(pushbutton) name in screen 1 it has to show APPLN,APPLN_TYPE,PARTNER_TYPE where as these 4 fields are non primary keys . i am getting uniqire record using guid. so i am keeping guid as primary key.i can't keep these 4 fields as primary keys in the table zuser_secobjects.
    anybody can faced this kind of problem if so please let me know whow to approach in this case.
    thanks,
    maheedhar.t

    Hai Maheedhar,
    I have also faced the related problem.
    <b>Please refer the below links.</b>
    <b>It will helps you a lot.</b>
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/abap/how%20to%20implement%20events%20in%20table%20maintenance.doc
    Table Maintenance generator is required to do Manual entries in the Table. If the requirement is to update the table only programmatically and not manually then table maint. generator is not required.
    Manual entries in table can be maintained ( New record can be inserted / existing can be modified ) using transaction SM 30, if the table maintenance for the table is generated.
    <b>Don'forget to activate it.</b>
    How to activate Table maint.
    Goto SE11 and open the table.
    Click UTILITIES -> Table Maint. Generator, Enter the details and click on Save. Then activate the table.
    <b>Please refer the below links.</b>
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/abap/how%20to%20implement%20events%20in%20table%20maintenance.doc
    <b>Reward points if it helps you.</b>
    Regds,
    Rama chary.Pammi

  • Purchase Requisition Release Strategy ---- help required urgently.

    Hello all,
    I have one severe problem in PR release strategy. Whenever we create a PR the Release is triggering but the name of the processer who will release this PR is not triggering. I have done the PO13, where the HR positions are maintained as per the release levels and PA30 where the SAP user ids of these processers is given. But still the processor name is not triggering. Is there any other transaction where we have to maintain certain data?? Kindly help me as this is an urgent issue.
    I will be very glad and give points to all of u.
    Thanks and Regards,
    Umakanth.

    hi,
    Check your release codes and its assignments in the release strategy..
    Also do check whether the PR is liable to trigger for the given characteristics as compared to your PR which you are making...
    Regards
    Priyanka.P

  • GroupWise 8.0.3 Help Required || Urgent

    hi Experts,
    please help me on below queries -
    (A) Create Contacts in Global Address book in Novell GroupWise server manually. i have exchange servers in my Organization and i want to view my exchange mailboxes in GroupWise Address book so that my users can directly send mails to exchange users via Address lists.(external contacts in exchange are known as mail contacts/contacts. also i dont want to use any third party tool for Dirsync/migration purpose).
    (B) Set Forwarder on GroupWise Mailbox so that new incoming mail will be deliver to remote domain recipient (exchange mailbox) with or without delivering to GroupWise Mailbox locally). i don't want to configure client rules to achieve this goal. i need this to be done via central administration tool for GroupWise servers.
    (C) if we create External Contact with different Email Domain Name (i.e. @XYZ.Com, which is my exchange SMTP Domain) and we have Primary Domain as @ABC.Com (this is my GroupWise SMTP Domain), in this condition can we assign additional email address to external User. so that my external user will have both GroupWise SMTP Email Address and Exchange SMTP Address. in this case new mails to my GroupWise ID should be delivered to my exchange Mailbox because i don't want to keep mailbox in Groupwise
    it is really urgent and any information or step by step docs or Urls are really appreciated.
    i have gone through the non-groupwise domain creation document but not sure what server and domain name entries i have to put during configuration for Non-Groupwise domain and external users. please provide me the SOPs if any one has already done this in past.
    regards,
    Aanand Karki

    If you do all the above, the GroupWise mailboxes would seem to not be used any longer. Why would you want to do all of this in the first place?

  • SSL help required : urgent !!!

    I have been trying to setup OC4J in 2 way SSL mode for a couple of days but have been facing some issues with it.
    I see these some errors when I access it from IE
    <MSG_TEXT>Exception in SelectionKey cancel</MSG_TEXT>
    <SUPPL_DETAIL><![CDATA[java.lang.NullPointerException
         at oracle.oc4j.network.ServerSocketAcceptHandler$IdleHandlers.closeIdleHandler(ServerSocketAcceptHandler.java:583)
         at oracle.oc4j.network.ServerSocketAcceptHandler$IdleHandlers.expireHandlers(ServerSocketAcceptHandler.java:604)
         at oracle.oc4j.network.ServerSocketAcceptHandler.selectorThreadHouseKeeping(ServerSocketAcceptHandler.java:217)
         at oracle.oc4j.network.NIOServerSocketDriver.selfHouseKeeping(NIOServerSocketDriver.java:129)
         at oracle.oc4j.network.NIOServerSocketDriver.run(NIOServerSocketDriver.java:149)
         at com.evermind.server.http.HttpConnectionListener.run(HttpConnectionListener.java:294)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:298)
         at java.lang.Thread.run(Thread.java:595)
    ]]></SUPPL_DETAIL>
    Could anybody help me with this!!! Provide me appropriate pointers for setting up OC4J in 2 way SSL mode. I have been searching for documents but have not been able to find it.
    I would also like to send the certificate programatically so is there any sample code available for that.
    Thanks in advance.....
    Nilesh

    Thanks for the prompt reply. I have another difficulty see if you can help
    This is the output that is generated in the JDeveloper console on running the example from b14429.pdf (OC4J guide). Examle :
    ====================================================
    import HTTPClient.HTTPConnection;
    import HTTPClient.HTTPResponse;
    import javax.security.cert.X509Certificate;
    import oracle.security.ssl.OracleSSLCredential;
    import java.io.IOException;
    import javax.net.ssl.SSLPeerUnverifiedException;
    public class SSLSocketClientWithClientAuth {
    public static void main(String[] args) {
    if (args.length < 4) {
    System.out.println("Usage: java HTTPSConnectionTest [host] [port] " +
    "[wallet] [password]");
    System.exit(-1);
    String hostname = args[0].toLowerCase();
    int port = Integer.decode(args[1]).intValue();
    String walletPath = args[2];
    String password = args[3];
    HTTPConnection httpsConnection = null;
    OracleSSLCredential credential = null;
    try {
    httpsConnection = new HTTPConnection("https", hostname, port);
    } catch (IOException e) {
    System.out.println("HTTPS Protocol not supported");
    System.exit(-1);
    try {
    credential = new OracleSSLCredential();
    credential.setWallet(walletPath, password);
    } catch (IOException e) {
    System.out.println("Could not open wallet");
    System.exit(-1);
    httpsConnection.setSSLEnabledCipherSuites(new String[]{"SSL_RSA_WITH_3DES_EDE_CBC_SHA"});
    httpsConnection.setSSLCredential(credential);
    try {
    httpsConnection.connect();
    } catch (IOException e) {
    System.out.println("Could not establish connection");
    e.printStackTrace();
    System.exit(-1);
    // X509Certificate x509 = new X509Certificate();
    //javax.servlet.request.
    X509Certificate[] peerCerts = null;
    try {
    peerCerts =
    (httpsConnection.getSSLSession()).getPeerCertificateChain();
    } catch (javax.net.ssl.SSLPeerUnverifiedException e) {
    System.err.println("Unable to obtain peer credentials");
    e.printStackTrace();
    System.exit(-1);
    String peerCertDN =
    peerCerts[peerCerts.length - 1].getSubjectDN().getName();
    peerCertDN = peerCertDN.toLowerCase();
    if (peerCertDN.lastIndexOf("cn=" + hostname) == -1) {
    System.out.println("Certificate for " + hostname +
    " is issued to " + peerCertDN);
    System.out.println("Aborting connection");
    System.exit(-1);
    try {
    HTTPResponse rsp = httpsConnection.Get("/");
    System.out.println("Server Response: ");
    System.out.println(rsp);
    } catch (Exception e) {
    System.out.println("Exception occured during Get");
    e.printStackTrace();
    System.exit(-1);
    ================================================================
    C:\j2sdk1.4.2_09\bin\javaw.exe -client -classpath "D:\eclipse\workspace\OC4JClient\OC4JClient\classes;D:\eclipse\workspace\jdev\extensions\.jar;C:\Documents and Settings\nilesh_bafna\Desktop\Nitin\lib\jssl-1_1.jar;E:\product\10.1.3.1\OracleAS_1\j2ee\home\lib\http_client.jar;E:\product\10.1.3.1\OracleAS_1\jlib\javax-ssl-1_1.jar" -Djava.protocol.handler.pkgs=HTTPClient -Djavax.net.debug=ssl -Djavax.net.ssl.keyStore=F:/oc4jcert/client.keystore -Djavax.net.ssl.keyStorePassword=welcome1 -Djavax.net.ssl.trustStore=F:/oc4jcert/client.keystore -Djavax.net.ssl.trustStorePassword=welcome1 -DOracle.ssl.defaultCipherSuites=SSL_RSA_WITH_RC4_128_MD5 SSLSocketClientWithClientAuth ps4372.persistent.co.in 443 F:/oc4jcert/client.keystore welcome1
    keyStore is : F:/oc4jcert/client.keystore
    keyStore type is : jks
    init keystore
    init keymanager of type SunX509
    found key for : oracle-client
    chain [0] = [
    Version: V3
    Subject: CN=ps4372.persistent.co.in, OU=Marketing, O=Oracle, L=Atlanta, ST=Georgia, C=US
    Signature Algorithm: MD5withRSA, OID = 1.2.840.113549.1.1.4
    Key: SunJSSE RSA public key:
    public exponent:
    010001
    modulus:
    87fcc8e9 0ffcef8e 61f3be10 be7c9715 2792849b 3bbdeb1c cc76b337 4b82bbab
    86972c63 9af3adfd 35b5df99 9078a0d1 6dc760d8 0549a95a bfa7648a 9eadd326
    a6bc4b61 d8f8b42f 44e0b178 ff1dee20 db8406cd d800c26a 9c5a6ed9 4d6f2aef
    bc919814 3b46be39 e129280c e83afe12 c9d4e3d7 fb5787b1 d98bed4a 4f0833d5
    Validity: [From: Thu Jan 18 21:18:14 GMT+05:30 2007,
    To: Wed Apr 18 21:18:14 GMT+05:30 2007]
    Issuer: CN=ps4372.persistent.co.in, OU=Marketing, O=Oracle, L=Atlanta, ST=Georgia, C=US
    SerialNumber: [ 45af96be]
    Algorithm: [MD5withRSA]
    Signature:
    0000: 41 47 35 41 90 10 E3 77 A7 F3 F5 81 37 49 4F 57 AG5A...w....7IOW
    0010: 01 11 82 A2 FB 69 46 E8 18 6C EE 11 23 A6 67 2E .....iF..l..#.g.
    0020: 68 4D D6 A6 E7 09 45 24 58 18 9A E5 44 49 10 9B hM....E$X...DI..
    0030: F1 EC 99 4A 45 5F A4 4F 71 3F 05 3D 45 29 42 CD ...JE_.Oq?.=E)B.
    0040: 11 87 DA 0C AA DC 55 4E CF 22 4A 94 85 CB E5 EB ......UN."J.....
    0050: BA E1 10 D2 C8 80 2C 6B 65 94 13 01 1F 6E 18 C3 ......,ke....n..
    0060: 87 33 8C 65 C7 03 16 03 24 FB 0D B0 6D D8 E7 AA .3.e....$...m...
    0070: A1 A5 48 90 0D D6 8C 47 50 2A AA 7C 7B 14 E5 B7 ..H....GP*......
    trustStore is: F:\oc4jcert\client.keystore
    trustStore type is : jks
    init truststore
    adding as trusted cert:
    Subject: CN=ps4372.persistent.co.in, OU=Marketing, O=Oracle, L=Atlanta, ST=Georgia, C=US
    Issuer: CN=ps4372.persistent.co.in, OU=Marketing, O=Oracle, L=Atlanta, ST=Georgia, C=US
    Algorithm: RSA; Serial number: 0x45af96be
    Valid from Thu Jan 18 21:18:14 GMT+05:30 2007 until Wed Apr 18 21:18:14 GMT+05:30 2007
    adding as trusted cert:
    Subject: CN=ps4372.persistent.co.in, OU=Marketing, O=Oracle, L=Atlanta, ST=Georgia, C=US
    Issuer: CN=ps4372.persistent.co.in, OU=Marketing, O=Oracle, L=Atlanta, ST=Georgia, C=US
    Algorithm: RSA; Serial number: 0x45af95dc
    Valid from Thu Jan 18 21:14:28 GMT+05:30 2007 until Wed Apr 18 21:14:28 GMT+05:30 2007
    init context
    trigger seeding of SecureRandom
    done seeding SecureRandom
    %% No cached client session
    *** ClientHello, TLSv1
    RandomCookie: GMT: 1152299454 bytes = { 41, 212, 166, 48, 109, 77, 185, 232, 204, 95, 158, 141, 60, 96, 196, 172, 49, 19, 49, 22, 222, 234, 47, 76, 27, 130, 5, 176 }
    Session ID: {}
    Cipher Suites: [SSL_RSA_WITH_RC4_128_MD5, SSL_RSA_WITH_RC4_128_SHA, TLS_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_DSS_WITH_AES_128_CBC_SHA, SSL_RSA_WITH_3DES_EDE_CBC_SHA, SSL_DHE_RSA_WITH_3DES_EDE_CBC_SHA, SSL_DHE_DSS_WITH_3DES_EDE_CBC_SHA, SSL_RSA_WITH_DES_CBC_SHA, SSL_DHE_RSA_WITH_DES_CBC_SHA, SSL_DHE_DSS_WITH_DES_CBC_SHA, SSL_RSA_EXPORT_WITH_RC4_40_MD5, SSL_RSA_EXPORT_WITH_DES40_CBC_SHA, SSL_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA, SSL_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA]
    Compression Methods: { 0 }
    main, WRITE: TLSv1 Handshake, length = 73
    main, WRITE: SSLv2 client hello message, length = 98
    main, READ: TLSv1 Handshake, length = 839
    *** ServerHello, TLSv1
    RandomCookie: GMT: 1152299454 bytes = { 206, 186, 162, 116, 179, 72, 44, 198, 189, 25, 70, 227, 170, 235, 83, 186, 152, 49, 194, 222, 248, 3, 191, 170, 248, 95, 134, 35 }
    Session ID: {69, 175, 178, 190, 47, 141, 131, 115, 241, 226, 39, 29, 241, 65, 235, 165, 57, 40, 52, 85, 68, 85, 68, 84, 108, 141, 1, 125, 193, 191, 158, 208}
    Cipher Suite: SSL_RSA_WITH_RC4_128_MD5
    Compression Method: 0
    %% Created: [Session-1, SSL_RSA_WITH_RC4_128_MD5]
    ** SSL_RSA_WITH_RC4_128_MD5
    *** Certificate chain
    chain [0] = [
    Version: V3
    Subject: CN=ps4372.persistent.co.in, OU=Marketing, O=Oracle, L=Atlanta, ST=Georgia, C=US
    Signature Algorithm: MD5withRSA, OID = 1.2.840.113549.1.1.4
    Key: SunJSSE RSA public key:
    public exponent:
    010001
    modulus:
    6f24d75b 96919725 ad6ea93a cab0bd96 a49d2f3c e14f5c09 0e228e36 de64e0f2
    f2b82740 1653bdb4 5024d281 21ed8c4c 89bc322b 4dc9ffb2 0e97cd95 16e6fe1e
    380340c9 f3c67e2c 18d06461 f4f30eaf 4394716e 7bc66d80 810a9cb5 9c168b36
    cdd99919 67074ebc edebf02e ebf0accb 2193bc38 7ae1cdda af5ff300 ed0e7763
    Validity: [From: Thu Jan 18 21:14:28 GMT+05:30 2007,
    To: Wed Apr 18 21:14:28 GMT+05:30 2007]
    Issuer: CN=ps4372.persistent.co.in, OU=Marketing, O=Oracle, L=Atlanta, ST=Georgia, C=US
    SerialNumber: [ 45af95dc]
    Algorithm: [MD5withRSA]
    Signature:
    0000: 05 4E EE 12 5B DD 7F 26 92 37 67 C9 D0 73 46 4D .N..[..&.7g..sFM
    0010: 7E A5 1E 67 38 06 D9 5F 9F B7 2F E8 F6 9E BF 88 ...g8.._../.....
    0020: 01 31 7D EA 42 5E 4F 9E D7 8F DA 9F 94 A5 EF 47 .1..B^O........G
    0030: E3 E9 BA DE 94 15 C6 03 DE C9 C0 7D CE 58 C0 27 .............X.'
    0040: 0F 1A 66 EC 73 53 5D 1D DE 7E FA 35 15 E0 2A CC ..f.sS]....5..*.
    0050: C9 74 CC 58 E9 B6 2F 68 A0 89 2B F3 E6 61 7D E1 .t.X../h..+..a..
    0060: 21 AF BE E8 83 49 B1 BD 36 C5 2D 1B 0D A1 0E 63 !....I..6.-....c
    0070: 02 4A 82 71 B0 E1 9C AD 55 67 F9 17 A5 96 18 EB .J.q....Ug......
    Found trusted certificate:
    Version: V3
    Subject: CN=ps4372.persistent.co.in, OU=Marketing, O=Oracle, L=Atlanta, ST=Georgia, C=US
    Signature Algorithm: MD5withRSA, OID = 1.2.840.113549.1.1.4
    Key: SunJSSE RSA public key:
    public exponent:
    010001
    modulus:
    6f24d75b 96919725 ad6ea93a cab0bd96 a49d2f3c e14f5c09 0e228e36 de64e0f2
    f2b82740 1653bdb4 5024d281 21ed8c4c 89bc322b 4dc9ffb2 0e97cd95 16e6fe1e
    380340c9 f3c67e2c 18d06461 f4f30eaf 4394716e 7bc66d80 810a9cb5 9c168b36
    cdd99919 67074ebc edebf02e ebf0accb 2193bc38 7ae1cdda af5ff300 ed0e7763
    Validity: [From: Thu Jan 18 21:14:28 GMT+05:30 2007,
    To: Wed Apr 18 21:14:28 GMT+05:30 2007]
    Issuer: CN=ps4372.persistent.co.in, OU=Marketing, O=Oracle, L=Atlanta, ST=Georgia, C=US
    SerialNumber: [ 45af95dc]
    Algorithm: [MD5withRSA]
    Signature:
    0000: 05 4E EE 12 5B DD 7F 26 92 37 67 C9 D0 73 46 4D .N..[..&.7g..sFM
    0010: 7E A5 1E 67 38 06 D9 5F 9F B7 2F E8 F6 9E BF 88 ...g8.._../.....
    0020: 01 31 7D EA 42 5E 4F 9E D7 8F DA 9F 94 A5 EF 47 .1..B^O........G
    0030: E3 E9 BA DE 94 15 C6 03 DE C9 C0 7D CE 58 C0 27 .............X.'
    0040: 0F 1A 66 EC 73 53 5D 1D DE 7E FA 35 15 E0 2A CC ..f.sS]....5..*.
    0050: C9 74 CC 58 E9 B6 2F 68 A0 89 2B F3 E6 61 7D E1 .t.X../h..+..a..
    0060: 21 AF BE E8 83 49 B1 BD 36 C5 2D 1B 0D A1 0E 63 !....I..6.-....c
    0070: 02 4A 82 71 B0 E1 9C AD 55 67 F9 17 A5 96 18 EB .J.q....Ug......
    *** CertificateRequest
    Cert Types: RSA, DSS,
    Cert Authorities:
    <CN=ps4372.persistent.co.in, OU=Marketing, O=Oracle, L=Atlanta, ST=Georgia, C=US>
    *** ServerHelloDone
    matching alias: oracle-client
    *** Certificate chain
    chain [0] = [
    Version: V3
    Subject: CN=ps4372.persistent.co.in, OU=Marketing, O=Oracle, L=Atlanta, ST=Georgia, C=US
    Signature Algorithm: MD5withRSA, OID = 1.2.840.113549.1.1.4
    Key: SunJSSE RSA public key:
    public exponent:
    010001
    modulus:
    87fcc8e9 0ffcef8e 61f3be10 be7c9715 2792849b 3bbdeb1c cc76b337 4b82bbab
    86972c63 9af3adfd 35b5df99 9078a0d1 6dc760d8 0549a95a bfa7648a 9eadd326
    a6bc4b61 d8f8b42f 44e0b178 ff1dee20 db8406cd d800c26a 9c5a6ed9 4d6f2aef
    bc919814 3b46be39 e129280c e83afe12 c9d4e3d7 fb5787b1 d98bed4a 4f0833d5
    Validity: [From: Thu Jan 18 21:18:14 GMT+05:30 2007,
    To: Wed Apr 18 21:18:14 GMT+05:30 2007]
    Issuer: CN=ps4372.persistent.co.in, OU=Marketing, O=Oracle, L=Atlanta, ST=Georgia, C=US
    SerialNumber: [ 45af96be]
    Algorithm: [MD5withRSA]
    Signature:
    0000: 41 47 35 41 90 10 E3 77 A7 F3 F5 81 37 49 4F 57 AG5A...w....7IOW
    0010: 01 11 82 A2 FB 69 46 E8 18 6C EE 11 23 A6 67 2E .....iF..l..#.g.
    0020: 68 4D D6 A6 E7 09 45 24 58 18 9A E5 44 49 10 9B hM....E$X...DI..
    0030: F1 EC 99 4A 45 5F A4 4F 71 3F 05 3D 45 29 42 CD ...JE_.Oq?.=E)B.
    0040: 11 87 DA 0C AA DC 55 4E CF 22 4A 94 85 CB E5 EB ......UN."J.....
    0050: BA E1 10 D2 C8 80 2C 6B 65 94 13 01 1F 6E 18 C3 ......,ke....n..
    0060: 87 33 8C 65 C7 03 16 03 24 FB 0D B0 6D D8 E7 AA .3.e....$...m...
    0070: A1 A5 48 90 0D D6 8C 47 50 2A AA 7C 7B 14 E5 B7 ..H....GP*......
    JsseJCE: Using JSSE internal implementation for cipher RSA/ECB/PKCS1Padding
    *** ClientKeyExchange, RSA PreMasterSecret, TLSv1
    Random Secret: { 3, 1, 236, 206, 185, 158, 75, 201, 230, 16, 170, 40, 193, 70, 188, 134, 36, 134, 14, 20, 191, 121, 246, 8, 7, 2, 137, 66, 166, 10, 185, 246, 104, 154, 27, 82, 161, 133, 11, 130, 11, 130, 71, 84, 155, 165, 239, 227 }
    main, WRITE: TLSv1 Handshake, length = 763
    SESSION KEYGEN:
    PreMaster Secret:
    0000: 03 01 EC CE B9 9E 4B C9 E6 10 AA 28 C1 46 BC 86 ......K....(.F..
    0010: 24 86 0E 14 BF 79 F6 08 07 02 89 42 A6 0A B9 F6 $....y.....B....
    0020: 68 9A 1B 52 A1 85 0B 82 0B 82 47 54 9B A5 EF E3 h..R......GT....
    CONNECTION KEYGEN:
    Client Nonce:
    0000: 45 AF B2 BE 29 D4 A6 30 6D 4D B9 E8 CC 5F 9E 8D E...)..0mM..._..
    0010: 3C 60 C4 AC 31 13 31 16 DE EA 2F 4C 1B 82 05 B0 <`..1.1.../L....
    Server Nonce:
    0000: 45 AF B2 BE CE BA A2 74 B3 48 2C C6 BD 19 46 E3 E......t.H,...F.
    0010: AA EB 53 BA 98 31 C2 DE F8 03 BF AA F8 5F 86 23 ..S..1......._.#
    Master Secret:
    0000: CA 5C BA B3 D0 C9 26 A9 3A 06 08 8F 27 2E CE 17 .\....&.:...'...
    0010: 93 98 BC DF EF 78 2A 99 DB 3E 50 3B 01 D1 84 5F .....x*..>P;..._
    0020: 28 80 CE 7C 7C C1 12 A4 11 F6 33 9B 2E D9 6F BE (.........3...o.
    Client MAC write Secret:
    0000: 80 FF CE 99 7C 45 4C D8 60 FA 40 79 A2 A4 36 7C .....EL.`[email protected].
    Server MAC write Secret:
    0000: 2D F1 A0 A8 ED A1 7B DD 89 A5 01 90 43 BF F1 19 -...........C...
    Client write key:
    0000: E1 3F 33 54 D3 C5 3A 26 4A 41 65 DA AC 44 3B 28 .?3T..:&JAe..D;(
    Server write key:
    0000: C5 08 52 AE A9 0A 4F D0 AD 54 49 C6 4E 2F 9C 4E ..R...O..TI.N/.N
    ... no IV for cipher
    JsseJCE: Using JSSE internal implementation for cipher RSA/ECB/PKCS1Padding
    *** CertificateVerify
    main, WRITE: TLSv1 Handshake, length = 134
    main, WRITE: TLSv1 Change Cipher Spec, length = 1
    main, handling exception: java.net.SocketException: Software caused connection abort: socket write error
    main, SEND TLSv1 ALERT: fatal, description = unexpected_message
    main, WRITE: TLSv1 Alert, length = 2
    Exception sending alert: java.net.SocketException: Software caused connection abort: socket write error
    main, called closeSocket()
    IOException in getSession(): java.net.SocketException: Software caused connection abort: socket write error
    Unable to obtain peer credentials
    javax.net.ssl.SSLPeerUnverifiedException: peer not authenticated
    at com.sun.net.ssl.internal.ssl.SSLSessionImpl.getPeerCertificateChain(DashoA12275)
    at SSLSocketClientWithClientAuth.main(SSLSocketClientWithClientAuth.java:56)
    Process exited with exit code -1.
    =====================================================
    I think this is the problem with ciphers. So can anybody please help me with this!!!. This is very urgent!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    Thanks in advance
    Nilesh

Maybe you are looking for

  • Mountain Lion Software Update Server?

    Let me start by saying that I am no server administrator, but was convinced that setting up a Mac Server on a MacMini would be relatively straightforward due to Apple's history and claims... Server app. Your own mini IT department. The Mac is famousl

  • How to send an iDoc from XI to flat file

    hi, I have send an IDoc from R/3 to XI.The iDoc is being received by XI.Now,I need to send this iDoc to Flat file. For this,What i need to do? can any body help me step by step in this regard.......... Thanx in advance.. Sridhar Raju Mahali

  • OSX 10.4.11 won't run Classic

    I'm not the most computer-literate person, so this is probably a silly question. I have a Powerbook G4 that just crashed with all of my hard drive contents on it, so I had a new drive installed and my OS re-installed along with it. When I brought it

  • Looking for LabView driver for Watlow 96 Series Temp. Controller.

    In need of LabView driver to control a Watlow 96 Series Temperature Controller. The controller has a RS232 output, so I'm preferably looking for a serial port driver. Thanks in advance.

  • Restrict Direct Releasing of SAP PS Network

    is there a way to restrict the direct releasing of the network in sap ps? we want that release only be done at the wbs level since it can also release the network thus generating the pr/ro under the network activity.