Catch an HTTP Error

Hello all,
Can you tell me if there's any way to get an HTTP 500 Error with the code below:
    html = "";
    int r;
    BufferedInputStream in=null;
    do {
      retry = false;
      try {
     in = new BufferedInputStream(url.openStream(), 4096);
     //      System.out.println("DoneOpening input stream");
      catch (IOException ioe) {
     ioe.printStackTrace();
      try {
       //       while(in.available() == 0){
       // System.out.println("Nothing available on input stream!");
       while ((r = in.read(buffer, 0, buffer.length))!=-1) {
           if (r>0) {
            html = html + new String(buffer, 0, r);
           //           System.out.print(".");
      catch (IOException ioe) {
      }With this code I can get the HTML code but my objective here is to get the HTTP Header and catch an HTTP Status (Error) message (e.g. HTTP 500 ). Is it possible?
Best regards,
Nuno

change the code piece
in = new BufferedInputStream(url.openStream(), 4096);with this one
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
int responseCode = connection.getResponseCode();
if (responseCode == HttpURLConnection.HTTP_INTERNAL_ERROR) { // error code 500
     // do your stuff here
in = new BufferedInputStream(connection.getInputStream(), 4096);
r a f t

Similar Messages

  • How to catch SAP application errors in BPM.

    Hi,
    I have a IDOC to Soap Sync Scenario where I send the message to a Webservice. I have used a BPM since we need to catch the resposne of this message and map it to a RFC. For ex if I get a success resposne I need to map success if not than I need to catch the error and map it to the RFC. Now here in some cases like if the target system (webservice) is down than XI raises a sap application error:
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!--  Inbound Message
      -->
    - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="1">
      <SAP:Category>XIAdapterFramework</SAP:Category>
      <SAP:Code area="MESSAGE">GENERAL</SAP:Code>
      <SAP:P1 />
      <SAP:P2 />
      <SAP:P3 />
      <SAP:P4 />
      <SAP:AdditionalText>com.sap.aii.af.ra.ms.api.DeliveryException: Connection refused (errno:239)</SAP:AdditionalText>
      <SAP:ApplicationFaultMessage namespace="" />
      <SAP:Stack />
      <SAP:Retry>M</SAP:Retry>
      </SAP:Error>
    Normally XI stops the process in these cases and does not proceed to the next step but I need to catch this message and map the content in the AdditionalText to the target RFC. Can anyone let me know how to catch this SAP Application Error in BPM and map it to the RFC.
    Thanks,
    Bhargav

    Hi Gaurav,
    As I have mentioned I need to catch the application error in the BPM. If you see the discussion that is mentioned after the blog you have mentioned it is stated that the fault messages or the application error cannot be caught in BPM.
    In the blog that you stated we can catch the fault message and map it to a message structure but only to that extent after that it would stop the BPM process at that step but would not proceed further as shown in the screenshot given in the blog it would fail as "application error restart not possible".
    I need to proceed further and capture this error to an RFC Structure and call a proxy.
    Here after the error it does not proceed to the next step.
    Thanks,
    Bhargav

  • Sql loader (catching record length error)

    Guys is there any command in sqlldr that can catch record length error (less or more than certain length).I am using java to execute my sqlldr and would like to know if it is possible to catch those error.
    thanks
    Manohar.

    Use CHAR instead aof VARCHAR
    LOAD DATA
    INFILE *
    APPEND INTO TABLE test
    FIELDS TERMINATED BY ','
    OPTIONALLY ENCLOSED BY '"'
      first_id,
      second_id,
      third_id,
      language_code,
      display_text    CHAR(2000)
    )From the docu:
    A VARCHAR field is a length-value datatype.
    It consists of a binary length subfield followed by a character string of the specified length.
    http://download-west.oracle.com/docs/cd/A87860_01/doc/server.817/a76955/ch05.htm#20324

  • Flex - Getting the HTTP error code raised from SAP

    Hi all,
    is there a way to catch the error code returned by a BSP page?
    For example, I have a Flex HTTPService that points to a BSP page somedata.xml, which is populated after retrieving data in onInitialization handler.
    In this handler, if something goes wrong, I set up the response error code like this:
    try.
    "Data Handler Class
    catch zcx_some_exc into lx_some_exc.
      error_string = lx_some_exc->get_text( ).
      response->set_status( code = 500 reason = error_string ).
    endtry.
    In my faultHandler function in Flex, I need to display error_string in an Alert box:
    private function HTTPFaultEventHandler(event:FaultEvent):void{
      Alert.show(event.fault.faultString);
    But in this way, it always display "HTTP Request error".
    Anyone can help me?
    Thanks a lot,
    R.

    This is a known issue with flex HTTPService.
    what you could do is
    set the status to 200 for BSP response
    and pass the error message in xml format.
    on the flex side, in your result handler, check the xml to see whether its error xml or your normal result xml.
    if its error xml, you can provide an alert and then stop processing.
    Ref: http://onrails.org/articles/2008/02/20/dealing-with-http-errors-in-a-flex-with-rails-application
    Regards
    Raja

  • How to catch SMPP gateway error type ?

    Hi,
    How can i catch different SMPP error type return by SMSC server ?
    I want to catch result like 0x45,0x01,0x0B,0x58,0x15.... in my code. I can see eventgateway.log logging the error message but how do i get error type in my code ?
    Thanks

    Hi,
    There are different approaches, you can use a validate activity or you can check the validate check box in an assign activity...
    Have a look on the links bellow...
    http://docs.oracle.com/cd/E23943_01/dev.1111/e10224/bp_appx_ref.htm#SOASE86011
    http://docs.oracle.com/cd/E23943_01/dev.1111/e10224/bp_manipdoc.htm#SOASE1824
    http://docs.oracle.com/cd/E23943_01/dev.1111/e10224/bp_manipdoc.htm#SOASE87095
    Hope this helps...
    Cheers,
    Vlad

  • (Pleeeeeeez HELP) HTTP Error 404

    I installed Business Object Enterprise XI using a  fresh installation (using IIS ASP.NET as  WCA) and I can not open anything. All pages gives me HTTP Error 404.
    I added aspnet_isapi.dll to the allowed extensions in IIS. I have .Net framework 2.0 installed on the server & IE 6.0 SP2. I'm not sure if this installation will install another framework and use it.
    PLEASE PLEASE PLEASE HELP.

    For top level URLs (such as www.isp.com), the first possibility is that the request for your site URL has been directed to a Web server that thinks it never had any pages for your Web site. This is possible if DNS entries are fundamentally corrupt, or if your Web server has corrupt internal records. The second possibility is that the Web server once hosted the Web site, but now no longer does so and can not or will not provide a redirection to another computer which now hosts the site. If your site is completely dead - now effectively nowhere to be found on the Internet - then the 404 message makes sense. However if your site has recently moved, then an 404 message may also be triggered. This is also a DNS issue, because the old Web server should no longer be accessed at all - as soon as global DNS entries are updated, only your new Web server should be accessed.
    For low-level URLs (such as www.isp.com/products/list.html), this error can indicate a broken link. You can see this easily by trying the URL in a Web browser. Most browsers give a very clear '404 - Not Found' message.
    Provided that your Web site is still to be found somewhere on the Internet, 404 errors should be rare. For top level URLs, they typically occur only when there is some change to how your site is hosted and accessed, and even these typically disappear within a week or two once the Internet catches up with the changes you have made. For low-level URLs, the solution is almost always to fix your Web pages so that the broken hypertext link is corrected.
    Could it also be the webuser account access rights?

  • HTTP Error 405 - The HTTP verb used to access this page is not .....

    Goodmorning,
    I've installed BO XI R3 SP4 on a 2k3-server with IIS 6.0. I wanted to configurate the SSO. After changing the web.config file and restart of the IIS , I get the following error :
    HTTP Error 405 - The HTTP verb used to access this page is not allowed.
    Internet Information Services (IIS)
    The frame where you normally are using for authentication has this error, the frame around is normal.
    Hope someony can help, thx in advance

    I can't fin a upload button , so the file in plain text gepasted
    Hope it is readable :
    #Software: Microsoft Internet Information Services 6.0
    #Version: 1.0
    #Date: 2012-02-29 12:19:21
    #Fields: date time s-sitename s-ip cs-method cs-uri-stem cs-uri-query s-port cs-username c-ip cs(User-Agent) sc-status sc-substatus sc-win32-status
    2012-02-29 12:19:21 W3SVC1 10.13.0.119 GET /InfoViewApp/logon.aspx - 80 - 10.13.0.119 Mozilla/4.0(compatible;MSIE7.0;WindowsNT5.2;Trident/4.0;.NETCLR1.1.4322;.NETCLR2.0.50727;.NETCLR3.0.4506.2152;.NETCLR+3.5.30729) 200 0 0
    2012-02-29 12:19:21 W3SVC1 10.13.0.119 GET /InfoViewApp/res/schema.blue/default.css.ashx - 80 - 10.13.0.119 Mozilla/4.0(compatible;MSIE7.0;WindowsNT5.2;Trident/4.0;.NETCLR1.1.4322;.NETCLR2.0.50727;.NETCLR3.0.4506.2152;.NETCLR+3.5.30729) 200 0 0
    2012-02-29 12:19:21 W3SVC1 10.13.0.119 GET /InfoViewApp/js/utils.js.ashx - 80 - 10.13.0.119 Mozilla/4.0(compatible;MSIE7.0;WindowsNT5.2;Trident/4.0;.NETCLR1.1.4322;.NETCLR2.0.50727;.NETCLR3.0.4506.2152;.NETCLR+3.5.30729) 200 0 0
    2012-02-29 12:19:21 W3SVC1 10.13.0.119 GET /InfoViewApp/js/helpSystem.js.ashx - 80 - 10.13.0.119 Mozilla/4.0(compatible;MSIE7.0;WindowsNT5.2;Trident/4.0;.NETCLR1.1.4322;.NETCLR2.0.50727;.NETCLR3.0.4506.2152;.NETCLR+3.5.30729) 200 0 0
    2012-02-29 12:19:21 W3SVC1 10.13.0.119 GET /InfoViewApp/common/appService.aspx service=skinning&resource=img&img=img.banner.logon.pattern 80 - 10.13.0.119 Mozilla/4.0(compatible;MSIE7.0;WindowsNT5.2;Trident/4.0;.NETCLR1.1.4322;.NETCLR2.0.50727;.NETCLR3.0.4506.2152;.NETCLR+3.5.30729) 200 0 0
    2012-02-29 12:19:21 W3SVC1 10.13.0.119 GET /InfoViewApp/listing/blank.aspx - 80 - 10.13.0.119 Mozilla/4.0(compatible;MSIE7.0;WindowsNT5.2;Trident/4.0;.NETCLR1.1.4322;.NETCLR2.0.50727;.NETCLR3.0.4506.2152;.NETCLR+3.5.30729) 200 0 0
    2012-02-29 12:19:21 W3SVC1 10.13.0.119 GET /InfoViewApp/common/appService.aspx service=skinning&resource=img&img=img.banner.logo 80 - 10.13.0.119 Mozilla/4.0(compatible;MSIE7.0;WindowsNT5.2;Trident/4.0;.NETCLR1.1.4322;.NETCLR2.0.50727;.NETCLR3.0.4506.2152;.NETCLR+3.5.30729) 200 0 0
    2012-02-29 12:19:21 W3SVC1 10.13.0.119 GET /InfoViewApp/logon/logon.aspx parameter=logonService 80 - 10.13.0.119 Mozilla/4.0(compatible;MSIE7.0;WindowsNT5.2;Trident/4.0;.NETCLR1.1.4322;.NETCLR2.0.50727;.NETCLR3.0.4506.2152;.NETCLR+3.5.30729) 200 0 0
    2012-02-29 12:19:21 W3SVC1 10.13.0.119 POST /PlatformServices/Shared/Logon/Logon.aspx - 80 - 10.13.0.119 Mozilla/4.0(compatible;MSIE7.0;WindowsNT5.2;Trident/4.0;.NETCLR1.1.4322;.NETCLR2.0.50727;.NETCLR3.0.4506.2152;.NETCLR+3.5.30729) 405 0 1
    2012-02-29 12:32:05 W3SVC1 127.0.0.1 GET /InfoViewApp/logon.aspx - 80 - 127.0.0.1 Mozilla/4.0(compatible;MSIE8.0;WindowsNT5.2;Trident/4.0;.NETCLR1.1.4322;.NETCLR2.0.50727;.NETCLR3.0.4506.2152;.NETCLR+3.5.30729) 200 0 0
    2012-02-29 12:32:05 W3SVC1 127.0.0.1 GET /InfoViewApp/res/schema.blue/default.css.ashx - 80 - 127.0.0.1 Mozilla/4.0(compatible;MSIE8.0;WindowsNT5.2;Trident/4.0;.NETCLR1.1.4322;.NETCLR2.0.50727;.NETCLR3.0.4506.2152;.NETCLR+3.5.30729) 200 0 0
    2012-02-29 12:32:05 W3SVC1 127.0.0.1 GET /InfoViewApp/js/utils.js.ashx - 80 - 127.0.0.1 Mozilla/4.0(compatible;MSIE8.0;WindowsNT5.2;Trident/4.0;.NETCLR1.1.4322;.NETCLR2.0.50727;.NETCLR3.0.4506.2152;.NETCLR+3.5.30729) 200 0 0
    2012-02-29 12:32:05 W3SVC1 127.0.0.1 GET /InfoViewApp/js/helpSystem.js.ashx - 80 - 127.0.0.1 Mozilla/4.0(compatible;MSIE8.0;WindowsNT5.2;Trident/4.0;.NETCLR1.1.4322;.NETCLR2.0.50727;.NETCLR3.0.4506.2152;.NETCLR+3.5.30729) 200 0 0
    2012-02-29 12:32:05 W3SVC1 127.0.0.1 GET /InfoViewApp/listing/blank.aspx - 80 - 127.0.0.1 Mozilla/4.0(compatible;MSIE8.0;WindowsNT5.2;Trident/4.0;.NETCLR1.1.4322;.NETCLR2.0.50727;.NETCLR3.0.4506.2152;.NETCLR+3.5.30729) 200 0 0
    2012-02-29 12:32:05 W3SVC1 127.0.0.1 GET /InfoViewApp/common/appService.aspx service=skinning&resource=img&img=img.banner.logon.pattern 80 - 127.0.0.1 Mozilla/4.0(compatible;MSIE8.0;WindowsNT5.2;Trident/4.0;.NETCLR1.1.4322;.NETCLR2.0.50727;.NETCLR3.0.4506.2152;.NETCLR+3.5.30729) 200 0 0
    2012-02-29 12:32:05 W3SVC1 127.0.0.1 GET /InfoViewApp/common/appService.aspx service=skinning&resource=img&img=img.banner.logo 80 - 127.0.0.1 Mozilla/4.0(compatible;MSIE8.0;WindowsNT5.2;Trident/4.0;.NETCLR1.1.4322;.NETCLR2.0.50727;.NETCLR3.0.4506.2152;.NETCLR+3.5.30729) 200 0 0
    2012-02-29 12:32:05 W3SVC1 127.0.0.1 GET /InfoViewApp/logon/logon.aspx parameter=logonService 80 - 127.0.0.1 Mozilla/4.0(compatible;MSIE8.0;WindowsNT5.2;Trident/4.0;.NETCLR1.1.4322;.NETCLR2.0.50727;.NETCLR3.0.4506.2152;.NETCLR+3.5.30729) 200 0 0
    2012-02-29 12:32:05 W3SVC1 127.0.0.1 POST /PlatformServices/Shared/Logon/Logon.aspx - 80 - 127.0.0.1 Mozilla/4.0(compatible;MSIE8.0;WindowsNT5.2;Trident/4.0;.NETCLR1.1.4322;.NETCLR2.0.50727;.NETCLR3.0.4506.2152;.NETCLR+3.5.30729) 405 0 1
    2012-02-29 12:33:17 W3SVC1 10.13.0.119 OPTIONS /c$ - 80 - 10.13.8.13 Microsoft-WebDAV-MiniRedir/6.1.7601 200 0 0
    2012-02-29 12:33:17 W3SVC1 10.13.0.119 PROPFIND /c$ - 80 - 10.13.8.13 Microsoft-WebDAV-MiniRedir/6.1.7601 501 0 0
    2012-02-29 12:33:17 W3SVC1 10.13.0.119 PROPFIND /c$ - 80 - 10.13.8.13 Microsoft-WebDAV-MiniRedir/6.1.7601 501 0 0
    2012-02-29 12:33:17 W3SVC1 10.13.0.119 PROPFIND /c$ - 80 - 10.13.8.13 Microsoft-WebDAV-MiniRedir/6.1.7601 501 0 0
    2012-02-29 12:33:17 W3SVC1 10.13.0.119 PROPFIND /c$ - 80 - 10.13.8.13 Microsoft-WebDAV-MiniRedir/6.1.7601 501 0 0
    Thx in advance for your reply

  • HTTP Error 500.0 with CF 9 & IIS 7.5 32 bit enabled web app

    Hello !
    I have recently installed CF 9 64 bit on Windows Server 2008 Standard Edition R2 with IIS 7.5.  I have just set the 'Enable 32 bit applications' option on the application pool settings to 'true' for one of the sites as I have some web pages that make use of a 32 bit COM DLL.  I originally had this option set to 'false' and all of the web pages in my site were being served fine with the exception of the ones making use of the 32 bit COM DLL.
    The details on the error message from IIS are as follows:
    HTTP Error 500.0 - Internal Server Error
    Detailed Error Information:
    Module: IsapiModule
    Notification: ExecuteRequestHandler
    Handler: AboMapperCustom-75500
    Error Code: 0x800700c1
    Most Likely causes:
    IIS received the request; however, an internal error occurred during the processing of the request. The root cause of this error depends on which module handles the request and what was happening in the worker process when this error occurred.
    IIS was not able to access the web.config file for the Web site or application. This can occur if the NTFS permissions are set incorrectly.
    IIS was not able to process configuration for the Web site or application.
    The authenticated user does not have permission to use this DLL.
    The request is mapped to a managed handler but the .NET Extensibility Feature is not installed.
    Things you can try:
    Ensure that the NTFS permissions for the web.config file are correct and allow access to the Web server's machine account.
    Check the event logs to see if any additional information was logged.
    Verify the permissions for the DLL.
    Install the .NET Extensibility feature if the request is mapped to a managed handler.
    Create a tracing rule to track failed requests for this HTTP status code. For more information about creating a tracing rule for failed requests, click here.
    I am not sure if the error is permissions related or not.
    1.  How do I rectify this error and still keep the 'Enable 32 application' option turned on so I can call a 32 bit COM DLL ?
    2.  In general, can the 64 bit version of CF 9 even invoke 32 bit COM DLL's on IIS 7.5 or should this only be done with the 32 bit version of CF 9 ?
    I would appreciate any help.
    Thank you.

    Here is the info:
    http://helpx.adobe.com/coldfusion/kb/coldfusion-security-hotfix-apsb12-15.html
    See notes section 5
    CF9.0.2 came out with apsb12-15 applied.
    Difference with CF10 is you can use CFadmin to change postparamlimit setting.
    Cheers, Carl.

  • I want to add refworks grabit to my tool bar, when I try to install for firefox it won' t let me this is what I get: HTTP Error 404.3 - Not Found The page you a

    this is the complete error I get. I just installed firefox so that I can use this feature and now it is useless.
    Error Summary
    HTTP Error 404.3 - Not Found
    The page you are requesting cannot be served because of the extension configuration. If the page is a script, add a handler. If the file should be downloaded, add a MIME map.
    Detailed Error Information
    Module StaticFileModule
    Notification ExecuteRequestHandler
    Handler StaticFile
    Error Code 0x80070032
    Requested URL http://www.refworks.com:80/refgrabit/install.xpi
    Physical Path E:\RefGrabIt\install.xpi
    Logon Method Anonymous
    Logon User Anonymous
    Failed Request Tracing Log Directory C:\inetpub\logs\FailedReqLogFiles
    Most likely causes:
    It is possible that a handler mapping is missing. By default, the static file handler processes all content.
    The feature you are trying to use may not be installed.
    The appropriate MIME map is not enabled for the Web site or application. (Warning: Do not create a MIME map for content that users should not download, such as .ASPX pages or .config files.)
    If ASP.NET is not installed.
    Things you can try:
    In system.webServer/handlers:
    Ensure that the expected handler for the current page is mapped.
    Pay extra attention to preconditions (for example, runtimeVersion, pipelineMode, bitness) and compare them to the settings for your application pool.
    Pay extra attention to typographical errors in the expected handler line.
    Please verify that the feature you are trying to use is installed.
    Verify that the MIME map is enabled or add the MIME map for the Web site using the command-line tool appcmd.exe.
    To set a MIME type, use the following syntax: %SystemRoot%\windows\system32\inetsrv\appcmd set config /section:staticContent /+[fileExtension='string',mimeType='string']
    The variable fileExtension string is the file name extension and the variable mimeType string is the file type description.
    For example, to add a MIME map for a file which has the extension ".xyz": appcmd set config /section:staticContent /+[fileExtension='.xyz',mimeType='text/plain']
    Warning: Ensure that this MIME mapping is needed for your Web server before adding it to the list. Configuration files such as .CONFIG or dynamic scripting pages such as .ASP or .ASPX, should not be downloaded directly and should always be processed through a handler. Other files such as database files or those used to store configuration, like .XML or .MDF, are sometimes used to store configuration information. Determine if clients can download these file types before enabling them.
    Install ASP.NET.
    Create a tracing rule to track failed requests for this HTTP status code. For more information about creating a tracing rule for failed requests, click here.
    Links and More Information This error occurs when the file extension of the requested URL is for a MIME type that is not configured on the server. You can add a MIME type for the file extension for files that are not dynamic scripting pages, database, or configuration files. Process those file types using a handler. You should not allows direct downloads of dynamic scripting pages, database or configuration files.
    View more information »

    That file might have moved to a different location on the server. I think you'll need to check with RefWorks support or your local IT department on why the install page links do not work.

  • Oracle epm 11.1.2.2 http error

    I installed (personal installation) and configured 11.1.2.2. Installation was successful. Configuration only partly successful as most of the errors point to http error and unable log on to workspace. It brings up a java.net error.
    Can you help please?

    ( Apr 4, 2013 5:12:40 PM ) Configuration tasks state test successfully completed.
    ( Apr 4, 2013 5:12:40 PM )  - passed: Validating that configuration tasks have been completed
    ( Apr 4, 2013 5:12:40 PM ) DB Connectivity test for repository successfully completed.
    ( Apr 4, 2013 5:12:40 PM )  - passed: Checking connection to database jdbc:oracle:thin:@RATNAP01:1521:FUSION
    ( Apr 4, 2013 5:12:43 PM ) Web Applications check failed.
    ( Apr 4, 2013 5:12:43 PM )  - failed: Availability of Web application context http://RATNAP01:9000/aif/faces/setup/Main.jspx
        Error:com.hyperion.cis.utils.BadResponseCodeException: Bad response code with GET method: 404
    ( Apr 4, 2013 5:12:43 PM )  - failed: Availability of Web application context http://RATNAP01:9000/oracle-epm-erpi-webservices/RuleService
        Error:com.hyperion.cis.utils.BadResponseCodeException: Bad response code with GET method: 404
    ( Apr 4, 2013 5:12:49 PM ) External Providers check successfully completed.
    ( Apr 4, 2013 5:12:49 PM )  - passed: Check Native Directory external authentication provider configuration
    ( Apr 4, 2013 5:12:53 PM ) Login check failed.
    ( Apr 4, 2013 5:12:53 PM )  - failed: Checking availability of login http://RATNAP01:9000/interop/logon
        Error:com.hyperion.cis.utils.BadResponseCodeException: Bad response code: 404
    ( Apr 4, 2013 5:12:58 PM ) Missed registry links check successfully completed.
    ( Apr 4, 2013 5:12:58 PM )  - passed: Checking that all components in the registry have a link to host
    ( Apr 4, 2013 5:12:58 PM ) Datasource entries existence successfully completed.
    ( Apr 4, 2013 5:12:58 PM )  - passed: Checking if datasource property exists in the registry
    ( Apr 4, 2013 5:12:58 PM ) Datasource entries existence failed.
    ( Apr 4, 2013 5:12:59 PM ) Datasource entries existence successfully completed.
    ( Apr 4, 2013 5:12:59 PM )  - passed: Checking if datasource property exists in the registry
    ( Apr 4, 2013 5:13:00 PM ) Datasource entries existence failed.
    ( Apr 4, 2013 5:13:02 PM ) Web Server Registry check successfully completed.
    ( Apr 4, 2013 5:13:02 PM )  - passed: Checking if Web Server linked to the all Web Applications
    ( Apr 4, 2013 5:13:02 PM ) Shared library targeting test failed.
    ( Apr 4, 2013 5:13:13 PM ) Checking if registry database compy with taxonomy. successfully completed.
    ( Apr 4, 2013 5:13:13 PM )  - passed: All components comply with registry taxonomy.
    ( Apr 4, 2013 5:13:13 PM ) System path variable length test successfully completed.
    ( Apr 4, 2013 5:13:13 PM )  - passed: Checking whether system path variable length exceeds 2,000
    ( Apr 4, 2013 5:13:13 PM ) CSS Status Check failed.
    ( Apr 4, 2013 5:13:13 PM )  - failed: Validating that CSS has been initialized
        Error:java.io.FileNotFoundException: http://RATNAP01:9000/interop/status?component=CSS
    ( Apr 4, 2013 5:13:14 PM ) CES Status Check failed.
    ( Apr 4, 2013 5:13:14 PM )  - failed: Validating that CES has been initialized
        Error:java.io.FileNotFoundException: http://RATNAP01:9000/interop/status?component=CES
    ( Apr 4, 2013 5:13:14 PM ) Audit Status Check failed.
    ( Apr 4, 2013 5:13:14 PM )  - failed: Validating that Audit has been initialized
        Error:java.io.FileNotFoundException: http://RATNAP01:9000/interop/status?component=AUDIT
    ( Apr 4, 2013 5:13:14 PM ) LCM Status Check failed.
    ( Apr 4, 2013 5:13:14 PM )  - failed: Validating that LCM has been initialized
        Error:java.io.FileNotFoundException: http://RATNAP01:9000/interop/status?component=LCM
    ( Apr 4, 2013 5:13:15 PM ) HUB Status Check failed.
    ( Apr 4, 2013 5:13:15 PM )  - failed: Validating that HUB has been initialized
        Error:java.io.FileNotFoundException: http://RATNAP01:9000/interop/status?component=HUB
    ( Apr 4, 2013 5:13:15 PM ) Registry Status Check failed.
    ( Apr 4, 2013 5:13:15 PM )  - failed: Validating that Registry has been initialized
        Error:java.io.FileNotFoundException: http://RATNAP01:9000/interop/status?component=REGISTRY
    ( Apr 4, 2013 5:13:15 PM ) Product registry component test successfully completed.
    ( Apr 4, 2013 5:13:15 PM )  - passed: Checking if product has only one product node in registry.
    ( Apr 4, 2013 5:13:18 PM ) Product registry component test failed.
    ( Apr 4, 2013 5:13:25 PM ) EPMA DimensionServer Server Configuration successfully completed.
    ( Apr 4, 2013 5:13:25 PM )  - passed: Validating EPMA Dimension Server hyperion-bpma-server startup... Successful...
    ( Apr 4, 2013 5:13:34 PM ) Check EPMA services individually failed.
    ( Apr 4, 2013 5:13:34 PM )  - failed: Validating whether jobmanager service is available.
        Error:com.hyperion.cis.utils.BadResponseCodeException: Bad response code: 500
    ( Apr 4, 2013 5:13:35 PM ) Essbase Studio Server failed.
    ( Apr 4, 2013 5:13:35 PM )  - failed: Validating Essbase Studio Server connection
        Error:api.CPException.networkError
    ( Apr 4, 2013 5:13:40 PM ) Financial Management Web Service access test successfully completed.
    ( Apr 4, 2013 5:13:40 PM )  - passed: Checking accessibility of Web services on http://RATNAP01:80/HSFWebServices/HSFWebService.asmx.
    ( Apr 4, 2013 5:13:40 PM ) Check if the Interactive Reporting Product (INTERACTIVE_REPORTING_PRODUCT) component exists. successfully completed.
    ( Apr 4, 2013 5:13:40 PM )  - passed: Found: 1.
    ( Apr 4, 2013 5:13:41 PM ) Check if IR BI Services are available. successfully completed.
    ( Apr 4, 2013 5:13:41 PM )  - passed: All IR BI Services are available: IRBI_AGENT_MODULE (Agent on ratnap01).
    ( Apr 4, 2013 5:13:41 PM ) Check if IR Job Services are available. successfully completed.
    ( Apr 4, 2013 5:13:41 PM )  - passed: All IR Job Services are available: IRJOB_AGENT_MODULE (Agent on ratnap01).
    ( Apr 4, 2013 5:13:41 PM ) Check if IR DAS Services are available. successfully completed.
    ( Apr 4, 2013 5:13:41 PM )  - passed: All IR DAS Services are available: IRDAS_AGENT_MODULE (Agent on ratnap01).
    ( Apr 4, 2013 5:13:41 PM ) Check if IR Log Services are available. successfully completed.
    ( Apr 4, 2013 5:13:41 PM )  - passed: All IR Log Services are available: IRLOG_AGENT_MODULE (Agent on ratnap01).
    ( Apr 4, 2013 5:13:42 PM ) Check if the Reporting and Analysis Setup (RA_SETUP) component exists. successfully completed.
    ( Apr 4, 2013 5:13:42 PM )  - passed: Found: 1.
    ( Apr 4, 2013 5:13:42 PM ) Check if all required RAF properties exist under the Reporting and Analysis Setup component. successfully completed.
    ( Apr 4, 2013 5:13:42 PM )  - passed: All required properties exist.
    ( Apr 4, 2013 5:13:42 PM ) Check if the Agent Module (AGENT_MODULE) components exist. successfully completed.
    ( Apr 4, 2013 5:13:42 PM )  - passed: Found: 5.
    ( Apr 4, 2013 5:13:43 PM ) Check if the Reporting and Analysis Service (RA_SERVICE) components exist. successfully completed.
    ( Apr 4, 2013 5:13:43 PM )  - passed: Found: 20.
    ( Apr 4, 2013 5:13:43 PM ) Check if the Agent (AGENT) components exist. successfully completed.
    ( Apr 4, 2013 5:13:43 PM )  - passed: Found: 1. Hosts for the components: RATNAP01.
    ( Apr 4, 2013 5:13:43 PM ) Check if the RAF Logical Web App (LOGICAL_WEB_APP) component exists. successfully completed.
    ( Apr 4, 2013 5:13:43 PM )  - passed: Found: 1.
    ( Apr 4, 2013 5:13:43 PM ) Check if the RAF Web App (RA_FRAMEWORK_WEB_APP) components exist. successfully completed.
    ( Apr 4, 2013 5:13:43 PM )  - passed: Found: 1. Hosts for the components: RATNAP01.
    ( Apr 4, 2013 5:13:44 PM ) Check consistency of the Service Agent sets between Registry and V8_SERVICEAGENT. successfully completed.
    ( Apr 4, 2013 5:13:44 PM )  - passed: Data in Registry and database are consistent.
    ( Apr 4, 2013 5:13:45 PM ) Check consistency of the Service Agent properties between Registry and database tables (V8_SERVICEAGENT, V8_SA_PROPS). successfully completed.
    ( Apr 4, 2013 5:13:45 PM )  - passed: Data in Registry and database are consistent.
    ( Apr 4, 2013 5:13:45 PM ) Check if all required RAF properties exist under the RAF Logical Web App component. successfully completed.
    ( Apr 4, 2013 5:13:45 PM )  - passed: All required properties exist.
    ( Apr 4, 2013 5:13:45 PM ) Check if all required Workspace configuration files exist under the RAF Logical Web App component. successfully completed.
    ( Apr 4, 2013 5:13:45 PM )  - passed: All required files exist.
    ( Apr 4, 2013 5:13:46 PM ) Check if Agents are available. successfully completed.
    ( Apr 4, 2013 5:13:46 PM )  - passed: All Agents are available: Agent on ratnap01.
    ( Apr 4, 2013 5:13:46 PM ) Check if RAF Services are available. successfully completed.
    ( Apr 4, 2013 5:13:46 PM )  - passed: All RAF Services are available: RAF_AGENT_MODULE (Agent on ratnap01).
    ( Apr 4, 2013 5:13:47 PM ) Check if Repository data folder exists. successfully completed.
    ( Apr 4, 2013 5:13:47 PM )  - passed: Data file locations are valid.
    ( Apr 4, 2013 5:13:48 PM ) Check if Job Factory data folder exists. successfully completed.
    ( Apr 4, 2013 5:13:48 PM )  - passed: Data file locations are valid.
    ( Apr 4, 2013 5:13:49 PM ) Check if Service Broker data folder exists. successfully completed.
    ( Apr 4, 2013 5:13:49 PM )  - passed: Data file locations are valid.
    ( Apr 4, 2013 5:13:50 PM ) Check if Event Server data folder exists. successfully completed.
    ( Apr 4, 2013 5:13:50 PM )  - passed: Data file locations are valid.
    ( Apr 4, 2013 5:13:50 PM ) Check if every Agent is associated with some Agent Module(s). successfully completed.
    ( Apr 4, 2013 5:13:50 PM )  - passed: Every Agent is associated with some Agent Module(s).
    ( Apr 4, 2013 5:13:51 PM ) Check if every Reporting and Analysis Service is associated with some Agent Module. successfully completed.
    ( Apr 4, 2013 5:13:51 PM )  - passed: Every Reporting and Analysis Service is associated with some Agent Module.
    ( Apr 4, 2013 5:13:52 PM ) Check if every Agent Module is associated with some Agent. successfully completed.
    ( Apr 4, 2013 5:13:52 PM )  - passed: Every Agent Module is associated with some Agent.
    ( Apr 4, 2013 5:13:52 PM ) Check if every Agent Module (except IR Log) is associated with some Reporting and Analysis Service(s). successfully completed.
    ( Apr 4, 2013 5:13:52 PM )  - passed: Every Agent Module (except IR Log) is associated with some Reporting and Analysis Service(s).
    ( Apr 4, 2013 5:13:53 PM ) Check if Agent Modules and corresponding Agents belong to the same host. successfully completed.
    ( Apr 4, 2013 5:13:53 PM )  - passed: Agent Modules and corresponding Agents belong to the same host.
    ( Apr 4, 2013 5:13:56 PM ) Check if Reporting and Analysis Services and corresponding Agent Modules belong to the same host. successfully completed.
    ( Apr 4, 2013 5:13:56 PM )  - passed: Reporting and Analysis Services and corresponding Agent Modules belong to the same host.
    ( Apr 4, 2013 5:13:57 PM ) Check the possibility to login on Web Analysis Server. failed.
    ( Apr 4, 2013 5:13:57 PM )  - failed: An error occurred while running the check.
        Error:An error occurred while running the check.
    ( Apr 4, 2013 5:13:57 PM ) Check connectivity between Web Analysis Server and Essbase Server. failed.
    ( Apr 4, 2013 5:13:57 PM )  - failed: An error occurred while running the check.
        Error:An error occurred while running the check.
    ( Apr 4, 2013 5:13:58 PM ) Check connectivity between Web Analysis Server and Financial Management Server. failed.
    ( Apr 4, 2013 5:13:58 PM )  - failed: An error occurred while running the check.
        Error:An error occurred while running the check.
    ( Apr 4, 2013 5:14:20 PM ) External repository access test successfully completed.
    ( Apr 4, 2013 5:14:20 PM )  - passed: Launch external checker with next command: C:\Oracle\Middleware\user_projects\epmsystem1\config\validation\11.1.2.0\launchChecker.bat FetchCategory ****** localhost 6800 /Sample Content
    ( Apr 4, 2013 5:14:36 PM ) External login test for IR successfully completed.
    ( Apr 4, 2013 5:14:36 PM )  - passed: Launch external checker with next command: C:\Oracle\Middleware\user_projects\epmsystem1\config\validation\11.1.2.0\launchChecker.bat PingBQService ****** localhost 6800
    ( Apr 4, 2013 5:14:36 PM ) Financial Management Application Server Configuration successfully completed.
    ( Apr 4, 2013 5:14:36 PM )  - passed: Validating Financial Management Server registration Successful...
    ( Apr 4, 2013 5:14:50 PM ) Financial Management Service Validation failed.
    ( Apr 4, 2013 5:14:50 PM )  - failed: Verify that the Financial Management service is working.
        Error:EPMVLD-01024: The Financial Management service check failed: ERROR: Unable to CreateApplicationCAS
    ( Apr 4, 2013 5:14:52 PM ) Financial Management Web Server successfully completed.
    ( Apr 4, 2013 5:14:52 PM )  - passed: Validating Financial Management Web application connection Successful...
    ( Apr 4, 2013 5:14:54 PM ) SmartView Provider successfully completed.
    ( Apr 4, 2013 5:14:54 PM )  - passed: Validating Financial Management SmartView Provider connection Successful...
    ( Apr 4, 2013 5:14:57 PM ) LCM Provider successfully completed.
    ( Apr 4, 2013 5:14:57 PM )  - passed: Validating Financial Management LCM Provider connection Successful...
    ( Apr 4, 2013 5:15:16 PM ) Essbase Java API checker failed.
    ( Apr 4, 2013 5:15:16 PM )  - failed: Launch external checker with next command: C:\Oracle\Middleware\user_projects\epmsystem1\config\validation\11.1.2.0\launchEssbaseJavaAPI.bat EssbaseJAPIConnect ****** RATNAP01:1423 Embedded
        Error:EPMVLD-01011: Result 1; Error message: Message was not included in output, check logs for details.
    ( Apr 4, 2013 5:15:16 PM ) Check system-jazn-data.xml file for HIT entries successfully completed.
    ( Apr 4, 2013 5:15:16 PM )  - passed: All HIT entries are present in system-jazn-data.xml
    COMP ID = oracle.EPMOHPS
    Hyperion Provider Services - Release 11.1.2.2.100.2167
    Copyright (c) 1991, 2012 Oracle and / or its affiliates. All rights reserved.
    connection mode : EMBEDDED
    essbase.properties: essbase.properties
    java System properties -DESS_ES_HOME: null
    ( Apr 4, 2013 5:15:29 PM ) Essbase server check failed.
    ( Apr 4, 2013 5:15:29 PM )  - failed: Validating Essbase Server connection to RATNAP01
        Error:Cannot connect to olap service. Cannot connect to Essbase Server at "RATNAP01:1423". Network error [10061]: Failed to connect to [RATNAP01:1423]
    ( Apr 4, 2013 5:15:37 PM ) Essbase server check using MaxL failed.
    ( Apr 4, 2013 5:15:37 PM )  - failed: Validating Essbase Server startup using MaxL command
        Error:EPMVLD-01010: Cannot connect to Essbase Server using MaxL.
    ( Apr 4, 2013 5:15:38 PM ) Module login test failed.
    ( Apr 4, 2013 5:15:38 PM )  - failed: Module test for Performance Management Architect with URL http://RATNAP01:9000/workspace/index.jsp?module=awb.awb
        Error:com.hyperion.cis.utils.BadResponseCodeException: Bad response code with POST method: 404
    ( Apr 4, 2013 5:15:38 PM ) Web Server link test failed.
    ( Apr 4, 2013 5:15:48 PM ) EnumerateDimensions failed.
    ( Apr 4, 2013 5:15:48 PM )  - failed: Launch external checker with next command: C:\Oracle\Middleware\EPMSystem11R1\..\jdk160_29/bin/java -DEPM_ORACLE_HOME=C:\Oracle\Middleware\EPMSystem11R1 -DEPM_ORACLE_INSTANCE=C:\Oracle\Middleware\user_projects\epmsystem1 -Djava.util.logging.config.class=oracle.core.ojdl.logging.LoggingConfiguration -Doracle.core.ojdl.logging.config.file=C:\Oracle\Middleware\user_projects\epmsystem1\config\validation\11.1.2.0\validationTool-logging.xml com.oracle.epm.epma.config.validations.dimeditor.EnumDimensions
        Error:EnumDimensions failed on initialization. Please check all registry information is valid and that HSS is running.
    ( Apr 4, 2013 5:15:59 PM ) EnumerateApplications failed.
    ( Apr 4, 2013 5:15:59 PM )  - failed: Launch external checker with next command: C:\Oracle\Middleware\EPMSystem11R1\..\jdk160_29/bin/java -DEPM_ORACLE_HOME=C:\Oracle\Middleware\EPMSystem11R1 -DEPM_ORACLE_INSTANCE=C:\Oracle\Middleware\user_projects\epmsystem1 -Djava.util.logging.config.class=oracle.core.ojdl.logging.LoggingConfiguration -Doracle.core.ojdl.logging.config.file=C:\Oracle\Middleware\user_projects\epmsystem1\config\validation\11.1.2.0\validationTool-logging.xml com.oracle.epm.epma.config.validations.repository.EnumApplications
        Error:EnumApplications failed on initialization. Please check all registry information is valid and that HSS is running.
    ( Apr 4, 2013 5:16:09 PM ) EnumerateDataSynchronizations failed.
    ( Apr 4, 2013 5:16:09 PM )  - failed: Launch external checker with next command: C:\Oracle\Middleware\EPMSystem11R1\..\jdk160_29/bin/java -DEPM_ORACLE_HOME=C:\Oracle\Middleware\EPMSystem11R1 -DEPM_ORACLE_INSTANCE=C:\Oracle\Middleware\user_projects\epmsystem1 -Djava.util.logging.config.class=oracle.core.ojdl.logging.LoggingConfiguration -Doracle.core.ojdl.logging.config.file=C:\Oracle\Middleware\user_projects\epmsystem1\config\validation\11.1.2.0\validationTool-logging.xml com.oracle.epm.epma.config.validations.repository.EnumDataSyncs
        Error:EnumDataSyncs failed on initialization. Please check all registry information is valid and that HSS is running.
    ( Apr 4, 2013 5:16:20 PM ) DimensionEditorLoadAdf failed.
    ( Apr 4, 2013 5:16:20 PM )  - failed: Launch external checker with next command: C:\Oracle\Middleware\EPMSystem11R1\..\jdk160_29/bin/java -DEPM_ORACLE_HOME=C:\Oracle\Middleware\EPMSystem11R1 -DEPM_ORACLE_INSTANCE=C:\Oracle\Middleware\user_projects\epmsystem1 -Djava.util.logging.config.class=oracle.core.ojdl.logging.LoggingConfiguration -Doracle.core.ojdl.logging.config.file=C:\Oracle\Middleware\user_projects\epmsystem1\config\validation\11.1.2.0\validationTool-logging.xml com.oracle.epm.epma.config.validations.dimeditor.DimEditorLoadAdf
        Error:DimEditorLoadAdf failed on initialization. Please check all registry information is valid and that HSS is running.
    ( Apr 4, 2013 5:16:29 PM ) ApplicationManagerLoadAdf failed.
    ( Apr 4, 2013 5:16:29 PM )  - failed: Launch external checker with next command: C:\Oracle\Middleware\EPMSystem11R1\..\jdk160_29/bin/java -DEPM_ORACLE_HOME=C:\Oracle\Middleware\EPMSystem11R1 -DEPM_ORACLE_INSTANCE=C:\Oracle\Middleware\user_projects\epmsystem1 -Djava.util.logging.config.class=oracle.core.ojdl.logging.LoggingConfiguration -Doracle.core.ojdl.logging.config.file=C:\Oracle\Middleware\user_projects\epmsystem1\config\validation\11.1.2.0\validationTool-logging.xml com.oracle.epm.epma.config.validations.appmanager.AppMgrLoadAdf
        Error:AppMgrLoadAdf failed on initialization. Please check all registry information is valid and that HSS is running.

  • HTTP Error 404 :File does not exist

    Hi all,
    On Test instance we are not able to open the help file,it give an error
    HTTP Error 404 :File does not exist
    can anybody have solution for this
    it's very urgent
    Thanks
    shekhar

    I have changed the note server definition in the external app to add the mail directory in front of the mail file name 'mail/mufile.nfs' and I get the following error:
    05/04/21 15:15:07 lotusnotes: [instance=(null), id=97176201941,7] ERROR: LotusServiceSession: getConfigProperties(): An error occured
    while reading/ retrieving the properties from the the configuration file.
    05/04/21 15:15:07 lotusnotes: [instance=(null), id=97176201941,7] ERROR: Unhandled exception in SOAP call
    oracle.portal.provider.v2.ProviderException: LotusServiceSession: getConfigProperties(): An error occured while reading/ retrieving the
    properties from the the configuration file.

  • I click on a link inside an email and it won't open so I can print the coupon, response is http error 400 or I have it blocked. Others in my area aren't having any problems with the same link opening but they are using IE. What's up with Firefox?

    gohollywood.com, register, message came back from Hollywood Insider with a link to click on to "Download Coupon". Click on link and you should get the coupon and you print it out. All my friends have done it but I can't. I get various error messages including : "HTTP error 400 - the request is badly formed".... or you have a blocker set.....
    Unless it is a Gmail/Firefox blocker or firewall, I don't have anything set up as a blocker on my email. Had a few friends go in my account on their computers and they had the same thing happen. However when they go in under their names they get to the link with no problems. HELP.

    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all your extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    You can use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    You have to close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")

  • HTTP Error 403.16 - Forbidden, Your client certificate is either not trusted or is invalid.

    Dear Experts,
    I have tried mutual authentication with sample website as per below link:
    http://itq.nl/testing-with-client-certificate-authentication-in-a-development-environment-on-iis-8-5/#comment-19427
    1. Created a Root certificate, client and server certificate based on this root certificate by using Makecert command as per below link:
    2. Import these certificates in Trusted Root Certification authority of both the stores (Local and Current user)
    3. Created a sample website with HTML page
    4.Hosted this website in IIS with HTTPS binding and selected the above server certifcate
    5. Enabled "Require SSL" and selected "Require" under SSL settings of website
    6. Exported the client certificate in base64 format --> Edited in notepad --> made the key into single line
    7. Placed the above key under Configuration editor --> system.webServer/security/authentication/iisClientCertificateMappingAuthentication --> one to one mapping with user credentials.
    8. I tried to access the website
    But, I ended with below error :(
    HTTP Error 403.16 - Forbidden
    Your client certificate is either not trusted or is invalid.
    Detailed Error Information:
    Module    IIS Web Core
    Notification    BeginRequest
    Handler    ExtensionlessUrlHandler-Integrated-4.0
    Error Code    0x800b0109
    Requested URL    https://localhost:443/
    Physical Path    E:\SampleRoot
    Logon Method    Not yet determined
    Logon User    Not yet determined
    Could you please let me know what I missed here.
    Note:
    I am using windows8, IIS8.0.
    Thanks in advance.
    Regards,
    M. Prasad Reddy.

    Hi Prasad,
      As per this case, I have been shared the corresponding details below
      1.First of all,make sure that you import the certificate whether it belongs to Trusted RootCertification or not .
        If that is the case ,Goto Microsoft Management Console (MMC), open the Certificates snap-in. 
        For instance, the certificate store that WCF is configured to retrieve X.509 certificates from, select the Trusted RootCertification Authoritiesfolder. Under the Trusted Root Certification Authorities folder, right-click the Certificatesfolder,
    point to All Tasks, and then click Import.
      2.you configured the server certificate as well, But check the client certificate whether have root certificate or not by following command?
    makecert -pe -n "CN=SSLClientAuthClient"
             -eku 1.3.6.1.5.5.7.3.2 -is root -ir localmachine -in WebSSLTestRoot
             -ss my -sr currentuser -len 2048
      3. Also check the Service Certificate whether its configured on the WCF Service side
      4.Make sure that you followed all the steps are done correctly from your given referred link below
    http://itq.nl/testing-with-client-certificate-authentication-in-a-development-environment-on-iis-8-5/#comment-19427
      5.Besides, please try to set the require SSL as ignore to see if you can access the website.
    If the above details cannot able to resolve this issue, please post your config file here.

  • HTTP error: 500 (Internal Server Error) while creating content server repst

    Hi All,
    I am getting the HTTP error as mentioned below,
    HTTP error: 500 (Internal Server Error)"CreateTab ContentStorage, connect error SQLConnect failed, [Microsoft][ODBC Driver
    Manager] Data s
    My content server is running on a Microsoft Cluster Environment.
    I tried to follow the steps in the SAP note 301352.
    Please help me in registering the LiveCache ODBC driver.
    When i excute the the odbcreg.exe file i get the foll,
    E:\sapdb\programs\pgm>odbcreg.exe
    DriverName=MaxDB
    Driver=e:\sapdb\programs\pgm\sqlod32.dll
    Setup=e:\sapdb\programs\pgm\sqlsp32.dll
    Version=7.6.0.0
    Please help me in registering the Livecache ODBC driver.
    Expecting your kind reply.
    Vineeth

    hi Vineeth Damodar 
    do it in command prompt.
    change the drive letter ...where u install the sapdb.
    D:\odbcreg LiveCache -i -p d:\sapdb\programs\pgm
    it will prompt that LIvecache is registred. Restart the server.
    then check in control panel...
    The LiveCache ODBC driver should then be registered in the Control Panel -> ODBC Drivers -> Driver tab
    -- Lee
    rewared points .. if it helpful for u....

  • HTTP error: 500 Internal Server Error  0

    Hi,
    I've upgraded a third party server.
    Everything was working fine before the upgrade.
    But now when I go to OAC0,
    if I do "test Connection" it is sucessful
    but when I send a certificate it says
    "HTTP error: 500 Internal Server Error  0"
    I've tried
    1. adding the server name in host file.
    2. tried configuring the R/3 systems
    3. configuring the R/3 gatways
    4. testing the connection from the archive server.
    everything is working fine.
    But still i get the error
    Pleae advice
    Edited by: Gautam Samant on Sep 18, 2008 12:29 PM

    Hi anirudh
    The details are :
    I'm trying to connec SAP R/3 to IXOS 9.6.1.
    The database used is MS SQL 2000 SP4.
    I've sucessfully configured the archive databse, archive server, everything.
    I've even updated the database to match with IXOS.
    The connection testing from both ends are working fine.
    But when i try to send a certificate from SAP to IXOS,
    its showing 500: internal server error.
    What might be the reason?
    Regards,
    Gautam
    Edited by: Gautam Samant on Sep 25, 2008 2:33 PM

Maybe you are looking for

  • Video/Audio from new macbook to HD TV?

    So, I'm wondering how i can connect the new MacBook to my HD TV which supports HDMI. Can i connect a mini DisplayPort/HDMI adapter and get both video and audio into my TV? I haven't seen any adapters of that kind in Apple Store. Is there perhaps anot

  • Exporting project from one mac to another

    Hi, I have a project in Aperture 3 with referenced images stored on an external hard drive.  I want to export this project across to another Mac without the RAW files being copied across as well.  I had hoped to re-reference the masters (RAW files) s

  • My mac is not starting up

    Yesterday, my Mac froze. I could move my mouse around but that was it. So I turned it off and back on and a white screen came up. After that a flashing folder with a question mark on it showed up and that was it. So I tried again and the same thing c

  • Is it possible to delete a song from 5th generation Ipod?

    Hi All Is it possible to delete a song from 5th generation Ipod, if so, how can this be done?

  • -34 error when exporting from iMovie to QuickTime

    When attempting to export an edited movie using the iMovie app on my MacBook Pro into QuickTime, I receive the message "quick time export error -34" Can anyone tell me what to do?  THANK YOU!