CacheRefreshException: Connection to system RUNTIME using application...

Hi experts,
I have a following problem: SXI_CACHE is not functioning with following message.
com.sap.aii.ib.server.abapcache.CacheRefreshException: Connection to system RUNTIME using application RUNTIME lost. Detailed information: Error accessing "http:<xihost>:80xx/run/hmi_service_id_fresh_swcv/int?container=any" with user "XIDIRUSER". Response code is 404, response message is "Not Found".
I have checked users, passwords and roles - everything looks ok. RFC connections too. It is about Netweaver 2004s (SP09) Java stack restart. I tried many Sap notes, but have not found nothing eficient.
It seems to me, that port shall be in range 5xx00 not 80xx. Manually, I have tried 5xx00 port in broser and it works.
Integration Engine (ICM) port was in range 5xx00 which I have changed to 80xx (in TC SMICM, Exchange profiles and SLD) according to recomendations. All this started to happen after J2EE Stack restart.
Why is it pooling wrong port ?
Regards
Jurica

FYI
In mean time we found the problem:
On of exchange Profile parameters (com.sap.aii.connect.integrationserver.httpport) was set to wrong port - to 80xx instead of 5xx00. After Java Stack restart from SMICM, everything was ok again.
So, this is actually Java Stack port parameter,  com.sap.aii.connect.integrationserver.r3.httpport is ABAP Stack port.
Regards
jurica

