SyncBo Example - cannot find message associated with key

Hi,
I followed the tuturial to create a SmartSync Project.
And when I run the project I've got a Servlet Exception:
javax.servlet.ServletException: cannot find message appropriated with key: dispatcher.forwardException.
What I need to change?
Thanks a lot,
Rachid

Hi,
this error comes up when the destination serlvet throws an exception other than ServletException!
Its a standard tomcat bug!
Rgds Thomas
-->
http://issues.apache.org/bugzilla/show_bug.cgi?id=19114
-->From apache.org:
When a forwarded servlet throws an exception other than ServletException or
IOException, the thrown exception is lost. This is due to the line:
throw new ServletException(sm.getString("dispatcher.forwardException", t));
(found in org/apache/tomcat/facade/RequestDispatcherImpl.java:210)
the earlier catched t is here not passed into the constructor of
ServletException but into getString.
To reproduce construct a servlet that throws an Exception (other than
ServletException and IOException) and another servlet that forwards to it. You
will get just a forwardException (if you have the proper locale strings
installed!) but the originally thrown exception will get lost forever.

Similar Messages

  • [ME21] error message : cannot find message associated with key

    Dear all,
    I try to develop an Mobile application using smartSync,
    but when the application running (on client) got an error message :
    Error: 500
    Location: /UPLOAD_TEST/upload_testapp/Menu.do
    Internal Servlet Error:
    javax.servlet.ServletException: cannot find message associated with key : dispatcher.forwardException
    at org.apache.tomcat.facade.RequestDispatcherImpl.doForward(RequestDispatcherImpl.java:238)
    at org.apache.tomcat.facade.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:162)
    at org.apache.jasper.runtime.PageContextImpl.forward(PageContextImpl.java:423)
    at 0002findex0002ejspindex_jsp_0._jspService(_0002findex_0002ejspindex_jsp_0.java:62)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:119)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java)
    note:
    when create this application, I'm using tcode : merep_sbuilder
    Sync type : U01 - Upload using SMAPIs
    Bapi wrapper : MEREP_CONTACT_CREATE
    SAP Mobile Engine 2.1
    and generate .war file using MDK tool
    any one know about this ??
    thanks & regards,

    Hi,
    this error comes up when the destination serlvet throws an exception other than ServletException!
    Its a standard tomcat bug!
    Rgds Thomas
    -->
    http://issues.apache.org/bugzilla/show_bug.cgi?id=19114
    -->From apache.org:
    When a forwarded servlet throws an exception other than ServletException or
    IOException, the thrown exception is lost. This is due to the line:
    throw new ServletException(sm.getString("dispatcher.forwardException", t));
    (found in org/apache/tomcat/facade/RequestDispatcherImpl.java:210)
    the earlier catched t is here not passed into the constructor of
    ServletException but into getString.
    To reproduce construct a servlet that throws an Exception (other than
    ServletException and IOException) and another servlet that forwards to it. You
    will get just a forwardException (if you have the proper locale strings
    installed!) but the originally thrown exception will get lost forever.

  • Cannot find message resources under key org.apache.struts.action.MESSAGE ?

    Hi All,
    I am getting the following error.. while running a simple application in struts.
    Cannot find message resources under key org.apache.struts.action.MESSAGE ?
    As I have searched in google but could not find the concreate example so please help and give me a proper answer..
    my struts-config.xml file is as .....
    <code>
    <?xml version="1.0" encoding="ISO-8859-1" ?>
    <!DOCTYPE struts-config PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 1.0//EN"
    "http://jakarta.apache.org/struts/dtds/struts-config_1_0.dtd">
    <struts-config>
    <!-- ========== Form Bean Definitions ============ -->
    <form-beans>
         <form-bean name="login" type="test.struts.LoginForm" />
    </form-beans>
    <!-- ========== Global Forward Definitions ========= -->
    <global-forwards>
    </global-forwards>
    <!-- ========== Action Mapping Definitions ======== -->
    <action-mappings>
    <action
         path="/login"
         type="test.struts.LoginAction"
         name="login"
         input="/jsp/LoginView.jsp"
         validate="true">
         <forward name="valid" path="/jsp/MainMenu.jsp" />
         <forward name="invalid" path="/jsp/LoginView.jsp" />
         </action>
    </action-mappings>
    <message-resources null="false" parameter="test.struts.MessageResources"/>
    </struts-config>
    </code>
    And my LoginView.jsp file is as:
    <code>
    <!-- LoginView.jsp -->
    <%@ taglib uri="/struts/WEB-INF/struts-html.tld" prefix="html" %>
    <%@ taglib uri="/struts/WEB-INF/struts-bean.tld" prefix="bean" %>
    <%@ taglib uri="/struts/WEB-INF/struts-logic.tld" prefix="struts" %>
    <HTML>
    <HEAD><TITLE><bean:message key="title.login" /></TITLE></HEAD>
    <BODY>
    <bean:message key="heading.login" />
    <html:errors />
    <html:form action="/login">
         <p>
         <bean:message key="label.userId" />:
         <html:text property="userId" size="10" />
         <br>
         <bean:message key="label.passWord" />:
         <html:password property="passWord" size="10" />
         <br><br>
         <html:submit>
              <bean:message key="button.submit" />
         </html:submit>
    </html:form>
    </BODY>
    </HTML>
    </code>
    MessageResources.properties is as :
    <code>
    button.submit=Send for Verification
    error.no.userId=<li>User ID is a required field</li>
    error.no.passWord=<li>Password is a required field</li>
    error.invalid.login=<li>The User ID and/or Password are invalid. Please try again.</li>
    errors.footer=</ul><hr>
    errors.header=<h3><font color="red">Validation Error</font></h3>You must correct the following error(s) before proceeding:<ul>
    label.userId=User ID
    label.passWord=Password
    heading.login=<H2>Enter your user information</H2>
    title.login=Login Screen
    title.mainmenu=Welcome
    heading.mainmenu=<H1>Welcome!</H1>
    label.userType=<H2>You are authorized to use this system as a</H2>
    </code>
    Please reply soon.
    Thanks in advance
    Amitindia

    Hi All,
    I am getting the following error.. while running a simple application in struts.
    Cannot find message resources under key org.apache.struts.action.MESSAGE ?
    As I have searched in google but could not find the concreate example so please help and give me a proper answer.. my struts-config.xml file is as .....
    <?xml version="1.0" encoding="ISO-8859-1" ?> <!DOCTYPE struts- 
      config PUBLIC "-//Apache Software Foundation//DTD Struts
    Configuration 1.0//EN" "http://jakarta.apache.org/struts/dtds/struts-
    config_1_0.dtd"> <struts-config> <!-- ========== Form Bean
    Definitions ============ --> <form-beans> <form-bean name="login"
    type="test.struts.LoginForm" /> </form-beans> <!-- ========== Global Forward Definitions ========= --> <global-forwards> </global-
    forwards> <!-- ========== Action Mapping Definitions ======== --> <action-mappings> <action path="/login" type="test.struts.LoginAction" name="login" input="/jsp/LoginView.jsp" validate="true"> <forward name="valid" path="/jsp/MainMenu.jsp" /> <forward name="invalid" path="/jsp/LoginView.jsp" /> </action> </action-mappings> <message-resources null="false" parameter="test.struts.MessageResources"/> </struts-config>
    And my LoginView.jsp file is as:
    <!-- LoginView.jsp --> <%@ taglib uri="/struts/WEB-INF/struts-html.tld" prefix="html" %> <%@ taglib uri="/struts/WEB-INF/struts-bean.tld" prefix="bean" %> <%@ taglib uri="/struts/WEB-INF/struts-logic.tld" prefix="struts" %> <HTML> <HEAD><TITLE><bean:message key="title.login" /></TITLE></HEAD> <BODY> <bean:message key="heading.login" /> <html:errors /> <html:form action="/login">
    <bean:message key="label.userId" />: <html:text property="userId" size="10" /> <br> <bean:message key="label.passWord" />: <html:password property="passWord" size="10" /> <br><br> <html:submit> <bean:message key="button.submit" /> </html:submit> </html:form> </BODY> </HTML>
    MessageResources.properties is as :
    button.submit=Send for Verification error.no.userId=<li>User ID is a required field</li> error.no.passWord=<li>Password is a required field</li> error.invalid.login=<li>The User ID and/or Password are invalid. Please try again.</li> errors.footer=</ul><hr> errors.header=<h3><font color="red">Validation Error</font></h3>You must correct the following error(s) before proceeding:<ul> label.userId=User ID label.passWord=Password heading.login=<H2>Enter your user information</H2> title.login=Login Screen title.mainmenu=Welcome heading.mainmenu=<H1>Welcome!</H1> label.userType=<H2>You are authorized to use this system as a</H2>
    Please reply soon. Thanks in advance Amitindia                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Cannot find message resources under key

    Hi All,
    I get the following error in the JSP page in weblogic 9.2 environment. The same JSP works fine in 8.1
    Cannot find message resources under key ${language}' javax.servlet.jsp.JspException: Cannot find message resources under key ${language} at org.apache.struts.util.RequestUtils.retrieveMessageResources(RequestUtils.java:1103) at org.apache.struts.util.RequestUtils.message(RequestUtils.java:1043) at org.apache.struts.taglib.bean.MessageTag.doStartTag(MessageTag.java:294) at org.apache.strutsel.taglib.bean.ELMessageTag.doStartTag
    The web.xml entry:
    <servlet><servlet-name>action</servlet-name>
    <servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
    <init-param>
    <param-name>application</param-name>
    <param-value>com.ccrg.resources.common.ApplicationResources</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
    </servlet>
    struts-config.xml entry:
    <message-resources parameter="resources.ApplicationResources"/>
    <message-resources parameter="resources.TextResources_Profile_en" key="TEXT_RESOURCES_PROFILE_en"/>
    <message-resources parameter="resources.TextResources_Profile_fr" key="TEXT_RESOURCES_PROFILE_fr"/>
    the login.jsp:
    <%@ taglib uri="/WEB-INF/avis-html.tld" prefix="avishtml" %>
    <%@ taglib uri="/WEB-INF/struts-html-el.tld" prefix="html-el" %>
    <%@ taglib uri="/WEB-INF/struts-bean-el.tld" prefix="bean-el" %>
    <%@ taglib uri="/WEB-INF/struts-logic-el.tld" prefix="logic-el" %>
    <%@ taglib uri="/WEB-INF/c.tld" prefix="c" %>
    <c:set var="language" value="TEXT_RESOURCES_PROFILE_${SiteLanguage}/profile"/>
    </c:if>
    <bean-el:message key="profile.login.pi.memberLogin" bundle="${language}"/>
    thanks,
    Balaji

    Hi Balaji,
    Did you find any solution ?
    I have the same problem.
    Thanks in advance!

  • Error: cannot find bundle file or key for resource type

    Hello,
    Please help in finding out the cause & resolving the below errors.
    Logs from the default trace:
    Error Log Message:  cannot find bundle file or key for resource type http://sap.com/xmlns/ciphotocomp, use fallback
    Error Location: com.sapportals.wcm.service.resourceTypeRegistry.ResourceType.getDescription( Locale )
    Thanks & Regards
    Maha,

    << Do not post the same question across a number of forums >>

  • Essbase Add-in Error - Cannot Find Message Database

    Error #1040007 - Cannot find message database. Error received launching either the essbase add-in or app manager.Arbor path has been verified in path statement, and is first. Running under Win 2000, no changes to PC.Can anyone advise what may be causing this problem? Specific question: Where would the "message database be located?".Randy [email protected]

    It's used to point to the message database (seriously)... LOL! I've never seen it used anyplace I've done Essbase and to my knowledge no one has ever been the worse off for it. It's probably just as well that you deleted it.Regards,Bruce

  • I am using iPhone 3GS. I am living in Saudi Arabia. I cannot find the directions with in GCC contries in the Navigation Application "COMPASS" of iphone. Can you please explain me how to work on it??

    I am using iPhone 3GS. I am living in Saudi Arabia. I cannot find the directions with in GCC contries in the Navigation Application "COMPASS" of iphone. Only the map is displayed. I am not gtting the directions or information when I use it. Can you please explain me how to work on it??

    See http://kb.mozillazine.org/Editing_configuration#How_to_edit_configuration_files
    Add code to [http://kb.mozillazine.org/UserChrome.css userChrome.css] below the @namespace line.
    <pre><nowiki>@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
    #context-sendlink {display:none !important;}</nowiki></pre>
    See also http://kb.mozillazine.org/Chrome_element_names_and_IDs

  • Add-ADGroupMember : Cannot find an object with identity

    Season Greetings.
    I have this piece of code that does little else than add a userproxyfull
    user to a group in ADLDS.
    Get-ADGroup -server b-004:389 -searchbase $partition -credential $myCred -filter {distinguishedName -eq $groupdn} | Add-ADGroupMember -members $userDN
    $userDN equates to a valid DN e.g CN=user one,OU=myOrg,DC=D1,DC=MS,DC=MyCo,DC=COM
    $partition = "DC=D1,DC=MS,DC=MyCo,DC=COM"
    $groupDN = is a valid distinguished name of the group in AD LDS
    Unfortunately I get the error
    Add-ADGroupMember : Cannot find an object with identity: the valid dn under:
    searchbase
    Many thanks for any help

    Thanks for taking interest jrv. Let me explain further. I have two objects that are in the same OU. One Trevor George is a user object and the other Norbert Sillo is a userproxyfull object.
    I run the following command successfully on Trevor George
    get-adGroup -server b-004:389 -searchbase "DC=d1,
    dc=ms,DC=Glowworm,DC=COM" -filter {distinguishedName -eq "CN=EU-AccountsLeads-GR
    P,OU=AccountsDeptOU,DC=D1,DC=MS,DC=Glowworm,DC=COM" } |Add-ADGroupMember -Member
    s "CN=Trevor George,OU=Paradise,DC=D1,DC=MS,DC=Glowworm,DC=COM" -passthru
    DistinguishedName : CN=EU-AccountsLeads-GRP,OU=AccountsDeptOU,DC=D1,DC=MS,DC=Glowworm,DC=COM  
    GroupCategory     : Security
    GroupScope        : Global
    Name              : EU-AccountsLeads-GRP
    ObjectClass       : group
    ObjectGUID        : e69fd4b3-1f6e-41c1-b679-25a6858b290f
    SID               : S-1-445474926-831883002-345832690-1227415955-1684694678-413
                        9367165
    However running the same command for Norbert Sillo
    get-adGroup -server b-004:389 -searchbase "DC=d1,
    dc=ms,DC=Glowworm,DC=COM" -filter {distinguishedName -eq "CN=EU-AccountsLeads-GR
    P,OU=AccountsDeptOU,DC=D1,DC=MS,DC=Glowworm,DC=COM" } |Add-ADGroupMember -Member
    s "CN=Norbert Sillo,OU=Paradise,DC=D1,DC=MS,DC=Glowworm,DC=COM" -passthru
    produces the following error
    Add-ADGroupMember : Cannot find an object with identity: 'CN=Norbert Sillo,OU=P
    aradise,DC=D1,DC=MS,DC=Glowworm,DC=COM' under: 'DC=D1,DC=MS,DC=Glowworm,DC=COM'
    At line:1 char:202
    + get-adGroup -server b-004:389 -searchbase "DC=d1,dc=ms,DC=Glowworm,DC=COM" -f
    ilter {distinguishedName -eq "CN=EU-AccountsLeads-GRP,OU=AccountsDeptOU,DC=D1,D
    C=MS,DC=Glowworm,DC=COM" } |Add-ADGroupMember <<<<  -Members "CN=Norbert Sillo,
    OU=Paradise,DC=D1,DC=MS,DC=Glowworm,DC=COM" -passthru
        + CategoryInfo          : ObjectNotFound: (CN=Norbert Sill...Glowworm,DC=C
       OM:ADPrincipal) [Add-ADGroupMember], ADIdentityNotFoundException
        + FullyQualifiedErrorId : SetADGroupMember.ValidateMembersParameter,Micros
       oft.ActiveDirectory.Management.Commands.AddADGroupMember
    At the moment it appears to fail on any userproxyfull object. I have had a similar issue with Get-ADUser with user proxy objects but was able to get round it by using Get-ADObject instead

  • FindChildIndex cannot find the child with the given itemName

    Hi,
    I am getting error " findChildIndex cannot find the child with the given itemName" when runs the page from jdeveloper.
    I didnt use findChildIndex in my CO or AM.
    Please help me to resolve it.
    Thanks
    Amit Jaitly

    Amit
    Check old threads
    Re: how to call concurrent programs from oaf page
    http://forums.oracle.com/forums/search.jspa?threadID=&q=findChildIndex+cannot+find+the+child+with+the+given+itemName&objID=f210&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks
    AJ

  • Online college, open document, how to find URL associated with document

    I am currently enrolled in an online college.  For APA formatting, we are supposed to find the URL associated with an online document.  For example:  on the college website I click on a link that takes me to the open/save box.  I open the file, at the top of the page is the name: sn_2010_writing_scholarly_voice-1.  On a PC we are supposed to cut/paste that into our web browser to come up with the URL.  I'm not seeing how to do this on a MAC. 

    Here's a code snipet with null checks removed:
    UID MyClassName::GetFrameForXMLElement(IIDXMLElement* inXMLElement)
        InterfacePtr< ITextModel > textModel( Utils< IXMLUtils >()->QueryTextModel( inXMLElement ) );
        InterfacePtr< IFrameList > frameList( textModel->QueryFrameList() );
        UID aFrameUID = frameList->GetNthFrameUID( 0 );
        return aFrameUID;

  • Find objects associated with Technical names of routines

    Is there an easy way to find what objects, TR/UR, are associated with the cryptic technical names given in a transport list of Routines and Update Rules?
    e.g.:
    -Routine                     
       |_0BCJXNMRQHE29898UDAQN1TOY
    -Update rules                
       |_20ZUEIGNKD42XNU4HPWJEZ75H
    Thanks!

    Hi Jolene,
    You can try to look up tables RSUPDROUT and RSUPDINFO.
    Hope this helps...

  • Cannot find symbol error with ArrayList

    Hi friends,
    i am using ArrayList in the servlet file inorder to store the resultset retrieved from DB. When i compile my program i got a error like this one.
    C:\apache-tomcat-6.0.16\webapps\rmanew\WEB-INF\classes\com\rajk\javacode\servlet
    s>javac -classpath c:\apache-tomcat-6.0.16\lib\servlet-api.jar *.java
    RMAEntryModel.java:385: cannot find symbol
    symbol  : method addElement(java.lang.Object)
    location: class java.util.ArrayList
                    pat.addElement(rs.getObject("date"));
                       ^
    RMAEntryModel.java:386: cannot find symbol
    symbol  : method addElement(java.lang.Object)
    location: class java.util.ArrayList
                    pat.addElement(rs.getObject("serial_no"));
                       ^
    RMAEntryModel.java:387: cannot find symbol
    symbol  : method addElement(java.lang.Object)
    location: class java.util.ArrayList
                    pat.addElement(rs.getObject("replaced_serial_no"));
                       ^
    RMAEntryModel.java:388: cannot find symbol
    symbol  : method addElement(java.lang.Object)
    location: class java.util.ArrayList
                    pat.addElement(rs.getObject("customer_inv_no"));
                       ^
    RMAEntryModel.java:389: cannot find symbol
    symbol  : method addElement(java.lang.Object)
    location: class java.util.ArrayList
                    pat.addElement(rs.getObject("fault_desc"));
                       ^
    RMAEntryModel.java:390: cannot find symbol
    symbol  : method addElement(java.lang.Object)
    location: class java.util.ArrayList
                    pat.addElement(rs.getObject("vendor_name"));
                       ^
    RMAEntryModel.java:403: cannot find symbol
    symbol  : method elementAt(int)
    location: class java.util.ArrayList
                       everyPat.addElement(pat.elementAt(k));
                                              ^
    RMAEntryModel.java:406: cannot find symbol
    symbol  : method addElement(java.util.ArrayList)
    location: class java.util.ArrayList
                   all.addElement(everyPat);
                      ^
    8 errorsWhat is the problem?... Any help will be appreciated

    Read the message. It cannot find the addElement() method on class java.util.ArrayList.
    Just consult the javadoc of the class used for details about the class: [http://java.sun.com/javase/6/docs/api/java/util/ArrayList.html].
    In the future, those kind of basic compilation errors (and runtime exceptions) rather belongs in the 'New to Java' forum. Those are really trival.

  • Application Client Enity Manager cannot find Persistence Unit with JWS

    I have an Enterprise Application Project in Netbeans 6.7.1.
    The enterprise application client module has the business code and the
    persistence unit (TopLink) defined in the app-client.jar. I can run this
    application clinet from NB without a problem. I can also run it with JWS
    if I remove the EnityManager.
    I'm using JPA (EnityManager) in a Java SE environment.
    When I try and run the app-client from Java Web Start I get an error
    that the EnityManager cannot find the PU. The persistence unit is packaged in the app.ear->app-client.jar->META-INF->persistence.xml.
    There's not a wealth of information, that I could find on the net, but this
    seems to be correct.
    The error I get is:
    INFO: ACC009: Load Application Class: [jws.Main]
    hello world! From JWS
    Dec 3, 2009 11:44:21 AM com.sun.enterprise.appclient.MainWithModuleSupport <init>
    WARNING: ACC003: Application threw an exception.
    javax.persistence.PersistenceException: No Persistence provider for EntityManager named JWS-app-clientPU: The following providers:
    oracle.toplink.essentials.PersistenceProvider
    oracle.toplink.essentials.ejb.cmp3.EntityManagerFactoryProvider
    Returned null to createEntityManagerFactory.
    Any ideas on what I need to do to properly package the PU for an Enterprise Application Client ??
    Thanks,
    David

    I solved this problem.
    When we call resources from EAR application, WebLogic adds "Cache-Control=private, no-cache, no-store, s-maxage=0, must-revalidate" to all responses header.
    It was the reason of error occurence.
    I used filter from http://flavio.tordini.org/http-headers-filter to remove Cache-Control from header when calling jar resources.
    After that, applicatiom started to work again.

  • Finding Labels associated with a UIComponent

    Hi,
    I have a JSF page that contains the following controls:
    <h:outputLabel value="#{res['employee.firstName']}:" for="firstName" />
    <h:inputText id="firstName" value="#{employeeHandler.employee.firstName}" />Is there any way programatically to find out the value of the outputLabel associated with the inputText? I've tried something along the lines of:
    UIViewRoot view = FacesContext.getCurrentInstance().getViewRoot();
    UIComponent comp = view.findComponent("firstName");But am stuck after that, any help would be very much appreciated.
    Cheers
    Andy

    Hi Raymond,
    I've iterated through the tree as follows and found the HTMLOutputLabel, but how do I obtain the values of the for atttributes?
    UIViewRoot view = FacesContext.getCurrentInstance().getViewRoot();
    UIComponent comp = view.findComponent("empForm:firstName");
    Iterator<UIComponent> it = comp.getParent().getChildren().iterator();
    while (it.hasNext()) {
         comp = it.next();
         log.debug(comp.getId() + " is a child of " + comp.getParent().getId());
         if ("firstNameLbl".equals(comp.getId()) && "javax.faces.component.html.HtmlOutputLabel".equals(comp.getClass().getName())) {
              // Obtain the for attributes
    }Many Thanks for you continued assistance
    Andy

  • Finding programs associated with network connections. [solved]

    Is there a way to find out what programs are accessing the internet at any given time?  i know firestarter does this, but i would rather not do it through that if possible.
    Last edited by toru (2011-03-24 08:13:01)

    you can use netstat with the -p option to show all running connections and programs associated with them. for examle netstat -tp as root will show all outgoing TCP connections with the programs that opened them. Have a look at the netstat manpage for other options like udp-connections, running servers etc..
    Last edited by seiichiro0185 (2011-03-24 08:07:19)

Maybe you are looking for

  • How can I delete my photos in streaming from iCloud?

    How can I delete my photos in streaming from iCloud? Thank you.

  • Assignment of Source System in quality after transport

    Hi Experts, We have implemented the Inventory management standard flow in Development, Now to tell you, we have multiple landscape over here, Depending on the project, and the fesiblility for the client, the tranport layer is been decided, But for su

  • Power Point Viewer

    Hello Everybody, I'm looking for a viewer that can show me some Power Point Slides (Not OOo and certainly NOT MS Power Point) I would like to use it as a viewer that captures .pps attachments in my mail. Does anyone here ever heard of such a program,

  • How do we post questions on this forum with basic markups...

    Mine never works. Please look at my last post, just earlier to this one. It is horrible. I tried Firefox and IE thinking it could be something to do with that. Anyways, I hope I get this solved.

  • Will Adobe give retina compatibility to the latest CS? (CS6)

    Hi there, i just bought a macbook pro with retina display and i'm having problems with CS6 applications. I mean, i bought Adobe CS6 Master Collection cause i think it's good to pay for what you use, and now i'm discovering that half of the CS doesn't