Missing local name

When I read my folder by java mail api,I encoutered the following message:
MessagingException:Missing local name.

MessagingException is thrown by 3 packages: javax.mail, javax.mail.event and javax.mail.internet
Can you post your JavaMail lines of code and also the trailing error messages after the MessagingException: Missing local name line, so that we can further help you narrow down to the cause of this exception.
I am suspecting that it has to do with get the hostname/ip address of the localhost of the machine that's running the VM.

Similar Messages

  • How to obtain an object localized name?

    Hi everybody,
    I have a portlet that searches for folders and documents in the KD using IDocumentFolderManager and IDocumentManager objects. The problem is that when I use obj.getName(), I always get the object default name, It doesn't respect the user localization.
    This is part of the code:
    IDocumentQuery documentQuery = docMan.createQuery(folderID);
    documentQuery.setShowUnapproved(false);
    documentQuery.setSortProperty(ObjectProperty.Name);
    IObjectQuery childDocs = documentQuery.execute();
    for (int j = 0; j < childDocs.getRowCount(); j++){
    IObjectQueryRow document = childDocs.getRow(j);
    System.out.println(document.getName());
    Does anyone know how to obtain the localized name?
    Thanks!
    Claudia

    Ok, I give up. I tried this:
    <%@page import="com.plumtree.remote.portlet.*" %>
    <%@page import="com.plumtree.remote.prc.*" %>
    <%@page import="java.util.Locale" %>
    <%
         response.setLocale(Locale.FRENCH);
         IDocumentFolderManager folderMan = PortletContextFactory.createPortletContext(request, response)
              .getRemotePortalSession().getDocumentFolderManager();
         IObjectQuery subfoldersQuery = folderMan.getSubFolders(1);
         for (int i = 0; i < subfoldersQuery.getRowCount(); ++i) {
              out.write(subfoldersQuery.getRow(i).getName() + "<br/>");
    %>
    I got the primary name for the folder, not the French name. I tried setting my portal user's locale to French/France and that didn't help either. I even tried setting the portlet's primary language to French. None of that helped one bit.
    Then I saw this post from 2005:
    http://forums.bea.com/bea/thread.jspa?messageID=500018945&tstart=0
    Basically, I think this is just broken or not implemented. I would contact support and file an SR. Unless I'm missing something, it looks like the PRC is not locale-aware. And that's a bug, AFAIK.
    Chris Bucchere | bdg | [email protected] | http://www.thebdgway.com

  • Error: java.util.zip.ZipException: missing entry name

    Does anybody know how to solve the following error? I got this error when I was trying to update files in my CVS.
    OracleJSP: oracle.jsp.parse.JspParseException: Line # 2, <%@ taglib uri="http://java.sun.com/jstl/core" prefix="c"%>
    Error: java.util.zip.ZipException: missing entry name
    Thanks

    Hi,
    I get the same exception while reading a ZIP file. The size if the ZIP file is just 82KB but I am reading it over FTP not sure if it makes any difference. I am using JDK 1.4.2_05. Here is the code I am trying to execute.
    public class TestFTP {
    public static void main( String[] argv ) throws Exception {
    String inboundPath = "/transfer/inbound/";
    FTPClient ftp = new FTPClient();
    ftp.connect("123");
    ftp.login( "123", "123" );
    ftp.changeWorkingDirectory(inboundPath);
    FTPFile[] zipFiles = ftp.listFiles("*.zip");
    TelnetClient telnetClient;
    for(int i=0;i<zipFiles.length;i++){   
    System.out.println(zipFiles.getName());
    ZipInputStream zis = new ZipInputStream(ftp.retrieveFileStream(zipFiles[i].getName()));
    for (ZipEntry entry = zis.getNextEntry(); entry != null; entry = zis.getNextEntry()){           
    System.out.println(entry.getName());
    The error message is
    java.util.zip.ZipException: invalid entry size (expected 10291 but got 10233 bytes)
         at java.util.zip.ZipInputStream.readEnd(ZipInputStream.java:367)
         at java.util.zip.ZipInputStream.read(ZipInputStream.java:141)
         at java.util.zip.ZipInputStream.closeEntry(ZipInputStream.java:91)
         at java.util.zip.ZipInputStream.getNextEntry(ZipInputStream.java:69)
         at test.TestFTP.main(TestFTP.java:41)
    Exception in thread "main"
    Please let me know if you were able to fix the problem.
    Thanks

  • Missing file name in the sequence

    Hi All,
    I have struck with the problem which is finding the missing file name in the file_name column. This column also have sequence.
    FAX_NAME RECEIVED SENDER FAX_SIZE
    fax000000433.tif 01-JAN-07 redro 10k
    fax000000434.tif 01-JAN-07 redro 10k
    fax000000435.tif 01-JAN-07 redro 10k
    fax000000436.tif 01-JAN-07 redro 10k
    fax000000437.tif 01-JAN-07 redro 10k
                                  One file name missing
    fax000000439.tif 01-JAN-07 redro 10k
    fax000000440.tif 02-JAN-07 redro 10k
    fax000000441.tif 02-JAN-07 redro 10k
    fax000000442.tif 02-JAN-07 redro 10k
    fax000000443.tif 02-JAN-07 redro 10k
    fax000000444.tif 02-JAN-07 redro 10k
    fax000000445.tif 02-JAN-07 redro 10k
    fax000000446.tif 02-JAN-07 redro 10k
    fax000000447.tif 02-JAN-07 redro 10k
    fax000000448.tif 02-JAN-07 redro 10k
    fax000000449.tif 02-JAN-07 redro 10k
    fax000000450.tif 02-JAN-07 redro 10k
    Here i want to retrive the Faxname(fax000000438) which is missing
    The output like..
    I've Designed one BIRT rptdesign for this this in the bellow formate..
    FAX_NAME RECEIVED SENDER FAX_SIZE     Missing_Faxes
    I've tried with bellow query but i did't get.
    select Fax_Name digits from(select min(digits) MN from (select translate(s, '0' || translate(s, '1234567890', ' '), '0') digits 7 from (select filename s from received_faxes))) connect by level8 minus select distinct digits from (select translate(s, '0' || translate(s, '1234567890', ' '), '0') digits 10 from (select filename s from received_faxes))
    Could you pls help me..

    This?
    SQL> with t1 as
      2  (select 'fax000000433.tif' nam from dual union
      3  select 'fax000000434.tif' from dual union
      4  select 'fax000000435.tif' from dual union
      5  select 'fax000000436.tif' from dual union
      6  select 'fax000000437.tif' from dual union
      7  select 'fax000000439.tif' from dual union
      8  select 'fax000000440.tif' from dual union
      9  select 'fax000000441.tif' from dual),
    10  t2 as
    11  (select to_number(mid(nam,4,9)) faxno from t1),
    12  t3 as
    13  (select max(faxno) ma, min(faxno) mi from t2)
    14  select (mi+level - 1) faxno from t3 connect by level <= ma - mi + 1
    15  minus
    16  select faxno from t2
    17  ;
         FAXNO
           438
    SQL>

  • Local name change on network

    Hi everybody.
    We have a lot of macbooks with OS mavericks registered to our domain system. Every time we change kind of network (wifi, cable) , a new local name is assigned to our MacBooks.
    We  tried to modify the file /etc/hostconfig adding "HOSTNAME=-ComputerName- but it doesn't work.
    We tried to assign the name through terminal command " scutil --set Hostname..." but it doesn't work too.
    Do you have any idea or suggestion to solve this network isssue?
    thanks

    There are several possible causes for this behavior.
    1. Two (or more) computers on the local network have the same Bonjour name, such as "X's-MacBook-Pro.local". Resolve the name conflict by renaming one or more of them in the Sharing preference pane.
    2. You have two simultaneous connections to the same local network: probably Ethernet and Wi-Fi. If applicable, disconnect the Ethernet cable or turn off Wi-Fi.
    3. A Mac wakes from sleep due to network traffic. This is a bug in OS X that may only affect some models.
    4. A device that gets its network address from the router wakes from sleep, and the address it was using before has been assigned to another device.
    5. A third-party wireless router has incompatible settings or firmware. In that case, refer to the manufacturer or ISP for support. Restarting the router may help, temporarily.
    6. See also this support article.

  • Adding Index server to existing farm, "Server Farm Product and Patch Status" returned 34 Missing Locally required products and patches

    Once I connected my new server to my farm's config db, it returned all of the following missing locally. I stripped out any redundancies and Headings, and I'm left with 43. I'm looking for a efficient strategy. Should I start with the lowest version number
    and work my way up? Current DB version is 14.0.7015.1000. IIRC, SP2 is cumulative, so can I ignore the first two (SP1 and Hotfix), install SP2, and then the Language packs and etc on top?
    Sorted by version:
    Microsoft SharePoint 2010 Service Pack 1 (SP1) (14.0.6029.1000)
    Hotfix for Microsoft SharePoint Server 2010 (KB2775353) 64-Bit Edition (14.0.6105.5000)
    Service Pack 2 for Microsoft SharePoint 2010 (KB2687453) 64-Bit Edition (14.0.7015.1000)
    Service Pack 2 for Microsoft 2010 Server Language Pack (KB2687462) 64-Bit Edition (14.0.7015.1000)
    Microsoft Office Server Proof (English) 2010 (14.0.7015.1000)
    Microsoft Office Server Proof (French) 2010 (14.0.7015.1000)
    Microsoft Office Server Proof (Russian) 2010 (14.0.7015.1000)
    Microsoft Office Server Proof (Spanish) 2010 (14.0.7015.1000)
    Microsoft SharePoint Portal (14.0.7015.1000)
    Microsoft User Profiles (14.0.7015.1000)
    Microsoft SharePoint Portal English Language Pack (14.0.7015.1000)
    Microsoft Shared Components (14.0.7015.1000)
    Microsoft Shared Coms English Language Pack (14.0.7015.1000)
    Microsoft Slide Library (14.0.7015.1000)
    Microsoft InfoPath Forms Services (14.0.7015.1000)
    Microsoft InfoPath Form Services English Language Pack (14.0.7015.1000)
    Microsoft Word Server (14.0.7015.1000)
    Microsoft Word Server English Language Pack (14.0.7015.1000)
    PerformancePoint Services for SharePoint (14.0.7015.1000)
    PerformancePoint Services in SharePoint 1033 Language Pack (14.0.7015.1000)
    Microsoft Visio Services English Language Pack (14.0.7015.1000)
    Microsoft Visio Services Web Front End Components (14.0.7015.1000)
    Microsoft Excel Services Components (14.0.7015.1000)
    Microsoft Document Lifecycle Components (14.0.7015.1000)
    Microsoft Excel Services English Language Pack (14.0.7015.1000)
    Microsoft Search Server 2010 Core (14.0.7015.1000)
    Microsoft Search Server 2010 English Language Pack (14.0.7015.1000)
    Microsoft Document Lifecycle Components English Language Pack (14.0.7015.1000)
    Microsoft Slide Library English Language Pack (14.0.7015.1000)
    Microsoft SharePoint Server 2010 (14.0.7015.1000)
    Microsoft Access Services Server (14.0.7015.1000)
    Microsoft Access Services English Language Pack (14.0.7015.1000)
    Microsoft Web Analytics Web Front End Components (14.0.7015.1000)
    Microsoft Web Analytics English Language Pack (14.0.7015.1000)
    Microsoft Excel Mobile Viewer Components (14.0.7015.1000)
    Recommendations?
    Thanks,
    Scott

    Thanks guys. I was able to get through all of the patches except for
    Language Pack for SharePoint, Project Server and Office Web Apps 2010 - English   missing locally
    Language Pack for SharePoint, Project Server and Office Web Apps 2010 -
    Spanish/Español missing locally
    This was my process:
    Config Wizard:
    Adding Index server to existing farm, "Server Farm Product and Patch Status" returned 34 Missing Locally required products and patches.
    SKIP installing the following two, as SP2 is cumulative
    Microsoft SharePoint 2010 Service Pack 1 (SP1) (14.0.6029.1000) (officeserver2010sp1-kb2460045-x64-fullfile-en-us.exe)
    Hotfix for Microsoft SharePoint Server 2010 (KB2775353) 64-Bit Edition (14.0.6105.5000)
    install SP2 oserversp2010-kb2687453-fullfile-x64-en-us.exe
    install oslpksp2010-kb2687462-fullfile-x64-en-us.exe
    Got "There are no products affected by this package installed on this system."
    SO!
    Uninstalled Sharepoint 2010 Server
    WIll try to install again, without skipping #2, and reorder installation of oslpksp2010-kb2687462-fullfile-x64-en-us.exe
    Retry (the long way):
    Run SharePointServer.exe, get Missing Locally...
    Install oslpksp2010-kb2687462-fullfile-x64-en-us.exe SUCCESSFUL
    Install officeserver2010sp1-kb2460045-x64-fullfile-en-us.exe SUCCESSFUL
    Reboot
    Install oserversp2010-kb2687453-fullfile-x64-en-us.exe SUCCESSFUL
    Rerun Config
    STILL MISSING
    Download oslpksp2010-kb2687462-fullfile-x64-es-es.exe, run, "there are no products affected..."
    Uninstall.
    Re-retried, only got through the first couple:
    Run SharePointServer.exe, get Missing Locally...
    Install SP1 officeserver2010sp1-kb2460045-x64-fullfile-en-us.exe, SUCCESSFUL
    Install English Lang Pack oslpksp2010-kb2687462-fullfile-x64-en-us.exe, "There are no products affected by this package installed on this system."
    Install Spanish Lang Pack oslpksp2010-kb2687462-fullfile-x64-es-es.exe,
    Install SP2 oserversp2010-kb2687453-fullfile-x64-en-us.exe, run Config Wizard
    I'm now downloading 462150_intl_x64_zip.exe, going to try and install it as step three.
    Any suggestions greatly appreciated.
    Thanks,
    Scott

  • TNS-01151: Missing listener name - APPS_VIS

    Hi,
    We completed the installation of E-BIZ Database and Application onto separate VMs via Oracle's eDelivery templates. Both new VMs are up and running per the OVM Manager.
    However, we are not able to connect to the eBusiness Application. Per the e-Business Suite Rapid Install guide, we should be able to verify installation by accessing:
    http://<host name>.<domain name>:<HTTP port>/OA_HTML/AppsLogin
    We receive a HTTP Internal Error when trying to access this.
    Numerous verification steps have been performed including:
    - Testing network connectivity (ping) between APP VM and DB VM using the hostname
    - Checking that the tnslsnr on DB VM is listening on port 1521, which is what was also configured for APP VM
    - Checking that the httpd on APP VM is listening on port 8000
    I am unable to run lsnrctl to check the status - how should my profile be set to be able to run this as I receive: lsnrctl: error while loading shared libraries: libclntsh.so.10.1: cannot open shared object file: No such file or directory
    I have also included adalnctl.txt log from the E-BIZ Application Server. I'm not sure whether the LISTENER.ORA on the APP or DB server should be updated. And if so what should it be updated with?
    02/15/10-13:22:33 :: You are running adalnctl.sh version 120.3
    LSNRCTL for Linux: Version 10.1.0.5.0 - Production on 15-FEB-2010 13:22:33
    Copyright (c) 1991, 2004, Oracle. All rights reserved.
    TNS-01101: Could not find service name APPS_VIS
    02/15/10-13:22:34 :: adalnctl.sh: Starting listener process APPS_VIS.
    LSNRCTL for Linux: Version 10.1.0.5.0 - Production on 15-FEB-2010 13:22:34
    Copyright (c) 1991, 2004, Oracle. All rights reserved.
    Starting /u01/E-BIZ/12.1.1/VIS/apps/tech_st/10.1.2/bin/tnslsnr: please wait...
    TNSLSNR for Linux: Version 10.1.0.5.0 - Production
    Log messages written to /u01/E-BIZ/12.1.1/VIS/apps/tech_st/10.1.2/network/log/apps_vis.log
    TNS-01151: Missing listener name, APPS_VIS, in LISTENER.ORA
    Listener failed to start. See the error message(s) above...
    Thanks in advance.
    Regards,
    Martin

    Just a follow-up to this thread. We have now been able to start and successfully login to the e-Business Suite.
    The source of the problem was in the installation of the e-Business Suite (via template) - it previously never completed successfully due to:
    1) DNS - No DNS has been setup with the new virtual hosts as this is simply a prototyping activity. We found that it initiates connection with DB host during installation and will not complete successfully if one is not found. Furthermore, the /etc/hosts file is wiped of existing entries and replaced just with the host of the e-Business application server everytime ebiz_1211_reconfig.sh is run. Workaround is to login to the host during the reconfiguration and update the /etc/hosts file just after it instantiates the static IP address
    2) Apps Password - The application could not startup as it was connecting to the database with a locked out user account. It uses the 'app' user to login to the DB - hence the apps password set during the e-Business application installation must correlate with the app user on the database - in this instance we kept it as apps/apps
    After resolving the above issues we are able to connect through the web URL to e-Business Suite.
    My next question is, assuming our database instance is called 'VIS', why is adalnctl trying to look for APPS_VIS in the listener.ora? I read
    Thanks.

  • Photoshop Plug-In directory localized names

    Hello,
    I want to build an installer that automatically finds the right destination directory for a plug-in. The only problem I have is that Adobe uses localized names for the "Plug-Ins" directory as well as its subdirectories (esp. "Import/Export" in my case).
    Is there some official documentation on what these names are for the different languages (in versions CS2 and later). I couldn't find such a document online or in the SDK, but this surely must be available somewhere.
    Thanks.

    One other thought: the idea of an automatic installer which makes this
    decision alarms me. It's very useful to pick a default before
    presenting the user with a choice, but to just go ahead is surely
    wrong.
    I have seen plug-in installers that do this. The problem is that they
    do not accommodate the case where you have more than one copy/version
    of Photoshop installed. Where the installation is complex (more than
    copying a file) it can make it difficult or impossible to use the
    plug-in with those other installations.
    How about
    * Find the default Photoshop folder
    * Put up a folder chooser window inviting people to choose their
    plug-ins folder
    * Normally this is just one folder within this Photoshop folder, but
    people with more than one installation can choose
    * If you can't find Photoshop, skip straight in at the prompt (with a
    suitable message, as not everyone really understands system
    requirements)
    Aandi Inston

  • [svn:fx-trunk] 7795: fix locale names used in resource bundles for simplified Chinese and traditional Chinese  .

    Revision: 7795
    Author:   [email protected]
    Date:     2009-06-12 12:18:13 -0700 (Fri, 12 Jun 2009)
    Log Message:
    fix locale names used in resource bundles for simplified Chinese and traditional Chinese . zh_cn to zh_CN  and zh_tw to zh_TW
    bug: https://bugs.adobe.com/jira/browse/SDK-21174
    qa: localization team (yes)
    checkintests: pass
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-21174
    Modified Paths:
        flex/sdk/trunk/modules/compiler/build.xml

    I'm more of a 1.3 chick myself, but the words are the same just in a different language.
    1. Is Tomcat running?
    2. Have you configured the ajp13 connector on 8009 in Tomcat? (Should it be ajp13 for Apache 2.0? - I really must upgrade)

  • Receiving error messase for local name change

    receiving message on my imac that local name already exists on the local network and "would you like to change to new name number .local"
    not sure why this is happenining any answers out there?

    its happening becuase your trying to make a user that allready is on the computer, pick a diffrent user name and you wont get that message

  • Getting error message " Sync encountered an error while connecting. Missing account name. please try again.

    When trying sync I am getting error message " Sync encountered an error while connecting, Missing account name. Please try again"

    See [[forums/contributors/707663]]

  • Missing set name or handle name -- FormHandlers

    Hi All,
    I'm trying to implement FormHandler for learning purpose. I've a form(regform.jsp) with four fields and corresponding FormHandler component(Registration.java).
    In regform.jsp, I've submit button in the following way,
    *<dsp:input type="submit" bean="/testform/registration.registration" value="Register"></dsp:input>*
    and Registration.java, I've used like *handleRegistration(DynamoHttpServletRequest req,
                   DynamoHttpServletResponse res)*
    After submitting the form, I'm getting the below exception
    07:44:38,031 ERROR [ContainerBase] Servlet.service() for servlet jsp threw exception
    atg.droplet.DropletException: Missing set name or handle name (ServletRequest, ServletResponse) for class: com.sim.emp.Registration. Can't deliver value= wewe
    at atg.droplet.EventSender.sendEvent(EventSender.java:597)
    at atg.droplet.FormTag.doSendEvents(FormTag.java:791)
    at atg.droplet.FormTag.sendEvents(FormTag.java:640)
    at atg.droplet.DropletEventServlet.sendEvents(DropletEventServlet.java:523)
    at atg.droplet.DropletEventServlet.service(DropletEventServlet.java:550)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:116)
    at atg.servlet.sessionsaver.SessionSaverServlet.service(SessionSaverServlet.java:2442)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:116)
    at atg.commerce.order.CommerceCommandServlet.service(CommerceCommandServlet.java:128)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:116)
    at atg.commerce.promotion.PromotionServlet.service(PromotionServlet.java:191)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:116)
    at atg.userprofiling.AccessControlServlet.service(AccessControlServlet.java:602)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:116)
    at atg.userprofiling.PageEventTriggerPipelineServlet.service(PageEventTriggerPipelineServlet.java:169)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:116)
    at atg.userprofiling.SessionEventTrigger.service(SessionEventTrigger.java:461)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:116)
    at atg.userprofiling.ProfileRequestServlet.service(ProfileRequestServlet.java:480)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:116)
    at atg.servlet.pipeline.DynamoPipelineServlet.service(DynamoPipelineServlet.java:469)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:116)
    at atg.servlet.pipeline.PathAuthenticationPipelineServlet.service(PathAuthenticationPipelineServlet.java:370)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:116)
    at atg.userprofiling.sso.PassportServlet.service(PassportServlet.java:561)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:116)
    at atg.servlet.security.ThreadUserBinderServlet.service(ThreadUserBinderServlet.java:91)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:116)
    at atg.servlet.pipeline.HeadPipelineServlet.passRequest(HeadPipelineServlet.java:1123)
    at atg.servlet.pipeline.HeadPipelineServlet.service(HeadPipelineServlet.java:805)
    at atg.servlet.pipeline.PipelineableServletImpl.service(PipelineableServletImpl.java:231)
    at atg.filter.dspjsp.PageFilter.doFilter(Unknown Source)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:230)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:173)
    at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:182)
    at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:84)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:104)
    at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:157)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:241)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844)
    at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
    at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
    at java.lang.Thread.run(Thread.java:595)
    Please suggest me where I've done the mistake.
    Thanks,
    Kushal
    Edited by: 916721 on Oct 16, 2012 8:04 AM
    Edited by: 916721 on Oct 16, 2012 8:05 AM

    Hi Shaik,
    Input tags in the following way,
    Name          : <dsp:input type="text" bean="/testform/registration.name" value=""></dsp:input><br></br>
         DOB               : <dsp:input type="text" bean="/testform/registration.dob" value=""></dsp:input><br></br>
         Designation     : <dsp:input type="text" bean="/testform/registration.designation" value=""></dsp:input><br></br>
         Email ID     : <dsp:input type="text" bean="/testform/registration.emailID" value=""></dsp:input><br></br>
         <dsp:input type="hidden" bean="/testform/registration.successUrl" value="success.jsp"></dsp:input>
         <dsp:input type="hidden" bean="/testform/registration.failureUrl" value="regform.jsp"></dsp:input>
         <dsp:input type="submit" bean="/testform/registration.registration" value="Register"></dsp:input>
    Setters:
         public void setName(String name) {
              this.name = name;
         public void setDesignation(String designation) {
              this.designation = designation;
         public void setEmailID(String emailID) {
              this.emailID = emailID;
         public void setDob(String dob) {
              this.dob = dob;
         public void setSuccessUrl(String successUrl) {
              this.successUrl = successUrl;
         public void setFailureUrl(String failureUrl) {
              this.failureUrl = failureUrl;
    Thanks,
    Kushal

  • TNS-01151: Missing listener name

    I found the following error in er.log. Does anyone know what this means? I am unable to start the listener service because of this.
    TNSLSNR for 32-bit Windows: Version 8.1.5.0.0 - Production on 07-MAY-01 11:46:07
    (c) Copyright 1998 Oracle Corporation. All rights reserved.
    System parameter file is D:\Oracle\iSuites\network\admin\listener.ora
    Log messages written to D:\Oracle\iSuites\network\log\er.log
    TNS-01151: Missing listener name, er, in LISTENER.ORA

    Check the HOST and PORT parameters in your
    Listener.ora file
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = <machine>)(PORT = 1521))
    Hope this helps
    Ranga

  • How can I fix local name resolution problems

    I have a Macbook Pro Retina running 10.8.4. One thing I've always had problems with is resolving my local names.
    When connected via wifi, I can ping localhost just fine. However my computer's name is finney. And I cannot ping finney. However I can ping finney.local. Other machines on my network can also ping finney.local. I've always been able to live with this inconvenience 'till now. This macbook needs to run a local service that uses the value returned from hostname -s as the name of the machine and then tries to connect with that name.
    In System Preferences -> Network -> wifi -> TCP/IP I've set my DHCP client ID to finney.local. So the hostname command returns finney.local and hostname -s returns finney. I can't believe I've spent so much time trying to figure a way around this.
    My preferred options would be to figure out how to make it so I can ping this computer using its name finney. My DHCP server at home is a wifi router, through which I can find no option to specify a name for my macbook.
    My second choice would be to figure out how to get hostname -s to return finney.local. At least if I could do that then my rabbitmq instance would be able to startup.
    I'd be much appreciative if someone could help with some suggestions on how to get around these problems.
    Thanks in advance,
    Derek

    Wow, that did the trick.
    This has been a problem I never knew the solution to ever since I swithced to OSX 4 years ago.
    Much thanks!
    Derek

  • BT Web address help screws up local name resolutio...

    I discovered that since the move to BT Infinity, my nightly NAS backup has been failing.
    It's an rsync job backing up from one qnap NAS to another.  The destination NAS is named in the rynsc job setup.  Ater much faffing I found that the name was resolving completely elsewhere.  After much more faffing I located BT web address help sending back the "duff" IP address.
    Am I right in thinking that if the DNS sent back a domain unkown message, then the NAS would have tried (and succeeded) to resolve the name locally.
    Can anyone who actually knows about networking confirm this?  It doesn't seem terribly useful for BT web address help to do this.  I've opted out and I think I have got my local name resolution working again.  Tonight's backup will tell.
    Thanks
    Graham

    Web address help will upset quite a few things, so its best to stay opted out.
    If it still fails tonight, then let me know, and I may have a few other suggestions.
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

Maybe you are looking for