Similar Messages

  • Connection to system REPOSITORY using application REPOSITORY lost.

    Connection to system REPOSITORY using application REPOSITORY lost. Detailed information: Error accessing "http://<host>:<port>/rep/query/int?container=any" with user "USER01". Response code is 401, response message is "Unauthorized".
    USER01 is locked, but i want to change this conection user to PIDIRUSER.
    Do you know where this connection user can be changed?

    Hello there.
    Please check the note below according to your system:
    #999962 - PI 7.10: Change passwords of PI service users
    #936093 - XI 7.0: Changing the passwords of XI service users
    #721548 - XI 3.0: Changing the passwords of the XI service users
    Regards,
    Caio Cagnani

  • Connection to system REPOSITORY using application REPOSITORY lost. Detailed

    Connection to system REPOSITORY using application REPOSITORY lost. Detailed information: Error accessing "http://ECC:50000/rep/query/int?container=any" with user "PIDIRUSER". Response code is 401, response message is "Unauthorized"

    This problem occurs when user is locked. Unlock yhe user in su01.
    unable to access repository / SLD
    See this guide may help you.
    https://www.dw.dhhs.state.nc.us/wi/OnlineGuides/EN/ErrorsEN.pdf
    Rewards if helpful.
    BR,
    Alok

  • When i update to the latest version (7.0.3), there is a message appear to me when i open any application that contains notification such as (What'sApp or BBM),this message said (Connect to iTunes to use push Notification),How I can to stop these message?

    When i update to the latest version (7.0.3), there is a message appear to me when i open any application that contains notification such as (What'sApp or BBM) , this message said (Connect to iTunes to use push Notification) , How I can to stop these messages that appear to me constantly?

     Hi,
    One of my ex-colleagues has installed a NI-DAQ 6.5 in our system. [And I do not see any other naitional instruments card in the CPU of the computer, may be he removed it] I deleted the account and all his files in the system. When I am trying to install version8.0, its not getting installed and giving me a message that I should uninstall the previous version by going to Add/Remove programs in the control panel.
    I tried doing that, but the "Change/Remove" button does not seem to work...[There is no response and so unable to install the new version...]
    Any idea how can this problem be solved?
    It is a windowsXP operating system with SP2 installed on a machine with P4 processor.
    Thanks

  • Connection to local .mdb using CR 10.5 x64 runtimes

    Hi,
    I am using the CR 10.5 x86 and x64 runtimes for an application built in VS 2008.  The application builds and runs correctly, and I am able to load and view a .rpt using an .mdb as the datasource.
    In the x86 version of the application:
    I use the CR 10.5 x86 runtimes, and the .rpt file was built using a DAO connection to an .mdb.  I apply the following code to dynamically change the datasource:
    public bool ChangeDatasource(string DatabasePath)     // E.g. DatabasePath = "C:\newdata.mdb"
                crConnectionInfo.ServerName = DatabasePath;
                crConnectionInfo.DatabaseName = DatabasePath;
                crConnectionInfo.UserID = "";
                crConnectionInfo.Password = "password";
                //Loop through all tables in the main report
                crDatabase = crReportDocument.Database;
                crTables = crDatabase.Tables;
                for (int i = 0; i < crTables.Count; i++)
                    crTable = crTables[ i ];
                    crTableLogOnInfo = crTable.LogOnInfo;
                    crTableLogOnInfo.TableName = crTable.Name;
                    crTableLogOnInfo.ConnectionInfo = crConnectionInfo;
                    crTable.ApplyLogOnInfo(crTableLogOnInfo);
                    bool bOn = crTable.TestConnectivity();
                    if (!bOn)
                        MessageBox.Show("Failed to connect to " + crTable.Name);
                crReportDocument.VerifyDatabase();
    The above works perfectly in x86.
    However, in the x64 version:
    Using the CR 10.5 x64 runtimes, the application builds and runs correctly, and displays a simple report just fine.
    However, when I use the code above, TestConnectivity() fails and I get the following error during VerifyDatabase():
    "Error in File ____.rpt: Invalid mapping type value."
    As I understand it, this is because the .rpt was built with a DAO connection, which does not support 64-bit.  Thus, I am trying to alter the .rpt to use another connection.  My results are as follows:
    32-bit DSN, using DAO / ODBC / ADO:  I can create the connection, but I still get the "Invalid mapping type value" error when running the code above in x64.
    64-bit DSN using ODBC: I get an IM014 "The specified DSN contains an architecture mismatch" error in the Database Expert when trying to set up the connection.
    64-bit DSN using ADO: None of the provider options seem to work when setting up the connection in the Database Expert.  I get errors like "Data source name not found and no default driver specified".
    Note, before anyone asks:  Yes, I do have the 64-bit Access ODBC drivers installed, and working. I use them in another part of my x64 application, and they work correctly.
    Any help would be GREATLY appreciated.

    Ludek,
    I think there must still be some confusion here.
    I am well-aware that I can design reports using the Access 2007 (32-bit ODBC) drivers.  In fact, I have already tried this, and it works fine with my 32-bit app using CR 10.5 32-bit.
    However, those reports do not connect when using my 64-bit app using CR10.5 64-bit.  This makes sense, because the Access 2007 drivers are 32-bit.
    The reason I have been trying to use Access 2010 is that, unlike 2007, it has 64-bit ODBC drivers.
    I'll try to make this more clear, once again:
    My 32-bit app, using CR 10.5 32-bit:
    - Report built with DAO: Works
    - Report built with Access 2007 32-bit ODBC: Works
    - Report built with Access 2010 32-bit ODBC: Works
    My 64-bit app, using CR 10.5 64-bit:
    - Report built with DAO: (no 64-bit DAO) "Invalid mapping type value" error when running app
    - Report built with Access 2007 32-bit ODBC: "Invalid mapping type value" error when running app
    - Report built with Access 2010 32-bit ODBC: "Invalid mapping type value" error  when running app
    - Report built with Access 2010 64-bit ODBC: "Architecture mismatch" error when trying to design the report
    You also said you would test CRVS2010 x64 with Access 2010 x64.  Do you have a result for that yet?
    P.S. Your first link results in an error.  Can you provide a corrected link?
    Edited by: DKouts on Aug 18, 2010 11:44 PM

  • Can i use single database connection in a hole java application?

    can i use single database connection in a hole java application?.I have so many forms to use database connection.

    Theoretically you can. Not only theoretically. I've seen lots of application which only uses one database connection (they were using, oracle or mysql)
    The first reply given here assumed that the answer to
    your question depends only on the design of your
    application. That is not true.Yes it's true. Nothing in the original questions says that you aren't allowed to open or close the single connection that you have. It's looks more like the OP is interested in sharing a connection (i.e having a singleton or a connection pool with only one connection)
    It does also depend on the behaviour of the database
    in the background.
    Most databases have a time out for connections that
    are idle Not a problem. Most implementations of connection pools and applications which keeps a connection open have a timer which calls e.g. select * from dual (if you are using oracle) when the connection has been idle for X minutes.
    (some, like db2 on z/OS, even cancel
    connections, that are not idle, if they are open a
    certain amount of time or have reached a given limit
    of cpu seconds.)You would also have that problem if you had a connection pool with several connections.
    In essence: If you have no control over the time
    your application runs (and therefore your connection
    is open) or over type or the configuration of the
    database you are accessing, you can't do it.See above.
    The closest thing to what you want would be using
    PooledConnections, iif those are supported for the
    database you want to access.Not true.
    Kaj

  • How to connect oracle and c# using namespace System.Data.OracleClient

    Hi!
    I am using Microsoft Visual Studio 2005 and Orange for oracle version 4.
    I've been given a task, show the table of the database using datagrid.
    but first I have to connect to the database using namespace System.Data.OracleClient.
    What should I do? I am totally new in c# and oracle.
    Thanks in advance. :)

    Hi!
    I am using Microsoft Visual Studio 2005 and Orange for oracle version 4.
    I've been given a task, show the table of the database using datagrid.
    but first I have to connect to the database using namespace System.Data.OracleClient.
    What should I do? I am totally new in c# and oracle.
    Thanks in advance. :)

  • Using Azure 2.5 cspack throws System.Runtime.Serialization.SerializationException: Type 'System.Xml.Linq.XElement' in Assembly 'System.Xml.Linq Not marked as serializable

    Hi,
    I am using Azure SDK 2.5 package, and when I run cspack from build window it throws me below error:
     error MSB4018: The "CSPack" task failed unexpectedly.
    System.Runtime.Serialization.SerializationException: Type 'System.Xml.Linq.XElement' in Assembly 'System.Xml.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' is not marked as serializable.
    But when I use the 2.4 SDK it works fine for me. Please advice how to fix this issue.
    Thanks,
    Ravi

    Hi,
     I am not sure about the root cause, but I did find a workaround for this at the following stackoverflow article
     http://stackoverflow.com/questions/26910773/azure-2-5-sdk-upgrade-causes-cspack-fail
     "Copy the Azure SDK 2.4 version cspack.exe, ServiceDescription.dll & Microsoft.ServiceHosting.Tools.MsBuildTasks.dll to Azure SDK 2.5 cspack.exe location and replace. This would using cspack 2.4 to pack with Azure SDK 2.5 runtimes."
     Let us know if this helps.
    Regards,
    Nithin Rathnakar

  • Cannot submit AIR build using Application Loader to itunes connect ERROR ITMS-90125

    I'm using IntelliJ and windows 8
    I have tried AIR 1.5, 1.6, 1.7.
    using -useLegacyAOT=yes
    Below is the error when I try to submit my app to Itunes Connect using Application Loader
    ERROR ITMS-90125: "The binary is invalid. The encryption info in the LC_ENCRYPTION_INFO load command is either missing or invalid, or the binary is already encrypted. This binary does not seem to have been built with Apple's linker."
    http://i.imgur.com/oNJQllN.png
    Tried several things I read on forums but there's no reply for this exact error.
    What do I need to do? Please help me.
    Thank you.

    @Marian Majewski-Sliwa
    We looked into the info.plist file which you had shared but there appears to be no issue with the same.
    If possible, could you please PM the packaged IPA file, all 3 ANEs which you have used in your project to help us investigate the issue further?
    Thanks,
    Abhinav

  • Since downloading osx v10.7lion every time i try to connect to the internet using BT Broadband i keep getting a message saying " you cant openthe application ) because Power PC applications are no longer supported." this is very annoying as i likeBT ?????

    Since downloading osx v10.7lion every time i try to connect to the internet using BT Broadband i keep getting a message saying
    " you cant openthe application ) because Power PC applications are no longer supported." this is very annoying as i likeBT and the way it opens with all the local up to date news plus other apps +++ 
    Please can anyone help me as apple will not help unless i sign up for a new product agreement which i cannot understand as every thing worked before this so called very latest software that everyone cant do without  ?????

    I had the same problem with some apps and printer setup software. SInce Rosetta has been discontinued on Lion my only solution was to restore to 10.6 since the manufacturers either have not yet or will not release updated apps. In this case you have to determine how important those old PPC apps are to keep around and if there alternitives that are available to replace the functionality. I would expect a broadband provider to update thier apps if it is something that is required to connect.
    Mike

  • HT4889 When I transferred my data from a 128GB Macbook Air to 256GB Macbook Air (brand new version as of 9/1/13) I end up with 188GB used!   I add up the size of Users, System, Library and Applications and it comes to 90GB.  What am I missing?

    When I transferred my data from a 128GB Macbook Air to 256GB Macbook Air (brand new version as of 9/1/13) I end up with 188GB used!   I add up the size of Users, System, Library and Applications and it comes to 90GB.  What am I missing?  How did I "use" up so much space in migrating from one Mac to another?

    Did you use the Setup Assistant available at the beginning of the new machine's setup process? Or did you use Migration Assistant later after you had set up the new machine?
    If you used Migration Assistant, you generally wind up with two accounts (the new one you set up on the new machine plus the old one you ported over) - that may explain your excessive use of space. In that case, you can either manually combine/remove all unnecessary duplicate files, or you can start over by using Command + R, wiping your drive, and downloading the OS. Once it's downloaded, use the Setup Assistant offered at the beginning of the install/setup process.

  • When ever I use Adobe reader 11 with a USB device, I cannot safe remove the USB device and get the following message (or similar one) in system log:  The application \Device\HarddiskVolume1\Program Files (x86)\Adobe\Reader 11.0\Reader\AcroRd32.exe with pr

    When ever I use Adobe reader 11 with a USB device, I cannot safe remove the USB device and get the following message (or similar one) in system log:  The application \Device\HarddiskVolume1\Program Files (x86)\Adobe\Reader 11.0\Reader\AcroRd32.exe with process id 6620 stopped the removal or ejection for the device USB\VID_05DC&PID_C75C\20131215015821328FC8.
    I am running on Windows Server 2012 R2 in Desktop Experience mode.
    Any ideas?
    Roger

    In addition to that symptom, I discovered that even though I had closed all Adobe Reader sessions, the processes kept running and used up 90%+ of my CPU.

  • How to invoke Default printer of my system by using java application

    I need to invoke default printer of my system by using java application ? could u plz help me out with sample code?

    VoodooMagic.getDefaultPrinter().print();
    http://www.javaworld.com/javaworld/jw-10-2000/jw-1020-print.html
    Look for more at Google.

  • HT5624 when ever i log any application on my 4s phone i get notification ie connect to iTunes to use push notification

    when ever i log any application on my 4s phone i get notification ie connect to iTunes to use push notification

    Hello there, ajinkyab.
    The following Knowledge Base article provides some great. practical steps for troubleshooting the issue you're describing:
    iPad and iPod touch: Unable to use YouTube or Push notifications
    http://support.apple.com/kb/TS3305
    To use certain services, iTunes must download and install an authentication token on the device. Because iPad and iPod touch do not require an active Internet connection to activate, these tokens may not be downloaded and installed during initial setup.
    You can resolve this issue by verifying that iTunes has an active Internet connection. Use the following steps:
    Open iTunes on your Mac or PC.
    Verify that your Mac or PC has an active Internet connection by accessing the iTunes Store in iTunes.
    Connect your iPad or iPod touch to your Mac or PC.
    After the sync completes, verify you can access YouTube.
    This article also provides a great resource for troubleshooting apps installed on your iOS device:
    iOS: An app you installed unexpectedly quits, stops responding, or won’t open
    http://support.apple.com/kb/TS1702
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • Hi, error shared library - connecting databse using application server-

    Hi,
    i am connecting the oracle10g databse using the oracle applcation server10g............I have created the datasource and test my connection pool.
    the connection is established successfully but in eclipse its throwing the following exceptions.
    ERROR! Shared library ioser12 could not be found.
    context not createdjavax.naming.CommunicationException: Can't find SerialContextProvider
    at com.sun.enterprise.naming.SerialContext.getProvider(SerialContext.java:60)
    at com.sun.enterprise.naming.SerialContext.<init>(SerialContext.java:79)
    at com.sun.enterprise.naming.SerialInitContextFactory.getInitialContext(SerialInitContextFactory.java:54)
    at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:662)
    at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:243)
    at javax.naming.InitialContext.init(InitialContext.java:219)
    at javax.naming.InitialContext.<init>(InitialContext.java:175)
    at com.ats.swdms.common.DbConnection.getDBConnection(DbConnection.java:28)
    at com.ats.swdms.common.TestDb.main(TestDb.java:17)
    java.lang.NullPointerException
    at com.ats.swdms.common.TestDb.main(TestDb.java:18)
    Exception in thread "main"

    Is your CLASSPATH and LD_LIBRARY_PATH correctly set?

Maybe you are looking for