Application to application

Hi all,
  we have two applications which needs to pass data to each other.
APP1 displays a report in a table. when user clicks on the first column it needs to send the corresponding field(FLD1) data to second application APP2.
APP2 displays all the item level data of FLD1 and allows the user to either edit/modify details here.
APP1 and APP2 both get the data from backend.
APP1 is in one local DC(developed by user1) and APP2 is in another local DC(developed by user2). I need to access APP2 from APP1.
Please can some one guide me of how to do this? 
Thanks in advance,
Gopi

Gopi,
There is no such functionality in WD. Even Suspend/Resume plugs available in NW04s are not suitable here.
You may try solution described by Maksim Rashchynski https://weblogs.sdn.sap.com/pub/wlg/4142. [original link is broken] [original link is broken] [original link is broken] [original link is broken]
Valery Silaev
SaM Solutions
http://www.sam-solutions.net

Similar Messages

  • Error on registering Flights of Fancy application(Partner Application, JPDK) provide

    Hi
    When i try to add a provider for Flights of Fancy application i am getting this error
    An error occurred when attempting to call the providers register function. (WWC-43134)
    The following error occurred during the call to Web provider: Unable to initialize new provider instance: oracle.portal.provider.v1.ProviderException: Portlet PartnerFlightPortlet: Required Renderer not set. (WWC-43147)
    i am able to access the URL (http://myhost/servlet/flightsprov) without any problem and is displaying the following information
    Congratulations! You have successfully reached your Provider's Test Page.
    Checking for components:
    Oracle XML parser: detected
    Oracle JSP: detected
    Recognizing initArgs: Usual initArgs are provider_root and sessiontimeout.
    dbhost: myhost
    partnerAppCookieDomain: mydomain.com.qa
    dbsid: mysid
    onCancelUrl: http://myhost
    partnerAppCookieDesc: SSO application cookie
    partnerAppCookieScope: /
    dbSchema: mypartner
    requestedUrl: http://myhost/servlet/flights
    provider_root: D:\port\partner
    dbport: 1521
    dbPassword: mypartner1
    partnerAppCookieName: SSO_PAPP_SERVLET_ID
    sessiontimeout: 1800000
    listenerToken: myhost:80
    ANd i make sure several times that i am using the same URL for Portal registration page.
    In the jserv.log file i am getting the following information
    [08/04/2001 13:08:24:642 GMT+03:00] flightsprov/javax.servlet.ServletException: Unable to initialize new provider instance: oracle.portal.provider.v1.ProviderException: Portlet PartnerFlightPortlet: Required Renderer not set.
    at oracle.portal.provider.v1.http.HttpProvider.getProvider(HttpProvider.java:339)
    at oracle.portal.provider.v1.http.HttpProvider.service(HttpProvider.java:246)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
    at org.apache.jserv.JServConnection.processRequest(JServConnection.java, Compiled Code)
    at org.apache.jserv.JServConnection.run(JServConnection.java, Compiled Code)
    at java.lang.Thread.run(Thread.java:479)
    Can anybody help me in solving this problem
    thanks in advance
    Abdulla
    null

    You're not missing anything - it sounds like it's working perfectly.
    If a provider is affiliated with a partner application, the provider is automatically authenticated when you authenticate to the portal - because it is also a partner application. You only need to authenticate yourself once.
    Now, when you go to the partner application, the application session cookie that was created by the provider is passed to the partner application & so you are not challenged.
    Now, if you close your browser and access the partner application first, the login server will challenge you. When you subsequently go to the portal, you will not be challenged - the portal contacts the login server behind the scenes, determines you have already authenticated yourself and proceeds as if you had logged in.
    When you visit the partner provider portlet, it will detect the cookie created by the partner application and use that to tie into the same session.
    This is the whole point of single sign on.

  • Application-to-application authentication using Calendar Web Services

    Calendar Web Services
    Application-to-application authentication
    (Proxy authentication)
    Abstract:
    Application-to-application authentication allows services to trust other services without having to authenticate the end-user making use of these services. The Calendar Web Services offers an application-to-application authentication mechanism called “Proxy Authentication”.
    What is Proxy Authentication?
    The Calendar Web Services Proxy Authentication is a solution that was developed by the Oracle Calendar team and is similar to what SSO would be to the web. Proxy Authentication allows any application developed using the Calendar Web Services Toolkit to establish a trusted authentication link to the Calendar Server via the Calendar Web Services.
    What do I need to get Proxy Authentication going?
    -     The Calendar Web Services Toolkit 9.0.4.2.X (Calendarlet.jar)
    -     The Calendar Web Services 9.0.4.2.X (OCAS)
    -     The Calendar Server 9.0.4.2.X (Calserv)
    -     Oracle Internet Directory 9.0.4.X (OID)
    Your collaboration suite deployment MUST be configured in a way where the Calendar Server is connected to the OID (done by default). This is fundamental given that Proxy Auth is designed to extensively use the OID security schemes.
    How to configure Proxy Authentication?
    You must have:
    1.     Access to the OID administrator account.
    2.     Access to the ldap tools ($ORACLE_HOME/ldap/bin).
    3.     Access to the Oracle Calendar Server administrator password.
    OID Configuration
    Create an entry for your application product in OID
    The following entry needs to be created:
    - cn=OracleContext
    - cn=Products
    - cn=MyApplicationProduct
    The MyApplicationProduct.ldif will look like:
    dn: cn= MyApplicationProduct, cn=Products, cn=OracleContext
    objectClass: orclContainer
    objectClass: top
    The command to add the entry is
    ./ldapadd -h HOSTNAME.COM -p OIDPORT -D "cn=orcladmin" -w PASSWROD -f ./MyApplicationProduct.ldif
    Where [HOSTNAME.COM] is the OID server hostname, [PASSWROD] is the password for the OID directory and [OIDPORT] is the OID port.
    Create an application entity for MyAppName in OID
    The following entry needs to be added to the OID:
    - cn=OracleContext
    - cn=Products
    - cn= MyApplicationProduct
    - orclApplicationCommonName=MyAppName
    The MyAppName.ldif will look like:
    dn: orclApplicationCommonName= MyAppName,
    cn= MyApplicationProduct, cn=Products,
    cn=OracleContext
    objectClass: orclApplicationEntity
    objectClass: top
    orclApplicationCommonName: MyAppName
    userpassword: test1
    The command to add the entry is
    ./ldapadd -h HOSTNAME.COM -p OIDPORT -D "cn=orcladmin" -w PASSWORD -f ./MyAppName.ldif
    Ensure the entry is properly configured
    Perform an LDAP search to locate the entry's distinguished name:
    "orclApplicationCommonName= MyAppName,
    cn= MyApplicationProduct, cn=Products,
    cn=OracleContext"
    ./ldapsearch -h HOSTNAME.COM -p OIDPORT -D "cn=orcladmin" -w PASSWROD
    -b "cn= MyApplicationProduct,cn=Products,cn=OracleContext"
    "objectclass=orclApplicationEntity" "c"
    Grant proxy privileges to the new application entity
    This creates an entry in OID:
    - dc=com
    - dc=oracle
    - dc=us
    - cn=OracleContext
    - cn=Products
    - cn=Calendar
    - cn=UserProxyPrivilege
    - uniquemember:
    orclApplicationCommonName= MyAppName,
    cn= MyApplicationProduct, cn=Products,
    cn=OracleContext
    From the $ORACLE_HOME/ocal/bin
    ./unioidconf -grantproxyprivilege \
    "orclApplicationCommonName= MyAppName,
    cn= MyApplicationProduct, cn=Products,
    cn=OracleContext"
    NOTE: you need the calendar server admin password.
    How to use Proxy Authentication?
    Once successfully done configuring your OID and Calendar Server, you must start the real work; coding. It is actually simple to implement.
    In your Java application, you will simply change the BasicAuth class with the ProxyAuth class. You then set the end-user identity, along with the proxy application name and proxy application password, you registered a moment ago.
    Ex:
    ProxyAuth auth = new ProxyAuth();
    auth.setApplicationName("orclApplicationCommonName=MyAppName, cn=MyApplicationProduct, cn=Products, cn=OracleContext");
    auth.setApplicationPassword(“test1”);
    auth.setName(myUserId);
    Your application will no longer need to pass the end-user’s password to the Calendar Web Services. From now on, it is your application’s responsibility to authenticate the end-user.
    Frederic Leblanc

    I found the solution:
    Using the CalendaringResponse.getReceiveBuffer() and getSendBuffer() methods, the soap request looks something like this:
    Sendbuffer: <?xml version='1.0' encoding='UTF-8'?>
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <SOAP-ENV:Header>
    <auth:ProxyAuth xmlns:auth="http://www.oracle.com/WebServices/Calendaring/Authentication/1.0/"><ApplicationName>orclApplicationCommonName=MyAppName,cn=MyApplicationProduct, cn=Products, cn=OracleContext</ApplicationName><ApplicationPassword>testpw1</ApplicationPassword><Name>king</Name></auth:ProxyAuth>
    </SOAP-ENV:Header>
    <SOAP-ENV:Body>
    <cwsl:Search xmlns:cwsl="http://www.oracle.com/WebServices/Calendaring/1.0/"><CmdId>MySearchCommandID-1</CmdId><vQuery><From>VEVENT</From><Where>DTEND &gt;= '20061007T220000Z' AND DTSTART &lt;= '20061014T215900Z'</Where></vQuery></cwsl:Search>
    </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>

  • Creating a Custom Application in Applications 11i

    Am on 11.5.10.2
    To create a Creating a Custom Application in Applications 11i...
    i having a doubt in this.. plz explain me...
    Apply ADX.E.1 and add the entry to topfile.txt as a standard product top
    entry (follow the existing model in the file)
    which means suppose i need to add CUSTOM_TOP, i have to add following entry in top.txt file right..
    CUST /sidapp/sidappl
    Customised environment variables can be added to AutoConfig by using the filename specificed by s_custom_file, which is then called from theAPPSORA.env file. If using Forms Listener Servlet, you may also need to add $CUSTOM_TOP to formsservlet.ini in $APACHE_TOP/Jserv/etc
    can anybody explain wats the meaning of above sentence....

    HI
    I need to create a CUSTOM_TOP
    Edit topfile.txt file under $APPL_TOP/admin to have the following entry:
    cust /u01/oracle/testappl
    Where:
    - abc is your custom top directory
    - /u01/oracle/testappl is absolute path of your APPL_TOP
    In APPSORA.env
    # Source the custom file if it exists
    customfile=/testAPP/testappl/customTEST_HOSTNAME.env
    if [  -f $customfile ]; then
    . /testAPP/testappl/customTEST_HOSTNAME.env
    fi
    . /testAPP/testora/8.0.6/TEST_HOSTNAME.env
    . /testAPP/testappl/TEST_HOSTNAME.env
    In this file i suppose to replace customfile=/testAPP/testappl/customTEST_HOSTNAME.env with CUSTOM_TOP=/testAPP/testappl/customTEST_HOSTNAME.env
    or
    i have to add seperate
    CUSTOM_TOP=/testAPP/testappl/custom/11.5.0
    thanks,

  • Object null reference error while creating Web applications, Service applications etc after restoring AD accounts

    Hi,
    The old Active Directory accounts of my server were removed, those accounts are used by some of the SharePoint sites. A new AD account was created and when I try to replace the old accounts with new I am facing issue. I am also unable to create new web application,
    service application from my Central Administration. I also tried by restoring old accounts but still I am facing same issues, I
    am getting the error message Object
    reference not set to an instance of an object. for any create activities in Central Administration.
    Thanks in Advance for your help

    Thanks for the reply. When I am trying to update service account of services also I am getting error
    message Object
    reference not set to an instance of an object. i.e., while selecting component(web/service application from drop down) redirecting to error page

  • Problem in XML-Application to Application

    Hi
    I am trying to run the XML-Application to Application available on the Oracle site.
    I am using JavaWebServer2.0 and am able to compile all the files successfully,but
    On running the command:
    java xmla2a.tphs.TPHotelSystem
    the following error is encountered:
    java.lang.NoSuchMethodError: oracle.jdbc.driver.OracleConnection: method setTypeMap(Ljava/util/Dictionary;)V not found
    at oracle.AQ.AQOracleSession.<init>(AQOracleSession.java:69)
    at oracle.AQ.AQOracleDriver.createAQSession(AQOracleDriver.java:65)
    at oracle.AQ.AQDriverManager.createAQSession(AQDriverManager.java, Compiled Code)
    at xmla2a.utilities.AQHandler.createSession(AQHandler.java:144)
    at xmla2a.utilities.AQHandler.initializeQueues(AQHandler.java:62)
    at xmla2a.utilities.AQHandler.<init>(AQHandler.java:51)
    at xmla2a.tphs.TPHotelSystem.<init>(TPHotelSystem.java:55)
    at xmla2a.tphs.TPHotelSystem.main(TPHotelSystem.java:64)
    Exception in thread "main"
    Can someone help me in solving this problem.
    warm regards
    Siddharth

    Rajesh
    i have followed the steps given in the index.html carefully.i face no problems in compiling the files.
    here is the brief of the steps i have followed:
    java_home=c:\jdk1.2.2
    jws_home=c:\javawebserver2.0
    added the following packages to the classpath:classes.zip,serlet.jar,classes111.zip,xmlparserv2.jar,classgen.jar,mail.jar,oraclexmlsql.jar,aqapi.jar,jndi.jar
    <xmla2adir> = c:\B2B\xmla2a
    copied the XMLAPPDIR\xmla2a\a2a files to JWS_Home\public_html
    was able to successfully complie the application in the order given in index.html
    added the servlets to the java web server successfully
    But while running the application i got the above stated problem.
    I hope these steps will help u track down my line of action and help me out.
    thanks
    Siddharth
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Rajesh Sundararaghavan (Oracle):
    HI,
    One more addition. In case of problems, it would be great if you could let us know the sequence of steps that you followed so that tracking down will be easier.
    Thanks
    Rajesh<HR></BLOCKQUOTE>
    null

  • Problem while importing the application in application express 3.0

    Hi Friends
    We have developed an application in a workspace say X. I imported the complete application in different workspace Y and the import was successfully. Now if I export a single page from that application in workspace X and import in workspace Y, then it gives me error as
    "This page was exported from a different application or from an application in different workspace. Page cannot be installed in this application."
    Also I tried changing the application id in the export file but did not work.
    Is their a workaround for this?
    (We are using application express 3.0.0.00.20)
    Thanks
    Minakshi

    Hi Scott
    1 ) Page exports are to be imported into an application having the same ID as the source application in the same named worskpace.
    But the problem is I cannot have same application id in the same workspace or in different workspaces even. I exported the complete application from workspace X with application id as 555 and tried importing the application in workspace Y with the same application id. But that does not work since it throws the error message as the same application id cannot reside in 2 different workspaces.
    2) You don't say whether workspaces X and Y are in the same or different databases.
    Both the workspaces X and Y are in the same database. The database user/schema that is associated with workspaces X and Y are different.
    3) Also I tried changing the application id in the export file but did not work.
    Following is the extract of the page that i tried importing. The places wherever it is marked BOLD, i modified them in the original page export sql file.
    --application/set_environment
    prompt APPLICATION 500 - Load_Factor_System
    -- Application Export:
    -- Application: 500
    -- Name: Load_Factor_System
    -- Date and Time: 15:52 Wednesday May 16, 2007
    -- Exported By: ADMIN
    -- Flashback: 0
    -- Export Type: Page Export
    -- Version: 3.0.0.00.20
    -- SET APPLICATION ID
    wwv_flow.g_flow_id := 500;
    wwv_flow_api.g_id_offset := 0;
    null;
    In case you need further clarifications, please let us know.
    Regards
    Minakshi

  • DOC BUG: Oracle Application Express Application Builder User's Guide 4.1

    Oracle® Application Express Application Builder User's Guide
    Release 4.1
    Part Number E21674-03
    +&sect; HTML Header and Body Attribute+, Table 8-4 has:
    >
    Attribute: Page HTML Body Attribute
    Description: Enter text or HTML you want to appear before the page template footer.
    >
    This is the description for the Footer Text property, correctly described in Table 8-5. Table 8-4 should have something like:
    >
    Attribute: Page HTML Body Attribute
    Description: Enter HTML attributes to be specified for the page <tt>body</tt> element by replacing the <tt>#ONLOAD#</tt> substitution string in the page template.

    Anthony
    Thanks for picking that up.
    If you hadn't already noticed it, could I bring the +{thread:id=2285521}+ thread to your attention? I've confirmed that finding and would appreciate an explanation.

  • Bug report: sql developer/application express application import

    I noticed some bugs on deploying an application using sql developer 1.5.1-5440.
    Using a single file deployment generated by apex including install/upgrade/remove scripts: Here's what happens:
    # I tried installing version 1.1 of my application already existing. Connected to the parsing schema of the version 1.0 I can clearly see my app "dashboard(101)"
    # using sql dev I tried an application import. Using the following import options buildstatus =runonly, autoassign app_id and checked run install scripts
    # The install runs, but instead of using the upgrade script it simply runs the install script causing a lot of errors of course since the objects already exist in the schema
    # After this installation the application is visible in the workspace using a browser dashboard(102), however it remains invisible in sql developer where i can still only see dashboard(101)
    After this failure I decided to go ahead and try once more doing the same thing but now just not check run install scripts.
    To my amazement it still runs the install scripts???
    Now I have 3 application showing in the browser and still only 1 in sql developer
    Final problem with sql developer is that I choose to drop dashboard(101) it only deinstalls the application. It does not run the deinstall script for supporting objects included in dashboard(101).
    All this makes an easy deployment a real hassle, since the browser interface can't handle a run only apllication with supporting object as all (it simply doesn't run the install script) I need to use sql developer, which is then fine for the first install, but then doen't upgrade properly. Finaly deinstalling a run only application again is impossible from a workspace and does work from sql developer, but then you still have to do the deinstall of the db objects manually.
    I know as an apex admin I can work arround al this by switching the build status etc etc, but then again I can do anything if I'm apex admin and db sys.Point in having a single file deployment is allowing a novice user to easily install.
    Geert

    Hi Scott
    Thanks for the reply
    sspadafo wrote:
    Run Only applications don't show up in the application list because they should not be editable. But perhaps it could display an icon indicating that.In my opinion they should and they do. The single app that is appearing in the list in sql developer is run only. Having it here allows me to select drop amongst other functionality the browser interface currently still lacks. Even when I drop all apps and than reinstall them again it seems like I can only see 1 version of an app with the same name.
    sspadafo wrote:
    The problem you described where you can't use the Application Install wizard to install supporting objects if the application is set to Run Only should be fixed in the upcoming 3.1.2 release/patch.I've installed the patch and I'm afraid the patch is no good either. Indeed is has improved. After the app installs it shows the supporting object dialogue. But if you then select yes and press Next it does absolutely nothing and redirects tot the application showing Application not available for edit.
    So if you would be so kind to reopen bug 7286162
    So while I'm on this section in my opinion the following bugs exist/features are missing
    SQL Developer interface
    # Not all application for parsing schema are shown in connection explorer. It seems like it can multiple show apps with different names only not when you install the same app twice with different app_id's. Then it only show the lowest app_id.
    # Installing runonly app with supporting objects installs supporting object regardless of option selected
    # Installing runonly app with upgrade scripts ignores update scripts and runs install scripts regardless of "install supporting objects" checkbox's state
    # De installing app shows unpredictable behaviour for running deinstall scripts. It seemingly prompts random. Sometimes it does, sometimes it doesn't. When it does show I get behaviour like initially prompting for running deinstall script, failing to run deinstall script, causing neither app or objects to be dropped, on retry not showing prompt anymore and only dropping app.
    Browser interface
    # Installing a runonly app always finishes with a white page showing only Application not available for edit instead of showing a proper installation summary
    # Installing a runonly app still prevents installation of supporting objects
    # De installing a runonly application is not possible. Possible a button for de install could be included on page 4000:733
    # Unable to perform important application level task from workspace like changing status, alias, global notification, proxy \\      (which are all available in the sql developer interface and imho could all be added to page 400:733 of the browser interface)
    Hope this helps,
    Geert

  • ERR-7621 Could not determine workspace for application (:) on application..

    Hi.
    We have strange error starting appear in our application.
    ===========================================================
    Expecting p_company or wwv_flow_company cookie to contain security group id of application owner.
    Error ERR-7621 Could not determine workspace for application (:) on application accept.
    ===========================================================
    It happens when we are tabbing through the pages...
    Any help will be highly appreciated.

    mishkar - there is something going wrong with your HTTP facilities somewhere. See my responses at Re: ERR-7621 Could not determine workspace for application (:).. and ERR-7621 Could not determine workspace for application () on application
    Also your phrase "when we are tabbing through the pages" is extremely vague.
    Scott

  • You can't open the application "QuickBooks Application" because it is in a Time Machine backup.

    How I can restore QuickBooks aplication and back-up data from my time machine.

    I did read all the info supply in the previous link already, and it let me know how to restore files no aplication. I tried to do it as they explained w/o any success. I still get the message:"You can’t open the application “QuickBooks Application” because it is in a Time Machine backup."

  • Confusing prompt: Please close the following application Logtransport application (Logtransport2exe)

    I just downloaded the CC Premiere suite. When I update P-PRO and AF I get the following no apps are open -Please close the following application Logtransport application (Logtransport2exe)
    Intel® Xeon® 6-Core 12-Threads CPU 4.0 GHz Turbo
    - Workstation Main Board
    - 64 GB ECC DDR3 1600 2x Quad Channel Kit (8x 8GB)
    - nVidia Quadro K4000 3GB DDR5 Professional Graphics Card
    - 500 GB Solid State Drive (SSD) for OS & Applications
    - 1TB 7200 RPM 64MB Cache SATA 6.0GB/s Enterprise Level Drive
    - 2x DVD Burner 24X Speed SATA DVD-R, DVD+R, DVD-RW
    - Microsoft Windows 7 Professional 64-Bit Edition
    Specifications:
    Intel® Xeon® Processor E5 v2
    Liquid Cooling on CPU
    Intel X79 Chipset Workstation Main Board
    Quad Channel DDR3-1600 RAM up to 64GB
    Supports up to 4-way CrossFire or SLI GPU Configurations
    Supports SATA Raid 0, 1, 5, 10
    8-Channel Audio Onboard
    (4) Serial ATA 3GB/s Ports
    (6) Serial ATA 6GB/s Ports
    (2) Intel Gigabit Ethernet LAN (10/100/1000 Mbps)
    (4) PCI-Express x16 Slots
    (2) PCI-Express x8 Slots
    (10) USB 2.0 Ports - Back Panel
    (2) USB 3.0 Ports - Back Panel
    (2) eSATA 6Gb/s Ports - Back Panel
    (8) Audio Ports for HD Surround Channels - Back Panel
    Message was edited by: Kevin Monahan

    Hi nattate,
    Please go to task manager>processes and end the task which says Logtransport2exe. After closing the task try to update again.
    Regards,
    Vinay

  • Failed to create application CrystalAnalysisOLAP.Application.5

    when i open my CA, it gives me this error - failed to create application CrystalAnalysisOLAP.Application.5.  any thoughts why and how to resolve? thanks!

    Check the Rules Of engagement post and then add more info.

  • Maximum number of applications per application set

    Hello,
    I know maximum number of dimensions per application is 20 in OutlookSoft 4.2.
    What about maximum number of applications per application set?
    Regards,
    Hiroshi Yaji

    Hiroshi - I have not encountered a technical limit on the number of applications in an appset.  As a practical reality, performance and system administration will dictate how many apps an appset may contain. 
    On a related note, you could theoretically have more than 20 dimensions in an app.  However, I have only worked with one client who asked (needed?) an app with more than 12 dimensions.  In that case, usability was an issue due to the complexity in submitting data to an app with that many dimensions.
    Hope that helps,
    Jeff

  • When i try to submit an application with Application Loader, the wizard is blocked on "Send API itunes connect usage, waiting for response". Any idea ?

    When i try to submit an application with Application Loader, the wizard is blocked on "Send API itunes connect usage, waiting for response". Any idea ?

    Thank you, Vincent! It's still down for me, but at least I know someone had the same issue. Hoping it's going to work over here soon
    Best!

  • Log Name: Application Source: Application Hang Date: 17-Nov-14 14:50:41 Event ID: 1002 Task Category: (101) Level: Error Keywords: Classic User: N/A Computer: PC Description: The program wwahost.exe ver

    Log Name:      Application
    Source:        Application Hang
    Date:          17-Nov-14 14:50:41
    Event ID:      1002
    Task Category: (101)
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      PC
    Description:
    The program wwahost.exe version 6.3.9600.17031 stopped interacting with Windows and was closed. To see if more information about the problem is available, check the problem history in the Action Center control panel.
     Process ID: 186c
     Start Time: 01d00265068ca045
     Termination Time: 4294967295
     Application Path: C:\WINDOWS\syswow64\wwahost.exe
     Report Id: 5198babb-6e58-11e4-bec8-689423cdeae2
     Faulting package full name: Microsoft.SkypeApp_3.1.0.1005_x86__kzf8qxf38zg5c
     Faulting package-relative application ID: App
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Application Hang" />
        <EventID Qualifiers="0">1002</EventID>
        <Level>2</Level>
        <Task>101</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2014-11-17T12:50:41.000000000Z" />
        <EventRecordID>39947</EventRecordID>
        <Channel>Application</Channel>
        <Computer>PC</Computer>
        <Security />
      </System>
      <EventData>
        <Data>wwahost.exe</Data>
        <Data>6.3.9600.17031</Data>
        <Data>186c</Data>
        <Data>01d00265068ca045</Data>
        <Data>4294967295</Data>
        <Data>C:\WINDOWS\syswow64\wwahost.exe</Data>
        <Data>5198babb-6e58-11e4-bec8-689423cdeae2</Data>
        <Data>Microsoft.SkypeApp_3.1.0.1005_x86__kzf8qxf38zg5c</Data>
        <Data>App</Data>
        <Binary>430072006F00730073002D00700072006F00630065007300730000000000</Binary>
      </EventData>
    </Event>

    You forgot to tell us what is going on. What is the problem?

