Runtime, Processes, getting Output, Problems

Hello,
i hope, you can help me with the following problem. I'm trying to get the output of processes from the Runtime.
It does fine with a command like "netstat -a". With a command like "ftp" or "telnet it does not work. I don't know why.
You can test my program, for i did summarize the problem in a short main method.
public class Test {
     public static void main(String args[]) {
          Runtime rt = Runtime.getRuntime();
          Process proc;
          try {
               // Das Konsolenkommando, das ausgef?hrt werden soll
            // String command = "cmd.exe /C netstat -a";          // Variante 1 funktioniert
               String command = "cmd.exe /C telnet";               // Variante 2 funktioniert nicht
               //String command = "cmd.exe /C ftp";                // Variante 3 funktioniert nicht
               // Prozess erzeugen
               proc = rt.exec (command);
               // Stream f?r Fehlermeldungen abh?ren
               StreamGobbler errorGobbler =
                    new StreamGobbler(proc.getErrorStream(), "ERROR");
               // Stream f?r normale Ausgabe abh?ren
               StreamGobbler outputGobbler =
                    new StreamGobbler(proc.getInputStream(), "OUTPUT");
               errorGobbler.start();
               outputGobbler.start();
               // Warten, bis der Prozess beendet ist
               proc.waitFor();
            // Ergebnis anzeigen
            System.out.println("RESULT: ");
               System.out.println(errorGobbler.buff.toString());
               System.out.println(outputGobbler.buff.toString());
          } catch (Exception ex) {
               ex.printStackTrace();
public class StreamGobbler extends Thread {
          InputStream is;
          String type;
          StringBuffer buff = new StringBuffer();
          StreamGobbler(InputStream is, String type) {
               this.is = is;
               this.type = type;
          public void run() {
               try {
                    InputStreamReader isr = new InputStreamReader(is);
                    BufferedReader br = new BufferedReader(isr);
                    String line = null;
                    while ((line = br.readLine()) != null)
                         buff.append(line + "\n");
               } catch (IOException ioe) {
                    ioe.printStackTrace();
     }

no i tried that already in an client-server-application. there WAS a delay, but it worked. But i had the same problem with such commands then. I simply get back nothing, althoug the command prints something on the console.
Unfortunately or luckily (its both, i think ;-)) i found just now that:
from http://burks.brighton.ac.uk/burks/language/java/jprogfaq/faq_d.htm
".. However, you cannot read output from some DOS commands on Windows 95/98. This is bug 4109888 at Sun, but it is actually a Microsoft bug/poor design. Windows programs that explicitly use a handle to the console ("CON" or "CON:") instead of stdin and stdout cannot be used as subprocesses to Java. The Win95 FTP program is an example of such a program. Windows provides no convenient way for Java to redirect the input and output of such processes from the console to input and output pipes. The only workaround is to use a different implementation of the program that does not use the console directly."
Probably that's my problem, or?

Similar Messages

  • Cats process before output problem

    Hi ,
       Can any one give me solution for cats?
    Actually i have taken the personal no and infotype  2001 and sty is Cl & i am creating the half day CL(4.5),
    total working hors is 9 hours.
    in my case problem is that when i enter with cat2 and gives the particular date its not effecting the half day . And if i am suppose to change that time (like 1, 2...4) at that time its throwing the error message (Already Cl leave is assigend that particular date ) and after that its updating.
    but my case is PBO (process before output) it should reflect.
    please Give me u r valuable suggestions .

    Hi,
    Elaborate your problem.
    Regards
    Team Member.

  • SharePoint Designer workflow gives Claims Authentication error for some users. Problem getting output claims identity. The specified user or domain group was not found.

    We have a SharePoint Enterprise 2013 system at RTM level.  We've installed Workflow Manager 1.0 by following the steps at
    http://technet.microsoft.com/en-us/library/jj658588.aspx.  For the final step of Validating the Installation we created a simple list-level workflow and verified that the workflow
    is invoked successfully.  This is working successfully, but only for a single user.  If other users in the same site collection try to invoke the workflow on this same list we get the ULS Log Error:
    Claims Authentication          af3zp Unexpected STS Call Claims Saml: Problem getting output claims identity. Exception: 'Microsoft.SharePoint.SPException: The specified user or domain group was not found. --->
    System.Security.Principal.IdentityNotMappedException: Some or all identity references could not be translated.
    followed by:
    Failed to issue new security token. Exception: Microsoft.SharePoint.SPException: The specified user or domain group was not found. ---> System.Security.Principal.IdentityNotMappedException: Some or all identity references could not be translated.
    (as details below).
    All accounts that are attempting to use the Test Workflow (both working and non-working user accounts) are valid AD accounts and are included in the User Profile Sync that runs nightly.  All have Contribute or Design permission level (and for testing,
    Full Control). 
    What could cause the Claims Authentication to fail when certain users attempt to launch the workflow?
    Thank you for your response.
    Jim Mac.
    08/29/2013 10:22:51.94  w3wp.exe (0x2020)                        0x26D8 SharePoint Foundation        
     Claims Authentication          af3zp Unexpected STS Call Claims Saml: Problem getting output claims identity. Exception: 'Microsoft.SharePoint.SPException: The specified user or domain group was
    not found. ---> System.Security.Principal.IdentityNotMappedException: Some or all identity references could not be translated.     at System.Security.Principal.NTAccount.Translate(IdentityReferenceCollection sourceAccounts, Type targetType,
    Boolean forceSuccess)     at System.Security.Principal.NTAccount.Translate(Type targetType)     at Microsoft.SharePoint.Administration.Claims.SPClaimProviderManager.GetProviderUserKeyClaim(IClaimsIdentity claimsIdentity,
    SPClaim loginClaim)     --- End of inner exception stack trace ---     at Microsoft.SharePoint.Administration.Claims.SPClaimProviderManager.GetProviderUserKeyClaim(IClaimsIdentity claimsIdent... 94aa5c2d-fa45-9b83-b203-a92b20102583
    08/29/2013 10:22:51.94* w3wp.exe (0x2020)                        0x26D8 SharePoint Foundation        
     Claims Authentication          af3zp Unexpected ...ity, SPClaim loginClaim)     at Microsoft.SharePoint.Administration.Claims.SPClaimProviderManager.GetProviderUserKey(String
    encodedIdentityClaimSuffix)     at Microsoft.SharePoint.IdentityModel.SPSecurityTokenService.CreateTokenCacheReferenceFromTokenSignature(SPRequestInfo requestInfo, IClaimsIdentity identity)     at Microsoft.SharePoint.IdentityModel.SPSecurityTokenService.AugmentTokenCacheReferenceClaim(SPRequestInfo
    requestInfo, IClaimsIdentity identity)     at Microsoft.SharePoint.IdentityModel.SPSecurityTokenService.AugmentOutputIdentityForRequest(SPRequestInfo requestInfo, IClaimsIdentity outputIdentity)     at Microsoft.SharePoint.IdentityModel.SPSecurityTokenService.GetOutputClaimsIdentity(IClaimsPrincipal
    principal, RequestSecurityToken request, Scope scope)'. 94aa5c2d-fa45-9b83-b203-a92b20102583
    08/29/2013 10:22:51.94  w3wp.exe (0x2020)                        0x26D8 SharePoint Foundation        
     Claims Authentication          fo1t Monitorable STS Call: Failed to issue new security token. Exception: Microsoft.SharePoint.SPException: The specified user or domain group was not found. --->
    System.Security.Principal.IdentityNotMappedException: Some or all identity references could not be translated.     at System.Security.Principal.NTAccount.Translate(IdentityReferenceCollection sourceAccounts, Type targetType, Boolean forceSuccess)    
    at System.Security.Principal.NTAccount.Translate(Type targetType)     at Microsoft.SharePoint.Administration.Claims.SPClaimProviderManager.GetProviderUserKeyClaim(IClaimsIdentity claimsIdentity, SPClaim loginClaim)    
    --- End of inner exception stack trace ---     at Microsoft.SharePoint.Administration.Claims.SPClaimProviderManager.GetProviderUserKeyClaim(IClaimsIdentity claimsIdentity, SPClaim logi... 94aa5c2d-fa45-9b83-b203-a92b20102583
    08/29/2013 10:22:51.94* w3wp.exe (0x2020)                        0x26D8 SharePoint Foundation        
     Claims Authentication          fo1t Monitorable ...nClaim)     at Microsoft.SharePoint.Administration.Claims.SPClaimProviderManager.GetProviderUserKey(String encodedIdentityClaimSuffix)    
    at Microsoft.SharePoint.IdentityModel.SPSecurityTokenService.CreateTokenCacheReferenceFromTokenSignature(SPRequestInfo requestInfo, IClaimsIdentity identity)     at Microsoft.SharePoint.IdentityModel.SPSecurityTokenService.AugmentTokenCacheReferenceClaim(SPRequestInfo
    requestInfo, IClaimsIdentity identity)     at Microsoft.SharePoint.IdentityModel.SPSecurityTokenService.AugmentOutputIdentityForRequest(SPRequestInfo requestInfo, IClaimsIdentity outputIdentity)     at Microsoft.SharePoint.IdentityModel.SPSecurityTokenService.GetOutputClaimsIdentity(IClaimsPrincipal
    principal, RequestSecurityToken request, Scope scope)     at Microsoft.IdentityModel.Securi... 94aa5c2d-fa45-9b83-b203-a92b20102583
    08/29/2013 10:22:51.94* w3wp.exe (0x2020)                        0x26D8 SharePoint Foundation        
     Claims Authentication          fo1t Monitorable ...tyTokenService.SecurityTokenService.Issue(IClaimsPrincipal principal, RequestSecurityToken request)     at Microsoft.SharePoint.IdentityModel.SPSecurityTokenService.Issue(IClaimsPrincipal
    principal, RequestSecurityToken request) 94aa5c2d-fa45-9b83-b203-a92b20102583

    Hi Aries,
    I am facing issue with work flow where Workflow goes to Suspend mode.
    I am facing an issue with SP2013 Custom Workflow developed using Visual Studio 2012.
    Objective of the Custom workflow: User fills the form and submit, list get updated and workflow will initiate and go for the process.
    Issue: After the deployment of WF, for first time when user is filling the form and submit, list is getting updated. But the Workflow Goes to "Suspend" mode. (
    This Custom Workflow has a configuration file where we are providing other details including ID of Impersonator (farm is running under Claim Based Authentication).
    Work flow works fine once when the Impersonator initiate the workflow (Fill the form and submit for approval) and everything works fine after that.
    Following steps are already performed
    1.Make sure User profile synchronization is started.
    2.Make sure the user is not the SharePoint system user.
    3.Make sure the user by whom you are logged is available in User Profile list.
    4.Step full synchronization of User Profile Application.
    From the ULS logs it seems the user's security token from the STS service and User profile service is not being issued.
    Appreciate any thoughts or solution.
    Following are the log files.
    <-------------------------------Information taken from "http://YYYY.XXXXX.com/sites/xxxx/_layouts/15/wrkstat.aspx" where it is showing workflow status as "Suspend"------->
    http://yyyy.XXXX.com/sites/xxxx/_vti_bin/client.svc/sp.utilities.utility.ResolvePrincipalInCurrentcontext(input=@ParamUser,scopes='15',sources='15',inputIsEmailOnly='false',addToUserInfoList='False')?%40ParamUser='i%3A0%23.w%7CXXXXX%5Csps_biscomdev'
    Correlation Id: f5bd8793-a53c-2127-bfb1-70bc172425e8 Instance Id: 14a985a0-60c8-42db-a42c-c752190b8106
    RequestorId: f5bd8793-a53c-2127-0000-000000000000. Details: RequestorId: f5bd8793-a53c-2127-0000-000000000000. Details: An unhandled exception occurred during the execution of the workflow instance. Exception details: System.ApplicationException: HTTP 401
    {"error_description":"The server was unable to process the request due to an internal error. For more information about the error, either turn on IncludeExceptionDetailInFaults (either from ServiceBehaviorAttribute or from the <serviceDebug>
    configuration behavior) on the server in order to send the exception information back to the client, or turn on tracing as per the Microsoft .NET Framework SDK documentation and inspect the server trace logs."} {"x-ms-diagnostics":["3001000;reason=\"There
    has been an error authenticating the request.\";category=\"invalid_client\""],"SPRequestGuid":["f5bd8793-a53c-2127-8654-672758a68234"],"request-id":["f5bd8793-a53c-2127-8654-672758a68234"],"X-FRAME-OPTIONS":["SAMEORIGIN"],"SPRequestDuration":["34"],"SPIisLatency":["0"],"Server":["Microsoft-IIS\/7.5"],"WWW-Authenticate":["Bearer
    realm=\"b14e1e0f-257f-42ec-a92d-377479e0ec8d\",client_id=\"00000003-0000-0ff1-ce00-000000000000\",trusted_issuers=\"00000005-0000-0000-c000-000000000000@*,[email protected]79e0ec8d\"","NTLM"],"X-Powered-By":["ASP.NET"],"MicrosoftSharePointTeamServices":["15.0.0.4420"],"X-Content-Type-Options":["nosniff"],"X-MS-InvokeApp":["1;
    RequireReadOnly"],"Date":["Fri, 10 Apr 2015 19:48:07 GMT"]} at Microsoft.Activities.Hosting.Runtime.Subroutine.SubroutineChild.Execute(CodeActivityContext context) at System.Activities.CodeActivity.InternalExecute(ActivityInstance
    instance, ActivityExecutor executor, BookmarkManager bookmarkManager) at System.Activities.Runtime.ActivityExecutor.ExecuteActivityWorkItem.ExecuteBody(ActivityExecutor executor, BookmarkManager bookmarkManager, Location resultLocation)
    ULS Log
    04/16/2015 15:22:03.70 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation Authentication Authorization agb9s Medium OAuth request. IsAuthenticated=False, UserIdentityName=, ClaimsCount=0 f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.70 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation Runtime ajd6k Verbose Value for isAnonymousAllowed is : False f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.70 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation Runtime ajd6l Verbose Value for checkAuthenticationCookie is : True f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.70 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation General 6t8b Verbose Looking up context  site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in the farm SharePoint_Config_QA f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.70 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation General 6t8d Verbose Looking up the additional information about the typical site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.71 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation General 6t8f Verbose Site lookup is replacing
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly with the alternate access url
    http://inetdev. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.71 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation General 6t8g Verbose Looking up typical site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in web application SPWebApplication Name=SPDEV - 80. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.71 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation General 6t8h Verbose Found typical site /sites/testrpa2 (407ba20c-079b-4b99-9e70-f86e6e13ddde) in web application SPWebApplication Name=SPDEV - 80. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.71 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation General 6t8b Verbose Looking up context  site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in the farm SharePoint_Config_QA f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.71 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation General 6t8d Verbose Looking up the additional information about the typical site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.71 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation General 6t8f Verbose Site lookup is replacing
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly with the alternate access url
    http://inetdev. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.71 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation General 6t8g Verbose Looking up typical site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in web application SPWebApplication Name=SPDEV - 80. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.71 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation General 6t8h Verbose Found typical site /sites/testrpa2 (407ba20c-079b-4b99-9e70-f86e6e13ddde) in web application SPWebApplication Name=SPDEV - 80. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.71 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (Request (GET:http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly)). Execution Time=18.7574119057031 f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.71 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation General 6t8b Verbose Looking up context  site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in the farm SharePoint_Config_QA f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.71 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation General 6t8d Verbose Looking up the additional information about the typical site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.71 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation General 6t8f Verbose Site lookup is replacing
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly with the alternate access url
    http://inetdev. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.71 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation General 6t8g Verbose Looking up typical site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in web application SPWebApplication Name=SPDEV - 80. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.71 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation General 6t8h Verbose Found typical site /sites/testrpa2 (407ba20c-079b-4b99-9e70-f86e6e13ddde) in web application SPWebApplication Name=SPDEV - 80. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.73 PowerShell.exe (0x29BC) 0x2B9C SharePoint Foundation General narq Verbose Releasing SPRequest with allocation Id {AF89E1D7-C47F-467B-8FD4-D7DC768820EE} 
    04/16/2015 15:22:03.73 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8b Verbose Looking up context  site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in the farm SharePoint_Config_QA 
    04/16/2015 15:22:03.73 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8d Verbose Looking up the additional information about the typical site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly. 
    04/16/2015 15:22:03.73 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8f Verbose Site lookup is replacing
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly with the alternate access url
    http://inetdev. 
    04/16/2015 15:22:03.73 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8g Verbose Looking up typical site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in web application SPWebApplication Name=SPDEV - 80. 
    04/16/2015 15:22:03.73 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8h Verbose Found typical site /sites/testrpa2 (407ba20c-079b-4b99-9e70-f86e6e13ddde) in web application SPWebApplication Name=SPDEV - 80. 
    04/16/2015 15:22:03.73 w3wp.exe (0x1C74) 0x183C SharePoint Foundation Monitoring nasq Medium Entering monitored scope (Request (GET:http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly)). Parent No 
    04/16/2015 15:22:03.73 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8b Verbose Looking up context  site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in the farm SharePoint_Config_QA 
    04/16/2015 15:22:03.73 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8d Verbose Looking up the additional information about the typical site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly. 
    04/16/2015 15:22:03.73 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8f Verbose Site lookup is replacing
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly with the alternate access url
    http://inetdev. 
    04/16/2015 15:22:03.73 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8g Verbose Looking up typical site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in web application SPWebApplication Name=SPDEV - 80. 
    04/16/2015 15:22:03.73 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8h Verbose Found typical site /sites/testrpa2 (407ba20c-079b-4b99-9e70-f86e6e13ddde) in web application SPWebApplication Name=SPDEV - 80. 
    04/16/2015 15:22:03.73 w3wp.exe (0x1C74) 0x183C SharePoint Foundation Logging Correlation Data xmnv Medium Name=Request (GET:http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly) f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.74 w3wp.exe (0x1C74) 0x183C SharePoint Foundation Monitoring nasq Medium Entering monitored scope (Application Authentication Pipeline). Parent Request (GET:http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly) f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.74 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8b Verbose Looking up context  site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in the farm SharePoint_Config_QA f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.74 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8d Verbose Looking up the additional information about the typical site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.74 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8f Verbose Site lookup is replacing
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly with the alternate access url
    http://inetdev. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.74 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8g Verbose Looking up typical site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in web application SPWebApplication Name=SPDEV - 80. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.74 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8h Verbose Found typical site /sites/testrpa2 (407ba20c-079b-4b99-9e70-f86e6e13ddde) in web application SPWebApplication Name=SPDEV - 80. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.75 w3wp.exe (0x1C74) 0x183C SharePoint Foundation Claims Authentication ah25l Medium SPJsonWebSecurityBaseTokenHandler: ValidateActorIsSelfIssuer! Issuer '00000005-0000-0000-c000-000000000000' is not self
    issuer. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.75 w3wp.exe (0x1C74) 0x183C SharePoint Foundation Monitoring nasq Medium Entering monitored scope (Getting Site Subscription Id). Parent [S2S] Getting token from STS and setting Thread Identity f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.75 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8b Verbose Looking up context  site
    http://inetdev/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in the farm SharePoint_Config_QA f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.75 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8d Verbose Looking up the additional information about the typical site
    http://inetdev/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.75 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8f Verbose Site lookup is replacing
    http://inetdev/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly with the alternate access url
    http://inetdev. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.75 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8g Verbose Looking up typical site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in web application SPWebApplication Name=SPDEV - 80. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.75 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8h Verbose Found typical site /sites/testrpa2 (407ba20c-079b-4b99-9e70-f86e6e13ddde) in web application SPWebApplication Name=SPDEV - 80. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.75 w3wp.exe (0x1C74) 0x183C SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (Getting Site Subscription Id). Execution Time=0.341314329055788 f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.75 w3wp.exe (0x1C74) 0x183C SharePoint Foundation Monitoring nasq Medium Entering monitored scope (Reading token from Cache using token signature). Parent [S2S] Getting token from STS and setting Thread
    Identity f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.76 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General ajji6 High Unable to write SPDistributedCache call usage entry. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.76 w3wp.exe (0x1C74) 0x183C SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (Reading token from Cache using token signature). Execution Time=7.5931438213516 f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.76 w3wp.exe (0x1C74) 0x183C SharePoint Foundation Application Authentication ajwpx Medium SPApplicationAuthenticationModule: Failed to build cache key for user  f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.76 w3wp.exe (0x1C74) 0x183C SharePoint Foundation Topology aeayb Medium SecurityTokenServiceSendRequest: RemoteAddress: 'http://localhost:32843/SecurityTokenServiceApplication/securitytoken.svc' Channel:
    'Microsoft.IdentityModel.Protocols.WSTrust.IWSTrustChannelContract' Action: 'http://docs.oasis-open.org/ws-sx/ws-trust/200512/RST/Issue' MessageId: 'urn:uuid:fd5eba94-c39d-4667-89bd-089411c87f09' f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.77 w3wp.exe (0x0C48) 0x1318 SharePoint Foundation Topology aeax9 Medium SecurityTokenServiceReceiveRequest: LocalAddress: 'http://c1vspwfe01.vitas.com:32843/SecurityTokenServiceApplication/securitytoken.svc'
    Channel: 'System.ServiceModel.Channels.ServiceChannel' Action: 'http://docs.oasis-open.org/ws-sx/ws-trust/200512/RST/Issue' MessageId: 'urn:uuid:fd5eba94-c39d-4667-89bd-089411c87f09' f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.77 w3wp.exe (0x0C48) 0x1318 SharePoint Foundation Monitoring nasq Medium Entering monitored scope (ExecuteSecurityTokenServiceOperationServer). Parent No f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.78 w3wp.exe (0x0C48) 0x1318 SharePoint Foundation Claims Authentication ah25l Medium SPJsonWebSecurityBaseTokenHandler: ValidateActorIsSelfIssuer! Issuer '00000005-0000-0000-c000-000000000000' is not self
    issuer. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.78 w3wp.exe (0x0C48) 0x1318 SharePoint Foundation General narq Verbose Releasing SPRequest with allocation Id {F17590DF-49D9-439D-86BC-5AE6416BB765} f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.78 w3wp.exe (0x0C48) 0x1318 SharePoint Foundation General 6t8b Verbose Looking up  site
    http://inetdev/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in the farm SharePoint_Config_QA f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.78 w3wp.exe (0x0C48) 0x1318 SharePoint Foundation General 6t8d Verbose Looking up the additional information about the typical site
    http://inetdev/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.78 w3wp.exe (0x0C48) 0x1318 SharePoint Foundation General 6t8f Verbose Site lookup is replacing
    http://inetdev/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly with the alternate access url
    http://inetdev. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.78 w3wp.exe (0x0C48) 0x1318 SharePoint Foundation General 6t8g Verbose Looking up typical site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in web application SPWebApplication Name=SPDEV - 80. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.78 w3wp.exe (0x0C48) 0x1318 SharePoint Foundation General 6t8h Verbose Found typical site /sites/testrpa2 (407ba20c-079b-4b99-9e70-f86e6e13ddde) in web application SPWebApplication Name=SPDEV - 80. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.78 w3wp.exe (0x0C48) 0x1318 SharePoint Foundation General narq Verbose Releasing SPRequest with allocation Id {3847D5A4-15C6-4AF9-B062-E22BB555DF4F} f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.78 w3wp.exe (0x0C48) 0x1318 SharePoint Portal Server User Profiles ae0s1 High Identity claims mapped to '0' user profiles. Claims: [nameid: '', nii: 'windows', upn: '', smtp: '', sip: ''], User Profiles: f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.78 w3wp.exe (0x0C48) 0x1318 SharePoint Portal Server User Profiles ae0sr Unexpected UserProfileException caught.. Exception Microsoft.Office.Server.Security.UserProfileNoUserFoundException: 3001002;reason=The
    incoming identity is not mapped to any user profile account in SharePoint. Possible cause is that no user profiles are created in user profile database. Contact your administrator.     at Microsoft.Office.Server.Security.UserProfileIdentityClaimMapper.GetSingleUserProfileFromClaimsList(UserProfileManager
    upManager, IEnumerable`1 identityClaims)     at Microsoft.Office.Server.Security.UserProfileIdentityClaimMapper.<>c__DisplayClass2.<GetMappedIdentityClaim>b__0() is thrown. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.78 w3wp.exe (0x0C48) 0x1318 SharePoint Portal Server User Profiles ae0su High The set of claims could not be mapped to a single user identity. Exception 3001002;reason=The incoming identity is not mapped
    to any user profile account in SharePoint. Possible cause is that no user profiles are created in user profile database. Contact your administrator. has occured.  f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.78 w3wp.exe (0x0C48) 0x1318 SharePoint Foundation Claims Authentication ae0tc High The registered mappered failed to resolve to one identity claim. Exception: Microsoft.Office.Server.Security.UserProfileNoUserFoundException:
    3001002;reason=The incoming identity is not mapped to any user profile account in SharePoint. Possible cause is that no user profiles are created in user profile database. Contact your administrator.     at Microsoft.Office.Server.Security.UserProfileIdentityClaimMapper.GetSingleUserProfileFromClaimsList(UserProfileManager
    upManager, IEnumerable`1 identityClaims)     at Microsoft.Office.Server.Security.UserProfileIdentityClaimMapper.<>c__DisplayClass2.<GetMappedIdentityClaim>b__0()     at Microsoft.SharePoint.SPSecurity.<>c__DisplayClass5.<RunWithElevatedPrivileges>b__3()    
    at Microsoft.SharePoint.Utilities.SecurityContext.RunAsProcess(CodeToRunElevated secureCode)     at Microsoft.SharePoint.SPSecurity.RunWithElevatedPrivileges(WaitCallback secureCode, Object param)     at Microsoft.SharePoint.SPSecurity.RunWithElevatedPrivileges(CodeToRunElevated
    secureCode)     at Microsoft.Office.Server.Security.UserProfileIdentityClaimMapper.GetMappedIdentityClaim(Uri context, IEnumerable`1 identityClaims)     at Microsoft.SharePoint.IdentityModel.SPIdentityClaimMapperOperations.GetClaimFromExternalMapper(Uri
    contextUri, List`1 claims) f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.78 w3wp.exe (0x0C48) 0x1318 SharePoint Foundation Claims Authentication af3zp Unexpected STS Call Claims Saml: Problem getting output claims identity. Exception: 'Microsoft.Office.Server.Security.UserProfileNoUserFoundException:
    3001002;reason=The incoming identity is not mapped to any user profile account in SharePoint. Possible cause is that no user profiles are created in user profile database. Contact your administrator.     at Microsoft.Office.Server.Security.UserProfileIdentityClaimMapper.GetSingleUserProfileFromClaimsList(UserProfileManager
    upManager, IEnumerable`1 identityClaims)     at Microsoft.Office.Server.Security.UserProfileIdentityClaimMapper.<>c__DisplayClass2.<GetMappedIdentityClaim>b__0()     at Microsoft.SharePoint.SPSecurity.<>c__DisplayClass5.<RunWithElevatedPrivileges>b__3()    
    at Microsoft.SharePoint.Utilities.SecurityContext.RunAsProcess(CodeToRunElevated secureCode)     at Microsoft.SharePoint.SPSecurity.RunWithElevatedPrivileges(WaitCallback secureCode, Object param)     at Microsoft.SharePoint.SPSecurity.RunWithElevatedPrivileges(CodeToRunElevated
    secureCode)     at Microsoft.Office.Server.Security.UserProfileIdentityClaimMapper.GetMappedIdentityClaim(Uri context, IEnumerable`1 identityClaims)     at Microsoft.SharePoint.IdentityModel.SPIdentityClaimMapperOperations.GetClaimFromExternalMapper(Uri
    contextUri, List`1 claims)     at Microsoft.SharePoint.IdentityModel.SPIdentityClaimMapperOperations.ResolveUserIdentityClaim(Uri contextUri, ClaimCollection inputClaims)     at Microsoft.SharePoint.IdentityModel.SPIdentityClaimMapperOperations.GetIdentityClaim(Uri
    contextUri, ClaimCollection inputClaims, SPCallingIdentityType callerType)     at Microsoft.SharePoint.IdentityModel.SPSecurityTokenService.GetLogonIdentityClaim(SPRequestInfo requestInfo, IClaimsIdentity inputIdentity, IClaimsIdentity
    outputIdentity, SPCallingIdentityType callerType)     at Microsoft.SharePoint.IdentityModel.SPSecurityTokenService.EnsureSharePointClaims(SPRequestInfo requestInfo, IClaimsIdentity outputIdentity, SPCallingIdentityType callerType)    
    at Microsoft.SharePoint.IdentityModel.SPSecurityTokenService.AugmentOutputIdentityForRequest(SPRequestInfo requestInfo, IClaimsIdentity outputIdentity)     at Microsoft.SharePoint.IdentityModel.SPSecurityTokenService.GetOutputClaimsIdentity(IClaimsPrincipal
    principal, RequestSecurityToken request, Scope scope)'. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.78 w3wp.exe (0x0C48) 0x1318 SharePoint Foundation Claims Authentication fo1t Monitorable STS Call: Failed to issue new security token. Exception: Microsoft.Office.Server.Security.UserProfileNoUserFoundException:
    3001002;reason=The incoming identity is not mapped to any user profile account in SharePoint. Possible cause is that no user profiles are created in user profile database. Contact your administrator.     at Microsoft.Office.Server.Security.UserProfileIdentityClaimMapper.GetSingleUserProfileFromClaimsList(UserProfileManager
    upManager, IEnumerable`1 identityClaims)     at Microsoft.Office.Server.Security.UserProfileIdentityClaimMapper.<>c__DisplayClass2.<GetMappedIdentityClaim>b__0()     at Microsoft.SharePoint.SPSecurity.<>c__DisplayClass5.<RunWithElevatedPrivileges>b__3()    
    at Microsoft.SharePoint.Utilities.SecurityContext.RunAsProcess(CodeToRunElevated secureCode)     at Microsoft.SharePoint.SPSecurity.RunWithElevatedPrivileges(WaitCallback secureCode, Object param)     at Microsoft.SharePoint.SPSecurity.RunWithElevatedPrivileges(CodeToRunElevated
    secureCode)     at Microsoft.Office.Server.Security.UserProfileIdentityClaimMapper.GetMappedIdentityClaim(Uri context, IEnumerable`1 identityClaims)     at Microsoft.SharePoint.IdentityModel.SPIdentityClaimMapperOperations.GetClaimFromExternalMapper(Uri
    contextUri, List`1 claims)     at Microsoft.SharePoint.IdentityModel.SPIdentityClaimMapperOperations.ResolveUserIdentityClaim(Uri contextUri, ClaimCollection inputClaims)     at Microsoft.SharePoint.IdentityModel.SPIdentityClaimMapperOperations.GetIdentityClaim(Uri
    contextUri, ClaimCollection inputClaims, SPCallingIdentityType callerType)     at Microsoft.SharePoint.IdentityModel.SPSecurityTokenService.GetLogonIdentityClaim(SPRequestInfo requestInfo, IClaimsIdentity inputIdentity, IClaimsIdentity
    outputIdentity, SPCallingIdentityType callerType)     at Microsoft.SharePoint.IdentityModel.SPSecurityTokenService.EnsureSharePointClaims(SPRequestInfo requestInfo, IClaimsIdentity outputIdentity, SPCallingIdentityType callerType)    
    at Microsoft.SharePoint.IdentityModel.SPSecurityTokenService.AugmentOutputIdentityForRequest(SPRequestInfo requestInfo, IClaimsIdentity outputIdentity)     at Microsoft.SharePoint.IdentityModel.SPSecurityTokenService.GetOutputClaimsIdentity(IClaimsPrincipal
    principal, RequestSecurityToken request, Scope scope)     at Microsoft.IdentityModel.SecurityTokenService.SecurityTokenService.Issue(IClaimsPrincipal principal, RequestSecurityToken request)     at Microsoft.SharePoint.IdentityModel.SPSecurityTokenService.Issue(IClaimsPrincipal
    principal, RequestSecurityToken request) f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.79 w3wp.exe (0x0C48) 0x1318 SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (ExecuteSecurityTokenServiceOperationServer). Execution Time=17.1551132895382 f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.79 w3wp.exe (0x1C74) 0x183C SharePoint Foundation Claims Authentication fsq7 High SPSecurityContext: Request for security token failed with exception: System.ServiceModel.FaultException: The server was
    unable to process the request due to an internal error.  For more information about the error, either turn on IncludeExceptionDetailInFaults (either from ServiceBehaviorAttribute or from the <serviceDebug> configuration behavior) on the server in
    order to send the exception information back to the client, or turn on tracing as per the Microsoft .NET Framework SDK documentation and inspect the server trace logs.     at Microsoft.IdentityModel.Protocols.WSTrust.WSTrustChannel.ReadResponse(Message
    response)     at Microsoft.IdentityModel.Protocols.WSTrust.WSTrustChannel.Issue(RequestSecurityToken rst, RequestSecurityTokenResponse& rstr)     at Microsoft.IdentityModel.Protocols.WSTrust.WSTrustChannel.Issue(RequestSecurityToken
    rst)     at Microsoft.SharePoint.SPSecurityContext.SecurityTokenForContext(Uri context, Boolean bearerToken, SecurityToken onBehalfOf, SecurityToken actAs, SecurityToken delegateTo, SPRequestSecurityTokenProperties properties) f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.79 w3wp.exe (0x1C74) 0x183C SharePoint Foundation Claims Authentication 8306 Critical An exception occurred when trying to issue security token: The server was unable to process the request due to an internal
    error.  For more information about the error, either turn on IncludeExceptionDetailInFaults (either from ServiceBehaviorAttribute or from the <serviceDebug> configuration behavior) on the server in order to send the exception information back to
    the client, or turn on tracing as per the Microsoft .NET Framework SDK documentation and inspect the server trace logs.. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.79 w3wp.exe (0x1C74) 0x183C SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (Application Authentication Pipeline). Execution Time=52.3525336320678 f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.79 w3wp.exe (0x1C74) 0x183C SharePoint Foundation Application Authentication ajezs High SPApplicationAuthenticationModule: Error authenticating request, Error details { Header: {0}, Body: {1} }.  Available
    parameters: 3001000;reason="There has been an error authenticating the request.";category="invalid_client" {"error_description":"The server was unable to process the request due to an internal error.  For more information
    about the error, either turn on IncludeExceptionDetailInFaults (either from ServiceBehaviorAttribute or from the <serviceDebug> configuration behavior) on the server in order to send the exception information back to the client, or turn on tracing as
    per the Microsoft .NET Framework SDK documentation and inspect the server trace logs."} . f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.79 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 8nca Medium Application error when access /sites/testrpa2/_vti_bin/client.svc, Error=The server was unable to process the request due to an internal
    error.  For more information about the error, either turn on IncludeExceptionDetailInFaults (either from ServiceBehaviorAttribute or from the <serviceDebug> configuration behavior) on the server in order to send the exception information back to
    the client, or turn on tracing as per the Microsoft .NET Framework SDK documentation and inspect the server trace logs.   at Microsoft.IdentityModel.Protocols.WSTrust.WSTrustChannel.ReadResponse(Message response)     at Microsoft.IdentityModel.Protocols.WSTrust.WSTrustChannel.Issue(RequestSecurityToken
    rst, RequestSecurityTokenResponse& rstr)     at Microsoft.IdentityModel.Protocols.WSTrust.WSTrustChannel.Issue(RequestSecurityToken rst)     at Microsoft.SharePoint.SPSecurityContext.SecurityTokenForContext(Uri context,
    Boolean bearerToken, SecurityToken onBehalfOf, SecurityToken actAs, SecurityToken delegateTo, SPRequestSecurityTokenProperties properties)     at Microsoft.SharePoint.SPSecurityContext.SecurityTokenForApplicationAuthentication(Uri context,
    SecurityToken onBehalfOf)     at Microsoft.SharePoint.IdentityModel.SPApplicationAuthenticationModule.<>c__DisplayClass4.<GetLocallyIssuedToken>b__3()     at Microsoft.SharePoint.Utilities.SecurityContext.RunAsProcess(CodeToRunElevated
    secureCode)     at Microsoft.SharePoint.IdentityModel.SPApplicationAuthenticationModule.ConstructIClaimsPrincipalAndSetThreadIdentity(HttpApplication httpApplication, HttpContext httpContext, SPFederationAuthenticationModule fam)    
    at Microsoft.SharePoint.IdentityModel.SPApplicationAuthenticationModule.AuthenticateRequest(Object sender, EventArgs e)     at System.Web.HttpApplication.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()    
    at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.79 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8b Verbose Looking up context  site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in the farm SharePoint_Config_QA f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.79 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8d Verbose Looking up the additional information about the typical site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.80 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8f Verbose Site lookup is replacing
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly with the alternate access url
    http://inetdev. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.80 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8g Verbose Looking up typical site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in web application SPWebApplication Name=SPDEV - 80. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.80 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8h Verbose Found typical site /sites/testrpa2 (407ba20c-079b-4b99-9e70-f86e6e13ddde) in web application SPWebApplication Name=SPDEV - 80. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.80 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8b Verbose Looking up context  site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in the farm SharePoint_Config_QA f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.80 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8d Verbose Looking up the additional information about the typical site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.80 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8f Verbose Site lookup is replacing
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly with the alternate access url
    http://inetdev. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.80 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8g Verbose Looking up typical site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in web application SPWebApplication Name=SPDEV - 80. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.80 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8h Verbose Found typical site /sites/testrpa2 (407ba20c-079b-4b99-9e70-f86e6e13ddde) in web application SPWebApplication Name=SPDEV - 80. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.80 w3wp.exe (0x1C74) 0x183C SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (Request (GET:http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly)). Execution Time=62.2890618779761 f5bd8793-a53c-2127-8485-418c67f110f6
    Regards
    Sakti

  • Problem getting output in Excel

    Hi!
    I'm having problems with getting output in excel.
    I generated report that gives me xml and it was ok.
    Then I started concurrent to merge template and this xml and chosed Excel as output.
    When I try to open it in IE all I'm getting is
    End tag 'p' does not match the start tag 'a'. Error processing resource 'http://testserver.hlutrija.hr:8001/OA_CGI/FNDWRR.e...
    <td class="c2"><p class="c8"><a name="Text35" id="Text35"><a name="Text34" id="Text34"><span cla...
    When I try to view output from Firefox(it's more forgiving for incorrect xml then IE) it opened the whole document as a text (no xml, no excel but text - I saw that on a page info).
    Anyway I realized that indeed generated xml wasn't correct since one <a tag wasn't closed.
    But I tried to copy/paste to text editor and save as .xls file and it opened it OK.
    But this certainly isn't the solution you would wan't to offer to a client.
    On this instance XML is 5.0.
    I tried bunch of things to make it open directly in Excel (I believe that then it wouldn't have any problems - ie when I used preview on defining template it offered me to open or save in Excel and I got what I wanted).
    I tried to define Viewer Options (added applications/vnd.ms-excel for XML, HTML, Text Desc: Microsoft Excel), set the profile Viewer:Application for HTML/XML/Text to Microsoft Excel). But that didn't help either.
    I even tried defining new Profile -> Viewer:Application for Excel based on similar Profiles. But this also didn't help.
    Every time the result is the same both in IE(stops because of bad xml) and Firefox (I get bad xml recognized as text).
    On another instance I have xmlp v 5.6.2
    There I have some sample report and sample template.
    When I there try to open output in Firefox once again I get xml recognized as text.
    When I try to open in IE(7.0) I get a page that looks like html in browser.On the Page file menu I have option to edit in Excel. When I choose that it opens Excel but instead of this same page I only get: Authentication failed.
    When I try to save this page it offers me only web formats (whole web page...). But nevertheless I tell it to save like test.xls. It saves ok. But when I try to open it. Excel starts but again all I get is: Authentication failed.
    When I open this in text editor it has only:
    From: <Saved by Windows Internet Explorer 7>
    Subject:
    Date: Thu, 30 Aug 2007 14:28:37 +0200
    MIME-Version: 1.0
    Content-Type: text/html;
         charset="iso-8859-2"
    Content-Transfer-Encoding: 7bit
    X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3138
    Content-Location: http://server.client.hr:8002/OA_CGI/FNDWRR.exe?temp_id=3132885517
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <HTML><HEAD>
    <META http-equiv=Content-Type content="text/html; charset=iso-8859-2">
    <META content="MSHTML 6.00.6000.16525" name=GENERATOR></HEAD>
    <BODY><PRE>Authentication failed.
    </PRE></BODY></HTML>
    I really don't have any more ideas.
    I've searched this forum, metalink, web, but nothing yet helped.
    Can anyone help?

    Is your xml file being generated correctly?
    For the request that you submitted, click the 'View Details' button. If the 'View XML' button is enabled, click that and it will open your XML in a new browser.
    If it's not enabled, the request needs to be changed so its output is XML.
    Not sure if this will help, but at least it will eliminate that there is anything wrong with the file or data.
    Janel

  • PROBLEM:IOException starting Java runtime process

    Hi all,
    I am new to java and I have the following problem: I have created an applictaion using jbuilder (windows xp) that consists of various frames.
    The application was compling and running at the PC I used to create it . Now, I am using a new PC with 2 processors (intel Pentium (D) 3.6) and I get the following error when trying to run the already developed application. Also, I tried to build a new application and I still get the same error.
    I would be very greatful for your comments/suggestions..
    Thanks in advance
    artakianos
    -- IOException starting Java runtime process --
    java.io.IOException: CreateProcess: "C:\Program Files\Borland\Jbuilder\jdk1.4\bin\javaw" -classpath "C:\Documents and Settings\sstathak\jbproject\MCTOOLS\classes\mctools;C:\Borland\JBuilder2005\lib\jbcl.jar;C:\Borland\JBuilder2005\lib\dx.jar;C:\Borland\JBuilder2005\lib\beandt.jar;C:\Program Files\Borland\Jbuilder\jdk1.4\jre\javaws\javaws.jar;C:\Program Files\Borland\Jbuilder\jdk1.4\jre\lib\charsets.jar;C:\Program Files\Borland\Jbuilder\jdk1.4\jre\lib\ext\dnsns.jar;C:\Program Files\Borland\Jbuilder\jdk1.4\jre\lib\ext\ldapsec.jar;C:\Program Files\Borland\Jbuilder\jdk1.4\jre\lib\ext\localedata.jar;C:\Program Files\Borland\Jbuilder\jdk1.4\jre\lib\ext\sunjce_provider.jar;C:\Program Files\Borland\Jbuilder\jdk1.4\jre\lib\im\indicim.jar;C:\Program Files\Borland\Jbuilder\jdk1.4\jre\lib\im\thaiim.jar;C:\Program Files\Borland\Jbuilder\jdk1.4\jre\lib\jce.jar;C:\Program Files\Borland\Jbuilder\jdk1.4\jre\lib\jsse.jar;C:\Program Files\Borland\Jbuilder\jdk1.4\jre\lib\plugin.jar;C:\Program Files\Borland\Jbuilder\jdk1.4\jre\lib\rt.jar;C:\Program F&#148;

    Maybe your classpath is wrong. You can go to the path where is the instalation and into the directory bin you must `type javac or javaws if you obtain a list of options every is ok and you must set the enviroment variable to this path.
    Send me your comments
    Miguel Manzano

  • Sites w/ .pdf or .ashx documents as the full page or as an insert in the page don't load the .pdf or .ashx documents - I get an Problem Report window that says "Firefox Plugin Process quit unexpectedly"

    Sites w/ .pdf or .ashx documents as the full page or as an insert in the page don't load the .pdf or .ashx documents - I get an Problem Report window that says "Firefox Plugin Process quit unexpectedly" and sends the error to Apple so I have had to revert to Firefox 3 getting rid of 4. Anybody have any thoughts?? (I'm runnng OSX 10.6.7)
    pdf was at
    <http://www.brigham.com/MSDS/Dust%20Mop-dust%20cloth%20treatment.pdf>
    ashx was my utility bill on
    <www.pse.com>

    OK, I think I have this solved. After reading my post over, I decided to rethink the problem. First thing I did was download Chrome and I tried using that and IE again and surprise! I was having the same problem on those browsers as well. So now we know it wasn't Firefox. I then figured maybe a slow computer meant a virus, so I ran scans. I've had both Avast and IOBit for months now and I've never had a problem with either of them before. Then I downloaded Malwarebytes and ran a third scan. They all picked some stuff up, but nothing serious. Then I tried disabling all the antivirus stuff and that didn't solve anything. But then I decided to keep Malwarebytes and I uninstalled IOBit Security and whammo - problem solved.
    I have no idea why out of the blue IOBit would be causing a problem like this so if someone knows, please let me in on the secret. Additionally, IE was working fairly well last night but not this morning. I also don't know why removing IOBit would take care of the nsAppShell issue, because supposedly, that's related to Firefox plug ins. And one more thing...when Comcast hooked my neighbor up to cable, they did it by putting a splitter on my line. They were messing about with the lines yesterday before I got on my computer last night trying to decide how to rerun them and today they did that, taking the splitter off my line and giving my neighbor his own line. That was finished about 30 minutes before I uninstalled IOBit. So....who knows?
    But I ain't about to look a gift horse in the mouth. I have my Firefox back and I am so sorry for bad mouthing you last night - I love you, Firefox!

  • Adobe Premiere Elements 8 Can't finish installing Air Runtime Process, and Can't open New Project!

    Hey guys,
         I'm having some major issues installing PE8.  I can open the installer screen fine, and it installs fine until it gets to installing the Air Runtime Process.  I have left it downloading that one process for about 5 hours, and i'm not exaggerating.  Finnally, I get too mad waiting for it to finish that I exit out of the installation process.  Even though the installation was never fully finished, for some reason I do have a Desktop icon for PE8.  I click on that and it opens the splash screen with the buttons "New project", "Open Project", and "Organize".  When I try to open "New Project" it begins loading the files that it needs to to open it.  When it gets to loading the Windows Media file, it freezes and then crashes.
         I have uninstalled the PE8 and reinstalled it about 5 times now.  I have also used the Windows Cleanup program to clean these corrupted files out of my system before reinstalling.  I have called in twice now to the technical support and they haven't helped me one ounce.  Any answers would be appreciated!  Thanks
    Thanks Again,
    Spencer
    Here is the Crash Data:
    <?xml version="1.0"?>
    <!DOCTYPE crashreport SYSTEM "AdobeCrashReporter.dtd">
    <crashreport version="1.1" crVersion="3.0.20090804" applicationName="Adobe Premiere Elements" applicationVersion="8. 0. 0. 0" build="unknown">
    <time year="2009" month="11" day="20" hour="22" minute="57" second="2"/>
    <user guid="f32bcbfe-242d-4051-8b96-487956b2e7bc"/>
    <system platform="windows" osversion="5.1.2600 SP 2.0" applicationlanguage="Language Neutral" userlanguage="en_US" oslanguage="en_US" ram="893" machine="AMD Athlon(tm) 64 X2 Dual-Core Processor TK-55" model="x86 Family 15 Model 104 Stepping 1" cpuCount="2" cpuFreq="1800 MHz" busFreq="" locale="English (United States)"/>
    <crash exception="EXCEPTION_ACCESS_VIOLATION" instruction="0x01a29f27">
    <backtrace crashedThread="0">
    <thread index="0">
    <stackStatement index="0" address="0x01a29f27" symbolname="UIF::MenuUtils::RenameMenuItemCommand"/>
    </thread>
    </backtrace>
    <registerSet>
    <register name="EAX" value="0x00000000"/>
    <register name="EBX" value="0x000000fa"/>
    <register name="ECX" value="0x50010001"/>
    <register name="EDX" value="0x0012ddc0"/>
    <register name="ESI" value="0x0c93f3a0"/>
    <register name="EDI" value="0x0012df24"/>
    <register name="ESP" value="0x00000057"/>
    <register name="EBP" value="0x0000004f"/>
    <register name="EIP" value="0x00000000"/>
    <register name="EFL" value="0x00010246"/>
    </registerSet>
    <binaryImageSet>
    <binaryImage start="0x00400000" end="0x008de000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;Adobe Premiere Elements.exe"/>
    <binaryImage start="0x7c900000" end="0x7c9b2000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;ntdll.dll"/>
    <binaryImage start="0x7c800000" end="0x7c8f5000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;kernel32.dll"/>
    <binaryImage start="0x10000000" end="0x1000f000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;CrashReporter.dll"/>
    <binaryImage start="0x59a60000" end="0x59b01000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;dbghelp.dll"/>
    <binaryImage start="0x77c10000" end="0x77c68000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;msvcrt.dll"/>
    <binaryImage start="0x77c00000" end="0x77c08000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;version.dll"/>
    <binaryImage start="0x77dd0000" end="0x77e6b000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;advapi32.dll"/>
    <binaryImage start="0x77e70000" end="0x77f02000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;rpcrt4.dll"/>
    <binaryImage start="0x77fe0000" end="0x77ff1000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;secur32.dll"/>
    <binaryImage start="0x00340000" end="0x0034f000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;LogUtils.dll"/>
    <binaryImage start="0x7c9c0000" end="0x7d1d6000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;shell32.dll"/>
    <binaryImage start="0x77f10000" end="0x77f58000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;gdi32.dll"/>
    <binaryImage start="0x77d40000" end="0x77dd0000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;user32.dll"/>
    <binaryImage start="0x77f60000" end="0x77fd6000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;shlwapi.dll"/>
    <binaryImage start="0x774e0000" end="0x7761c000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;ole32.dll"/>
    <binaryImage start="0x78130000" end="0x781cb000" type="__TEXT" path="C:&#92;WINDOWS&#92;WinSxS&#92;x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.405 3_x-ww_e6967989&#92;msvcr80.dll"/>
    <binaryImage start="0x7c420000" end="0x7c4a7000" type="__TEXT" path="C:&#92;WINDOWS&#92;WinSxS&#92;x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.405 3_x-ww_e6967989&#92;msvcp80.dll"/>
    <binaryImage start="0x77120000" end="0x771ac000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;oleaut32.dll"/>
    <binaryImage start="0x008e0000" end="0x00a34000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;dvacore.dll"/>
    <binaryImage start="0x00370000" end="0x003fc000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;ASLFoundation.dll"/>
    <binaryImage start="0x4ec50000" end="0x4edfb000" type="__TEXT" path="C:&#92;WINDOWS&#92;WinSxS&#92;x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.60 01.22319_x-ww_f0b4c2df&#92;GdiPlus.dll"/>
    <binaryImage start="0x76bf0000" end="0x76bfb000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;psapi.dll"/>
    <binaryImage start="0x00a50000" end="0x00a56000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;PRM.dll"/>
    <binaryImage start="0x773d0000" end="0x774d2000" type="__TEXT" path="C:&#92;WINDOWS&#92;WinSxS&#92;x86_Microsoft.Windows.Common-Controls_6595b64144ccf1d f_6.0.2600.2180_x-ww_a84f1ff9&#92;comctl32.dll"/>
    <binaryImage start="0x012a0000" end="0x012d7000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;adobe_caps.dll"/>
    <binaryImage start="0x012f0000" end="0x01322000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;Startup.dll"/>
    <binaryImage start="0x01340000" end="0x01369000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;PreRegistration.dll"/>
    <binaryImage start="0x01380000" end="0x0168b000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;amtlib.dll"/>
    <binaryImage start="0x5b860000" end="0x5b8b4000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;netapi32.dll"/>
    <binaryImage start="0x71ab0000" end="0x71ac7000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;ws2_32.dll"/>
    <binaryImage start="0x71aa0000" end="0x71aa8000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;ws2help.dll"/>
    <binaryImage start="0x4d4f0000" end="0x4d548000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;winhttp.dll"/>
    <binaryImage start="0x763b0000" end="0x763f9000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;comdlg32.dll"/>
    <binaryImage start="0x12000000" end="0x121c7000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;xerces-c_2_1_0.dll"/>
    <binaryImage start="0x016a0000" end="0x016b1000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;msvcirt.dll"/>
    <binaryImage start="0x018c0000" end="0x01dae000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;UIFramework.dll"/>
    <binaryImage start="0x016d0000" end="0x01843000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;ImageRenderer.dll"/>
    <binaryImage start="0x7f840000" end="0x7fa07000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;MCDVD_32.DLL"/>
    <binaryImage start="0x76b40000" end="0x76b6d000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;winmm.dll"/>
    <binaryImage start="0x01db0000" end="0x02073000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;libmmd.dll"/>
    <binaryImage start="0x02080000" end="0x022ae000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;dvaui.dll"/>
    <binaryImage start="0x01870000" end="0x01886000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;ASLMessaging.dll"/>
    <binaryImage start="0x022b0000" end="0x02ac0000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;Backend.dll"/>
    <binaryImage start="0x02ac0000" end="0x02c8e000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;xerces-c_2_7.dll"/>
    <binaryImage start="0x02ca0000" end="0x02d04000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;AudioRenderer.dll"/>
    <binaryImage start="0x02d20000" end="0x02d47000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;MediaFoundation.dll"/>
    <binaryImage start="0x02d60000" end="0x02d84000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;processcoordinationclient.dll"/>
    <binaryImage start="0x02da0000" end="0x02da9000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;processcoordinationsupport.dll"/>
    <binaryImage start="0x02dc0000" end="0x02dd3000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;ASLUnitTesting.dll"/>
    <binaryImage start="0x02df0000" end="0x02e00000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;ASLConsole.dll"/>
    <binaryImage start="0x02e10000" end="0x02ed7000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;dvaworkspace.dll"/>
    <binaryImage start="0x76380000" end="0x76385000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;msimg32.dll"/>
    <binaryImage start="0x5ad70000" end="0x5ada8000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;uxtheme.dll"/>
    <binaryImage start="0x02ef0000" end="0x02f19000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;MLFoundation.dll"/>
    <binaryImage start="0x02f30000" end="0x02f6f000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;About.dll"/>
    <binaryImage start="0x031c0000" end="0x03617000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;Localeresources&#92;en_US&#92;UIFramework.en_US.DLL"/>
    <binaryImage start="0x03630000" end="0x03695000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;Localeresources&#92;en_US&#92;About.en_US.DLL"/>
    <binaryImage start="0x602d0000" end="0x602e5000" type="__TEXT" path="C:&#92;Program Files&#92;CA&#92;CA Internet Security Suite&#92;CA Anti-Spam&#92;QSP-5.1.18.0&#92;QOEHook.dll"/>
    <binaryImage start="0x05820000" end="0x058bd000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;amtservices.dll"/>
    <binaryImage start="0x77920000" end="0x77a13000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;setupapi.dll"/>
    <binaryImage start="0x77690000" end="0x776b1000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;ntmarta.dll"/>
    <binaryImage start="0x76f60000" end="0x76f8c000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;wldap32.dll"/>
    <binaryImage start="0x71bf0000" end="0x71c03000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;samlib.dll"/>
    <binaryImage start="0x059e0000" end="0x05a00000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;asneu.dll"/>
    <binaryImage start="0x05a10000" end="0x0632f000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;Premiere.dll"/>
    <binaryImage start="0x06340000" end="0x065cf000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;AMocWrapper.dll"/>
    <binaryImage start="0x065d0000" end="0x0660b000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;VideoFrame.dll"/>
    <binaryImage start="0x75a70000" end="0x75a91000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;msvfw32.dll"/>
    <binaryImage start="0x06620000" end="0x06627000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;MemoryShell.dll"/>
    <binaryImage start="0x06640000" end="0x06654000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;BackendLegacyLib.dll"/>
    <binaryImage start="0x06670000" end="0x06677000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;Memory.dll"/>
    <binaryImage start="0x06690000" end="0x06774000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;ImporterHost.dll"/>
    <binaryImage start="0x06790000" end="0x067fd000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;AdobeXMP.dll"/>
    <binaryImage start="0x06810000" end="0x0688f000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;AdobeXMPFiles.dll"/>
    <binaryImage start="0x068a0000" end="0x068a6000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;QTMutex.dll"/>
    <binaryImage start="0x068c0000" end="0x068e0000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;MediaUtils.dll"/>
    <binaryImage start="0x77be0000" end="0x77bf5000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;msacm32.dll"/>
    <binaryImage start="0x068f0000" end="0x06922000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;AudioSupport.dll"/>
    <binaryImage start="0x06940000" end="0x06969000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;SweetPeaSupport.dll"/>
    <binaryImage start="0x06980000" end="0x069af000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;PluginSupport.dll"/>
    <binaryImage start="0x71b20000" end="0x71b32000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;mpr.dll"/>
    <binaryImage start="0x069c0000" end="0x06a2d000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;ContentAnalysisData.dll"/>
    <binaryImage start="0x06a40000" end="0x06a82000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;dvatemporalxmp.dll"/>
    <binaryImage start="0x06aa0000" end="0x06ab9000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;ContentAnalysisDBCache.dll"/>
    <binaryImage start="0x06ad0000" end="0x06b07000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;ARA.dll"/>
    <binaryImage start="0x06b20000" end="0x06b93000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;OLS.dll"/>
    <binaryImage start="0x06bb0000" end="0x06bc3000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;OperaMgr.dll"/>
    <binaryImage start="0x06be0000" end="0x07828000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;HSL.dll"/>
    <binaryImage start="0x07840000" end="0x07873000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;MediaCoreUI.dll"/>
    <binaryImage start="0x07890000" end="0x07918000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;dvaeve.dll"/>
    <binaryImage start="0x77a80000" end="0x77b14000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;crypt32.dll"/>
    <binaryImage start="0x77b20000" end="0x77b32000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;msasn1.dll"/>
    <binaryImage start="0x07930000" end="0x07a6c000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;AdobeOwl.dll"/>
    <binaryImage start="0x07a80000" end="0x07bc3000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;SettingsUI.dll"/>
    <binaryImage start="0x07be0000" end="0x07cbc000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;FileInfo.dll"/>
    <binaryImage start="0x74c80000" end="0x74cac000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;oleacc.dll"/>
    <binaryImage start="0x76080000" end="0x760e5000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;msvcp60.dll"/>
    <binaryImage start="0x73000000" end="0x73026000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;winspool.drv"/>
    <binaryImage start="0x07cd0000" end="0x07d1a000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;BIB.dll"/>
    <binaryImage start="0x07d30000" end="0x07dba000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;EncoderHost.dll"/>
    <binaryImage start="0x07dd0000" end="0x07dfe000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;PostEncodeHost.dll"/>
    <binaryImage start="0x07e10000" end="0x07e48000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;amefoundation.dll"/>
    <binaryImage start="0x07e60000" end="0x07e8f000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;ameproperties.dll"/>
    <binaryImage start="0x07ea0000" end="0x07f12000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;ExporterHost.dll"/>
    <binaryImage start="0x07f30000" end="0x08009000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;AMEWrapper.dll"/>
    <binaryImage start="0x08020000" end="0x080c3000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;VideoRenderer.dll"/>
    <binaryImage start="0x080e0000" end="0x080f7000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;AMEAppFoundation.dll"/>
    <binaryImage start="0x08110000" end="0x081a2000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;VideoFilterHost.dll"/>
    <binaryImage start="0x081c0000" end="0x08295000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;exo.dll"/>
    <binaryImage start="0x082b0000" end="0x082ba000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;RoyaltyActivation.dll"/>
    <binaryImage start="0x082d0000" end="0x08329000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;RecorderHost.dll"/>
    <binaryImage start="0x08340000" end="0x08393000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;PlayerHost.dll"/>
    <binaryImage start="0x083b0000" end="0x08513000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;DVDCreator.dll"/>
    <binaryImage start="0x08530000" end="0x099f2000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;AuthorScript.dll"/>
    <binaryImage start="0x7c3a0000" end="0x7c41b000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;msvcp71.dll"/>
    <binaryImage start="0x7c340000" end="0x7c396000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;msvcr71.dll"/>
    <binaryImage start="0x09a00000" end="0x09aba000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;px.dll"/>
    <binaryImage start="0x73f10000" end="0x73f6c000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;dsound.dll"/>
    <binaryImage start="0x76780000" end="0x76789000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;shfolder.dll"/>
    <binaryImage start="0x5ed00000" end="0x5edcc000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;opengl32.dll"/>
    <binaryImage start="0x68b20000" end="0x68b40000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;glu32.dll"/>
    <binaryImage start="0x73760000" end="0x737a9000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;ddraw.dll"/>
    <binaryImage start="0x73bc0000" end="0x73bc6000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;dciman32.dll"/>
    <binaryImage start="0x09ad0000" end="0x0a1d9000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;Mezzanine.dll"/>
    <binaryImage start="0x0a1f0000" end="0x0a202000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;ahclient.dll"/>
    <binaryImage start="0x771b0000" end="0x77258000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;wininet.dll"/>
    <binaryImage start="0x0a220000" end="0x0a232000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;ProjectSupport.dll"/>
    <binaryImage start="0x0a250000" end="0x0a2d0000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;dynamiclink.dll"/>
    <binaryImage start="0x0a2e0000" end="0x0a2fe000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;AudioFilterHost.dll"/>
    <binaryImage start="0x0a310000" end="0x0a33a000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;DynamicLinkClient.dll"/>
    <binaryImage start="0x0a350000" end="0x0a36c000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;DVDStructures.dll"/>
    <binaryImage start="0x0a380000" end="0x0a4af000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;TitlerCreator.dll"/>
    <binaryImage start="0x0a4c0000" end="0x0a6a7000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;TitleLayer.dll"/>
    <binaryImage start="0x0a6c0000" end="0x0a716000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;TitlerUI.dll"/>
    <binaryImage start="0x0a730000" end="0x0a739000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;TitleOSUtils.dll"/>
    <binaryImage start="0x0a750000" end="0x0aa3a000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;TitleLayout.dll"/>
    <binaryImage start="0x0aa50000" end="0x0aaeb000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;TitleCharacterFactory.dll"/>
    <binaryImage start="0x0ab00000" end="0x0abd9000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;TitleCG.dll"/>
    <binaryImage start="0x0abf0000" end="0x0ac33000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;AudioFilters.dll"/>
    <binaryImage start="0x0ac50000" end="0x0ac62000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;ProjectConverterHost.dll"/>
    <binaryImage start="0x0ac80000" end="0x0acd1000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;ContentAnalysisHost.dll"/>
    <binaryImage start="0x0acf0000" end="0x0ad7c000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;Descriptors.dll"/>
    <binaryImage start="0x0ad90000" end="0x0adaf000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;IPLibrary.dll"/>
    <binaryImage start="0x0adb0000" end="0x0aee0000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;HandlerCapture.dll"/>
    <binaryImage start="0x0aef0000" end="0x0b138000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;HandlerTimeline.dll"/>
    <binaryImage start="0x0b150000" end="0x0b189000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;HandlerAudioNarration.dll"/>
    <binaryImage start="0x0b1a0000" end="0x0b29f000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;HandlerAudioMixer.dll"/>
    <binaryImage start="0x0b2b0000" end="0x0b340000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;HandlerDVDLayout.dll"/>
    <binaryImage start="0x0b350000" end="0x0b4cf000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;HandlerMonitor.dll"/>
    <binaryImage start="0x0b4e0000" end="0x0b526000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;PresetManager.dll"/>
    <binaryImage start="0x0b540000" end="0x0b68e000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;HandlerOrganizer.dll"/>
    <binaryImage start="0x0b6a0000" end="0x0b722000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;ScCore.dll"/>
    <binaryImage start="0x0b740000" end="0x0b7e3000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;ExtendScript.dll"/>
    <binaryImage start="0x0b800000" end="0x0b830000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;HandlerHistory.dll"/>
    <binaryImage start="0x0b840000" end="0x0b86d000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;HandlerInfo.dll"/>
    <binaryImage start="0x0b880000" end="0x0b89e000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;HandlerEvents.dll"/>
    <binaryImage start="0x0b8b0000" end="0x0b8e1000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;HandlerSharingCenter.dll"/>
    <binaryImage start="0x0b900000" end="0x0b983000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;SCCommon.dll"/>
    <binaryImage start="0x0b9a0000" end="0x0bcc0000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;HandlerEffectControls.dll"/>
    <binaryImage start="0x0bcd0000" end="0x0bd36000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;HandlerMovieTheme.dll"/>
    <binaryImage start="0x0bd50000" end="0x0c0b6000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;HandlerProject.dll"/>
    <binaryImage start="0x0c0d0000" end="0x0c0f3000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;HandlerGetProperties.dll"/>
    <binaryImage start="0x0c3d0000" end="0x0c3e1000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;Localeresources&#92;en_US&#92;TitlerUI.en_US.DLL"/>
    <binaryImage start="0x0c490000" end="0x0c7e7000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;Localeresources&#92;en_US&#92;Mezzanine.en_US.DLL"/>
    <binaryImage start="0x0c410000" end="0x0c448000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;Localeresources&#92;en_US&#92;HSL.en_US.DLL"/>
    <binaryImage start="0x0c7f0000" end="0x0c864000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;Localeresources&#92;en_US&#92;Premiere.en_US.DLL"/>
    <binaryImage start="0x0ffd0000" end="0x0fff8000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;rsaenh.dll"/>
    <binaryImage start="0x769c0000" end="0x76a73000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;userenv.dll"/>
    <binaryImage start="0x0cc70000" end="0x0ccdf000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;TitleFontEngine.dll"/>
    <binaryImage start="0x0cce0000" end="0x0ccf2000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;BravoInitializer.dll"/>
    <binaryImage start="0x0cd10000" end="0x0ce01000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;ACE.dll"/>
    <binaryImage start="0x0ce20000" end="0x0d1b1000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;AGM.dll"/>
    <binaryImage start="0x0d1d0000" end="0x0d47e000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;CoolType.dll"/>
    <binaryImage start="0x0e090000" end="0x0e0b2000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;TitleImageManager.dll"/>
    <binaryImage start="0x0f120000" end="0x0f12c000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;ObjectTracking.dll"/>
    <binaryImage start="0x0f140000" end="0x0f15b000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;Plug-ins&#92;Common&#92;AsioWdm.dll"/>
    <binaryImage start="0x76c30000" end="0x76c5e000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;wintrust.dll"/>
    <binaryImage start="0x76c90000" end="0x76cb8000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;imagehlp.dll"/>
    <binaryImage start="0x72d20000" end="0x72d29000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;wdmaud.drv"/>
    <binaryImage start="0x72d10000" end="0x72d18000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;msacm32.drv"/>
    <binaryImage start="0x77bd0000" end="0x77bd7000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;midimap.dll"/>
    <binaryImage start="0x73ee0000" end="0x73ee4000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;ksuser.dll"/>
    <binaryImage start="0x66800000" end="0x673ab000" type="__TEXT" path="C:&#92;Program Files&#92;QuickTime&#92;QTSystem&#92;QuickTime.qts"/>
    <binaryImage start="0x68a40000" end="0x68a6e000" type="__TEXT" path="C:&#92;Program Files&#92;QuickTime&#92;QTSystem&#92;QTCF.dll"/>
    <binaryImage start="0x0f3f0000" end="0x0f4ba000" type="__TEXT" path="C:&#92;Program Files&#92;Common Files&#92;Apple&#92;Apple Application Support&#92;CoreFoundation.dll"/>
    <binaryImage start="0x0f4d0000" end="0x0f4e0000" type="__TEXT" path="C:&#92;Program Files&#92;Common Files&#92;Apple&#92;Apple Application Support&#92;pthreadVC2.dll"/>
    <binaryImage start="0x71ad0000" end="0x71ad9000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;wsock32.dll"/>
    <binaryImage start="0x0f4e0000" end="0x0f4fc000" type="__TEXT" path="C:&#92;Program Files&#92;Common Files&#92;Apple&#92;Apple Application Support&#92;objc.dll"/>
    <binaryImage start="0x0f6c0000" end="0x0f7bd000" type="__TEXT" path="C:&#92;Program Files&#92;Common Files&#92;Apple&#92;Apple Application Support&#92;icuin40.dll"/>
    <binaryImage start="0x0f7c0000" end="0x0f8a1000" type="__TEXT" path="C:&#92;Program Files&#92;Common Files&#92;Apple&#92;Apple Application Support&#92;icuuc40.dll"/>
    <binaryImage start="0x4ad00000" end="0x4ba5b000" type="__TEXT" path="C:&#92;Program Files&#92;Common Files&#92;Apple&#92;Apple Application Support&#92;icudt40.dll"/>
    <binaryImage start="0x0f530000" end="0x0f53d000" type="__TEXT" path="C:&#92;Program Files&#92;Common Files&#92;Apple&#92;Apple Application Support&#92;ASL.dll"/>
    <binaryImage start="0x0f8b0000" end="0x0f943000" type="__TEXT" path="C:&#92;Program Files&#92;Common Files&#92;Apple&#92;Apple Application Support&#92;CFNetwork.dll"/>
    <binaryImage start="0x0f960000" end="0x0f9c3000" type="__TEXT" path="C:&#92;Program Files&#92;Common Files&#92;Apple&#92;Apple Application Support&#92;SQLite3.dll"/>
    <binaryImage start="0x0f9e0000" end="0x0f9f3000" type="__TEXT" path="C:&#92;Program Files&#92;Common Files&#92;Apple&#92;Apple Application Support&#92;zlib1.dll"/>
    <binaryImage start="0x76d60000" end="0x76d79000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;iphlpapi.dll"/>
    <binaryImage start="0x687e0000" end="0x6883a000" type="__TEXT" path="C:&#92;Program Files&#92;QuickTime&#92;QTSystem&#92;CoreVideo.qtx"/>
    <binaryImage start="0x67e40000" end="0x67e9a000" type="__TEXT" path="C:&#92;Program Files&#92;QuickTime&#92;QTSystem&#92;QuickTime3GPP.qtx"/>
    <binaryImage start="0x67ea0000" end="0x67f1e000" type="__TEXT" path="C:&#92;Program Files&#92;QuickTime&#92;QTSystem&#92;QuickTime3GPPAuthoring.qtx"/>
    <binaryImage start="0x68460000" end="0x687d4000" type="__TEXT" path="C:&#92;Program Files&#92;QuickTime&#92;QTSystem&#92;QuickTimeAudioSupport.qtx"/>
    <binaryImage start="0x67780000" end="0x679ae000" type="__TEXT" path="C:&#92;Program Files&#92;QuickTime&#92;QTSystem&#92;QuickTimeAuthoring.qtx"/>
    <binaryImage start="0x679b0000" end="0x67a03000" type="__TEXT" path="C:&#92;Program Files&#92;QuickTime&#92;QTSystem&#92;QuickTimeCapture.qtx"/>
    <binaryImage start="0x67a10000" end="0x67aa1000" type="__TEXT" path="C:&#92;Program Files&#92;QuickTime&#92;QTSystem&#92;QuickTimeEffects.qtx"/>
    <binaryImage start="0x67cd0000" end="0x67d35000" type="__TEXT" path="C:&#92;Program Files&#92;QuickTime&#92;QTSystem&#92;QuickTimeEssentials.qtx"/>
    <binaryImage start="0x680e0000" end="0x6845b000" type="__TEXT" path="C:&#92;Program Files&#92;QuickTime&#92;QTSystem&#92;QuickTimeH264.qtx"/>
    <binaryImage start="0x67ac0000" end="0x67bb5000" type="__TEXT" path="C:&#92;Program Files&#92;QuickTime&#92;QTSystem&#92;QuickTimeImage.qtx"/>
    <binaryImage start="0x676b0000" end="0x67780000" type="__TEXT" path="C:&#92;Program Files&#92;QuickTime&#92;QTSystem&#92;QuickTimeInternetExtras.qtx"/>
    <binaryImage start="0x67c50000" end="0x67cc9000" type="__TEXT" path="C:&#92;Program Files&#92;QuickTime&#92;QTSystem&#92;QuickTimeMPEG.qtx"/>
    <binaryImage start="0x67d40000" end="0x67d9a000" type="__TEXT" path="C:&#92;Program Files&#92;QuickTime&#92;QTSystem&#92;QuickTimeMPEG4.qtx"/>
    <binaryImage start="0x67da0000" end="0x67e32000" type="__TEXT" path="C:&#92;Program Files&#92;QuickTime&#92;QTSystem&#92;QuickTimeMPEG4Authoring.qtx"/>
    <binaryImage start="0x67bc0000" end="0x67c42000" type="__TEXT" path="C:&#92;Program Files&#92;QuickTime&#92;QTSystem&#92;QuickTimeMusic.qtx"/>
    <binaryImage start="0x673b0000" end="0x6748b000" type="__TEXT" path="C:&#92;Program Files&#92;QuickTime&#92;QTSystem&#92;QuickTimeStreaming.qtx"/>
    <binaryImage start="0x68050000" end="0x680ab000" type="__TEXT" path="C:&#92;Program Files&#92;QuickTime&#92;QTSystem&#92;QuickTimeStreamingAuthoring.qtx"/>
    <binaryImage start="0x680b0000" end="0x680dd000" type="__TEXT" path="C:&#92;Program Files&#92;QuickTime&#92;QTSystem&#92;QuickTimeStreamingExtras.qtx"/>
    <binaryImage start="0x674e0000" end="0x675bb000" type="__TEXT" path="C:&#92;Program Files&#92;QuickTime&#92;QTSystem&#92;QuickTimeVR.qtx"/>
    <binaryImage start="0x58420000" end="0x58427000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;imaadp32.acm"/>
    <binaryImage start="0x72cf0000" end="0x72cf7000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;msadp32.acm"/>
    <binaryImage start="0x58330000" end="0x58335000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;msg711.acm"/>
    <binaryImage start="0x58300000" end="0x58308000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;msgsm32.acm"/>
    <binaryImage start="0x582d0000" end="0x582d4000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;tssoft32.acm"/>
    <binaryImage start="0x73b70000" end="0x73b77000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;tsd32.dll"/>
    <binaryImage start="0x58310000" end="0x5832d000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;msg723.acm"/>
    <binaryImage start="0x58340000" end="0x5838a000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;msaud32.acm"/>
    <binaryImage start="0x582e0000" end="0x582fe000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;sl_anet.acm"/>
    <binaryImage start="0x581a0000" end="0x581d9000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;iac25_32.ax"/>
    <binaryImage start="0x58390000" end="0x5841a000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;l3codeca.acm"/>
    <binaryImage start="0x76fd0000" end="0x7704f000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;clbcatq.dll"/>
    <binaryImage start="0x77050000" end="0x77115000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;comres.dll"/>
    <binaryImage start="0x74980000" end="0x74a94000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;msxml3.dll"/>
    <binaryImage start="0x15ff0000" end="0x16081000" type="__TEXT" path="C:&#92;Program Files&#92;QuickTime&#92;QTSystem&#92;AppleProResDecoder.qtx"/>
    <binaryImage start="0x736b0000" end="0x736b7000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;msdmo.dll"/>
    <binaryImage start="0x74810000" end="0x7497d000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;quartz.dll"/>
    <binaryImage start="0x74ef0000" end="0x74ef8000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;wbem&#92;wbemprox.dll"/>
    <binaryImage start="0x75290000" end="0x752c7000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;wbem&#92;wbemcomn.dll"/>
    <binaryImage start="0x20000000" end="0x202c5000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;xpsp2res.dll"/>
    <binaryImage start="0x74ed0000" end="0x74ede000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;wbem&#92;wbemsvc.dll"/>
    <binaryImage start="0x75690000" end="0x75706000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;wbem&#92;fastprox.dll"/>
    <binaryImage start="0x767a0000" end="0x767b3000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;ntdsapi.dll"/>
    <binaryImage start="0x76f20000" end="0x76f47000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;dnsapi.dll"/>
    <binaryImage start="0x174b0000" end="0x1754c000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;MediaIO&#92;codecs&#92;aacaudio.vca"/>
    <binaryImage start="0x4f180000" end="0x4f22c000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;wmadmoe.dll"/>
    <binaryImage start="0x17b30000" end="0x17c14000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;wmspdmoe.dll"/>
    <binaryImage start="0x75cf0000" end="0x75d81000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;mlang.dll"/>
    <binaryImage start="0x184f0000" end="0x18602000" type="__TEXT" path="C:&#92;Program Files&#92;Adobe&#92;Adobe Premiere Elements 8.0&#92;ad2h264vout.001"/>
    <binaryImage start="0x4c250000" end="0x4c38b000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;wmvdmoe2.dll"/>
    <binaryImage start="0x59090000" end="0x590ae000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;wmsdmoe.dll"/>
    <binaryImage start="0x4ea30000" end="0x4eb87000" type="__TEXT" path="C:&#92;WINDOWS&#92;system32&#92;wmsdmoe2.dll"/>
    </binaryImageSet>
    </crash>
    <reproSteps>
    </reproSteps>
    </crashreport>

    Hello,
    I have the exact same problem as you with PE8 and Win7 (x64), and a reboot also helped me. But the problem came back the next time I tried to open PE. Have you expreienced the same? It cant be that we have to reboot every time we want to use PE?
    Best regards
    Øystein Morvik
    Norway

  • Processing log output for Purchase order

    Dear All,
    Iam getting some problem when iam creating an IDOC and checking in the Processing log for IDOC number.
    Actually i had created one custom idoc for Purchase order since my client need only some field and in one line for header and line item, I had done it and i can see it in sdata of EDIDD structure. When i create a Purchase order and save it an idoc number is posting and I can see this file in my physical directory indeed.
    Now when iam going into change mode of PO ME22n to see the Processing LOG, It is not showing the IDOC Number in Purchase order output processing log popup.

    The processing log will only show output based standard output control (Table NAST).
    How is your IDoc being created. Via a user exit, BADI. If so then they will not appear on the processing log.
    It is being created as a custom IDOC for which i had written a Z function module and given that in PO processing code which is ME10. When iam checking the standard IDOC for PO it is generating the IDOC in processing log as well.
    Iam just placing my code just have a look at it and suggest if any thing needs to be done.
    FUNCTION Z_IDOC_OUTPUT_ORDERS.
    ""Local Interface:
    *"  IMPORTING
    *"     VALUE(OBJECT) LIKE  NAST STRUCTURE  NAST
    *"     VALUE(CONTROL_RECORD_IN) LIKE  EDIDC STRUCTURE  EDIDC
    *"  EXPORTING
    *"     VALUE(OBJECT_TYPE) LIKE  WFAS1-ASGTP
    *"     VALUE(CONTROL_RECORD_OUT) LIKE  EDIDC STRUCTURE  EDIDC
    *"  TABLES
    *"      INT_EDIDD STRUCTURE  EDIDD
    *"  EXCEPTIONS
    *"      ERROR_MESSAGE_RECEIVED
    *"      DATA_NOT_RELEVANT_FOR_SENDING
    DATA: xdruvo.                          "Druckvorgang
    DATA: neu  VALUE '1',                  "Neudruck
          h_kappl LIKE nast-kappl,         "Hilfsfeld Applikation
          h_parvw LIKE ekpa-parvw,         "Hilfsfeld Partnerrolle
          h_ebeln LIKE ekko-ebeln.         "Hilfsfeld Belegnummer
      CLEAR control_record_out.
       xdruvo = neu.
      h_kappl = object-kappl.
      h_ebeln = object-objky.
      h_parvw = object-parvw.
      DATA:
           LT_EDIDC LIKE EDIDC OCCURS 0 WITH HEADER LINE,
             L_EDIDC LIKE EDIDC,
             L_SEND_FLAG,
             W_SDATA LIKE EDIDD-SDATA.
      DATA: T_BDI_MODEL LIKE BDI_MODEL OCCURS 0 WITH HEADER LINE.
      DATA: T_EDIDC LIKE EDIDC OCCURS 0 WITH HEADER LINE.
      DATA: T_EDIDD LIKE EDIDD OCCURS 0 WITH HEADER LINE.
      DATA: C_MESSAGE_TYPE LIKE EDIDC-MESTYP VALUE 'ZORDER'.
    *- Call function module to determine if message is to be distributed
    OBJECT_TYPE = 'BUS2012'.
      MOVE control_record_in TO control_record_out.
      CALL FUNCTION 'ALE_MODEL_DETERMINE_IF_TO_SEND'
        EXPORTING
          MESSAGE_TYPE           = C_MESSAGE_TYPE
        IMPORTING
          IDOC_MUST_BE_SENT      = L_SEND_FLAG.
       EXCEPTIONS
         OWN_SYSTEM_NOT_DEFINED = 1
         OTHERS                 = 2.
      DATA : BEGIN OF EKKO_tAB OCCURS 0,
      EBELN LIKE EKKO-EBELN,
      F1 TYPE C VALUE ',',
      BUKRS LIKE EKKO-BUKRS,
      F2 TYPE C VALUE ',',
      BSART LIKE EKKO-BSART,
      F3 TYPE C VALUE ',',
      LIFNR LIKE EKKO-LIFNR,
      F4 TYPE C VALUE ',',
      WAERS LIKE EKKO-WAERS,
      F5 TYPE C VALUE ',',
      BEDAT LIKE EKKO-BEDAT,
      F6 TYPE C VALUE ',',
      WERKS LIKE EKPO-WERKS,
      F7 TYPE C VALUE ',',
      PLIFZ LIKE EKPO-PLIFZ,
      F8 TYPE C VALUE ',',
      EBELP LIKE EKPO-EBELP,
      F9 TYPE C VALUE ',',
      MATNR LIKE EKPO-MATNR,
      F10 TYPE C VALUE ',',
      MENGE LIKE EKPO-MENGE,
      F11 TYPE C VALUE ',',
      MEINS LIKE EKPO-MEINS,
      F12 TYPE C VALUE ',',
      END OF EKKO_TAB.
      DATA SDATA1 LIKE EKKO_tAB OCCURS 0 WITH HEADER LINE.
      DATA EBELN LIKE EKKO-EBELN.
      WRITE OBJECT-OBJKY TO EBELN.
      SELECT T1EBELN T1BUKRS BSART LIFNR WAERS BEDAT  WERKS PLIFZ EBELP MATNR MENGE MEINS
      FROM EKKO AS T1
      INNER JOIN EKPO AS T2 ON T2EBELN = t1EBELN
      INTO CORRESPONDING FIELDS OF TABLE EKKO_tAB
      WHERE
    *T1~KAPPL = 'EF' AND
      T1~EBELN = EBELN.
    *T1~KSCHL = 'YEDI' .
      DATA SDATA LIKE EDIDD-SDATA.
      DATA NDATE LIKE SY-DATUM.
      DATA NMENGE(17) TYPE C.
      LOOP AT EKKO_tAB.
        WRITE EKKO_TAB-MENGE TO NMENGE.
        NDATE = EKKO_tAB-BEDAT + EKKO_tAB-PLIFZ.
        CONCATENATE  EKKO_tAB-EBELP ',' EKKO_tAB-BUKRS ',' EKKO_tAB-BSART EKKO_tAB-EBELN ',' EKKO_tAB-LIFNR ',' EKKO_tAB-BEDAT ','
        NDATE ',' EKKO_tAB-BSART EKKO_tAB-EBELN ',' EKKO_tAB-EBELN ', 0,' EKKO_tAB-MATNR ','
        NMENGE ',' EKKO_tAB-MEINS ',' EKKO_tAB-WERKS INTO SDATA.
        MOVE SDATA TO: W_SDATA, T_EDIDD-SDATA.
        MOVE 'ZORDERS' TO T_EDIDD-SEGNAM.
        APPEND T_EDIDD.
      ENDLOOP.
    *call function 'L_IDOC_SEGMENT_CREATE'
        exporting
             i_segnam = 'ZORDERS'
             i_sdata  = w_sdata
        exceptions
             others   = 1.
    *LT_EDIDC
    call function 'L_IDOC_SEND'
         tables
              t_comm_idoc           = LT_EDIDC
         exceptions
              error_distribute_idoc = 1
              others                = 2.
    *DATA T_BDI_MODEL LIKE BDI_MODEL.
    WRITE OBJECT-OBJKY TO T_BDI_MODEL.
    READ TABLE T_BDI_MODEL INDEX 1.      " maximum 1 recipient
    L_EDIDC-DIRECT = 1.
      L_EDIDC-DOCNUM = DOCNUM. "***
      L_EDIDC-RCVPRN = 'HCM_00_785'.
      L_EDIDC-RCVPOR = 'MM_PO_FILO'.
      MOVE 'ZORDER'   TO L_EDIDC-MESTYP.
      MOVE 'ZPURIDOC' TO L_EDIDC-IDOCTP.
      MOVE 'LS'      TO L_EDIDC-RCVPRT.
    MOVE T_BDI_MODEL-RCVSYSTEM TO L_EDIDC-RCVPRN.
    *MOVE-CORRESPONDING L_EDIDC TO W_EDIDC.
    *- Distribute the iDoc
    BREAK-POINT.
      CALL FUNCTION 'MASTER_IDOC_DISTRIBUTE' "IN UPDATE TASK
        EXPORTING
          MASTER_IDOC_CONTROL            = L_EDIDC
        TABLES
          COMMUNICATION_IDOC_CONTROL     = LT_EDIDC
          MASTER_IDOC_DATA               = T_EDIDD
        EXCEPTIONS
          ERROR_IN_IDOC_CONTROL          = 01
          ERROR_WRITING_IDOC_STATUS      = 02
          ERROR_IN_IDOC_DATA             = 03
          SENDING_LOGICAL_SYSTEM_UNKNOWN = 04.
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    READ TABLE LT_EDIDC INDEX 1.
      control_record_out-direct = '1'.
      CONTROL_RECORD_OUT-DOCNUM = DOCNUM. " ***
      control_record_out-serial = sy-datum.
      control_record_out-serial+8 = sy-uzeit.
      control_record_out-mestyp = LT_EDIDC-mestyp.
      control_record_out-idoctp = LT_EDIDC-idoctp.
      control_record_out-SNDPRN = 'HCM_00_786'.
      MOVE 'MM_PO_FILO' TO control_record_out-RCVPOR.
      MOVE 'LI'      TO control_record_out-SNDPRT.
      MOVE 'SAPQIS' TO control_record_out-SNDPOR.
    ENDFUNCTION.

  • Forms session 125,296 aborted: unable to communicate with runtime process

    Forms 10g version on Hp unix.
    We have about 400 users are using 10g web based application. Our users get the error "There was a failure in the forms server during startup. This could happen due to invalid configuration.
    Please look into the web-server log file for details."
    web-server log file it says
    'Forms session <125,296> aborted: unable to communicate with runtime process.'
    It is not reproducible error. But it happens to everybody at random time/form/database which makes big impact on our business.
    We are in the edge of backing out of oracle forms due to this error
    Any help will be appreciated

    Would be a really bummer if you backed out of Forms and found the problems were because of network glitches ;o)
    You need to do a bit a scratching around to get more details on this.
    http://www.oracle.com/technology/products/forms/pdf/10g/troubleshooting_fls.pdf would be a good place to start. Chances are, network glitches are cause a disconnects but you need to confirm this by using the techniques described in this paper.
    Regards
    Grant

  • Giving input to the runtime process

    Hi Friends,
    I want to run the java debugger programatically through java. I started the debugger by creating a Runtime Process like:
    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.InputStreamReader;
    import java.io.OutputStream;
    import javax.swing.JPanel;
    public class RunDebug extends JPanel
    public static void main(String arg[])
    Runtime execEnv = Runtime.getRuntime();
    String command = "";
    try
    Runtime rt = Runtime.getRuntime ();
    command = "jdb -connect com.sun.jdi.SocketAttach:hostname=localhost,port=8000";
    Process process = rt.exec (command);
    catch (Exception e)
    e.printStackTrace();
    The debugging process is started and it is ready for input, I have to give input the above same process. I searched for giving inputs to the Process class but I cannot. I tried this with batch file which contains all the commands but it is not running properly. Reply to me if you know the procedure. Thanks in advance.
    Thanks,
    Sangeetha.

    Thank you for your reply pa. But I tried this already like this:
    OutputStream fout= process.getOutputStream();
    OutputStream bout= new BufferedOutputStream(fout);
    OutputStreamWriter out = new OutputStreamWriter(bout);
    out.write("locals");
    I have given the next command to be supplied through OutputStream. But when I am reading the inputs in the Process like:
    InputStreamReader reader = new InputStreamReader ( process.getInputStream () );
    BufferedReader buf_reader = new BufferedReader ( reader );
    String line;
    while ((line = buf_reader.readLine ()) != null)
    System.out.println (line);
    But the output of the command that I gave through OutputStream is not printed. So I think the command which I gave through OutputStream is not properly recognized. If it is properly recongnized then I should get the output of that command when trying to read the input stream. Whether I am correct in writing the command through OutputStream??? Waiting for your reply...

  • Error in automatic processing of output of a delivery

    Dear All,
    In the stock tranport scenario, I am using an output type SPED in an outbound delivery. When this is processed an inbound delivery is created automatically from the outbound.
    The problem is that the output is not being processed automatically. The error I get is "Output processing has been triggered in a new task".
    Dispatch time is already maintained as 4. If I process the output manually using VL71, it works fine.
    Any ideas!!
    Regards,
    VJ

    I have already checked in SM58. I do not see anything there.
    Details of the error:
    Message no. /SPE/VL300
    Diagnosis
        Output processing was triggered immediately when the delivery was saved.
        The actual processing of this output started a new task.
        This task might still be running - or might have terminated with an
        error.
    Procedure
        You can wait for a while and then recheck the processing status.
        If the processing log has not been updated, please take a look at the
        monitor for tRFC calls (transaction code SM58).

  • Error in automatic processing of output of an outbound delivery

    Dear All,
    In the stock tranport scenario, I am using an output type SPED in an outbound delivery. When this is processed an inbound delivery is created automatically from the outbound.
    The problem is that the output is not being processed automatically. The error I get is "Output processing has been triggered in a new task".
    Dispatch time is already maintained as 4. If I process the output manually using VL71, it works fine.
    Any ideas!!
    Regards,
    VJ

    SPED is having default Transmission Medium as 8 ( Special Function ) .
    Can you change it to 1 and try.
    thanks,

  • In mail, after importing mailboxes the process gets stuck on '1619 of 72826' and 'time remaining' climbs infinitely. Please suggest a solution.

    In 'mail', after importing mailboxes the process gets stuck on '1619 of 72826' and 'time remaining' climbs infinitely. Please suggest a solution.
    I converted my mail boxes from POP to imap for the purpose of syncing all my devices. I backed up my mail boxes and further more perfomed a timemachine backup.
    Upon restoring ther mailboxes, either by manually copying them to the mailboxes folder, and restoring a timemachine backup, both pocesses result in the above problem.
    Please recomend a solution.
    file://localhost/Users/redwood/Desktop/Screen%20Shot%202013-10-15%20at%201.48.10 %20PM.png
    file://localhost/Users/redwood/Desktop/Screen%20Shot%202013-10-15%20at%201.38.30 %20PM.png

    Can anyone out there please help!

  • Mac mini audio output problems

    This is similar to a problem that appeared before, but with a different twist.
    On 4 July all was well. On 5 July I switched on and there was no "chord" from the Mac. When I collected my mail - no sound from my speakers (which are part of my screen). Logged on to a couple of sites - no sound.
    The System Profiler, under the "Audio (Built In)" category, says: "No Built-in Audio." I know that's wrong because it's always worked before and when I plug my headset in it works fine.
    When I go to the Sound preferences panel in System Preferences, it finds the headset but if I unplug that it finds nothing.
    I tried running the hardware test (by putting in the OS X install disc and holding D during startup.) It couldn't find a problem.
    So, as far as I can see, audio output is fine for the USB headset output but not for the others. Is there a simple fix? The nearest Apple store is about 200 miles away and I don't fancy the idea of posting the Mac off.
    (And I think it's still under warranty for a couple more weeks.)
    Mac mini   Mac OS X (10.4.10)  

    hello mini users with the "no audio output" problem
    it seems that there are faulty output jacks in the macbook and the mac mini
    there are two things you can try:
    i tried everything and began thinking about what new software i had installed. it was "macam" which enables you to use older webcams on OSX. i needed that to use my webcam on skype.
    macam installs a file called "macam.component"
    if you have the same, do this - take that file out of:
    (your hard drive)/library/quicktime - macam.component
    and just put it on your desktop
    restart, then in your sound pref's choose your audio output (if doesn't work restart again)
    the first time i took it out, i had my sound back instantly, another time i had to choose audio output in sound prefs. you kind of have to try different things. after you get your sound back, you can put back "macam.component" to use your webcam.
    it seems macam causes the problem, the two can not work at the same time.
    the second thing: if you dont have "maccam" try plugging and unplugging output jack a few times and restarting until you have sound.
    the problem still could be with the OSX 10.4.10 update / quicktime...or maybe even a hardware problem like others with macbooks were saying (with the red light), not sure.
    people with macbooks and who have the red light on, say to use a paperclip to turn off the switch inside.
    my mini does not have a red light on. i tried using a paperclip but it doesnt work.
    hope this helps, beleive me i feel your pain!!!!
    what good is a computer without sound?
    extremely annoying problem that i hope apple looks into and fixes
    -andrew

  • Ultra 10 output problem

    Hi all, first post here.
    I got a sun u10 from ebay a while back. I put together a null modem cable and can connect via the terminal with no problem, here's the post info:
    Sun Ultra 5/10 UPA/PCI (UltraSPARC-IIi 360MHz), No Keyboard
    OpenBoot 3.15, 768 MB memory installed, Serial #11012275.
    Ethernet address 8:0:20:a8:8:b3, Host ID: 80a808b3.
    Boot device: disk File and args:
    The file just loaded does not appear to be executable.
    When I plug in a monitor to the VGA output and turn on the machine, the "energy save" light on the monitor goes off for a second, and it looks like you're about to get output to the monitor, then it just comes back on and nothing. From what I understand to get output via the onboard VGA output you have to plug in a keyboard, so I got a keyboard and mouse, it arrived today. When I plug in the keyboard, attach the monitor to the VGA output, and turn on the power I get one beep, the lights on the keyboard flash a few times, and the same thing happens with the monitor, still no output. It has the Elite 3D card, is the output defaulting to that maybe? Would it help if I removed the card?
    With the keyboard plugged in it appears I can't access the terminal via the serial port. minicom says online, but I don't see any output. Does this mean the keyboard is broken, or is there a setting in openboot I have to change to make things kosher for VGA output? I tried both with the mouse plugged into the keyboard and without. I also tried an old Gateway2000 15" I believe Vivitron monitor, and a 19" NEC AccuSync 95f monitor, same with both monitors.
    Sorry for all the questions, any response is appreciated.

    I was trying not to have to do that. I finally figured it out about midnight last night, after about 5 hours of messing with openboot. I had this poor machine so screwed up a couple of times with my openboot ignorance, at one point I think I saved the power-off command to the nvram somehow, so when I turned the machine on it just immediately powered off...then I turned on diag-switch so it was taking like 10 minutes to boot, then trying to auto-discover the network infinitely...I finally got stop-n to clear the nvram. Had to do that a couple of times overall.
    set auto-boot false
    set diag-switch false
    set output-device /pci/blah blah blah to the vga output
    set input-device keyboard
    I think that's all it took once it was all said and done. At least now I know a little more about openboot. Now to figure out how to do ANYTHING in solaris!
    Thanks

Maybe you are looking for

  • Picture doesn't save in the gallery

    hi! my name is Fraaz. and i am from Lahore Pakistan. Often my Phone starts malfunctioning while i tap the camera button, it takes photo but doesn't save it on albums but shows preview after a couple of seconds, meanwhile my phone got hanged while sho

  • IPad 2 sound is not consistent

    My ipad 2 sound goes is stages from sounding like crap to sounding normal and then no sound and back again.  The whole process can take a couple of weeks to no sound for a week.  Tried a power down and it brought the sound back but the sound is bad. 

  • Last update condition...

    Hi All I need to select the records who's last update date less than ( sysdate-90/1440) {Query} SQL> select present.object_type, present.object_id 2 from (select cb2.object_type, cb2.object_id, incident_status_name, 3 incident_severity_name 4 from cs

  • Error in installing Business contenet datasource

    Hi all, Trying to install 0SD_C03 infoprovider from business content. Grouping: in dataflow before. Collection mode: collect automatically From ifoprovider by info area option selected the infoprovider 0SD_C03, dragged to the right hand side I am get

  • Have to delete Magic Mouse from MacOS to pair with Windows Bootcamp

    Like many I couldn't get my Magic Mouse to pair in Windows when dual booting with BootCamp to Windows 8.1 on my 2012 MacBook Air. Whenever I searched for bluetooth devices it wouldn't be found, or would sporadically appear but fail to pair. The solut