Action  DisplayArgumentsAction retrieve nothing

Hi, guys
I had a problem with weblogic wldf instrumentation.
I configured 2 instrumentation monitors for my app.
1st: a monitor 'servlet_around_service' with an action 'traceElapsedTimeAction'. It works fine. I can get events data through wls console and every record seems good.
2nd: a monitor 'servlet_before_service' with an action 'DisplayArgumentsAction'. While, I can get events data through wls console, but however the column 'arguments' of each record is empty. Question is how can I get out the http parameters(which a browser send to a http server through http get or http post)
any suggestions would be appreciated.
Edited by: Calvin on 2011-10-10 上午12:25

Problem solved.
Use custom monitor and '%' due to security issue.

Similar Messages

  • After apply applicatio​ns changes, the action still pending, nothing happened.

    Under BlackBerry Desktop Software > Applications > Application Summary , there are 4 pending actions automatically, including 2 updates and 2 install, those 2 updates have red stars on the application list.
    I click Apply. It runs, updating and downloading, but when it is downloading, it suddenly stop and disappears, no reboot, it just go back to the Application page, loading applications from device.....  Nothing change with the list and the 4 pending actions are still there.
    I checked the application storage, there were plenty of space. 
    I tried to install or remove some other things from the list, some problem, nothing happened.
    I've just moved to another country, use a new computer, and downloaded backberry desktop software in it. Would that be the problem? the application was ok beofore i moved .
    Please help me with this, thank you.

    Hi and Welcome to the Community!
    I suggest this thread:
    http://supportforums.blackberry.com/t5/Desktop-Sof​tware-for-PC/Cleanly-quot-Starting-Over-quot-with-​...
    It starts with a process for cleanly starting over, and there is some discussion, and there is also a post (15) with links to older Desktop Software versions, if those are needed. If you are not doing USB sync with a desktop PIM (e.g., Outlook), then you can skip the steps related to that...but still please do fully cleanse/remove the Desktop Software and reinstall from scratch (to your PC) new copies of both the Desktop Software AND your BB OS package.
    Note that this is not, by any means, guaranteed to work...but it has worked for many to resolve issues they are having.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Struts Problem action.do does nothing ??

    HI,
    I�m developing a project in struts.
    After calling a global forward in a page, the action should get some values from a database, add them to a javabean to show the results in a jsp page. But after calling the forward, the browser gets stucked showing "myaction.do" and i think it does nothing. No errors are shown in the jsp mostrarusuario.jsp nor Apache Logs. The jsp page is not displayed correctly. Here is the basic code, any suggestions??
    adminLoginSuccess.jsp > Link Globalforward (mostrarusuario.do) > Action MostrarUsuarioAction > Display the bean in mostrarusuario.jsp > Nothing is shown. (mostrarusuario.do appers in the browser bar).
    Global forward
    <global-forwards >
         <forward name="irMostrarUsuario" path="/mostrarUsuario.do" />
      </global-forwards>
    Action mapping
       <action
          path="/mostrarUsuario"
          input="/adminLoginSuccess.jsp"
          scope="request"
          type="com.gentaiw.struts.action.MostrarUsuarioAction"
          validate="false">
          <forward name="success" path="/mostrarUsuario.jsp" redirect="true"/>
        </action>
    input- adminLoginSuccess.jsp
      <body>
             <html:link forward="irMostrarUsuario"> Mostrar Usuario</html:link><br>
      </body>
    mostrarusuario.jsp (showuser.jsp)
      <body>
       <logic:iterate name="mostrarlist" id="lista" scope="request"><br>
            id usuario: <bean:write name="lista" property="idUsuario"/><br>
            pass usuario: <bean:write name="lista" property="passUsuario"/><br>
            rol usuario: <bean:write name="lista" property="rolUsuario"/><br>
        </logic:iterate>
       </body>
    </html:html> mostrarUsuarioAction (showUserAction)
    public ActionForward mostrarUsuario(ActionMapping mapping, ActionForm form,
                   HttpServletRequest request, HttpServletResponse response) throws SQLException {
         DataSource dataSource = null;
         try {
              Connection conn = null;
              Statement stmt = null;
              ResultSet rs = null;     
              dataSource = getDataSource(request);
              conn = dataSource.getConnection();
              stmt = conn.createStatement();
               rs = stmt.executeQuery("select * from usuario");
              while (rs.next()){
                   EliminarUsuarioForm miUsuario = new EliminarUsuarioForm();
                   miUsuario.setIdusuario(rs.getString(1));
                   miUsuario.setPassusuario(rs.getString(2));
                   miUsuario.setRolusuario(rs.getString(3));
                   mostrarUsuarioList.add(miUsuario);
              rs.close();
              stmt.close();
              finally {
                   try{
                   Connection conn = null;
                   conn.close();
                        catch (SQLException e) {
                             System.err.println("SQL Exception mientras se accedia a la tabla");
                             e.printStackTrace();
         } //fin finally
              request.setAttribute("mostrarlist", mostrarUsuarioList);
         return mapping.findForward("success");
         }Any help or suggetions will be much appreciated.

    HI,
    I�m developing a project in struts.
    After calling a global forward in a page, the action should get some values from a database, add them to a javabean to show the results in a jsp page. But after calling the forward, the browser gets stucked showing "myaction.do" and i think it does nothing. No errors are shown in the jsp mostrarusuario.jsp nor Apache Logs. The jsp page is not displayed correctly. Here is the basic code, any suggestions??
    adminLoginSuccess.jsp > Link Globalforward (mostrarusuario.do) > Action MostrarUsuarioAction > Display the bean in mostrarusuario.jsp > Nothing is shown. (mostrarusuario.do appers in the browser bar).
    Global forward
    <global-forwards >
         <forward name="irMostrarUsuario" path="/mostrarUsuario.do" />
      </global-forwards>
    Action mapping
       <action
          path="/mostrarUsuario"
          input="/adminLoginSuccess.jsp"
          scope="request"
          type="com.gentaiw.struts.action.MostrarUsuarioAction"
          validate="false">
          <forward name="success" path="/mostrarUsuario.jsp" redirect="true"/>
        </action>
    input- adminLoginSuccess.jsp
      <body>
             <html:link forward="irMostrarUsuario"> Mostrar Usuario</html:link><br>
      </body>
    mostrarusuario.jsp (showuser.jsp)
      <body>
       <logic:iterate name="mostrarlist" id="lista" scope="request"><br>
            id usuario: <bean:write name="lista" property="idUsuario"/><br>
            pass usuario: <bean:write name="lista" property="passUsuario"/><br>
            rol usuario: <bean:write name="lista" property="rolUsuario"/><br>
        </logic:iterate>
       </body>
    </html:html> mostrarUsuarioAction (showUserAction)
    public ActionForward mostrarUsuario(ActionMapping mapping, ActionForm form,
                   HttpServletRequest request, HttpServletResponse response) throws SQLException {
         DataSource dataSource = null;
         try {
              Connection conn = null;
              Statement stmt = null;
              ResultSet rs = null;     
              dataSource = getDataSource(request);
              conn = dataSource.getConnection();
              stmt = conn.createStatement();
               rs = stmt.executeQuery("select * from usuario");
              while (rs.next()){
                   EliminarUsuarioForm miUsuario = new EliminarUsuarioForm();
                   miUsuario.setIdusuario(rs.getString(1));
                   miUsuario.setPassusuario(rs.getString(2));
                   miUsuario.setRolusuario(rs.getString(3));
                   mostrarUsuarioList.add(miUsuario);
              rs.close();
              stmt.close();
              finally {
                   try{
                   Connection conn = null;
                   conn.close();
                        catch (SQLException e) {
                             System.err.println("SQL Exception mientras se accedia a la tabla");
                             e.printStackTrace();
         } //fin finally
              request.setAttribute("mostrarlist", mostrarUsuarioList);
         return mapping.findForward("success");
         }Any help or suggetions will be much appreciated.

  • Set default action to "do nothing" when connect iPhone to Windows PC

    I have an iPhone 3GS and an XP machine at work. I want to charge my phone using the computer's USB connection, but I don't want iTunes to launch or any dialog box to pop up asking me what I want to do when I plug in the phone. Can I set it up just to charge and do nothing else?

    I lost patience with this same problem this morning and found a URL which works on the Apple site.
    http://support.apple.com/kb/TS1857?viewlocale=en_US
    Good luck.
    Mark.

  • Get_related_entities retrieves nothing

    Hi everyone !! I have one issue about the "get_related entities",
    lv_collection = entity->get_related_entities(
                 iv_relation_name = 'BuilAddressPhoneRel' ). . . . me->set_collection( lv_collection )
    inside of the "on_new_focus" method of a model node.
    The thing is that some BP´s doesn´t have any phone data related and the get_related_entities returns nothing, the collection is just "Initial", the collection_wrapper will not have nothing to wrap ...
    The problem is that the user through an inputfield will edit phone data, the "SETTER" method of this field uses an "initial" collection_wrapper when there is not any initial phone data giving me some troubles to save the new value because the initial state of the collection_wrapper...
    I try to create an empty with a "entity_factory" of this node with no results.
    Any suggestion ?

    Hi,
    If get related entites returns an empty collection then use create_related_entity to create the relation
    (code)
      get collection of dependent nodes
            lv_collection = entity->get_related_entities(
                   iv_relation_name = lv_rel_name ).
            IF lv_collection IS NOT BOUND OR lv_collection->size( ) = 0.
              IF entity->is_changeable( ) = abap_true.
                    entity = entity->create_related_entity(
                     iv_relation_name = lv_rel_name ).
              ENDIF.
           ENDIF.
    (code)
    Regards,
    Arun

  • GET_FILE_LIST action:Folder & Mask are the mandatory inputs for this action

    hi all,
    Iam using GET_FILE_LIST action to retrieve few files from a folder stored in WEB directory. Folder & Mask are the mandatory inputs for this action to read the files. To get any xml files we can use the Mask value as ".xml". Is there a way or any mask value which would get all the files from the folder and then using a condition or switch I can create a desired sequence based on file type.
    Thanks,
    Gilmour

    Hi Gilmour,
    Try with mask value  *  ("asterisk")
    or
    ("asterisk.asterisk")
    Regards,
    Anil
    Edited by: Anil Dwivedi on Feb 19, 2009 9:42 AM

  • No further action on Archived PO

    Hi All,
    I want to close PO to prevent the following actions so that nothing can done with that PO.
    1. can i close a PO at header (EKKO has a deletion flag field !!)
    2. PO Archiving is the solution ??
    Below transactions should not be possible once i close or Archive this PO
    - no further GR
    - no IR
    - Invoice reversal
    - no Credit Memo
    - No GR reversal
    - No changes to PO
    Please advise
    thanks
    Mahesh

    Hi,
    When all the procurement process is finished, it must be possible to
    delete the PO item for archiving purpose for example.
    If however you try to delete the item after GR but before invoice
    receipt, the procurement process is not complete, therefore the error
    06115
    ( Quantity delivered differs from qty. invoiced (Function not possible)
    Also note the item shall be marked as deleted, but not actually
    removed from the system, it shall still be available for reporting.
    I hope this explains why the system allows you to delete a PO when it
    has a GR and IR completed.
    Please refer to the online documentation changing and cancelling
    Purchase orders which states as follows :
    "An item order may be only deleted if it is closed. Items are regarded
    as closed if one of the folowing criteria is satisfied :
    - the ordered quantity or more has been delivered and invoiced.
    - the delivery completed has been set and the invoiced quantity is
      greater or equal than the quantity ordered.
    - no follow-on processes (such as reservations) relating to the item are
      active in the system."
    ->  This means that the delivered quantity of the goods must agree with
        the invoiced quantity."
    About Archiving, please ensure that the following criteria must be ful-
    filled in the SAP R/3 Standard :
    Checks for purchase orders and scheduling agreements:
    o  If the GR indicator has been set, either the Delivery completed
       indicator must have been set for the item (for service items this
       is essential), or the GR quantity must be at least as large as the
       quantit ordered less any underdelivery tolerance. If the IR
       indicator has also been set, the IR quantity must equal the GR
       quantity. In this case, the final invoice indicator is irrelevant.
    o  If the GR indicator has not be set but the IR indicator has, then
       either the final invoice indicator must be set or the IR quantity
       must be greater than or equal to the quantity ordered.
    o  There must not be any #GR blocked stock# in existence.
    o  There must not be any open down payments.
    o  In the case of stock transfers (irrespective of whether within a
       company code or across company codes), the GR quantity must be
       equal to the GI quantity. If the stock transfer was carried out
       using an SD delivery, the GR quantity must also equal the outward
       delivered quantity.
    o  The delivery costs must have been cleared.
    o  If the Check info record indicator has been set in Customizing for
       the document type/item category combination, the item must not
       appear as the last document item in the info record (if one
       exists).
    o  No parked invoices may exist.
    o  If the item results from a sales order (EKPO-STATU = #V#), the
       overall processing status of the sales order must be either SPACE
       (not relevant) or #C# (completely processed).
    o  The posting date of the last PO history transaction/event
       (e.g. goods receipt or invoice for delivery costs) must be as far
       back the past as specified in residence time 1.
    If these criteria are not fulfilled, the documents cannot be archived.
    Please have a look at the attache Notes 335800
                                            401318
                                            456129
    I hope this can be of help
    BR
    Nadia Orlandi

  • Where is the action menu in Pages?

    Where is the action menu in Pagess?  The "accepting changes" help says its all in the "Action Menu" but nothing is labled as the "action menu"  Where is it?

    Simio,
    I must confess, I didn't research the answer very well before my first response. It turns out that in the current version of the English edition of Pages User Guide, the phrase "Action Menu" appears 20 times. And to think I don't recall ever seeing it before.
    My reading of the guide indicates that the "gear" icon with a disclosure triangle is an Action Menu. They are everywhere, in many contexts besides Tracking, and I always thought of them as the "gear" menu. Dale's graphic gets you close, but his capture isn't quite wide enough to catch the Action Menu icon. It's here:
    And, it looks like this after clicking the disclosure triangle:
    Regards,
    Jerry

  • Action method called in standalone OC4j but not OAS

    I am setting up a test environment on Solaris x86 machine and have run into an odd issue concerning an action method being called which seems to be an issue for Oracle Application Server (OAS) but not an issue for stand alone OC4J.
    The application is using Java 5, Spring 2.5, Java Servlet 2.3, Struts 2, iBatis 2.2, Sitemesh, and Display Tag to name some of the parts that are in play.
    The platform is a Sun Fire X2100 server running Solaris 10 OS (64-bit). The application server version is 10.1.3 (Solaris x86, 64-bit) connecting to Oracle database server 10.2.0.2.0 (Solaris x86, 32-bit). The stand alone OC4J that I used for comparison was 10.1.3.4.0 (also run under the same Solaris machine but not while the application server was running).
    Going from one JSP that contains a list of items ("authority ids" in this case) to another JSP which displays detailed information about one item (chosen by clicking on a hyperlink in the list), it appears that the setter action method (which sets the 'sid' property) does not get called under OAS so the page displays empty fields. Same code running under the stand alone OC4J, the setter method does get called and the fields are populated on the details page. In both cases, both deployments are hitting the same database and the data is successfully retrieved from the database (into the action class). In both cases, the parameter that is set by this action method is present in the URL for the detail page.
    Snippet of code from the JSP that loads the authority ID list (and passes the sid in the URL):
    <display:table name="authorityIdList" cellspacing="0" cellpadding="0" requestURI=""
        defaultsort="1" id="authorityIdTypes" pagesize="25" class="table" export="true">
        <s:url id="editurl" action="editAuthorityId" includeContext="false">
          <s:param name="redirectUrl" value="%{returnUrl}"/>
        </s:url>
        <display:column property="fieldName" escapeXml="true" sortable="true" titleKey="authorityIdType.fieldName"; style="width: 34%" url="${editurl}"
          media="html csv xml excel pdf" paramId="sid" paramProperty="sid"/>Snippet from the authority ID detail form where the sid should be populated:
    <tr style="display: none"><td>
          <s:hidden key="sid"/>
            <s:hidden name="redirectUrl"/>
        </td></tr>Snippet from the action class that contains the setter for the sid property:
      public Integer getSid() {
            return sid;
      public void setSid(Integer sid) {
            this.sid = sid;
      }Snippet from the resulting html page for the list includes the sid for each item in the list.
    <td style="width: 34%">DODAAC</td>
    <td style="width: 25%">DODAAC</td></tr>
    <tr class="even">
    <td style="width: 34%">DODAAN</td>
    <td style="width: 25%">DODAAN</td></tr></tbody></table>Under the stand alone OC4J, the setter method is called, so the sid is populated (and the item detail data from the action is retrieved and displayed).
    Snippet from the resulting detail html page from the stand alone OC4J:
        <tr style="display: none"><td>
             <input type="hidden" name="sid" value="1" id="saveAuthorityId_sid"/>
            <input type="hidden" name="redirectUrl" value="http://system01:8888/MyApp/admin/authorityIdTypes.html"; id="saveAuthorityId_redirectUrl"/>
        </td>Notice that the sid value as well as the redirectUrl value are populated under standalone OC4J.
    Under OAS, the setter method is not called, so the sid is not set (and none of the other item detail fields are populated).
    Snippet from the resulting detail html page from OAS:
       <tr style="display: none"><td>
             <input type="hidden" name="sid" value="" id="saveAuthorityId_ sid"/>
            <input type="hidden" name="redirectUrl" value="" id="saveAuthorityId_redirectUrl"/>
        </td>Notice that the sid value as well as the redirectUrl value are empty under OAS.
    Any ideas on what I need to change in OAS configuration to make this work under OAS (if this is a configuration issue)?

    I found another case that may be clearer.
    A confirmation page on the application server shows that the redirect url is not being populated:
    <form id="confirmation" name="confirmation" onsubmit="return true;" action="/MyApp/admin/confirmation.html" method="post"><table class="wwFormTable">
         <input type="hidden" name="redirectUrl" value="" id="confirmation_redirectUrl"/>
       <tr>
        <td colspan="2"><div align="right"><input type="submit" id="confirmation_continue" name="method:proceed" value="Continue"/>
    </div></td>
    </tr>
    </table></form>Same code running on the standalone OC4j does populate the redirect URL:
    <form id="confirmation" name="confirmation" onsubmit="return true;" action="/MyApp/admin/confirmation.html" method="post"><table class="wwFormTable">
         <input type="hidden" name="redirectUrl" value="http://system01:8888/MyApp/admin/users.html" id="confirmation_redirectUrl"/>
       <tr>
        <td colspan="2"><div align="right"><input type="submit" id="confirmation_continue" name="method:proceed" value="Continue"/>
    </div></td>
    </tr>
    </table></form>So it appears that the application server is having problems passing parameters to pages.
    I have been digging through Oracle documentation, but I haven't found any clues on how to fix the issue.
    Any help would be appreciated.
    Thanks,
    - David

  • Bug report: Photoshop can't record an action where you insert the menu item "Tile all horizontally".

    I am running CS6 beta on Mac OS 10.7.3
    Photoshop can't record an action where you insert the menu item "Tile all horizontally".
    Expected behavior: add the tile all horizontally action to your actions.
    Behavior: nothing happens.
    This does work for Tile all vertically.

    Have I mentioned how much i love my playbook now Great job on os 2.0

  • Image Document Service Connector: Can't retrieve metadata from jpeg image

    I'm using SES 10.1.8.4 with the Image Document Service Connector.
    I've entered some metadata IPTC in a buch of images (with picasa, for instance) and added a new file datasource combined with a new pipeline as explained in the Patch Set Readme (p7514463_101840_WINNT)
    After indexing, I can't retrieve nothing of my images with a simple search.
    Did anybody make tests with this new feature ?
    Thank you in advance,
    Patrick.

    Ok, I havn't read all your code because it's quite a lot and I might have the answer for you already.
    Maybe the problem is that your Nokia is still connected to your computer.
    I had the same problem on my Nokia 6021. I installed my app through the Nokia PC Suite. And it showed all the devices, but it couldn't find any services on any of the devices. Which was strange because most devices have some standard services running. The problem was that after installing the app, the Nokia was still connected/paired with the PC. After deleting the pairing, services magically appeared.
    I hope this solves your problem (more than six months after your post ;) ).

  • Storing Action objects in some container?

    Hey all,
    I was wondering what is the best way to store Action objects that I will use to make toolbars and menus. I was thinking of using a vector, but what if it get reallocated? I would really like to know what is the accepted way of doing this.
    Thanks for any help.

    Hi,
    have a look into the source of the notepad demo coming with the SDK in path [SDK]/demo/jfc/Notepad/src/Notepad.java
    There a Hashtable 'commands' is used to store references to action objects. There are methods to store and retrieve references to action objects too.
    And to add to previous posters: IF an 'action is stored' in a Hashtable, only its reference is stored there. Consequently, if an 'action is retrieved' from that Hashtable, the stored reference to that action actually is retrieved only.
    Ulrich

  • "Action" bubble when using Safari?

    In Safari, when I hold my finger down on the right-hand side of the screen, after a few seconds the screen goes grey, and a bubble with the word 'Action' appears. Nothing happens when I move my finger to the bubble, or try to tap or swipe anywhere on the screen.
    Does anyone have any clues as to what this 'Action' bubble does?

    It shows where the link would go. Your link would do an action (maybe move a map). If you do that on another link it will show where it will go so if you saw a link and it led to Apple it would show http://www.apple.com

  • Retrieve accessibility parameter.

    Hi everyone, I have to retrieve the accessibilty parameter of user so I can display or not some button in webdynpro.
    If I set parameter ID ACCESSIBILITY_MODE with the value X in SU01, when I call method GET_IS_ACCESSIBLE in IF_WD_APPLICATION return value 'X',but if I set trough the portal setting user parameter call method don' retrieve nothing.
    May I have to set both parameters?
    Or exist a method for read the user portal's parameter?
    Thank you so much!

    If you pass a parameter to the URL as '?my_path.my_param=hello' Then you can use my_path as the p_reference_path and my_param as the p_name
    Herman

  • Lightroom 5: AppleScript: action "AXShowMenu" in Smart Collection panel does not show context menu

    We are developing a simple automatization tool using Lightroom 5 (the newest version of the CC) using AppleScript.
    For some actions, we need the context menu in the Smart Collections panel, for example to import Smart Collection descriptions.
    According to the documentation and various sources on stackoverflow and elsewhere, AXShowMenu should bring up that menu.
    So far, I have not been able to make that context menu pop up.
    Using UIElementInspector and UI Browser, I located the element which does have the AXShowMenu action attached. Based on the code provided by UI Browser, I got the following script, which I run from the Applescript Editor:
    tell application "Adobe Photoshop Lightroom 5"
    activate
    tell application "System Events"
    tell process "Lightroom"
    set frontmost to true
    perform action 1 of static text "Smart Collections" of group 1 of row 11 of outline 1 of scroll area 1 of window 6
    delay 2
    end tell
    end tell
    end tell
    tell application "AppleScript Editor" to activate
    Note that if you try to recreate this, the number of the window as well as the number of the row may be different. Also, the last line is just convenience, and not really relevant for the code.
    In the Results window in AppleScript Editor, I have the following:
    perform action 1 of static text "Smart Collections" of group 1 of row 11 of outline 1 of scroll area 1 of window 6 of process "Lightroom"
    --> action "AXShowMenu" of static text "Smart Collections" of group 1 of row 11 of outline 1 of scroll area 1 of window 6 of application process "Adobe Photoshop Lightroom 5"
    which means that I did invoke the action.
    But … nothing happens.
    Any insight, workaround etc. is highly appreciated.
    Thanks in advance.

    Just for the records, I did ask the same question on Stackoverflow, and there I got an answer which does work. This solution uses a little Python program to really simulate mouse clicks.

Maybe you are looking for

  • List of attachments carry over?

    Just wondering if the history of the attachments for incidents and change requests are carried over to the data warehouse? If so how or what would I use to show that when creating a report using report builder? Thanks, Help

  • Nested loop vs Hash Join

    Hi, Both the querys are returning same results, but in my first query hash join and second query nested loop . How ? PLs explain select * from emp a,dept b where a.deptno=b.deptno and b.deptno>20; 6 rows Plan hash value: 4102772462 | Id  | Operation 

  • ResultSet IView - eventing - hand over serveral records

    Hi experts, we use a standard resultset iview for connecting the repository with the EP - this works fine. In case of "eventing": is there a possiblity to hand over more than one record via EPCF-eventing to another IView on the same page? The target

  • Make group contacts with I Phone5    OS 7.1

    How do I make groups for my contacts with my I Phone 5 with the lastest update   IOS 7.0.2

  • Camera from locked screen

    Hi friends what is the way to use the camera on the 4GS from the locked screen Thanks