Error -- Tag @see: Malformed:

I have source files which are approximately 16.5 MB. I have to convert to Javadocs through JDK 1.4 from SUN WinNT.
When I gave the following command, it reported me to use -J-Xmx32m , during loading the source.
javadoc -subpackages com -d D:\Projects\Ina\Documentation\Other_Docs1
-J-Xmx32m did not work.So I increased it as -J-Xmx1024m. There was no problems during loading the source files. But after generating some HTML files, there was no output and javadoc was running. The generated HTML files were incomplete.
Please help me to convert the src files to javadocs.
Rajesh
Note : There were quite a number of missing files. Source files had imported some packages, which were not present. Can this be the eye of the problem ?

I don't know if that is causing all your problems, but definitely yor @see warnings.
The @see tag is a way for you to provide a link to other parts in the API, which are useful to anyone who reads the API. In your case you haven't provided any @see information and if you don't provide any such information (which again, is up to you) that line needs to be removed entirely. It is not required, but if you have it there it must be complete. There are many variations of the see tag, you should have a look at them at the link I provided in the end of this message.
And also you have an empty @since tag. That tag chould have some information about since which version this class or method was introduced, but that is purely at your discretion. If you don't want to include such information, remove the entire tag.
The most simple example, which should work for you is:
* DESCRIPTION INSERTED HERE
* @author %derived_by: heal%
* @version %version: 3 %
*/Otherwise an example with both the tags could be (with some variations of the @see tags, you can add as many @see tags as you like):
* DESCRIPTION INSERTED HERE
* @author %derived_by: heal%
* @version %version: 3 %
* @since version 2
* @see java.lang.String
* @see java.lang.String Description Of the link
* @see <a href="InterestingLink.html">Some more information</a>
*/More details are available here:
@since - http://java.sun.com/j2se/1.4/docs/tooldocs/windows/javadoc.html#@since
@see - http://java.sun.com/j2se/1.4/docs/tooldocs/windows/javadoc.html#@see

