API for getting diagnotic server info

Is there an API for getting diagnostic information about the server (memory usage, etc.). We'd like to write a program to monitor the server.

I am trying to do something similar my call to Session.getSession generates
the following exception:
com.iplanet.portalserver.session.SessionException: Can't find resource for
base name iwtNaming, locale en_US
Can you help?
Thanks?
"Marshall Levin" <[email protected]> wrote in message
news:9ljs3s$[email protected]..
Hi,
I have a JSP running on the same web server as the portal server but not
running within the portal desktop (it is a stand-alone JSP).
I have successfully gotten the user's Profile object via the Sessionobject
and I can get the Hashmap of attributes.
What I'm trying to get now is the user's domain and role -- is there anyway
I can get this? I don't see these in the list of attributes. Is there an
API to find this out? Any suggestions on how I can obtain this info
programmatically?
Thanks

Similar Messages

  • Is there the apple api to get os patches info?

    Is there the apple api to get os patches info?

    Join developer.apple.com (free for limited access.) All the documentation is available there.

  • LOGOFF TRIGGER for getting Ip address info,etc

    Hi Friends
    I am thankful to you that you give such a useful information about my query.
    Now I am using the following logon trigger in order to get the required information:
    CREATE OR REPLACE TRIGGER trg_session_info
    AFTER LOGON ON DATABASE
    DECLARE
    session_ids VARCHAR2(30);
    work_stations VARCHAR2(30);
    host_names VARCHAR2(30);
    database_servers VARCHAR2(30);
    db_domains VARCHAR2(30);
    auth_types VARCHAR2(30);
    ip_addrs VARCHAR2(30);
    network_protocols VARCHAR2(30);
    BEGIN
    SELECT sys_context ('USERENV', 'SESSIONID') INTO session_ids
    FROM dual;
    SELECT SYS_CONTEXT('USERENV','OS_USER') INTO work_stations
    FROM dual;
    SELECT SYS_CONTEXT('USERENV','HOST') INTO host_names
    FROM dual;
    SELECT SYS_CONTEXT('USERENV','DB_NAME') INTO database_servers
    FROM dual;
    SELECT SYS_CONTEXT('USERENV','DB_DOMAIN') INTO db_domains
    FROM dual;
    SELECT sys_context ('USERENV', 'AUTHENTICATION_TYPE')INTO auth_types
    FROM dual;
    SELECT sys_context ('USERENV', 'IP_ADDRESS') INTO ip_addrs
    FROM dual;
    SELECT SYS_CONTEXT('USERENV','NETWORK_PROTOCOL') INTO network_protocols
    FROM dual;
    INSERT INTO session_info(session_id,client_name,logon_date,
    work_station,host_name,database_server,db_domain,auth_type,ip_address,network_protocol)
    VALUES (session_ids,user,sysdate,work_stations ,host_names ,database_servers,db_domains,
    auth_types,ip_addrs, network_protocols);
    commit;
    END;
    I also use the LOGOFF trigger in order to get rid of the session information when they logoff.
    But it is not useful if the session terminated abnormally,because the session information can’t delete from the session_info table.
    Is there another approach in order to delete the session information from the table session_info, when they termniated abnormally?
    Following is the LOGOFF TRIGGER which I am using now:
    CREATE OR REPLACE TRIGGER logoff_session
    BEFORE LOGOFF ON DATABASE
    DECLARE
    session_idss VARCHAR2(30);
    BEGIN
    SELECT sys_context ('USERENV', 'SESSIONID') INTO session_idss
    FROM dual;
    DELETE from session_info where session_id=session_idss;
    commit;
    commit;
    END;
    Could you please give your comment on the above problem that how to delete the session information from the table when it terminated abnormally.
    In addition,I like to inform you that I am using Oraexcel for getting the information available on it.
    I am using the following query in order to populate an excel sheet:
    select SESSION_ID,CLIENT_NAME,to_char(logon_date, 'DD/MM/YY HH24:MI:SS')LOGON_TIME,
    WORK_STATION,HOST_NAME,DATABASE_SERVER,DB_DOMAIN, AUTH_TYPE,IP_ADDRESS,NETWORK_PROTOCOL
    from session_info;
    So my table “session_info” populates the required information into an Excel sheet,whenevere clients logon to database.
    But now I want that this information ,which is available on Oraexcel sheet,would be showing a Graphic-visualization of the Network from an Oracle perspective.
    The graphical visualization will show the Database server and the connected clients and below the clients show the active sessions.
    Could someone please give me idea how should I do that?
    THANKS
    WITH BEST REGARDS
    BILAL

    You really should consider using Auditing instead of the trigger based solution.
    Its much less work to implement and much more reliable
    With your new requirements, it's just
    set AUDIT_TRAIL = TRUE in the init.ora
    restart the database and switch Auditing on:
    SQL>AUDIT SESSION;
    Fore some more information see
    Auditing Connections and Disconnections
    http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96521/audit.htm#9471

  • ISEE API for getting the HP warranty details

    As per my research i don't find any REST-API to get the HP warranty details, so i tried to achieve the same using ISEE-API. But when sending the request using the below request xml i get an error as 'BAD REQUEST'. 
    <?xml version="1.0"?>
    -<SOAP-ENV:Envelope xmlns:iseeReg="http://www.hp.com/isee/webservices/" xmlnsOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
    -<SOAP-ENV:Body>
    -<iseeReg:RegisterClient2>
    -<iseeReg:request>
    -<isee:ISEE-Registration xmlns:isee="http://www.hp.com/schemas/isee/5.00/event" schemaVersion="5.00">
    -<RegistrationSource>
    -<HP_OOSIdentifiers>
    -<OSID>
    -<Section name="SYSTEM_IDENTIFIERS">
    <Property name="TimestampGenerated" value="2014/1/14 10:25:30 GMT Standard Time"/>
    </Section>
    </OSID>
    -<CSID>
    -<Section name="SYSTEM_IDENTIFIERS">
    <Property name="CollectorType" value="MC3"/>
    <Property name="CollectorVersion" value="T05.80.1 build 1"/>
    <Property name="AutoDetectedSystemSerialNumber" value="USM5500380"/>
    <Property name="SystemModel" value="HP ProLiant"/>
    <Property name="TimestampGenerated" value="2014/1/14 10:25:30 GMT Standard Time"/>
    </Section>
    </CSID>
    </HP_OOSIdentifiers>
    -<PRS_Address>
    <AddressType>0</AddressType>
    <Address1/>
    <Address2/>
    <Address3/>
    <Address4/>
    <City/>
    <Region/>
    <PostalCode/>
    <TimeZone/>
    <Country/>
    </PRS_Address>
    </RegistrationSource>
    -<HP_ISEECustomer>
    <Business/>
    <Name/>
    </HP_ISEECustomer>
    -<HP_ISEEPerson>
    <CommunicationMode>255</CommunicationMode>
    <ContactType/>
    <FirstName/>
    <LastName/>
    <Salutation/>
    <Title/>
    <EmailAddress/>
    <TelephoneNumber/>
    <PreferredLanguage/>
    <Availability/>
    </HP_ISEEPerson>
    </isee:ISEE-Registration>
    </iseeReg:request>
    </iseeReg:RegisterClient2>
    </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>
    Can any one help me out what is wrong in the above xml format, which is causing such an error to occur. And i would be very grateful if any one can provide me the way to call this API using VB-Script.

    Any how i manage to get the GDID and RegistrationToken but when i send a request for HP warranty detail using the GDID and RegistrationToken, i receive a error message 'entitlement service connection failed'. Please find the below details :-
    Request xml:
    <SOAP-ENV:Envelope
        xmlnsOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
        xmlns:isee="http://www.hp.com/isee/webservices/">
      <SOAP-ENV:Header>
        <isee:IseeWebServicesHeader>
          <isee:GDID>XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX</isee:GDID>
          <isee:registrationToken>XXX</isee:registrationToken>
          <iseeSID/>
          <isee:CSID/>
        </isee:IseeWebServicesHeader>
      </SOAP-ENV:Header>
      <SOAP-ENV:Body>
        <isee:GetOOSEntitlementList2>
          <isee:request>
    <isee:ISEE-GetOOSEntitlementInfoRequest
        xmlns:isee="http://www.hp.com/schemas/isee/5.00/entitlement"
        schemaVersion="5.00">
      <HP_ISEEEntitlementParameters>
        <CountryCode>ES</CountryCode>
        <SerialNumber>CZ10130050</SerialNumber>
        <ProductNumber>519841-425</ProductNumber>
        <EntitlementType></EntitlementType>
        <EntitlementId></EntitlementId>
        <ObligationId></ObligationId>
      </HP_ISEEEntitlementParameters>
    </isee:ISEE-GetOOSEntitlementInfoRequest>
          </isee:request>
        </isee:GetOOSEntitlementList2>
      </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>
    SOAP action : http://www.hp.com/isee/webservices/GetOOSEntitlementList2
    HTTP URL     : https://services.isee.hp.com/EntitlementCheck/EntitlementCheckService.asmx
    Response Received:
    <?xml version="1.0" encoding="UTF-8"?>
    -<soap:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    -<soap:Body>
    -<GetOOSEntitlementList2Response xmlns="http://www.hp.com/isee/webservices/">
    -<GetOOSEntitlementList2Result>
    <IsSuccess>false</IsSuccess>
    -<Error>
    <Code>200</Code>
    <IsTransientError>true</IsTransientError>
    <IsClientError>false</IsClientError>
    <IsReRegisterError>false</IsReRegisterError>
    <Message>entitlement service connection failed</Message>
    </Error>
    <BackoffMultiplier>1</BackoffMultiplier>
    </GetOOSEntitlementList2Result>
    </GetOOSEntitlementList2Response>
    </soap:Body>
    </soap:Envelope>
    Is there any issue with the Request xml??

  • API for getting SAP WebAS / J2EE SystemInformation

    Hi all,
    I am looking for an API to access J2EE Server information as it is displayed on the Systeminfo page when you access your SAP J2EE installation using http://<host>:<port>/index.html.
    Is there anything like an API to access this J2EE information?
    Any help is greatly appreciated!
    Thanks
    Helga

    Hi Barry,
    I found out that jmonapi.jar is deprecated:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/bf/df813e77d46245e10000000a114084/frameset.htm
    Is there any other api?
    Best regards,
    Helga

  • Commands to get oracle server info.

    Hello everybody,
    Could anybody tell me the commands that can get us various server details
    (like server version etc etc ...) or how can we get the server environment details ?

    I'm since longer time no more in the dba side of Oracle, but a starting point for you could be the tables v$banner, v$parameter. In the server reference manual | [http://download.oracle.com/docs/cd/B19306_01/server.102/b14237/toc.htm] there are a lot more of these dynamic performance views.
    For more and more accurate information you'd better write this question in the [database server forum | http://forums.oracle.com/forums/forum.jspa?forumID=61]

  • Need API for getting List price and unit price before Order entry

    Hello,
    I have requirement of provide unit & list price before order entry (Oracle Pricing and availability form provide the same).
    Please suggest any API for the same.
    Thanks
    Akil.

    Hi,
    Thanks luko,
    I got API QP_PREQ_PUB.PRICE_REQUEST, and its return output as expected,
    Just have confusion that how many qualifiers we have to send
    Here is my sample code
    OR REPLACE PROCEDURE xx_web_get_price (
    IN     NUMBER,
    IN     NUMBER,
    IN     NUMBER,
    IN     NUMBER,
    IN     VARCHAR2,
    IN     VARCHAR2,
    IN     VARCHAR2,
    IN     NUMBER,
    OUT NUMBER,
    OUT NUMBER,
    OUT VARCHAR2,
    OUT VARCHAR2)
    QP_PREQ_GRP.LINE_TBL_TYPE;
    QP_PREQ_GRP.QUAL_TBL_TYPE;
    QP_PREQ_GRP.LINE_ATTR_TBL_TYPE;
    QP_PREQ_GRP.LINE_DETAIL_TBL_TYPE;
    QP_PREQ_GRP.LINE_DETAIL_QUAL_TBL_TYPE;
    QP_PREQ_GRP.LINE_DETAIL_ATTR_TBL_TYPE;
    QP_PREQ_GRP.RELATED_LINES_TBL_TYPE;
    QP_PREQ_GRP.CONTROL_RECORD_TYPE;
    QP_PREQ_GRP.LINE_TBL_TYPE;
    QP_PREQ_GRP.QUAL_TBL_TYPE;
    QP_PREQ_GRP.LINE_ATTR_TBL_TYPE;
    QP_PREQ_GRP.LINE_DETAIL_TBL_TYPE;
    QP_PREQ_GRP.LINE_DETAIL_QUAL_TBL_TYPE;
    QP_PREQ_GRP.LINE_DETAIL_ATTR_TBL_TYPE;
    QP_PREQ_GRP.RELATED_LINES_TBL_TYPE;
    VARCHAR2 (240);
    VARCHAR2 (240);
    QP_PREQ_GRP.QUAL_REC_TYPE;
    QP_PREQ_GRP.LINE_ATTR_REC_TYPE;
    QP_PREQ_GRP.LINE_REC_TYPE;
    QP_PREQ_GRP.LINE_DETAIL_REC_TYPE;
    QP_PREQ_GRP.LINE_DETAIL_REC_TYPE;
    QP_PREQ_GRP.RELATED_LINES_REC_TYPE;
    QP_Attr_Mapping_PUB.Contexts_Result_Tbl_Type;
    QP_Attr_Mapping_PUB.Contexts_Result_Tbl_Type;
    INTEGER;
    BINARY_INTEGER;
    VARCHAR2 (240);
    VARCHAR2 (60);
    oe_debug_pub.debug_on;
    oe_debug_pub.initialize;
    := OE_DEBUG_PUB.Set_Debug_Mode ('FILE');
    oe_Debug_pub.setdebuglevel (5);
    ('File : ' || l_file_val);
    QP_Attr_Mapping_PUB.
    (p_request_type_code           => 'ONT',
    => 'L',
    => l_pricing_contexts_Tbl,
    => l_qualifier_Contexts_Tbl);
    := 1;
    ---- Control Record
    .pricing_event := 'LINE';                           -- 'LINE';
    .calculate_flag := 'Y';    --QP_PREQ_GRP.G_SEARCH_N_CALCULATE;
    .simulation_flag := 'N';
    .source_order_amount_flag := 'Y';
    .rounding_flag := 'Q';
    .manual_discount_flag := 'Y';
    .request_type_code := 'ONT';
    .TEMP_TABLE_INSERT_FLAG := 'Y';
    ---- Line Records ---------
    .request_type_code := 'ONT';
    .line_id := 2125125; -- Order Line Id. This can be any thing for this script
    .line_Index := '1';                           -- Request Line Index
    .line_type_code := 'LINE';           -- LINE or ORDER(Summary Line)
    .pricing_effective_date := SYSDATE;    -- Pricing as of what date ?
    .active_date_first := SYSDATE;  -- Can be Ordered Date or Ship Date
    .active_date_second := SYSDATE; -- Can be Ordered Date or Ship Date
    .active_date_first_type := 'NO TYPE';                   -- ORD/SHIP
    .active_date_second_type := 'NO TYPE';                  -- ORD/SHIP
    .line_quantity := 1;                            -- Ordered Quantity
    .line_uom_code := p_uom; --'Ea';                         -- Ordered UOM Code
    .currency_code := p_currency_code; -- 'USD';                           -- Currency Code
    .price_flag := 'Y'; -- Price Flag can have 'Y' , 'N'(No pricing) , 'P'(Phase)
    (1) := line_rec;
    ------ Line Attribute Record
    .LINE_INDEX := 1;
    .PRICING_CONTEXT := 'ITEM';                               
    .PRICING_ATTRIBUTE := 'PRICING_ATTRIBUTE3';
    .PRICING_ATTR_VALUE_FROM := 'ALL';
    .VALIDATED_FLAG := 'N';
    (1) := line_attr_rec;
    .LINE_INDEX := 1;
    .PRICING_CONTEXT := 'ITEM';                                 --
    .PRICING_ATTRIBUTE := 'PRICING_ATTRIBUTE1';
    .PRICING_ATTR_VALUE_FROM := p_item_id;
    .VALIDATED_FLAG := 'N';
    (2) := line_attr_rec;
    .LINE_INDEX := 1;
    .PRICING_CONTEXT := 'ITEM';                              
    .PRICING_ATTRIBUTE := 'PRICING_ATTRIBUTE2';
    .PRICING_ATTR_VALUE_FROM := p_category_id;
    .VALIDATED_FLAG := 'N';
    (3) := line_attr_rec;
    ------ Qualifier Attribute Record
    .LINE_INDEX := 1; -- Attributes for the above line. Attributes are attached with the line index
    .QUALIFIER_CONTEXT := 'MODLIST';
    .QUALIFIER_ATTRIBUTE := 'QUALIFIER_ATTRIBUTE4';
    .QUALIFIER_ATTR_VALUE_FROM := p_price_list_id;
    .COMPARISON_OPERATOR_CODE := '=';
    .VALIDATED_FLAG := 'Y';
    (1) := qual_rec;
    .LINE_INDEX := 1;
    .QUALIFIER_CONTEXT := 'CUSTOMER';
    .QUALIFIER_ATTRIBUTE := 'QUALIFIER_ATTRIBUTE2';
    .QUALIFIER_ATTR_VALUE_FROM := p_customer_account_id;
    .COMPARISON_OPERATOR_CODE := '=';
    .VALIDATED_FLAG := 'Y';
    (2) := qual_rec;
    .LINE_INDEX := 1;
    .QUALIFIER_CONTEXT := 'CUSTOMER';
    .QUALIFIER_ATTRIBUTE := 'QUALIFIER_ATTRIBUTE40';
    .QUALIFIER_ATTR_VALUE_FROM := p_customer_category; --'INDUSTRIAL';  
    .COMPARISON_OPERATOR_CODE := '=';
    .VALIDATED_FLAG := 'Y';
    (3) := qual_rec;
    QP_PREQ_PUB.PRICE_REQUEST (p_line_tbl,
    -- Return Status Information ..
    := x_return_status_text;
    := x_return_status;
    := x_line_tbl.FIRST;
    IF I IS NOT NULL
    THEN
    := x_line_tbl (I).unit_price;
    := x_line_tbl (I).adjusted_unit_price;
    END IF;
    xx_web_get_price;                                     
    Regards,
    akil.

  • Restful sample with Java for getting WebI report info in 4.1

    Hi All
    Can anyone give me a sample code in JAVA for getting WebI  report information using Restful services in 4.1 SP1 Version
    Thanks In Advance

    Hi All
    Im unable to execute the below URLs and getting error
    /documents/{documentId}/reports/{reportId}/elements/{elementId}/properties
    /documents/{documentId}/reports/{reportId}/elements/{elementId}/datapaths
    /documents/{documentId}/reports/{reportId}/elements/{elementId}/dataset
    /documents/{documentId}/reports/{reportId}/elements/{elementId}/axes/
    /documents/{documentId}/reports/{reportId}/pages
    /documents/{documentId}/reports/{reportId}/inputcontrols
    /documents/{documentId}/reports/{reportId}/
    Errors:
    Not found. (RWS 00056)
    Not acceptable, (RWS 00058)
    Any Suggestion Please.

  • Is there any API for connecting web server and iphone apps

    Hi,
    I have to retrieve data from Web Server and display in my iphone apps. I want to know that is there any API through which i can connect my apps to server and get data.
    One way i know that use NSURLConnection and get XML response and prase it and use it like that.
    So anyone know this?
    Thanks.

    NSURLConnection is straightforward to use. In the mobile world, and especially if you intend to use certain google APIs, I would rather tend to use JSON instead of XML. A great JSON parser for objective-c is here: http://code.google.com/p/json-framework/
    Cheers,
    Marcelo

  • What is the API for getting a list of students that have taken a specific course?

    We are on Adobe Connect 9. Through the UI, you can generate a nice report on who has taken a course and when they completed it (Training > Shared Training > [course name]).
    How do I get this report using Adobe Connect APIs?

    You can use the UserReaderMBean.
    http://download-llnw.oracle.com/docs/cd/E11035_01/wls100/javadocs_mhome/weblogic/management/security/authentication/UserReaderMBean.html
    You mite find this helpful in ur development...
    http://secure-zone.blogspot.com/2009/10/creating-users-in-weblogic-server.html
    Let me know if it helps..
    Thanks,
    Faisal

  • API for getting iView name, type, tCode

    Hi
    I am trying to figure out if there is a way in my program to get iView properties: the iView type (e.g. transaction, Web Dynpro, etc), then if it's a transaction iView to get the tCode for that iView.
    I have seen document that tells me I can get the list of iViews in a given PCD location, and I think you can get the properties I mentioned above as such:
    // id is the full path of the iView
    public void getProperties(IPortalComponentRequest request , String id) throws Exception{
    Hashtable env = new Hashtable();
    env.put(Context.INITIAL_CONTEXT_FACTORY, IPcdContext.PCD_INITIAL_CONTEXT_FACTORY);
    env.put(Context.SECURITY_PRINCIPAL, request.getUser());
    env.put(Constants.REQUESTED_ASPECT, PcmConstants.ASPECT_SEMANTICS);
    InitialContext iCtx = null;
    try {
    iCtx = new InitialContext(env);
    IiView result = (IiView) iCtx.lookup(id);
    result.getAttribute("????");
    result.getAttribute("????");
    } catch (Exception e) {
    throw new Exception (e);
    Am I in the right direction?
    I don't know what are the names of those attributes I need? - I cannot find them in any Java docs or forum?
    I also looked at com.sap.portal.pcm.attributes.IAttriView but that does not appear to have the suitable attributes that I am looking for?
    Please help.
    Kind regards,
    Sharath

    Hi
    Check theses links
    http://help.sap.com/erp2005_ehp_03/helpdata/EN/44/bfb2a470033f45e10000000a114a6b/frameset.htm
    https://help.sap.com/javadocs/NW04S/current/index.html
    Hope this helps.
    Cheers-
    Pramod
    reward points if helpful.

  • API for getting the build date of development components

    Hello ,
          we are changing the format of the  <about> screen of our application. We show the version of the main development components that are the part of our application.
    For the version date of the development components, we were earlier showing the deployment date. However we now plan to change it to their build date. We need to know if there is any API to find the build date of the development components.
    Thanks alot in advance for helping!

    Hi do you want all the dates from the back date to sysdate or only the particular back date
    SQL> select sysdate from dual;
    SYSDATE
    22-JUN-09
    SQL> select sysdate-10 from dual;
    SYSDATE-1
    12-JUN-09or if you want all the back dates starting from one particular then
    SQL> select sysdate-10+level from dual
      2  connect by level<=10;
    SYSDATE-1
    13-JUN-09
    14-JUN-09
    15-JUN-09
    16-JUN-09
    17-JUN-09
    18-JUN-09
    19-JUN-09
    20-JUN-09
    21-JUN-09
    22-JUN-09
    10 rows selected.Edited by: oracle_for_dude on Jun 22, 2009 12:11 PM

  • API for getting iView Type?

    Hi All,
    I could only get the iView description,title from the PCM Object.
    I would like to retrieve the type(like webdynpro,bsp etc) of iView and other properties.
    Thanks much,
    -Krishna

    Please refer to this document. It will help you.
    <a href="https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/6112ecb7-0a01-0010-ef90-941c70c9e401">Codes - Accessing PCD Contents like iViews, Pages, Worksets, Roles and Their Properties.pdf</a>

  • Method /Event for getting all the info passsed on sales order creation/edit

    Hi Experts,
    I am editing sales order screen on UI, and I need all the inputs that I m passing on the screen.
    Can nybody suggest any method or event in which I might catch all the info on clicking the 'SAVE' button.

    Hi Asif Khan,
    Please check this link
    BAPI_SALESORDER_CREATEFROMDAT2 - Sales Order Create
    http://sap-img.com/abap/bapi-salesorder-createfromdat2.htm
    Best regards,
    raam

  • Java code to get server info

    Hi,
    How do I get the server info i.e server IP address etc using Java code. Pl. note that this is from the business layer and not from Front end.
    thanks

    hello Pfister,
       I'll send you one article link , just go thru it ,
    you can many examples from basics. if you get any errors just take that error no. which displayed , you can find the solution for that error in the link.
    This link you can see one good example:
    http://www.onjava.com/pub/a/onjava/excerpt/java_cookbook_ch18/index.html?page=5
    Regards,
    Varun

Maybe you are looking for

  • 100% but don't turn on - Battery problems?

    Hi, I have a one week old MBP, and today I faced a strange problem. my battery indicator shows 100% of battery, by when I disconect the power supply my MBP just turn off. and if I try to turn on without the power supply nothing happens. my serial num

  • Items Search List error

    Hallo Experts After 2007 Upgrade Items search list ( in a document or directly in Item master screen). The customers search list is ordered by description. When typing 'P' in the Find field the system goes to the last Item starting with 'N' and not i

  • Dynamic Item value

    Hi All, I am trying to find how to get dynamically an item value based on page number. More details .. I have page1 and 1 item P1_COL1 and I have application level item F1_CURRENT_PAGE_NUMBER. On page10 I want assign value like this. :P10_VAL := :P||

  • OIM: How does USR_POLICY_UPDATE flag get set?

    We're finding that some of our users are getting the USR_POLICY_UPDATE flag set to "1", which is causing access policy evaluation when the user is updated. In some cases we do not want this evaluation to occur. My question is: What task or process is

  • Cannot compile InDesign CC SDK's example

    Hi, I can't compile the example in InDesign CC SDK (MacOS 10.8, XCode 4.6). I get this message: /SDK/InDesign/CC/Commun/source/public/includes/MSysType.h:71:2: Conversion function converting 'SysPoint' to its base class 'CGPoint' will never be used /