Access the component of the include structure..

dear all,
i am using a bapi called CRM_ORDER_READ which has a export parameter name et_status type crmt_status_wrk.
crmt_status_wrk which in turn includes a structure name crmt_status_logicalkey.
crmt_status_logicalkey has a component status.
i need to access this status. can any body help me with this issue.
thanks,
regards,
akshay ruia.

solved

Similar Messages

  • Not able to access the include in exit

    Hi ,
    I have to work on a user exit, I created project, activated component but when I am trying to go into the include of the FM it is giving me error 'Program names ZX... are reserved for includes of exit function groups'
    and I can't go into that...when I am going to chage mode it is asking for developer code...
    any idea??
    Regards.
    Kusum.

    thanx Himanshu . such a small step missing
    actually its in APO so just looking forward to have access key then I think it will work.
    Regards.
    Kusum.

  • Accessing an included structure .

    I have an internal table that has an included structure.  This structure has 45 fields of the same type.  I need to get a specific entry from this table and then read, and eventually modify, a field in the included structure. I assumed I could read it like the code below but it gives me a syntax error.  wa_detail is a work area and days is the structure with index_days being the index.
    FORM updatedaystructure .
      DATA: temp_quantity TYPE i.
      temp_quantity = wa_detail-days INDEX index_day.
    ENDFORM.
    Regards,
    Davis

    Hi,
    Try using this code
    FORM updatedaystructure .
    DATA: temp_quantity TYPE i,
             wa_days like days.      "this is type of structure DAYS
    FIELD-SYMBOLS: <field> TYPE z45days. " type of "field in structure DAYS"
    **index1 is used to read table entry where you want to update DAYS
    Read table detail into wa_details index index1 .  ( this is not index_days) 
    wa_days = wa_index-days.
    ASSING COMPONENT index_days OF STRUCTURE wa_days TO <field>.
    ENDFORM
    This way you will get the content of field in DAYS.
    If you can give me the structure of your table, structure of DAYS ( give me the field type since all fields are same) and what exactly you are trying to achieve, i might be able to help you.
    Regards,
    RS
    Message was edited by:
            RS
    Message was edited by:
            RS

  • Problem with primary/secondary keys in table with included structures

    Dear ABAPers,
    we have a structure which is supposed to be included in the definition of several tables.
    The problem is the following:
    depending on the application table that includes this structure, 3 or 4 fields of that structure may
    or may not be necessary to enhance the table key. As far as I know included structures can only
    completely be marked as keys. Therefore I suggested to split up the structure into two parts,
    one part with the possible candidates that may become key fields, and the rest, and of course
    a structure that unites both of these substructures. So when it comes to reusing this structure
    the developer would have the choice to select the structure with all of the fields in case no field
    is needed as additional key, or the developer would have to implement both of the substructures
    separately with the option to mark the key-part of it as key in his table.
    But unfortunetaly this suggestion of mine was refused as being too complicated and I am supposed
    to define all the fields in one flat structure and to "enhance" the primary keys (that always will exist)
    by secondary keys.
    Does anybody know how that is supposed to work without defining double indexes?
    I cannot activate a table without having primary keys defined and any unique secondary index would
    allways include all of the primary keys.
    Thanks in advance for you help
    (I'm sorry that you cannot be granted reward points for just reading the extensive problem description)
    regards
    Andreas

    Dear Rob,
    since your answer was helpful and since it was the only one I will grant you full points on that.
    Thanks again for your input. In case other developers should look this thread up being confronted
    with the same kind of problem, here is how we solved it:
    We added an artificial primary key (a number of type NUMC 8) to the table which is supposed to
    include the structure. This key alone takes care of the uniqueness of eacht entry.
    All the others fields that we want to have available for a fast direct access, including the ones
    from the included structure, are put together in a secondary index.
    best regards
    Andreas

  • Include structure

    Hi all
    I have this code to give dynamic table name in select statement.
    Is there a way the include structure tak in the value from my parameter value like name1?
    DATA <b>name1</b>(10) TYPE c VALUE 'ZSTUDGARY'.
    DATA: BEGIN OF wa OCCURS 0.
           INCLUDE STRUCTURE <b>ZSTUDGARY</b>.
    DATA:  END OF wa.
    SELECT *
    INTO wa
    FROM (name1) CLIENT SPECIFIED.
    WRITE: / wa-eyear, wa-contact.
    ENDSELECT.

    I think you are looking for somethign like this. Please check this code
    REPORT ztest_gopi_dynamic.
    TYPE-POOLS : abap.
    FIELD-SYMBOLS: <dyn_table> TYPE STANDARD TABLE,
                   <dyn_wa>,
                   <dyn_field>.
    DATA: dy_table TYPE REF TO data,
          dy_line  TYPE REF TO data,
          xfc TYPE lvc_s_fcat,
          ifc TYPE lvc_t_fcat.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME.
    PARAMETERS: p_table(30) TYPE c DEFAULT 'T001'.
    SELECTION-SCREEN END OF BLOCK b1.
    START-OF-SELECTION.
      PERFORM get_structure.
      PERFORM create_dynamic_itab.
      PERFORM get_data.
      PERFORM write_out.
    *       FORM get_structure                                            *
    FORM get_structure.
      DATA : idetails TYPE abap_compdescr_tab,
             xdetails TYPE abap_compdescr.
      DATA : ref_table_des TYPE REF TO cl_abap_structdescr.
    * Get the structure of the table.
      ref_table_des ?=
          cl_abap_typedescr=>describe_by_name( p_table ).
      idetails[] = ref_table_des->components[].
      LOOP AT idetails INTO xdetails.
        CLEAR xfc.
        xfc-fieldname = xdetails-name .
        xfc-datatype  = xdetails-type_kind.
        xfc-inttype   = xdetails-type_kind.
        xfc-intlen    = xdetails-length.
        xfc-decimals  = xdetails-decimals.
        APPEND xfc TO ifc.
      ENDLOOP.
    ENDFORM.
    *       FORM create_dynamic_itab                                      *
    FORM create_dynamic_itab.
    * Create dynamic internal table and assign to FS
      CALL METHOD cl_alv_table_create=>create_dynamic_table
                   EXPORTING
                      it_fieldcatalog = ifc
                   IMPORTING
                      ep_table        = dy_table.
      ASSIGN dy_table->* TO <dyn_table>.
    * Create dynamic work area and assign to FS
      CREATE DATA dy_line LIKE LINE OF <dyn_table>.
      ASSIGN dy_line->* TO <dyn_wa>.
    ENDFORM.
    *       FORM get_data                                                 *
    FORM get_data.
    * Select Data from table.
      SELECT * INTO TABLE <dyn_table>
                 FROM (p_table).
    ENDFORM.
    *       FORM write_out                                                *
    FORM write_out.
    * Write out data from table.
      LOOP AT <dyn_table> INTO <dyn_wa>.
        DO.
          ASSIGN COMPONENT  sy-index
             OF STRUCTURE <dyn_wa> TO <dyn_field>.
          IF sy-subrc <> 0.
            EXIT.
          ENDIF.
          IF sy-index = 1.
            WRITE:/ <dyn_field>.
          ELSE.
            WRITE: <dyn_field>.
          ENDIF.
        ENDDO.
      ENDLOOP.
    ENDFORM.
    Regards
    Gopi

  • Explicit Search Helps Short-Dump in Editable ALV with included structure

    I have an editable ALV grid defined as follows:
      TYPES: BEGIN OF gs_outtab200.
        TYPES: row_indx(4)      TYPE n.
        TYPES: multipurp        TYPE c.
        INCLUDE structure zxrfwc_test.
      TYPES: end of gs_outtab200.
      DATA:
        gt_outtab200             TYPE TABLE OF gs_outtab200,
        wa_outtab200             TYPE gs_outtab200.
    The included structure zxrfwc_test has a component (field) which is defined with a data element that has an explicit search helps associated with it.
    I know that this search help is working properly because it works fine in the program's selection screen.
    But when I invoke the search help from within a column of the ALV itself, I get a short dump with a "GETWA_NOT_ASSIGNED" error.
    I have done plenty of editable ALVs with search helps defined on the data elements and never encountered this problem. 
    Am I hitting this problem because the zxrfwc_test structure is defined within the
    gs_outtab200 structure ??
    If not, what is causing this problem.  (Please note that I have set  ls_fcat-F4AVAILABL = 'X' in the fieldcat routine - this doesn't seem to help at all.)
    Please advise!!!!
    I'm really stuck on this one because it's always worked before when I'm not dealing with a dictionary structure that's included within a larger ALV structure.
    Thanks.

    Hi,
    How you are creating your field catalog?
    Try to create a field catalog in the following way giving reference to your structure. is it possible for you create a DDIC structure as same as
    TYPES: BEGIN OF gs_outtab200.
        TYPES: row_indx(4)      TYPE n.
        TYPES: multipurp        TYPE c.
        INCLUDE structure zxrfwc_test.
      TYPES: end of gs_outtab200.
    * Form f_generate_fieldcatalog                                         *
    * Form generate the field catalog table                                *
    form f_generate_fieldcatalog.
    * Private variable
      data : v_structure like dd02l-tabname.   " Table Name
      v_structure = c_yatt_alv.                      " Structure Name
    * Build the fieldcat according to DDIC structure YATT_ALV:
      call function 'LVC_FIELDCATALOG_MERGE'
        exporting
          i_structure_name       = v_structure
          i_client_never_display = c_x
        changing
          ct_fieldcat            = i_fieldcat[].
    endform.                                 " F_generate_fieldcatalog

  • Extended syntax check for include structure

    Hello Everyone,
    While declaring the internal table as:
    TYPES: BEGIN OF t_data.
            INCLUDE STRUCTURE mara.
    TYPES: END   OF t_data.
    DATA: it_data TYPE table of t_data.
    When performing extended check, i get following error:
    The current ABAP command is obsolete and problematic, especially so in ABAP
    Objects
    Within classes and interfaces, you can only use "TYPE" to refer to ABAP Dictionary
    types, not "LIKE" or "STRUCTURE".
    I am using 4.7 version.
    Any clue how to avoid this error during extended check.
    Regards,
    Tarun

    Tarun,
    With WAS 6.20 you should not declare internal tables with header line or using the old syntax as they are not compatible with OO ABAP.
    So, you either declare a TYPE the way you have done, in case you want additional fields apart from the INCLUDE structure, or declare the table directly like the way I have shown.
    Good thing, you can even specify the type of internal table that you want to create using this - STANDARD, SORTED, HASH. These tables will help you with the performance issues.
    regards,
    Ravi
    Note : Please mark the helpful answers

  • How do I Make Include Structures Expand Automatically?

    As usual some of the simplest things take the longest time.
    I've created a custom structure in the dictionary.  I've also created a custom table in which I include the structure. I expected that after I added the include structure to the custom table, that it would be expanded and display in se11, and behave just as SAP-delivered tables do.  For example, look at table PA0001. There are include lines followed by the contents of the include.
    In my custom table though, I only see the include line itself.  To see the structure I must expand it by pressing the expand button.  Each and every time I display the custom table I must manually expand it.  I want the behavior I see on every other SAP table.
    Any ideas?
    Thank you.
    Tom

    Hi,
    if You have include structure in Your table, all fields are displayed only in display mode.
    That is the way You see the PA0001 table.
    If You create your own table and include structure, in edit mode You can change fields of the include structure,
    that is why it is not expanded. But if You change from edit to display mode, SAP does not expand it automatically.
    You should display in SE11 this table - all fields will be visible.
    Regards,
    Przemysław

  • Include Structure to Database table like ci_aufk

    Hi All
    I want to create a database table with an include structure.But i don´t want to create the structure for now.
    I want to create it the same way as SAP did it with Table AUFK
    there is an include structure CI_AUFK which does not really exist.
    If i try this, i get an activation error. Does anybody know how to create something like that??
    thanks for your Help and
    Kind regards

    Hi thesaint,
    I created a table with some fields and activated it. Later on, i added the structure 'CI_AUFK' in the same way as it is present in table AUFK. The include structure got added successfully and i was able to activate the same.
    Note that structure 'CI_AUFK' is standard SAP structure which can be activated as and when required. It will not be possible to include our own Z structures and activate them as and when required.*
    However, we can create structures that start with SAP naming convention for ex: CI_BOFA  and then include them in our custom tables, we need not add any fields to those structures(during creation) and activate them as and when required in the future.
    Regards,
    Rajesh

  • Difference between include structure and Append structure

    Could you please tell me
    I have bsis table and it contains append structure  in 4.7 SAP System.
    my program in 4.7 system contains internal table which used same structure of bsis table ( which contains additonal field in its append structure ).
    I need to have same table structure in 4.6 C because I am copying the same program into 4.6 system.
    As I could not append structure to bsis table in 4.6C SAP system,
    instead of that shall I add the field or Shall include the structure to run .
    What is the difference between Include structure and Append structure ( I forgot )
    How to achieve this please help me ?

    Hi ,
      As you know append structure can be used only once in table ,that to at last of all entries,
    Append structures are used for enhancements that are not included in the standard. This includes special developments, country versions and adding customer fields to any tables or structures.
    An append structure is a structure that is assigned to exactly one table or structure. There can be more than one append structure for a table or structure.
    The following enhancements can be made to a table or structure TAB with an append structure:
    Insert new fields in TAB,
    Define foreign keys for fields of TAB that already exist,
    Attach search helps to fields of TAB that already exist,
    These enhancements are part of the append structure, i.e. they must always be changed and transported with the append structure.
    When a table or structure is activated, all the append structures of the table are searched and the fields of these append structures are added to the table or structure. Foreign keys and search help attachments added using the append structure are also added to the table. If an append structure is created or changed, the table or structure assigned to it is also adjusted to these changes when the append structure is activated.
    Since the order of the fields in the ABAP Dictionary can differ from the order of the fields on the database, adding append structures or inserting fields in such append structures does not result in a table conversion.
    The customer creates append structures in the customer namespace. The append structure is thus protected against overwriting during an upgrade. The fields in the append structure should also reside in the customer namespace, that is the field names should begin with ZZ or YY. This prevents name conflicts with fields inserted in the table by SAP.
    The new versions of the standard tables are imported after an upgrade, and the fields, foreign key definitions and search help attachments contained in the append structures are added to the new standard tables at activation.
    A standard table contains the fields Field 1, Field 2 and Field 3. An append structure containing the fields ZZA and ZZB is defined for this table. After activating the table, the corresponding database table contains fields Field 1, Field 2, Field 3, ZZA and ZZB.
    Further Remarks:
    An append structure can only be assigned to exactly one table or structure. If you want to append the same fields to several tables or structures, you can store these fields in an include structure. In this case you must create an append structure for each of these tables or structures and include the include structure there.
    Adding an append structure to an SAP standard table is supported by the  Modification Assistant.
    If you want to insert a field that is to be delivered with the R/3 standard in the next Release in the customer system in advance, you must include it in the table itself as a repair. If you include such a field in an append structure for the table, it will occur twice when the new standard table is imported. This will result in an activation error.
    No append structures may be added to tables with long fields (data types VARC, LCHR or LRAW). This is because a long field must always be the last field in the table. However, structures with long fields can be enhanced with append structures.
    If a table or structure with an append structure is copied, the fields of the append structure become fields of the target table. Foreign key definitions and search help attachments appended with the append structure are copied to the target table.
    Foreign keys for the appended fields must be defined within the append structure. Fields of the table or structure assigned to the append structure may be defined when assigning the key field and foreign key field.
    Indexes on the appended fields must be defined in the original table.
    A table or structure TAB can only be enhanced with new foreign keys or search help attachments using an append structure. You therefore cannot change an existing foreign key definition or search help attachment for a field of TAB with the append structure.
    Thanks
    Manju

  • UIXInclude getAttribute Illegal access of the include attribute map out

    Using JDeveloper 11.1.1.6.0
    I've been digging into the reason why I've been getting this in my logs. At first, I thought it was because of a declarative component, but after further digging, it was actually the region which I'm using inside a declarative region's facet.
    <UIXInclude> <getAttribute> Illegal access of the include attribute map outside of the include context
    Searching google only gets me to this link:
    [ Oracle® Fusion Middleware Error Messages Reference|http://docs.oracle.com/cd/E16162_01/core.1112/e22506/chapter_adf_faces_messages.htm]
    Has anyone encountered this same log? If you have, can you share what is causing it?
    Thanks.
    -Marvin

    Found the issue.
    Too bad I had to realize it the hard way. When the declarative component is trying to point to an attribute that doesn't exist, then you get this message in your log. Feel bad for the af:region for getting blamed... (but hey the documentation said contact support so that didn't help as well).
    Killed the unneeded and anonymous attribute element and everything is back to normal.
    -Marvin

  • CRM 2007 : Unable to access the BP_HEAD component

    Hello,
    I'm a basis guy, very new to SAP CRM.
    We have been asked to install CRM 2007.
    We are able to ping the crm server from transaction sicf.
    The users are able to access the webclient, they're able to acess the component "CRM_UI_FRAME"
    Therefore, it doesn't seem to be any configuration error.
    Afterwards ,we have been asked to activate the component BP_HEAD, but we are unable to do so.
    Users are using transaction BSP_WD_CMPWB, then they choose the componenet BP_HEAD.
    Then Components/view/BP_HEAD/AccountDetails they choose the confiruation tab.
    and there after a while they receive an error message :
    +http://xxxxxxxxxxxx.com:1080/sap/bc/bsp/sap/bsp_dlc_frcmp/session_buffered_frame.htm?
    sap-client=301&sap-sessioncmd=open&sap-syscmd=nocookie&sap-language=EN&bsp_appl=BP_HEAD&bsp_page=AccountDetails.htm&role_key
    =<DEFAULT>&component_usage=<DEFAULT>&object_type=<DEFAULT>&object_sub_type=<DEFAULT>&config_type=
    GRID_BASED&config_usage=DEFAULT&display_mode=TRUE&transport_data=&rep_url=/sap/bc/bsp/sap/BP_HEAD/Repository.xml&locked_by=&wb_user=xxxxxxx+
    We ve tried to activate all the BP_HEAD* and bsp_dlc_frcmp services in transaction sicf .. but it didn't help.
    Any idea woulb be highly appreciated.
    Best Regards.

    Hi Juan82,
    please check out the[ license comparison chart |service.sap.com/~form/sapnet?_SHORTKEY=01100035870000700291&_SCENARIO=01100035870000000183&_ADDINC=011000358700001192682007E&_OBJECT=011000358700000953982007]on the SMP.
    All the best,
    Kerstin

  • Not able to Access the Remote EJB component

    Hi,
    Please help me i am trying to access the EJB Remote Component through my struts application but i am getting following error:
    Aug 23, 2007 4:49:06 PM org.apache.coyote.http11.Http11Protocol init
    INFO: Initializing Coyote HTTP/1.1 on http-8081
    Aug 23, 2007 4:49:06 PM org.apache.catalina.startup.Catalina load
    INFO: Initialization processed in 2086 ms
    Aug 23, 2007 4:49:06 PM org.apache.catalina.core.StandardService start
    INFO: Starting service Catalina
    Aug 23, 2007 4:49:06 PM org.apache.catalina.core.StandardEngine start
    INFO: Starting Servlet Engine: Apache Tomcat/5.0.28
    Aug 23, 2007 4:49:06 PM org.apache.catalina.core.StandardHost start
    INFO: XML validation disabled
    Aug 23, 2007 4:49:06 PM org.apache.catalina.core.StandardHost getDeployer
    INFO: Create Host deployer for direct deployment ( non-jmx )
    Aug 23, 2007 4:49:06 PM org.apache.catalina.core.StandardHostDeployer install
    INFO: Processing Context configuration file URL file:C:\Program Files\Apache Software Foundation\Tomcat 5.0\conf\Catalina\localhost\admin.xml
    Aug 23, 2007 4:49:08 PM org.apache.struts.util.PropertyMessageResources <init>
    INFO: Initializing, config='org.apache.struts.util.LocalStrings', returnNull=true
    Aug 23, 2007 4:49:08 PM org.apache.struts.util.PropertyMessageResources <init>
    INFO: Initializing, config='org.apache.struts.action.ActionResources', returnNull=true
    Aug 23, 2007 4:49:09 PM org.apache.struts.util.PropertyMessageResources <init>
    INFO: Initializing, config='org.apache.webapp.admin.ApplicationResources', returnNull=true
    Aug 23, 2007 4:49:11 PM org.apache.catalina.core.StandardHostDeployer install
    INFO: Processing Context configuration file URL file:C:\Program Files\Apache Software Foundation\Tomcat 5.0\conf\Catalina\localhost\balancer.xml
    Aug 23, 2007 4:49:11 PM org.apache.catalina.core.StandardHostDeployer install
    INFO: Processing Context configuration file URL file:C:\Program Files\Apache Software Foundation\Tomcat 5.0\conf\Catalina\localhost\manager.xml
    Aug 23, 2007 4:49:11 PM org.apache.catalina.core.StandardHostDeployer install
    INFO: Installing web application at context path /registration from URL file:C:/Program Files/Apache Software Foundation/Tomcat 5.0/webapps/registration
    Aug 23, 2007 4:49:11 PM java.util.jar.Attributes read
    WARNING: Duplicate name in Manifest: Class-Path
    Aug 23, 2007 4:49:11 PM java.util.jar.Attributes read
    WARNING: Duplicate name in Manifest: Class-Path
    Aug 23, 2007 4:49:11 PM java.util.jar.Attributes read
    WARNING: Duplicate name in Manifest: Class-Path
    Aug 23, 2007 4:49:11 PM java.util.jar.Attributes read
    WARNING: Duplicate name in Manifest: Class-Path
    Aug 23, 2007 4:49:11 PM java.util.jar.Attributes read
    WARNING: Duplicate name in Manifest: Class-Path
    Aug 23, 2007 4:49:11 PM java.util.jar.Attributes read
    WARNING: Duplicate name in Manifest: Class-Path
    Aug 23, 2007 4:49:11 PM java.util.jar.Attributes read
    WARNING: Duplicate name in Manifest: Class-Path
    Aug 23, 2007 4:49:12 PM java.util.jar.Attributes read
    WARNING: Duplicate name in Manifest: Class-Path
    Aug 23, 2007 4:49:12 PM java.util.jar.Attributes read
    WARNING: Duplicate name in Manifest: Class-Path
    Aug 23, 2007 4:49:12 PM java.util.jar.Attributes read
    WARNING: Duplicate name in Manifest: Class-Path
    Aug 23, 2007 4:49:12 PM java.util.jar.Attributes read
    WARNING: Duplicate name in Manifest: Class-Path
    Aug 23, 2007 4:49:12 PM java.util.jar.Attributes read
    WARNING: Duplicate name in Manifest: Class-Path
    Aug 23, 2007 4:49:12 PM java.util.jar.Attributes read
    WARNING: Duplicate name in Manifest: Class-Path
    Aug 23, 2007 4:49:12 PM java.util.jar.Attributes read
    WARNING: Duplicate name in Manifest: Class-Path
    Aug 23, 2007 4:49:14 PM org.apache.catalina.core.StandardHostDeployer install
    INFO: Installing web application at context path /customercare from URL file:C:\Program Files\Apache Software Foundation\Tomcat 5.0\webapps\customercare
    Aug 23, 2007 4:49:15 PM java.util.jar.Attributes read
    WARNING: Duplicate name in Manifest: Class-Path
    Aug 23, 2007 4:49:15 PM java.util.jar.Attributes read
    WARNING: Duplicate name in Manifest: Class-Path
    Aug 23, 2007 4:49:15 PM java.util.jar.Attributes read
    WARNING: Duplicate name in Manifest: Class-Path
    Aug 23, 2007 4:49:15 PM java.util.jar.Attributes read
    WARNING: Duplicate name in Manifest: Class-Path
    Aug 23, 2007 4:49:15 PM java.util.jar.Attributes read
    WARNING: Duplicate name in Manifest: Class-Path
    Aug 23, 2007 4:49:15 PM java.util.jar.Attributes read
    WARNING: Duplicate name in Manifest: Class-Path
    Aug 23, 2007 4:49:15 PM java.util.jar.Attributes read
    WARNING: Duplicate name in Manifest: Class-Path
    Aug 23, 2007 4:49:15 PM org.apache.catalina.loader.WebappClassLoader validateJarFile
    INFO: validateJarFile(C:\Program Files\Apache Software Foundation\Tomcat 5.0\webapps\customercare\WEB-INF\lib\servlet.jar) - jar not loaded. See Servlet Spec 2.3, section 9.7.2. Offending class: javax/servlet/Servlet.class
    Aug 23, 2007 4:49:16 PM java.util.jar.Attributes read
    WARNING: Duplicate name in Manifest: Class-Path
    Aug 23, 2007 4:49:16 PM java.util.jar.Attributes read
    WARNING: Duplicate name in Manifest: Class-Path
    Aug 23, 2007 4:49:16 PM java.util.jar.Attributes read
    WARNING: Duplicate name in Manifest: Class-Path
    Aug 23, 2007 4:49:16 PM java.util.jar.Attributes read
    WARNING: Duplicate name in Manifest: Class-Path
    Aug 23, 2007 4:49:16 PM java.util.jar.Attributes read
    WARNING: Duplicate name in Manifest: Class-Path
    Aug 23, 2007 4:49:16 PM java.util.jar.Attributes read
    WARNING: Duplicate name in Manifest: Class-Path
    Aug 23, 2007 4:49:16 PM java.util.jar.Attributes read
    WARNING: Duplicate name in Manifest: Class-Path
    Aug 23, 2007 4:49:16 PM org.apache.struts.util.PropertyMessageResources <init>
    INFO: Initializing, config='org.apache.struts.util.LocalStrings', returnNull=true
    Aug 23, 2007 4:49:16 PM org.apache.struts.util.PropertyMessageResources <init>
    INFO: Initializing, config='org.apache.struts.action.ActionResources', returnNull=true
    Aug 23, 2007 4:49:18 PM org.apache.struts.util.PropertyMessageResources <init>
    INFO: Initializing, config='com.Test.customercare.web.application', returnNull=true
    Aug 23, 2007 4:49:18 PM org.apache.struts.tiles.TilesPlugin init
    INFO: Tiles definition factory loaded for module ''.
    Aug 23, 2007 4:49:19 PM org.apache.struts.validator.ValidatorPlugIn initResources
    INFO: Loading validation rules file from '/WEB-INF/validator-rules.xml'
    Aug 23, 2007 4:49:39 PM org.apache.struts.validator.ValidatorPlugIn initResources
    SEVERE: Connection timed out: connect
    java.net.ConnectException: Connection timed out: connect
         at java.net.PlainSocketImpl.socketConnect(Native Method)
         at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:305)
         at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:171)
         at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:158)
         at java.net.Socket.connect(Socket.java:452)
         at java.net.Socket.connect(Socket.java:402)
         at sun.net.NetworkClient.doConnect(NetworkClient.java:139)
         at sun.net.www.http.HttpClient.openServer(HttpClient.java:402)
         at sun.net.www.http.HttpClient.openServer(HttpClient.java:618)
         at sun.net.www.http.HttpClient.<init>(HttpClient.java:306)
         at sun.net.www.http.HttpClient.<init>(HttpClient.java:267)
         at sun.net.www.http.HttpClient.New(HttpClient.java:339)
         at sun.net.www.http.HttpClient.New(HttpClient.java:320)
         at sun.net.www.http.HttpClient.New(HttpClient.java:315)
         at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:521)
         at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:498)
         at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:626)
         at org.apache.xerces.impl.XMLEntityManager.setupCurrentEntity(Unknown Source)
         at org.apache.xerces.impl.XMLEntityManager.startEntity(Unknown Source)
         at org.apache.xerces.impl.XMLEntityManager.startDTDEntity(Unknown Source)
         at org.apache.xerces.impl.XMLDTDScannerImpl.setInputSource(Unknown Source)
         at org.apache.xerces.impl.XMLDocumentScannerImpl$DTDDispatcher.dispatch(Unknown Source)
         at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
         at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
         at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
         at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
         at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
         at org.apache.commons.digester.Digester.parse(Digester.java:1514)
         at org.apache.commons.validator.ValidatorResourcesInitializer.initialize(ValidatorResourcesInitializer.java:256)
         at org.apache.struts.validator.ValidatorPlugIn.initResources(ValidatorPlugIn.java:224)
         at org.apache.struts.validator.ValidatorPlugIn.init(ValidatorPlugIn.java:167)
         at org.apache.struts.action.ActionServlet.initModulePlugIns(ActionServlet.java:1105)
         at org.apache.struts.action.ActionServlet.init(ActionServlet.java:468)
         at javax.servlet.GenericServlet.init(GenericServlet.java:211)
         at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1029)
         at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:862)
         at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:4013)
         at org.apache.catalina.core.StandardContext.start(StandardContext.java:4357)
         at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:823)
         at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:807)
         at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:595)
         at org.apache.catalina.core.StandardHostDeployer.install(StandardHostDeployer.java:277)
         at org.apache.catalina.core.StandardHost.install(StandardHost.java:832)
         at org.apache.catalina.startup.HostConfig.deployDirectories(HostConfig.java:701)
         at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:432)
         at org.apache.catalina.startup.HostConfig.start(HostConfig.java:983)
         at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:349)
         at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:119)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1091)
         at org.apache.catalina.core.StandardHost.start(StandardHost.java:789)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1083)
         at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:478)
         at org.apache.catalina.core.StandardService.start(StandardService.java:480)
         at org.apache.catalina.core.StandardServer.start(StandardServer.java:2313)
         at org.apache.catalina.startup.Catalina.start(Catalina.java:556)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:287)
         at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:425)
    Aug 23, 2007 4:49:39 PM org.apache.struts.validator.ValidatorPlugIn initResources
    INFO: Loading validation rules file from '/WEB-INF/validation.xml'
    Aug 23, 2007 4:50:00 PM org.apache.struts.validator.ValidatorPlugIn initResources
    SEVERE: Connection timed out: connect
    java.net.ConnectException: Connection timed out: connect
         at java.net.PlainSocketImpl.socketConnect(Native Method)
         at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:305)
         at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:171)
         at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:158)
         at java.net.Socket.connect(Socket.java:452)
         at java.net.Socket.connect(Socket.java:402)
         at sun.net.NetworkClient.doConnect(NetworkClient.java:139)
         at sun.net.www.http.HttpClient.openServer(HttpClient.java:402)
         at sun.net.www.http.HttpClient.openServer(HttpClient.java:618)
         at sun.net.www.http.HttpClient.<init>(HttpClient.java:306)
         at sun.net.www.http.HttpClient.<init>(HttpClient.java:267)
         at sun.net.www.http.HttpClient.New(HttpClient.java:339)
         at sun.net.www.http.HttpClient.New(HttpClient.java:320)
         at sun.net.www.http.HttpClient.New(HttpClient.java:315)
         at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:521)
         at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:498)
         at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:626)
         at org.apache.xerces.impl.XMLEntityManager.setupCurrentEntity(Unknown Source)
         at org.apache.xerces.impl.XMLEntityManager.startEntity(Unknown Source)
         at org.apache.xerces.impl.XMLEntityManager.startDTDEntity(Unknown Source)
         at org.apache.xerces.impl.XMLDTDScannerImpl.setInputSource(Unknown Source)
         at org.apache.xerces.impl.XMLDocumentScannerImpl$DTDDispatcher.dispatch(Unknown Source)
         at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
         at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
         at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
         at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
         at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
         at org.apache.commons.digester.Digester.parse(Digester.java:1514)
         at org.apache.commons.validator.ValidatorResourcesInitializer.initialize(ValidatorResourcesInitializer.java:256)
         at org.apache.struts.validator.ValidatorPlugIn.initResources(ValidatorPlugIn.java:224)
         at org.apache.struts.validator.ValidatorPlugIn.init(ValidatorPlugIn.java:167)
         at org.apache.struts.action.ActionServlet.initModulePlugIns(ActionServlet.java:1105)
         at org.apache.struts.action.ActionServlet.init(ActionServlet.java:468)
         at javax.servlet.GenericServlet.init(GenericServlet.java:211)
         at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1029)
         at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:862)
         at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:4013)
         at org.apache.catalina.core.StandardContext.start(StandardContext.java:4357)
         at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:823)
         at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:807)
         at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:595)
         at org.apache.catalina.core.StandardHostDeployer.install(StandardHostDeployer.java:277)
         at org.apache.catalina.core.StandardHost.install(StandardHost.java:832)
         at org.apache.catalina.startup.HostConfig.deployDirectories(HostConfig.java:701)
         at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:432)
         at org.apache.catalina.startup.HostConfig.start(HostConfig.java:983)
         at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:349)
         at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:119)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1091)
         at org.apache.catalina.core.StandardHost.start(StandardHost.java:789)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1083)
         at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:478)
         at org.apache.catalina.core.StandardService.start(StandardService.java:480)
         at org.apache.catalina.core.StandardServer.start(StandardServer.java:2313)
         at org.apache.catalina.startup.Catalina.start(Catalina.java:556)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:287)
         at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:425)
    Aug 23, 2007 4:50:00 PM com.Test.framework.web.security.SecurityPlugIn init
    INFO: Loading roles and permissions for CBS...
    Aug 23, 2007 4:50:00 PM com.Test.framework.web.security.SSOAccessController loadRolesAndPermissions
    INFO: Loading permissions for application CBS...
    Aug 23, 2007 4:50:01 PM org.apache.catalina.core.StandardHostDeployer install
    INFO: Installing web application at context path /jsp-examples from URL file:C:\Program Files\Apache Software Foundation\Tomcat 5.0\webapps\jsp-examples
    Aug 23, 2007 4:50:01 PM org.apache.catalina.core.StandardHostDeployer install
    INFO: Installing web application at context path from URL file:C:\Program Files\Apache Software Foundation\Tomcat 5.0\webapps\ROOT
    Aug 23, 2007 4:50:01 PM org.apache.catalina.core.StandardHostDeployer install
    INFO: Installing web application at context path /servlets-examples from URL file:C:\Program Files\Apache Software Foundation\Tomcat 5.0\webapps\servlets-examples
    Aug 23, 2007 4:50:01 PM org.apache.catalina.core.StandardHostDeployer install
    INFO: Installing web application at context path /StrutsExample from URL file:C:\Program Files\Apache Software Foundation\Tomcat 5.0\webapps\StrutsExample
    Aug 23, 2007 4:50:01 PM java.util.jar.Attributes read
    WARNING: Duplicate name in Manifest: Class-Path
    Aug 23, 2007 4:50:01 PM java.util.jar.Attributes read
    WARNING: Duplicate name in Manifest: Class-Path
    Aug 23, 2007 4:50:01 PM java.util.jar.Attributes read
    WARNING: Duplicate name in Manifest: Class-Path
    Aug 23, 2007 4:50:01 PM java.util.jar.Attributes read
    WARNING: Duplicate name in Manifest: Class-Path
    Aug 23, 2007 4:50:01 PM java.util.jar.Attributes read
    WARNING: Duplicate name in Manifest: Class-Path
    Aug 23, 2007 4:50:01 PM java.util.jar.Attributes read
    WARNING: Duplicate name in Manifest: Class-Path
    Aug 23, 2007 4:50:01 PM java.util.jar.Attributes read
    WARNING: Duplicate name in Manifest: Class-Path
    Aug 23, 2007 4:50:01 PM org.apache.catalina.loader.WebappClassLoader validateJarFile
    INFO: validateJarFile(C:\Program Files\Apache Software Foundation\Tomcat 5.0\webapps\StrutsExample\WEB-INF\lib\servlet.jar) - jar not loaded. See Servlet Spec 2.3, section 9.7.2. Offending class: javax/servlet/Servlet.class
    Aug 23, 2007 4:50:02 PM java.util.jar.Attributes read
    WARNING: Duplicate name in Manifest: Class-Path
    Aug 23, 2007 4:50:02 PM java.util.jar.Attributes read
    WARNING: Duplicate name in Manifest: Class-Path
    Aug 23, 2007 4:50:02 PM java.util.jar.Attributes read
    WARNING: Duplicate name in Manifest: Class-Path
    Aug 23, 2007 4:50:02 PM java.util.jar.Attributes read
    WARNING: Duplicate name in Manifest: Class-Path
    Aug 23, 2007 4:50:02 PM java.util.jar.Attributes read
    WARNING: Duplicate name in Manifest: Class-Path
    Aug 23, 2007 4:50:02 PM java.util.jar.Attributes read
    WARNING: Duplicate name in Manifest: Class-Path
    Aug 23, 2007 4:50:02 PM java.util.jar.Attributes read
    WARNING: Duplicate name in Manifest: Class-Path
    Aug 23, 2007 4:50:02 PM org.apache.struts.util.PropertyMessageResources <init>
    INFO: Initializing, config='org.apache.struts.util.LocalStrings', returnNull=true
    Aug 23, 2007 4:50:02 PM org.apache.struts.util.PropertyMessageResources <init>
    INFO: Initializing, config='org.apache.struts.action.ActionResources', returnNull=true
    Aug 23, 2007 4:50:02 PM org.apache.commons.digester.Digester error
    SEVERE: Parse Error at line 25 column 17: The content of element type "struts-config" must match "(data-sources?,form-beans?,global-exceptions?,global-forwards?,action-mappings?,controller?,message-resources*,plug-in*)".
    org.xml.sax.SAXParseException: The content of element type "struts-config" must match "(data-sources?,form-beans?,global-exceptions?,global-forwards?,action-mappings?,controller?,message-resources*,plug-in*)".
         at org.apache.xerces.util.ErrorHandlerWrapper.createSAXParseException(Unknown Source)
         at org.apache.xerces.util.ErrorHandlerWrapper.error(Unknown Source)
         at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown Source)
         at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown Source)
         at org.apache.xerces.impl.dtd.XMLDTDValidator.handleEndElement(Unknown Source)
         at org.apache.xerces.impl.dtd.XMLDTDValidator.endElement(Unknown Source)
         at org.apache.xerces.impl.XMLNSDocumentScannerImpl.scanEndElement(Unknown Source)
         at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown Source)
         at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
         at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
         at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
         at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
         at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
         at org.apache.commons.digester.Digester.parse(Digester.java:1495)
         at org.apache.struts.action.ActionServlet.initModuleConfig(ActionServlet.java:944)
         at org.apache.struts.action.ActionServlet.init(ActionServlet.java:465)
         at javax.servlet.GenericServlet.init(GenericServlet.java:211)
         at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1029)
         at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:862)
         at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:4013)
         at org.apache.catalina.core.StandardContext.start(StandardContext.java:4357)
         at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:823)
         at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:807)
         at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:595)
         at org.apache.catalina.core.StandardHostDeployer.install(StandardHostDeployer.java:277)
         at org.apache.catalina.core.StandardHost.install(StandardHost.java:832)
         at org.apache.catalina.startup.HostConfig.deployDirectories(HostConfig.java:701)
         at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:432)
         at org.apache.catalina.startup.HostConfig.start(HostConfig.java:983)
         at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:349)
         at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:119)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1091)
         at org.apache.catalina.core.StandardHost.start(StandardHost.java:789)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1083)
         at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:478)
         at org.apache.catalina.core.StandardService.start(StandardService.java:480)
         at org.apache.catalina.core.StandardServer.start(StandardServer.java:2313)
         at org.apache.catalina.startup.Catalina.start(Catalina.java:556)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:287)
         at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:425)
    Aug 23, 2007 4:50:02 PM org.apache.catalina.core.StandardHostDeployer install
    INFO: Installing web application at context path /StrutsExample_CMP from URL file:C:\Program Files\Apache Software Foundation\Tomcat 5.0\webapps\StrutsExample_CMP
    Aug 23, 2007 4:50:02 PM java.util.jar.Attributes read
    WARNING: Duplicate name in Manifest: Class-Path
    Aug 23, 2007 4:50:02 PM java.util.jar.Attributes read
    WARNING: Duplicate name in Manifest: Class-Path
    Aug 23, 2007 4:50:02 PM java.util.jar.Attributes read
    WARNING: Duplicate name in Manifest: Class-Path
    Aug 23, 2007 4:50:02 PM java.util.jar.Attributes read
    WARNING: Duplicate name in Manifest: Class-Path
    Aug 23, 2007 4:50:02 PM java.util.jar.Attributes read
    WARNING: Duplicate name in Manifest: Class-Path
    Aug 23, 2007 4:50:02 PM java.util.jar.Attributes read
    WARNING: Duplicate name in Manifest: Class-Path
    Aug 23, 2007 4:50:02 PM java.util.jar.Attributes read
    WARNING: Duplicate name in Manifest: Class-Path
    Aug 23, 2007 4:50:02 PM org.apache.catalina.loader.WebappClassLoader validateJarFile
    INFO: validateJarFile(C:\Program Files\Apache Software Foundation\Tomcat 5.0\webapps\StrutsExample_CMP\WEB-INF\lib\servlet.jar) - jar not loaded. See Servlet Spec 2.3, section 9.7.2. Offending class: javax/servlet/Servlet.class
    Aug 23, 2007 4:50:02 PM java.util.jar.Attributes read
    WARNING: Duplicate name in Manifest: Class-Path
    Aug 23, 2007 4:50:02 PM java.util.jar.Attributes read
    WARNING: Duplicate name in Manifest: Class-Path
    Aug 23, 2007 4:50:02 PM java.util.jar.Attributes read
    WARNING: Duplicate name in Manifest: Class-Path
    Aug 23, 2007 4:50:02 PM java.util.jar.Attributes read
    WARNING: Duplicate name in Manifest: Class-Path
    Aug 23, 2007 4:50:02 PM java.util.jar.Attributes read
    WARNING: Duplicate name in Manifest: Class-Path
    Aug 23, 2007 4:50:02 PM java.util.jar.Attributes read
    WARNING: Duplicate name in Manifest: Class-Path
    Aug 23, 2007 4:50:02 PM java.util.jar.Attributes read
    WARNING: Duplicate name in Manifest: Class-Path
    Aug 23, 2007 4:50:02 PM org.apache.struts.util.PropertyMessageResources <init>
    INFO: Initializing, config='org.apache.struts.util.LocalStrings', returnNull=true
    Aug 23, 2007 4:50:02 PM org.apache.struts.util.PropertyMessageResources <init>
    INFO: Initializing, config='org.apache.struts.action.ActionResources', returnNull=true
    Aug 23, 2007 4:50:03 PM org.apache.commons.digester.Digester error
    SEVERE: Parse Error at line 25 column 17: The content of element type "struts-config" must match "(data-sources?,form-beans?,global-exceptions?,global-forwards?,action-mappings?,controller?,message-resources*,plug-in*)".
    org.xml.sax.SAXParseException: The content of element type "struts-config" must match "(data-sources?,form-beans?,global-exceptions?,global-forwards?,action-mappings?,controller?,message-resources*,plug-in*)".
         at org.apache.xerces.util.ErrorHandlerWrapper.createSAXParseException(Unknown Source)
         at org.apache.xerces.util.ErrorHandlerWrapper.error(Unknown Source)
         at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown Source)
         at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown Source)
         at org.apache.xerces.impl.dtd.XMLDTDValidator.handleEndElement(Unknown Source)
         at org.apache.xerces.impl.dtd.XMLDTDValidator.endElement(Unknown Source)
         at org.apache.xerces.impl.XMLNSDocumentScannerImpl.scanEndElement(Unknown Source)
         at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown Source)
         at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
         at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
         at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
         at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
         at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
         at org.apache.commons.digester.Digester.parse(Digester.java:1495)
         at org.apache.struts.action.ActionServlet.initModuleConfig(ActionServlet.java:944)
         at org.apache.struts.action.ActionServlet.init(ActionServlet.java:465)
         at javax.servlet.GenericServlet.init(GenericServlet.java:211)
         at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1029)
         at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:862)
         at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:4013)
         at org.apache.catalina.core.StandardContext.start(StandardContext.java:4357)
         at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:823)
         at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:807)
         at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:595)
         at org.apache.catalina.core.StandardHostDeployer.install(StandardHostDeployer.java:277)
         at org.apache.catalina.core.StandardHost.install(StandardHost.java:832)
         at org.apache.catalina.startup.HostConfig.deployDirectories(HostConfig.java:701)
         at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:432)
         at org.apache.catalina.startup.HostConfig.start(HostConfig.java:983)
         at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:349)
         at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:119)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1091)
         at org.apache.catalina.core.StandardHost.start(StandardHost.java:789)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1083)
         at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:478)
         at org.apache.catalina.core.StandardService.start(StandardService.java:480)
         at org.apache.catalina.core.StandardServer.start(StandardServer.java:2313)
         at org.apache.catalina.startup.Catalina.start(Catalina.java:556)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:287)
         at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:425)
    Aug 23, 2007 4:50:03 PM org.apache.catalina.core.StandardHostDeployer install
    INFO: Installing web application at context path /tomcat-docs from URL file:C:\Program Files\Apache Software Foundation\Tomcat 5.0\webapps\tomcat-docs
    Aug 23, 2007 4:50:03 PM org.apache.catalina.core.StandardHostDeployer install
    INFO: Installing web application at context path /webdav from URL file:C:\Program Files\Apache Software Foundation\Tomcat 5.0\webapps\webdav
    Aug 23, 2007 4:50:03 PM org.apache.coyote.http11.Http11Protocol start
    INFO: Starting Coyote HTTP/1.1 on http-8081
    Aug 23, 2007 4:50:03 PM org.apache.jk.common.ChannelSocket init
    INFO: JK2: ajp13 listening on /0.0.0.0:8009
    Aug 23, 2007 4:50:03 PM org.apache.jk.server.JkMain start
    INFO: Jk running ID=0 time=0/93 config=C:\Program Files\Apache Software Foundation\Tomcat 5.0\conf\jk2.properties
    Aug 23, 2007 4:50:04 PM org.apache.catalina.startup.Catalina start
    INFO: Server startup in 57514 ms
    In

    SEVERE: Parse Error at line 25 column 17: The content
    of element type "struts-config" must match
    "(data-sources?,form-beans?,global-exceptions?,global-
    forwards?,action-mappings?,controller?,message-resourc
    es*,plug-in*)".
    org.xml.sax.SAXParseException: The content of element
    type "struts-config" must match
    "(data-sources?,form-beans?,global-exceptions?,global-
    forwards?,action-mappings?,controller?,message-resourc
    es*,plug-in*)".It's due to an error with your struts-config.xml. Your elements in the <struts-config> tag are not conforming to the DTD against which it is validated. Check if the order of the elements is as specified in this error message and also check if you have closed all tags correctly.

  • How to access the webservice in portal component

    hai
         how to access the webservice in portal component.
         anyone knows give the solution
    Rds
    Shanthakumar

    Hai
    Please check this link.
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/vc/connectivity&
    Regards

  • Accessing the MessageContext of a Handler From the Backend Component

    Hi,
    I am trying to access the MessageContext in my webService, but am not able to do it. I am able to get my handler executed and i see the flow thru the handler.
    public boolean handleRequest(MessageContext messageContext) {
    boolean flag = false;
    Document document = null;
    SOAPMessageContext smc = (SOAPMessageContext) messageContext;
    SOAPMessage soapMessage = smc.getMessage();
    try {
    SOAPBody soapBody = soapMessage.getSOAPBody();
    document = soapBody.extractContentAsDocument();
    flag = true;
    } catch (SOAPException e) {
    LOGGER.log(Level.INFO, "Error retrieving body from soap message: " + e.getMessage());
    messageContext.setProperty("bodyAsDocument", document);
    return flag;
    But when it is trying to get the context in the webservice using the following code:
    SOAPMessageContext smc = WebServiceContext.currentContext().getLastMessageContext();
    it says:
    unable to find context for current thread
    Here is my webservice.xml:
    <?xml version='1.0' encoding='UTF-8'?>
    <webservices xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.1">
    <webservice-description>
    <webservice-description-name>ProductDataService</webservice-description-name>
    <wsdl-file>/wsdls/ProductDataWS.wsdl</wsdl-file>
    <jaxrpc-mapping-file>WEB-INF/ProductDataService.xml</jaxrpc-mapping-file>
    <port-component>
    <port-component-name>ProductDataPort</port-component-name>
    <wsdl-port xmlns:prod="http://localhost/ProductDataService">prod:ProductDataPort</wsdl-port>
    <service-endpoint-interface>com.test.productdata.ws.ProductDataImplPortType</service-endpoint-interface>
    <service-impl-bean>
    <servlet-link>ProductDataServiceServlethttp</servlet-link>
    </service-impl-bean>
    <handler>
    <handler-name>com.test.productdata.handler.ProductDataSOAPMessageHandler</handler-name>
    <handler-class>com.test.productdata.handler.ProductDataSOAPMessageHandler</handler-class>
    </handler>
    </port-component>
    </webservice-description>
    </webservices>
    Any help is appreciated. Thanks in advance
    -k

    WebServiceContext.currentContext() API only works
    for web service created by WLS using ant tasks. This
    does not work for WLW web services.

Maybe you are looking for

  • Error while saving Extract Structure

    Hi Friends, We have enhanced the DataSource 0FI_AR_4 by adding new feilds. After that i went to Extract Structure to Un check (Deselect) the HIDE check box for newly added feilds and when i save the structure it is throwing the Error The OLTP source

  • Problems with Custom File Info Panel and Dublin Core

    I'm creating a custom file info panel that uses the values of the dublin core description and keywords (subject) for two of it's own fields.  I'm having problems with the panel saving if they enter the description on the custom panel first, and with

  • How can I create this as a vector graphic?

    HI Folks, I'd like to create the attached as a vector graphic, can anyone tell me the best way to do this in Fireworks CS3? http://www.sandwell.nhs.uk/circles.jpg I've tried to draw it using the pen tool, but it doesnt look accurate. thanks in advanc

  • Jdev 2.0 Release date ?

    when will JDev 2.0 be production released null

  • Export system or sys schema

    If I am using imp/exp export schema system and sys, is it possible?