Similar Messages

  • Netui:error tag uses deprecated ActionError

    Can anyone tell me if there's a good reason why netui:error tag refers to the deprecated ActionError as opposed to ActionMessage?
    It means I cannot do this as I get a ClassCastException:
    <pre>
    public ActionErrors validate(ActionMapping mapping, HttpServletRequest request) {
    ActionErrors errors = new ActionErrors();
    errors.add("test", new ActionMessage("someError"));
    return errors;
    </pre>
    Instead I am forced to use a deprecated class. As ActionError inherits from ActionMessage, I can't really see why it is referenced.
    Regards
    James

    I also encountered the same issue when I was working with this issue. I could not figure out how to do it so I came with a work around maybe this will help you.
    In my JSP I use the following code:
    <%
    // this part gets the i18n messages which netui:errors tags are not capable of
    ActionErrors actionerrors = (ActionErrors)request.getAttribute("org.apache.struts.action.ERROR");
    if(actionerrors != null)
    %>
    <i18n:getMessage messageName="errors.header" />
    <%
    Iterator it = actionerrors.get();
    while(it.hasNext())
    ActionError e = (ActionError) it.next();
    %>
    <i18n:getMessage messageName="errors.prefix" />
    <i18n:getMessage messageName="<%=e.getKey()%>" />
    <i18n:getMessage messageName="errors.suffix" />
    <%
    %>
    <i18n:getMessage messageName="errors.footer" />
    <%
    %>

  • Getting error tags on music files

    How can I remove error tags on certain songs in my iTunes library?  I cannot sync or transfer about 70% of my library to other devices or my iCloud account.

    iTunes doesn't "see" new files in a folder.
    When you set iTunes prefs to a new location, it will simply put all new music in the library in that location.
    iTunes prefs -> Advanced. Set the iTunes music folder location to where your music is on the external.
    Go to iTunes menu File -> Add folder to library and select the topmost music folder on the external where your music is located.
    This will add them to the iTunes library and keep them on the external.

  • Error - tag.getAsString : attribute 'title' not found in context ---- Help

    hi,
    I have included a jsp page in tiles definition xml. if i try to access an attribute defined in the tiles definition using tiles:getAsString method it is throwing the following exception
    Error - tag.getAsString : attribute 'title' not found in context
    can anyone help me how to get rid of this problem?
    Thanks in advance.

    yes ,
    reference already enter in web.xml
    <resource-ref>
              <description>
              </description>
              <res-ref-name>jdbc/iconnectDS</res-ref-name>
              <res-type>javax.sql.DataSource</res-type>
              <res-auth>Container</res-auth>
              <res-sharing-scope>Shareable</res-sharing-scope>
         </resource-ref>
    still same problem
    pullareddy

  • JSP : Tiles Error �tag.getAsString� : component context is not defined

    JSP : Tiles Error �tag.getAsString� : component context is not defined
    I�m working with Struts 1.1 and Tiles, under Tomcat 5.0.16
    My application works fine using Struts 1.1 alone, however, when attempting to run the application in a �Tiles� environment, I get an error:

    javax.servlet.jsp.JspException: Error - tag.getAsString : component context is not defined. Check tag syntax

    I have �defined� this in my �tiles-defs.xml� file, and as far as I can tell, everything else is configured properly (I have looked over the included Struts document examples, and others on the web, and I seem to have everything configured identically).
    What am I missing???
    I have created a series of �mostly� empty JSP files, for simplicity sake.
    JSP FILES:
    -     header.jsp
    -     footer.jsp
    -     menu.jsp
    -     rootLayout.jsp
    -     user.jsp
    -     show_user.jsp
    -     error.jsp
    -     defaultContentPage.jsp
    All JSP files contain:
    <%@ taglib uri="/WEB-INF/lib/struts-tiles.tld" prefix="tiles" %>
    and

    <title>
    <tiles:getAsString name="title"/>
    </title>

    My �tiles-defs.xml�: =================================================
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE tiles-definitions PUBLIC
    "-//Apache Software Foundation//DTD Tiles Configuration 1.1//EN"
    "http://jakarta.apache.org/struts/dtds/tiles-config_1_1.dtd">
    <tiles-definitions>
    <!-- ================ RootLayout ======================= -->
    <definition name=".root.layout" path="/jsp/rootLayout.jsp" >
    <put name="title" value="Default title"/>
    <put name="header" value="/jsp/header.jsp"/>
    <put name="menu" value="/jsp/menu.jsp"/>
    <put name="content" value="/jsp/defaultContentPage.jsp"/>
    <put name="footer" value="/jsp/footer.jsp"/>
    </definition>
    <!-- ================ Extentions ======================= -->
    <!-- User -->
    <definition name=".view.user" extends=".root.layout">
    <put name="title" value="Welcome to the User Form."/>
    <put name="content" value="/jsp/user.jsp"/>
    </definition >
    <!-- Save -->
    <definition name=".view.save" extends=".root.layout">
    <put name="title" value="Welcome to the Show User Form."/>
    <put name="content" value="/jsp/show_user.jsp"/>
    </definition >
    <!-- Error -->
    <definition name=".view.error" extends=".root.layout">
    <put name="title" value="Error Message."/>
    <put name="content" value="/jsp/error.jsp"/>
    </definition >
    </tiles-definitions>
    My �struts-config.xml�: ==============================================
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE struts-config PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 1.1//EN"
    "http://jakarta.apache.org/struts/dtds/struts-config_1_1.dtd">
    <struts-config>
    <!-- ========== FormBeans =================================== -->
    <form-beans>
    <form-bean name="userForm" type="biz.seamrog.strutstest.model.state.UserForm"/>
    </form-beans>
    <!-- ========== Action Mapping Definitions=================== -->
    <action-mappings>
    <!-- Action using normal forward syntax...
    <action path="/user"
    forward="/jsp/user.jsp">
    </action>
    -->
    <!-- Action using a "Tiles" forward syntax...
    The "forward" path mappings are defined in a file named
    "../WEB-INF/tiles-defs.xml
    -->
    <action path="/user"
    forward=".view.user">
    </action>
    <!-- Action using normal forward syntax...
    <action path="/save"
    type="biz.seamrog.strutstest.model.logic.SaveAction"
    name="userForm" scope="request"
    input="/jsp/user.jsp">
    <forward name="success" path="/jsp/show_user.jsp"/>
    <forward name="failure" path="/jsp/error.jsp"/>
    </action>
    -->
    <!-- Tiles syntax -->
    <action path="/save"
    type="biz.seamrog.strutstest.model.logic.SaveAction"
    name="userForm" scope="request"
    input="/jsp/user.jsp">
    <forward name="success" path=".view.show_user"/>
    <forward name="failure" path=".view.error"/>
    </action>
    </action-mappings>
    <!-- ============== Global Forwards ======================== -->
    <global-forwards>
    <!-- NOTE: paths with "." syntax are Tiles defined paths,
    all other paths follow conventional "/path/to/file.jsp syntax
    -->
    <forward name="user" path=".view.user"/>
    <forward name="show_user" path=".view.show_user"/>
    <forward name="error" path=".view.error"/>
    <forward name="cssBase" path="/stylesheets/common.css"/>
    </global-forwards>
    <!-- ============= Plug-ins =============== -->
    <!-- Tiles Plug-in -->
    <plug-in className="org.apache.struts.tiles.TilesPlugin" >
    <set-property property="definitions-config" value="/WEB-INF/tiles-defs.xml"/>
    <set-property property="definitions-parser-validate" value="true" />
    <set-property property="moduleAware" value="true" />
    </plug-in>
    </struts-config>
    My �web.xml�: =====================================================
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE web-app PUBLIC '-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN' 'http://java.sun.com/dtd/web-app_2_3.dtd'>
    <web-app>
    <servlet>
    <!--
    MyController extends org.apache.struts.action.ActionServlet
    NOTE: The servlet could also be specified specifying the
    default Struts ActonServlet...
    <servlet-name>controller</servlet-name>
    <servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
    ...I have chosen to extend here just for practice sake.
    -->
    <!--
    <servlet-name>MyController</servlet-name>
    <servlet-class>biz.seamrog.strutstest.controller.MyController</servlet-class>
    -->
    <servlet-name>MyController</servlet-name>
    <servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
    <!--
    Point to Struts configuration file(s)
    -->
    <init-param>
    <param-name>config</param-name>
    <param-value>/WEB-INF/struts-config.xml</param-value>
    </init-param>
    <!-- Tiles config -->
    <init-param>
    <param-name>definitions-config</param-name>
    <param-value>/WEB-INF/tiles-defs.xml</param-value>
    </init-param>
    <!-- This is the added Application parameter: -->
    <init-param>
    <param-name>application</param-name>
    <param-value>ApplicationResource</param-value>
    </init-param>
    <!-- end -->
    <load-on-startup>5</load-on-startup>
    </servlet>
    <!--
    All incoming requests that end in .do, send to MyController.
    -->
    <servlet-mapping>
    <servlet-name>MyController</servlet-name>
    <url-pattern>*.do</url-pattern>
    </servlet-mapping>
    <!--
    Send initial requests to the login page for this application
    -->
    <welcome-file-list>
    <welcome-file>/jsp/user.jsp</welcome-file>
    </welcome-file-list>
    <!--
    Make all of the necessary related Struts JSP custom tag libraries
    available and define where to find them.
    -->
    <taglib>
    <taglib-uri>/WEB-INF/lib/struts-bean.tld</taglib-uri>
    <taglib-location>/WEB-INF/lib/struts-bean.tld</taglib-location>
    </taglib>
    <taglib>
    <taglib-uri>/WEB-INF/lib/struts-html.tld</taglib-uri>
    <taglib-location>/WEB-INF/lib/struts-html.tld</taglib-location>
    </taglib>
    <taglib>
    <taglib-uri>/WEB-INF/lib/struts-logic.tld</taglib-uri>
    <taglib-location>/WEB-INF/lib/struts-logic.tld</taglib-location>
    </taglib>
    <taglib>
    <taglib-uri>/WEB-INF/lib/struts-tiles.tld</taglib-uri>
    <taglib-location>/WEB-INF/lib/struts-tiles.tld</taglib-location>
    </taglib>
    </web-app>
    My �rootLayout.jsp�: ================================================
    <%@page contentType="text/html"%>
    <%@ taglib uri="/WEB-INF/lib/struts-tiles.tld" prefix="tiles" %>
    <html>
    <header>
    <title>
    <tiles:getAsString name="title" />
    </title>
    <body>
    <tiles:get name="header"/>
    <tiles:get name="menu"/> <tiles:get name="content"/>
    <tiles:get name="footer"/>
    </body>
    </html>

    I found an entry in the Mail Archive for Struts. I got it working. My working code is below. You need to in the base JSP import the header and put the 'title' out to it.
    tiles:def file:
    <!DOCTYPE tiles-definitions PUBLIC
    "-//Apache Software Foundation//DTD Tiles Configuration 1.1//EN"
    "http://jakarta.apache.org/struts/dtds/tiles-config_1_1.dtd">
    <tiles-definitions>
    <definition name=".petstore.Base" path="/common/petstorecommon.jsp">
    <put name="title" value ="${title}"/>
    <put name="header" value="/common/header.jsp"/>
    <put name="message" value="/common/message.jsp"/>
    <put name="content" value="${content}"/>
    <put name="navbar" value="/common/navbar.jsp"/>
    </definition>
    <definition name="petstore.Login" extends=".petstore.Base" >
    <put name="title" value="Login Page" />
    <put name="content" value="/Logon.jsp"/>
    <put name="test1" value="test1value"/>
    </definition>
    base tile def:
    <%@ taglib uri="/WEB-INF/struts-tiles.tld" prefix="tiles"%>
    <%@ page contentType="text/html;charset=windows-1252"%>
    <html:html>
    <head>
    <html:base/>
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
    <title>pet store common (jsp)</title>
    </head>
    <body>
    <tiles:insert attribute="header">
    <%-- both of these attributes are accessible from header.jsp It works!!! --%>
    <tiles:put name="title" beanName="title" beanScope="tile" />
    <tiles:put name="test1" beanName="test1" beanScope="tile" />
    </tiles:insert>
    <%-- <tiles:get name="header" /> --%>
    <tiles:get name="message" />
    <tiles:get name="content" />
    <tiles:get name="navbar" />
    </body>
    </html:html>
    Getting access to the title value in the header.jsp file:
    <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%>
    <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html"%>
    <%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic"%>
    <%@ taglib uri="/WEB-INF/struts-tiles.tld" prefix="tiles"%>
    <html>
    <head>
    <tiles:getAsString name="title" />
    <tiles:getAsString name="test1" />
    </head>
    <body>
    </body>
    </html>

  • Unknown error please see log for details...

    Hi,
    I have been having major issues with not being able to
    connect or administer a site, so I deleted the site from the server
    and uploaded a fresh version as the error suggested the files where
    corrupt?
    Now I get the error "Unknown error please see log for
    details" the log is as follows;
    Date: 12/22/2006
    LocalTime: 12:36
    Host: ftp.caitlin-labradoodles.co.uk
    Port:
    LoginID: caitlinlauk
    Path: /
    Passive Enabled: false
    ProxyHost: NoneContribute Alternate Rename: no
    Contribute Optimized: yes
    ======================== Test Results
    ==========================
    NOTE: For more information on FTP server compatibility
    issues, please see
    http://www.macromedia.com/support/contribute/ts/documents/ftp_info.htm
    Login: SUCCESS!
    Changing Directory To: / SUCCESS!
    Directory Listing Test: SUCCESS!
    Make Directory Test: SUCCESS!
    Change Directory Test: SUCCESS!
    Upload a File Test: REMOTE_IO_ERROR - Error reading or
    writing remote resource.
    ----------------------- FTP log from the last operation
    > CWD /mm_diagnose_9qw83
    < 250 Directory successfully changed.
    > PORT 192,168,165,54,207,26
    < 200 PORT command successful. Consider using PASV.
    > TYPE I
    < 200 Switching to Binary mode.
    > STOR upload_test1_reg_.htm
    < 425 Failed to establish connection.
    Cleaning Test Directory: Contribute could not create
    "mm_diagnose" because it already exists. Please remove this folder.
    ----------------------- FTP log from the last operation
    > CWD /
    < 250 Directory successfully changed.
    > RMD mm_diagnose_9qw83
    < 550 Remove directory operation failed.
    > CWD /mm_diagnose_9qw83
    < 250 Directory successfully changed.
    > PORT 192,168,165,54,207,27
    < 200 PORT command successful. Consider using PASV.
    > TYPE A
    < 200 Switching to ASCII mode.
    > LIST
    < 150 Here comes the directory listing.
    < -rw-r--r-- 1 6518 99 0 Dec 22 12:34
    upload_test1_reg_.htm
    < 226 Directory send OK.
    Any suggestions would be great at this stage as Im scratching
    my head with confusion and my customer is getting very irate as she
    can not do anything.

    Hi,
    Can you please verify whether user has
    read/write/delete/append/create directory rights as an FTP user for
    the FTP home directory. If not give the same and try creating the
    connection.
    Please let me knwo if it helps.
    Regards,
    Manoj

  • Hello my creative cloud icon shows a red download error tag that states to contact customer support. Please advise

    My creative cloud icon shows a red download error tag that states to contact customer support. Every app appears to be updated
    Is this a bug. Should I be concerned?

    NObody can tell you anything without exact system information and other technical details.
    Mylenium

  • Error C2059: syntax error: ' tag ::*'

      
    Hello,
    I'm trying to adapt some Microsoft code (member.cpp in Detours) for my case
    ( I just want to replace :
    void CMember::Target(void)
    by
    QString QString::fromAscii(const char *str, int size):
    MS Code :
    class CMember
    public:
    void Target(void);
    void CMember::Target(void)
    printf(" CMember::Target! (this:%p)\n", this);
    //////////////////////////////////////////////////////////////// Detour Class.
    class CDetour /* add ": public CMember" to enable access to member variables... */
    public:
    void Mine_Target(void);
    static void (CDetour::* Real_Target)(void);
    // Class shouldn't have any member variables or virtual functions.
    void CDetour::Mine_Target(void)
    printf(" CDetour::Mine_Target! (this:%p)\n", this);
    (this->*Real_Target)();
    void (CDetour::* CDetour::Real_Target)(void) = (void (CDetour::*)(void))&CMember::Target;
    My code :
    class CDetour /* add ": public CMember" to enable access to member variables... */
    public:
    QString Mine_Target(const char *str, int size);
    static QString (CDetour::* Real_Target)(const char *str, int size);
    // Class shouldn't have any member variables or virtual functions.
    QString CDetour::Mine_Target(const char *str, int size)
    printf(" CDetour::Mine_Target! (this:%p)\n", this);
    (this->*Real_Target)(str, size);
    QString (CDetour::* CDetour::Real_Target)(const char *str, int size) = (CDetour::*)(const char *str, int size)&QString::fromAscii;
     But I get :
    error C2059: syntax error: '< tag >::*'
    for the last line
    And If I write instead :
    QString (CDetour::* CDetour::Real_Target)(const char *str, int size) = (QString(CDetour::*)(const char *str, int size))&QString::fromAscii;
    I get :
    error C2440: 'type cast' : impossible to convert from 'QString (__cdecl *)(const char *,int)' into 'QString (__thiscall CDetour::* )(const char *,int)'
    Thanks.

    On 1/30/2015 11:26 AM, Jeff666 wrote:
    Thanks for your answer, but I get the same type cast error :
    error C2440: 'type cast ' : impossible to convert from 'QString (__cdecl *)(const char *,int)' into 'CDetour::TargetType'
    Ah. QString::fromAscii is a static member - basically, an ordinary function; it doesn't have a "this" pointer. Whereas the original sample you are working from deals with a non-static member function.
    I suppose you could so this (though I must admit I don't at all understand the point of the exercise):
    class CDetour {
    public:
    typedef QString (__cdecl *TargetType)(const char *str, int size);
    static TargetType Real_Target;
    static QString Mine_Target(const char *str, int size) {
    return Real_Target(str, size);
    CDetour::TargetType CDetour::Real_Target = &QString::fromAscii;
    Note that TargetType is no longer a pointer-to-member, but a regular function pointer.
    Igor Tandetnik

  • Error -  Tag Insert : Can't get  definition - help needed

    Error - Tag Insert : Can't get definition 'Template.page' ..
    getting the above error when i use
    <tiles:insert definition="Template.page" /> in my jsp page
    altough I have definition by name "Template.page" error is thrown..
    I am using myfaces + tiles..
    I have clearly mentioned the tiles files in web.xml.
    But if i call any jsp page from its viewid... its reconising its respective tiles deinition... like below
    when i call /faces/mypage.jsp and in my tiles page i have
    <definition name="/mypage.tiles" extends="Template.page" >
    <put name="header" value="/sss/yyy/home.jsp" />
    </definition>
    so when i call that page, its recognises the definition and working fine..
    but when i use definition like below
    <tiles:insert definition="Template.page" /> in my jsp page and in tiles.xml files i have the definition.. like below
    <definition name="Template.page" path="template.jsp" >
    <put name="header" value="/sss/yyy/home.jsp" />
    <put name="footer" value="/sss/yyy/home.jsp" />
    </definition>
    its saying the Error - Tag Insert : Can't get definition 'Template.page'

    Error - Tag Insert : Can't get definition 'Template.page' ..
    getting the above error when i use
    <tiles:insert definition="Template.page" /> in my jsp page
    altough I have definition by name "Template.page" error is thrown..
    I am using myfaces + tiles..
    I have clearly mentioned the tiles files in web.xml.
    But if i call any jsp page from its viewid... its reconising its respective tiles deinition... like below
    when i call /faces/mypage.jsp and in my tiles page i have
    <definition name="/mypage.tiles" extends="Template.page" >
    <put name="header" value="/sss/yyy/home.jsp" />
    </definition>
    so when i call that page, its recognises the definition and working fine..
    but when i use definition like below
    <tiles:insert definition="Template.page" /> in my jsp page and in tiles.xml files i have the definition.. like below
    <definition name="Template.page" path="template.jsp" >
    <put name="header" value="/sss/yyy/home.jsp" />
    <put name="footer" value="/sss/yyy/home.jsp" />
    </definition>
    its saying the Error - Tag Insert : Can't get definition 'Template.page'

  • Error: Tag attempted to define a bean which already exists:

    I am getting following error
    oracle.jsp.parse.JspParseException: Line # 1, Error: Tag
    attempted to define a bean which already exists: webBoard
    The first few line of my code is given below
    <%@ page import = "java.io.*" %>
    <%@ page import = "java.util.*" %>
    <jsp:useBean id ="webBoard" scope = "session" class
    = "com.webBoard.DBBean"/>
    Any help will be highly appreciated.
    Thanks and Regards
    Sai Kumar

    I am getting following error
    oracle.jsp.parse.JspParseException: Line # 1, Error: Tag
    attempted to define a bean which already exists: webBoard
    The first few line of my code is given below
    <%@ page import = "java.io.*" %>
    <%@ page import = "java.util.*" %>
    <jsp:useBean id ="webBoard" scope = "session" class
    = "com.webBoard.DBBean"/>
    Any help will be highly appreciated.
    Thanks and Regards
    Sai Kumar

  • Error : Tag insert

    Error - Tag Insert : At least one of the following attribute must be defined : template|page|attribute|definition|name|bean Name.
    in my jsp i m using struts tag. all property is havina getter & setter method definition in formbean....
    can any one tell me wat may be the problem.
    thanx in advance
    eshu

    can any one tell me wat may be the problem.Doesnt the error message tell you that ?
    attribute must be defined : template|page|attribute|definition|name|bean Name.
    ram.

  • Change error tag names of the Response xml of a vanilla Inbound Webservice

    Hi,
    I am invoking a vanilla inbound webservice "Service Request" through Soap UI. Whenever any error occurs, in the response xml, some tags like "siebelf:error" is generated in the xml. However these tags are not present in the IO.My question is, can we change these tag names? If yes, then how?
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
    <SOAP-ENV:Body>
    <SOAP-ENV:Fault>
    <faultcode>SOAP-ENV:Server</faultcode>
    <faultstring>Method 'SetFieldValue' of business component 'Service Request' (integration component 'Service Request') returned the following error:
    "The value entered in field Status of buscomp Service Request does not match any value in the bounded pick list FIN PickList Service Request Status.(SBL-DAT-00225)"(SBL-EAI-04376)</faultstring>
    <detail>
    <siebelf:siebdetail xmlns:siebelf="http://www.siebel.com/ws/fault">
    <siebelf:logfilename>EAIObjMgr_enu_0033_34603066.log</siebelf:logfilename>
    <siebelf:errorstack>
    <siebelf:error>
    <siebelf:errorcode>SBL-DAT-00225</siebelf:errorcode>
    <siebelf:errorsymbol/>
    <siebelf:errormsg>Method 'SetFieldValue' of business component 'Service Request' (integration component 'Service Request') returned the following error:
    "The value entered in field Status of buscomp Service Request does not match any value in the bounded pick list FIN PickList Service Request Status.(SBL-DAT-00225)"(SBL-EAI-04376)</siebelf:errormsg>
    </siebelf:error>
    </siebelf:errorstack>
    </siebelf:siebdetail>
    </detail>
    </SOAP-ENV:Fault>
    </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>
    Regards
    Sagnik

    Hi,
    You should be able to edit the generated wsdl as you suggested, changing the
    "return" to something else. Then save the wsdl to a file, say
    "filename.wsdl", and then at the top of your jws add the following:
    * @jws:wsdl file="filename.wsdl"
    This will force the jws to use the wsdl you specify and you won't have to
    edit any maps. Of course, as your jws changes, you will need to regenerate
    the wsdl and change the "return" to something else.
    Mike Kaufman
    Software Engineer
    BEA Systems
    "sherlock" <[email protected]> wrote in message
    news:3cbbe81f$[email protected]..
    >
    I have created a webservice in workshop that has some methods what returnstring-data.
    Now I want to create clients with different software-products. Because Igot some
    errors with one of these products, I looked into the WSDL and noticed thatthe
    name of the response-datatype is 'return' (by default).
    You can see this here:
    - <s:element name="addUserResponse">
    - <s:complexType>
    - <s:sequence>
    <s:element minOccurs="1" maxOccurs="1" name="return" nillable="true"type="s:string"
    />
    This 'return' is interpreted as a keyword in the client-generation tool.If I
    change this manually to another word then it works.
    When I try to change the 'Return XML' in the 'Edit Maps and Interface'Dialog,
    than the WSDL looks like this:
    - <s:element name="addUserResponse">
    - <s:complexType mixed="true">
    - <s:sequence>
    <s:any minOccurs="1" maxOccurs="unbounded" />
    Now the name- and type-definitions are completely missing.
    The question is now: how to change the name of the response-datatype from'return'
    to another (not-keyword-) name?
    I think this is important because I don't know what software a customeruses to
    generate a client and I can not expect that he manually edits myWSDL-file.
    >
    Thanks.

  • Taglib parsing error - cant see type parameter under attribute apparent

    Hi,
    I cannot determine why I'm getting the following error:
    "org.apache.jasper.JasperException: XML parsing error on file /report-taglib.tld: Element type "type" must be declared."
    It seems to me that I have clearly included the "<type>"
    parameter (java.util.ArrayList) for the "container" attribute (see my taglib xml, below)...
    Can you tell why the parser does not recognize it?
    Appreciate any help.
    [environment info]
    OS: WIN2000
    JAVA_HOME: C:\j2sdk1.4.0
    J2EE_HOME: C:\j2sdkee.1.3.1
    CATALINA_HOME: C:\jwsdp-1_0-ea1
    [my taglib]
    <?xml version="1.0" encoding="ISO-8859-1" ?>
    <!DOCTYPE taglib
    PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.1//EN"
    "http://java.sun.com/j2ee/dtds/web-jsptaglibrary_1_1.dtd">
    <!-- a tag library descriptor -->
    <taglib>
    <tlibversion>1.0</tlibversion>
    <jspversion>1.1</jspversion>
    <shortname>report-taglib</shortname>
    <info>
              report taglib
    </info>
    <tag>
    <name>report</name>
    <tagclass>reportpackage.reporttags.ReportTagPROTO</tagclass>
    <bodycontent>JSP</bodycontent>
    <info>Includes body only if authorized by tag servlet</info>
    <attribute>
         <name> numQuery </name>
         <required> true </required>
         <rtexprvalue> true </rtexprvalue>
    </attribute>
    <attribute>
         <name> showNumber </name>
         <required> true </required>
         <rtexprvalue> true </rtexprvalue>
    </attribute>
    <attribute>
         <name> container </name>
         <required> true </required>
         <rtexprvalue> true </rtexprvalue>
         <type> java.util.ArrayList </type>
    </attribute>
    </tag>
    </taglib>

    It appears that this error is a result of using the wrong jsp version. -thanks

  • SLD error - Please see my problem letter by letter.

    HI Masters,
    before see this error , first of all read my doubt line by line. then only You can understand.
    I have three doubts.
    first one is :
    when i am login to http://hostname:portno/sld browser , it showing error message in red color. Please check it .
    1) You do not have permission to view to SLD. Min required : UME role with permission com.sap.lcr.lcruser and j2ee role lcruser.see the sld post-installtion guide for details.
    2) SLD not configured. Configure SLD in Adminsitration First.
    It showing these above  two error messages.
    in go.bat file  after click on cim client test , i click on trigger sld data transfer, it showing error message.
    OPERATION FAILED ! FAILED TO COLLECT DATA . THERE IS NO PROCESS TO READ DATA  WRITTEN TO A PIPE..
    perform standard user group  to role assignment also failed.
    Second one is :
    I log in to go.bat file and gave correct host name , port no, userid- SLDDSUSER and password in area of cim client test and http settings tab:
    after then when i click on CIM CLIENT test . The test conection is failed.
    But with j2ee_admin user id in http setting tab and cim client test tab , then click on cim client test.
    the test is succeed.
    my doubt is generally by using user id - slddsuser in cimclient test and http settings tabs , even then also cim client test will succeed. but in my case with only j2ee_admin user id, only then cim client test is succeed.
    why it's happend with only j2ee_admin user only cim client test is succeed. why this one not succeed with SLDDSUSER.
    , i click on trigger sld data transfer, it showing error message.
    OPERATION FAILED ! FAILED TO COLLECT DATA . THERE IS NO PROCESS TO READ DATA  WRITTEN TO A PIPE..
    perform standard user group  to role assignment also failed.
    THIRD DOUBT IS :
    I am not finding the roles and users related to SLD and NWDI.
    Please give reply . reply will highly appreciated .
    Edited by: sujana mullapudi on Nov 4, 2009 1:21 PM

    Hi
    Please check documentation at System Landscape Directory (SLD) in particular the SLD Post Installation Guide
    chapter "Configuring SLD Security Roles"
    The SLD users may not be delivered with default authorizations - customers have to select the appropriate or as required roles
    Best regards
    Stuart

  • Error while seeing the Content Information of any content in the UCM.

    Hi All,
    I am facing an issue where i am seeing this error. i am not able to view the content information of any item in my content server.
    +Event generated by user 'username at host 'servername'. Unable to retrieve information for 'content id'. Unable to execute service method 'getDocFormats'. Null pointer is dereferenced. [ Details ]+
    An error has occurred. The stack trace below shows more information.
    +!csUserEventMessage,username,servername!$!csUnableToGetRevInfo2,GMKP_036626!csUnableToExecMethod,getDocFormats!syNullPointerException+
    intradoc.common.ServiceException: !csUnableToGetRevInfo2,GMKP_036626!csUnableToExecMethod,getDocFormats
    *ScriptStack DOC_INFO+
    +3:getDocFormats,dID=35481,dDocName=GMKP_036626+
    at intradoc.server.ServiceRequestImplementor.buildServiceException(ServiceRequestImplementor.java:2115)
    at intradoc.server.Service.buildServiceException(Service.java:2260)
    at intradoc.server.Service.createServiceExceptionEx(Service.java:2254)
    at intradoc.server.Service.createServiceException(Service.java:2249)
    at intradoc.server.ServiceHandler.executeAction(ServiceHandler.java:102)
    at intradoc.server.Service.doCodeEx(Service.java:533)
    at intradoc.server.Service.doCode(Service.java:505)
    at intradoc.server.ServiceRequestImplementor.doAction(ServiceRequestImplementor.java:1643)
    at intradoc.server.Service.doAction(Service.java:477)
    at intradoc.server.ServiceRequestImplementor.doActions(ServiceRequestImplementor.java:1458)
    at intradoc.server.Service.doActions(Service.java:472)
    at intradoc.server.ServiceRequestImplementor.executeActions(ServiceRequestImplementor.java:1391)
    at intradoc.server.Service.executeActions(Service.java:458)
    at intradoc.server.ServiceRequestImplementor.doRequest(ServiceRequestImplementor.java:737)
    at intradoc.server.Service.doRequest(Service.java:1890)
    at intradoc.server.ServiceManager.processCommand(ServiceManager.java:435)
    at intradoc.server.IdcServerThread.processRequest(IdcServerThread.java:265)
    at intradoc.idcwls.IdcServletRequestUtils.doRequest(IdcServletRequestUtils.java:1343)
    at intradoc.idcwls.IdcServletRequestUtils.processFilterEvent(IdcServletRequestUtils.java:1715)
    at intradoc.idcwls.IdcIntegrateWrapper.processFilterEvent(IdcIntegrateWrapper.java:222)
    at sun.reflect.GeneratedMethodAccessor136.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at idcservlet.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:87)
    at idcservlet.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:305)
    at idcservlet.common.ClassHelperUtils.executeMethodWithArgs(ClassHelperUtils.java:278)
    at idcservlet.ServletUtils.executeContentServerIntegrateMethodOnConfig(ServletUtils.java:1600)
    at idcservlet.IdcFilter.doFilter(IdcFilter.java:352)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:136)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    Caused by: java.lang.NullPointerException
    at intradoc.data.DataBinder.addLocaleFields(DataBinder.java:1507)
    at intradoc.data.DataBinder.addResultSet(DataBinder.java:1925)
    at stellent.acomplete.doFilter(acomplete.java:68)
    at intradoc.shared.PluginFilters.filterWithAction(PluginFilters.java:114)
    at intradoc.shared.PluginFilters.filter(PluginFilters.java:68)
    at intradoc.server.DocCommonHandler.getDocFormats(DocCommonHandler.java:263)
    at sun.reflect.GeneratedMethodAccessor210.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at intradoc.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:86)
    at intradoc.common.ClassHelperUtils.executeMethodReportStatus(ClassHelperUtils.java:324)
    at intradoc.server.ServiceHandler.executeAction(ServiceHandler.java:79)
    +... 49 more+
    Please let me know what to do. ?

    Try to find your item in Documents table. Then, take dFormat and find the corresponding in DocFormats and ExtensionFormatMap tables.
    If something's missing you may try to define it in Configuration Manager. Otherwise, somebody from support will have to see your system.