Maybe you are looking for

  • How to find out list of clob/blob tables in a schema

    Hi, I have tricky situation...i have 119 tables out of which 11 tables are clob/blob tables...is there any view where i can find out list of tables are clob/blob tables? (at schema level view means user_<>) -- Raman.

  • IPC 7.0 User-Exists

    Hi Experts, I'm trying to implement new User-Exits for our upgrade IPC 7.0. It seems like my registration went bad somewhere because when I run an appliation like CRMD_ORDER and create a new item the logging return with following message: Userexit (t

  • Permissions Metadata User for System Connection in CE 7.2

    Hi, I want to create a system connection in NWA to an R/3 system with WSIL as service source. The Metadata User has SAP_ALL and SAP_NEW. But when I ping the system, following error is displayed: u201CUser credentials are valid but user does not have

  • Toshiba Sattelite P20-404 Drive

    Hi, I have a mat****a dvd-ram uj811 drive in my notebook an after inserting a cd which it couldnt read, it stopped working (I think that was the reason). In the device manager it is marked as ready and working, but if I click on it in the explorer, t

  • SP2-0750: You may need to set ORACLE_HOME with instant client and sqlplus

    On an hp-ux 32 ,,, - i downloaded instant client from here http://www.oracle.com/technology/software/tech/oci/instantclient/htdocs/hpsoft.html - installed and set my shlib_path to directory where I extracted it. - running sqlplus comes up with this .