Maybe you are looking for

  • Visual Studio 2005 deploy Crystal Report to Windows Server 2008 64-bit

    I've read a lot of posts here regarding deploying on a 64-bit server, but I'm still confused. We use Visual Studio 2005 to develop on a Windows XP machine.  We use the built-in version of Crystal that comes with VS2005.  We want to deploy the runtime

  • Error when trying to edit in external editor in Lightroom 4

    Hi all, need help please with Lightroom 4. I have an external photo editor set up so when I choose "edit in" it goes to that editor, not photoshop.  I am getting the following error "Unexpected error performing command: bad argument #1 to 'lower' (st

  • Email notification for payments made through F110 payment run

    Hi Gurus, I have configured all the settings for the email notification through F110 payment run. I got the email also by using the email field in the address tab. My question is the same field is using the sales team to send their customer statement

  • Ipods will not display correctly.

    Tried to reset my Ipod touch and now only shows the apple and then shows white screen.  When hooked up to the computer it does not recgonize the ipod.  Any help would be great

  • Show / Hide fields in Crystal 11

    Post Author: djhc50 CA Forum: Formula I am in need of some help in the "if-Then-Else" world of Crystal 11, and being a newbie, am largely unfamiliar with the syntax.  Basically, I have a situation where I need to display the current date and time on