MDM API Connection issue

Hi,
I am trying to  establish connection to MDM server by the following statement ( Java stadalone app)
ConnectionPoolFactory.getInstance("Host:6000");
But I am getting exception "com.sap.mdm.net.ConnectionException: Could not open minimum connections."
Am I missing some config on MDM side??
Thanks, Anil

Dear Anil,
first of all you need to connect to the MDM server.
This is done without any repository consideration just by the hostname of the MDM-Server.
The standard port used to make this connection from your (Java) client is 20005.
You can change this port where MDM-Server is listening in mds.ini by providing another one.
CODE:
public ConnectionAccessor getConnection() {
  String sHostName = MyServerName;
  ConnectionAccessor connection = null;
  // We need a try / catch statement or a throws for the method
  try {
    /* retrieve connection from Factory
     * The hostname can be the name of the server if it is listening on the standard port 20005
     * or a combination of Servername:Portnumber eg. MDMSERVER:40000
    connection = SimpleConnectionFactory.getInstance(sHostName);
  } catch (ConnectionException e){
    // Do some exception handling
    e.printStackTrace();
  // return the connection or if an exception occurred a NULL value
  return connection;
Then you can think about the Session you want to make to the repository.
This is taken from my Blog:
In general there are three different kinds of connections and depending on the thing you want to do, you will need a different kind. But let me point out the three different kinds available:
   1. Server session:
      A server session is used for management operations of a running MDM Server. This could be mounting- or unarchive a repository. You could even stop the server with this kind of session if needed. In fact u could say that the operations done with MDM Console partly need a server session.
      The associated command would be: CreateServerSessionCommand
   2. Repository Session:
      A repository session is bound to a specific repository and is used for management operations. Operations could be CRUD (Create, Read, Update, Delete) on Repository elements (user roles, model data such as fields, tables...) not the data in the repository itself. Same as with the server session we could say that a repository session is partly needed by the MDM Console.
      The associated command would be: CreateRepositorySessionCommand
   3. User session
      A user session is used for any operation that might be performed by the MDM Datamanager. Basically any kind of data manipulation is done using a user session (CRUD of Data). So having this session we will be able to perform searches, creating, updating and deleting data records.
      The associated command would be: CreateUserSessionCommand
Most of the time you will need a User Session to read/write data from MDM.
So to get a User-Session you will need to use the CreateUserSessionCommand.
   RepositoryIdentifier repId = new RepositoryIdentifier(RepositoryNameAsString, DBServerNameAsString, DBMSTypeAsString);
   // Create the command to get the Session
   CreateUserSessionCommand createUserSessionCommand = new CreateUserSessionCommand(connection);
   // Set the identifier
   createUserSessionCommand.setRepositoryIdentifier(repId);
   // Set the region to use for Session - (Language)
   createUserSessionCommand.setDataRegion(dataRegionAsString);
   // Execute the command
   createUserSessionCommand.execute();
   // Get the session identifier
   String session = createUserSessionCommand.getUserSession();
Please node that if the RepositoryIdentifier is set the wrong way you will not be able to create a connection as well. So please double check this parameters.
After all you need to authenticate the session but for further details please have a look at the blog Regina provided the link to.
Hope this helped to find the problem!
Best regards,
Tobi

Similar Messages

  • GP API performance issue

    We are experiencing a performance issue with custom code using the GP API.
    We get an array of IGPWorkItem objects using IGPRuntimeManager.getWorkItems.
    We use IGPRuntimeManager.getProcessInstanceInformation to retieve IGPProcessInstanceInfo object for each item in the array.
    There are around 220 items in the array.
    Each getProcessInstanceInformation() call normally completes in 50ms.
    Intermittently the time increases to 500ms.
    Sometimes this is for all items in the array.
    Sometimes it starts at 500ms and reduces to 50ms.
    After some period,  the speed returns to normal (50ms).
    This happens across multiple instances running on multiple servers.
    We can see no issues in cpu, memory, threads, or connections.
    Would appreciate any suggestions on how to troubleshoot this issue.
    Here is sample code with trace to capture times before and after method call.
    IGPRuntimeManager rtManager = GPProcessFactory.getRuntimeManager();
    IUser user = WDClientUser.getCurrentUser().getSAPUser();
    IGPContextManager contextManager = GPContextFactory.getContextManager();
    IGPUserContext userContext = contextManager.createUserContext(user, new Locale("en_US"));
    IGPWorkItem[] workItems = rtManager.getWorkItems(GPWorkItemStatus.WORKITEM_STATUS_OPEN, userContext);
    int len = workItems.length;
    for (int i = 0; i < len; i++)
         try
              loc.infoT("start loop " + i);
              IGPWorkItem workItem = workItems<i>;          
              processID = workItem.getProcessID();
              loc.infoT("start info object call");
              IGPProcessInstanceInfo info = rtManager.getProcessInstanceInformation(processID, user);
              loc.infoT("stop info object method");
              do other stuff ...
         catch (Exception e)
              loc.errorT(e.toString());
    Edited by: Ray Erdelyan on Dec 11, 2009 10:49 PM

    Dear BRamchan,
    From what you have described , I think you are well ahead in use of MDM APIs. The information you have provided below is not enough for understanding where the issue is. If you do not have any issues, if you could send a copy of your code - ( deleteing any confidential/ intellectual property related stuff ) , i can try to simulate the same code and see what kind of issues arise. If you think it is possible ,please send me the code at [email protected]
    Thanks.
    Siva K.

  • Error while creating new user via new MDM API

    Hi
    I have two questions:
    1) Is it possible to create a user in MDM via MDM4J?
    2) I am trying to create a user through new MDM API (not the MDM4J). When I execute the command CreateUserCommand, I get following error:
    com.sap.mdm.commands.CommandException: com.sap.mdm.internal.protocol.manual.ServerException: MDM repository data is out-of-date or is locked by another MDM Server. Refresh the data and try the operation again. If the error persists, contact the system administrator.
         at com.sap.mdm.security.commands.CreateUserCommand.execute(CreateUserCommand.java:93)
         at demo.dm.GetRoleList.main(GetRoleList.java:206)
    Here is the code that I execute:
              CreateUserCommand createusercommand =
                   new CreateUserCommand(connections);
              createusercommand.setSession(repsessionId);
              UserProperties userpp = new UserProperties();
              userpp.setName("Vijendra");
              //userpp.setRoleIds(roleids);
              createusercommand.setUser(userpp);
              //createusercommand.setInChangeStamp(-1);
              //System.out.println(createusercommand.getOutChangeStamp());
              try {
                   createusercommand.execute();
              } catch (CommandException e) {
                   e.printStackTrace();
                   return;
    Thanks
    Vijendra
    Edited by: Vijendra Bhanot on Feb 22, 2008 6:42 PM
    Edited by: Vijendra Bhanot on Feb 22, 2008 6:49 PM

    Hi
    I am also getting same exception.
    com.sap.mdm.internal.protocol.manual.ServerException: MDM repository data is out-of-date or is locked by another MDM Server. Refresh the data and try the operation again. If the error persists, contact the system administrator.
    Please help me.
    Thanks & Regards
    Vinit

  • ABAP API Connection Problem

    Hi folks,
    I am working with the MDM ABAP API and there are some errors that do not make any sense to me.
    Here is a list with the technical information:
    MDM 5.5 SP 5 (5.5.40.83)
    SAP NetWeaver 2004s (700)
    MDM API 555/700
    I have set up the Repository information in MDMAPIC, using a new created provider of the type CL_MDM_PROVIDER_55_SP05_PL00 ( MDM5.5  SP05 Patch 0, Server Build  5.5.40.79  -  5.5.40.xx ).
    I then have tried to establish the connection to the server and repository and so on according to the HowTo Guides.
    When I finished yesterday, I managed to connect to my local MDM Server and to retrieve the names of the mounted repositories, but I was not able to retrieve records from a certain repository. When I wanted to solve that problem today, I was not able to connect to my MDM server anymore. There have been no changes in the coding or the configuration since then, only the MDM server has been restarted and the repository has been reloaded. But apart from that, nothing has changed but still I am not able to establish the connection anymore ( Connection refused ). Then I have tried to connect to another MDM server, but there I get another error ( Connection is not trusted ), although I have rechecked a dozen times that there is the allow.ip with the proper ID of my SAP system and the according user in the MDM repository.
    From time to time, the errors change without changing anything else, just by trying to execute it a couple of times. I have figured out, that sometimes I get an error out of the above mentioned provider class ( CL_MDM_PROVIDER_55_SP05_PL00 ). Is it possible, that the MDM API is not working properly with the PL00?
    Hints are appreciated a lot...!
    Thanks and best regards,
    Sabine

    Hi,
    Check whether the server is down or not. If the server is down, u will get the same error message
    regards,
    Nikhil

  • Connectivity Issue

    Hi All
    Probably due to connectivity issue from Adapter engine to Integration engine, we have encountered with the following error in audit log of channel monitoring. Can any have an idea where we look for right settings?
    "Transmitting the message to endpoint http://<Host name : service number (8000)>/sap/xi/engine?type=entry using connection File_http://sap.com/xi/XI/System failed, due to: com.sap.aii.af.ra.ms.api.RecoverableException: java.net.ConnectException: Connection refused"
    I tried to surf SDN, however I didn't get exact solution. Thanks in advance

    Hi,
    check if this 8000 is the same port used in SMICM-Services-http port,sxmb_admin-integration engine configuration-pipeline URL and  exchange profile-http ports.it should be same 8000.
    thanks.

  • MDM- PI Connection Error

    Hi Experts,
    Any idea on the below error showin in the PI MDM Adapter Sender communication channel while connecting to MDM.
    I feel the error is something related to patch mismatch??
    Error as  below:
    MDM Adapter listener could not start due to: Can not create repository session '<server=10.250.4.218 serverUser=Admin repository=VENDOR_HZL_112010_V1 user=Admin>' caused by: class com.sap.mdm.connector.connection.MdmConnectionSpec:sap.com/com.sap.mdm.tech.connector"@"com.sap.engine.boot.loader.ResourceMultiParentClassLoader"@"512ed845"@"unregistered incompatible with class com.sap.mdm.connector.connection.MdmConnectionSpec:sap.com/com.sap.mdm.tech.connector"@"com.sap.engine.boot.loader.ResourceMultiParentClassLoader"@"18059292@alive
    Cheers
    Dhwani

    Please check this discussion yes , this is a patch issue
    Re: MDM Unknownserver in PI
    regards
    Ninad

  • Does MDM APIs work in CE 7.2 landscape?

    Hello Experts,
    We have a requirement to fetch data from MDM tables and display in WD Java applications. We have to use MDM APIs for that. Our landscape is as follows:
    Portal server is on CE 7.2
    MDM Server version is 7.1 SP05
    Now, the major problem is, in order to establish a connection to repository by MDM API, we need to provide "MDM System Alias" in the code. This alias is for the system of type MDM created in portal system administration --> System Config.
    As far as I know, we need this alias created if we want to establish a connection. But following documentation on help.sap.com says that MDM Business Package isn't supported for CE 7.2 version. And until we deploy MDM BP, system template of type MDM isn't avaialble on portal.
    http://help.sap.com/saphelp_mdm71/helpdata/en/5e/48a04270600d31e10000000a1550b0/frameset.htm (See the Prerequisites section)
    What should we do in this case? Is it so that MDM APIs are not supported for CE 7.2 version at all? Or is there any other way to achive it?
    Please help me with your valuable inputs.
    Thank You,
    Ameya
    Edited by: Ameya Pimpalgaonkar on Jun 21, 2011 12:12 PM
    Edited by: Ameya Pimpalgaonkar on Jun 21, 2011 12:14 PM

    Hello Kanstantsin Chernichenka,
    Thank you very much for the reply. There is no way I can do this in SP 05? or do I have to upgrade to SP7 only? I am not sure if we can upgrade to SP7 that's why I am a bit concerned.
    And it is supported in SP07 means that I can deploy a business package for MDM on CE 7.2, only if MDM SP is 07?
    Ameya
    Edited by: Ameya Pimpalgaonkar on Jun 21, 2011 12:54 PM

  • JDBC-ORACLE CONNECTIVITY ISSUE WITYH OCI8 DRIVER using oracle 11g client..

    JDBC-ORACLE CONNECTIVITY ISSUE WITYH OCI8 DRIVER using oracle 11g client..
    I am getting below error when i m trying to access oracle db using oracle 11g client. It works with earlier oracle client versions. how do i resolve this. is there any issue with version of ojdbc6.jar that i am using??? I cant use thin driver since its an old application for which i dont have source files.
    Apr 6, 2013 1:00:59 PM org.apache.catalina.core.StandardWrapperValve invoke
    SEVERE: Servlet.service() for servlet jsp threw exception
    java.lang.UnsatisfiedLinkError: no ocijdbc9 in java.library.path
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1682)
    at java.lang.Runtime.loadLibrary0(Runtime.java:822)
    at java.lang.System.loadLibrary(System.java:992)
    at oracle.jdbc.oci8.OCIDBAccess.logon(OCIDBAccess.java:262)
    at oracle.jdbc.driver.OracleConnection.<init>(OracleConnection.java:346)
    at oracle.jdbc.driver.OracleDriver.getConnectionInstance(OracleDriver.java:468)
    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:314)
    at java.sql.DriverManager.getConnection(DriverManager.java:525)
    at java.sql.DriverManager.getConnection(DriverManager.java:171)
    at PettyCash.SysDate.getSysSubSys(SysDate.java:232)
    at org.apache.jsp.PettyCash.index_jsp._jspService(org.apache.jsp.PettyCash.index_jsp:186)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:322)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    Code is as follow for reference
    import oracle.jdbc.driver.*;
    DriverManager.registerDriver(new oracle.jdbc.OracleDriver());
    conn = DriverManager.getConnection ("jdbc:oracle:oci8:@" + database,db_user, db_pass);
    eNVIRONMENT VARIABLES set are as follows:
    classpath
    C:\Program Files\apache-tomcat-5.5.12\common\lib\servlet-api.jar;C:\Program Files\apache-tomcat-5.5.12\webapps\ROOT\WEB-INF\lib\classes12.jar;C:\Program Files\apache-tomcat-5.5.12\webapps\ROOT\WEB-INF\lib\ojdbc6.jar;
    JAVA_HOME
    C:\Program Files\Java\jdk1.5.0_04
    PATH
    C:\Program Files\Java\jdk1.5.0_04\bin
    ORACLE_HOME
    D:\Oracle11\product\11.2.0\client_1\BIN

    Apr 8, 2013 5:24:06 PM org.apache.catalina.core.StandardWrapperValve invoke
    SEVERE: Servlet.service() for servlet jsp threw exception
    java.lang.NullPointerException
         at org.apache.jsp.abc.index_jsp._jspService(org.apache.jsp.abc.index_jsp:280)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:322)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
         at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:432)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:868)
         at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:663)
         at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
         at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
         at java.lang.Thread.run(Thread.java:595)

  • How could i get access to MDM API,Is it available to all Enterprise accounts?e

    Hi ,
    I am trying to develop an enterprise application which needs to list all the installed Enterprise apps in the device.Also there is an option to delete the installed enterprise apps from device.I found that this can be done only by setting up a customized MDM server.My company already has an enterprise account.I have some doubts related to this
    1 . Is it possible to setup a custom MDM server using MDM API's?
    2. How could i get access to MDM API's to setup a custom MDM server/
    3. Is MDM server provided only by third party vendors?
    4. Is MDM server /MDM API available to all enterprise accounts?
    Looking forward  for a quick response.
    Thanks in advance

    A backup of a device with a newer version of iOS cannot be retored to a device with an older version.  The solution is to connect to itunes and update the new device's iOS, then perform a restore.

  • Universe Node connectivity issues in predictive workbench

    Hi all,
    I have a problem and was wondering if anyone has any experience with this.
    I am using the business objects plugin within predictive workbench(PW), I am using the enterprise login to access the Business Object server from within PW. When I add a universe node to the stream and start to work with the node I intermittently get errors stating that there is a problem with the 'createDocument.API', 'cannot initialise report engine server' amongst others.
    The only way to solve this connection issue and be able to use the universe node again is to restart the BOBJ service via the SIA.
    When these errors occur I am able to use Webi to carry out reports within BOBJ, this points me to the universe node.
    Predictive workbench is accessing data via a Business Objects Universe Node.
    Has anyone else had similar problems and if so do you have any advice?
    Many thanks
    Dave
    Edited by: Gillaspy David on Sep 17, 2010 12:36 PM

    We had not been provided with all the licenses, after much investigation added the next license and this solved the issue

  • ABAP API - performance issue

    Hi,
    Am new to MDM API. My scenario is that i have an XML file which gives me the list of ShipTo-BillTo partners(name and address only) for a SoldTo(number avlbl).
    I query for all the sales-area of the SoldTo and assign the ShipTo/BillTo with simillar name+address as partner function to it.
    So in a LoopAt for each soldto, i upate the partner functions for it.
    The program seems to work very well with smal XML files(upto 5kb, say like 10 customers). For bigger files (200KB) the program abend with times-out error.
    Appreciate any help in this regard

    Dear BRamchan,
    From what you have described , I think you are well ahead in use of MDM APIs. The information you have provided below is not enough for understanding where the issue is. If you do not have any issues, if you could send a copy of your code - ( deleteing any confidential/ intellectual property related stuff ) , i can try to simulate the same code and see what kind of issues arise. If you think it is possible ,please send me the code at [email protected]
    Thanks.
    Siva K.

  • SQL Query on MDM API

    Someone know how can i make the next query using the MDM Api? How can i make this sentence using classes as FreeFormTableParameters, FreeFormFieldParametes...?
    SELECT FIELD1, FIELD2 FROM PRODUCTS WHERE FIELD1="HELLO"
    I dont speach english good... Sorry about that.
    Thanks!

    Hi Giancarlo,
    something like this:
            TableId mainTableId = new TableId(1);
            // Define the result
            ResultDefinition rd = new ResultDefinition(mainTableId);
            // select all records
            Search search = new Search(mainTableId);
            // retrieve the records
            RetrieveLimitedRecordsCommand limitingCommand = new RetrieveLimitedRecordsCommand(connections);
            limitingCommand.setSession(sessionId);
            limitingCommand.setResultDefinition(rd);
            limitingCommand.setSearch(search);
            //limitingCommand.setPageSize(10);
            try {
                limitingCommand.execute();
            } catch (CommandException e) {
                e.printStackTrace();
                return;
            System.out.println("Record count is " + limitingCommand.getRecords().getCount());
    // To get fields....
    Record[] rec= limitingCommand.getRecords().getRecords();
    For i to rec.length
    RecordId objrecId = taxoSubClassRecs<i>.getId();
    Hope this help you.
    Regards,
    Vito

  • HP PhotoSmart 7510 suddenly has severe connectivity issues

    I have a HP PhotoSmart 7510 printer since about 2 months. Initial setup worked like a charm and the printer has been working pretty much perfectly for the last 2 months. Wireless printing, scanning and internet access on the printer (e.g. for Facebook photos) all worked. Just from time to time i would get the occasional (mildly annoying) message on my computer saying "scan to computer is currently unavailable" but it usually worked itself out and whenever I needed it to work, it did work.
    But since a few days ago, it has some severe connectivity issues. I didn't change any settings on the printer, router or computer - the issues just started appearing by themselves. I startet getting much more frequent messages on my computer saying "scan to computer is currently unavailable". I noticed I couldn't print anymore, and restarting computer, printer and/or router didn't help at all. The only thing so far i managed to print wirelessly since the problems started were the first 5 pixel rows of an image I tried to print, the rest didn't transmit.
    It seems the printer still connects to the WLAN but printing and scanning no longer work, and whenever I try to access a web service on the printer (like Facebook) it says it has no internet connection, even though the WLAN light is lit up (not blinking) and all the wireless status reports say "congratulations, no problems found" and display IPs etc. just like normal.
    I looked at the threads "PhotoSmart 7510 connects to router, but not to the web.", "Wireless printer (HP Photosmart 7510) not connecting to network" and "Photosmart 7510 won't connect to Web Services" but they weren't a big help. Activating EWS didn't work because even though the printer showed its IP address to be 192.168.1.3, when I entered this in my web browser it didn't find the printers configuration page.
    I tried the following steps from one of the threads:
    1. Restore the Network defaults
    2. Unplug the printers power cord while it is still on. Leave it unplugged and walk to the router.
    3. While the router is still on, unplug the power cord from the router, leave it unplugged for 30 seconds, then reconnect the power cord to the router. Once plugged back in the router should power on automatically.
    4. Plug the power cord back into the printer. Once plugged back in the printer should power on automatically.
    5. Run the Wireless Setup Wizard to reconnect the printer to your wireless network.
    6. Try enabling Web Services.
    I followed these steps exactly. Interestingly, even though I had done step 1 and restored the network settings to factory defaults, after turning back on, the printer somehow still had its old settings saved and reconnected to the network.
    It seemed to have fixed the problem, the printer finally had internet access again (Facebook app showed my photos) and scan to computer found my PC. But after just about 3 minutes, the printer had lost its internet connectivity again. When opening the Facebook app, it displayed the same error message it did before. And printing no longer worked as well.
    So, what is wrong with this printer?! It has the newest software update by the way (I checked during the 3 minutes it had internet access.) My computer is a HP Windows 7 x64 machine (EliteBook 6930p) and the router I'm using is a Netgear WNDR3700.
    I specifically bought this printer for my studies at university. In one week i have my exams and in order to study I REALLY need to be able to print some of my course materials! So any help as quickly as possible would be greatly appreciated. Or do you think this is a case for a warranty replacement, considering the printer's really strange and error-prone behavior?
    Thanks a lot!

    I can assure you that it is not a router issue.  It appears to me that it is a driver compatibility with Windows OS.  After trying to get to the bottom of this since my Photosmart 7525 was new and reading just about every forum and blog, I have come to the conclusion that the issue must be related to the HP driver itself.  
    The issue does not seem to affect any Mac systems, and from one forum someone was able to fix it by downloading new drivers compatible with 64-bit systems (which seem to not be affected by the glitch).  But that leaves us 32-bit people stuck with the current driver which does not work.
    The printer is connected with good signal to the wireless router (no matter who's router it is and what configuration is made).  The printer can be pinged from the router and any computer on the network which is not currently being affected by this issue.  However, the affected computer fails pings by either request timed out, or destination host unreachable.  Pings are successful from the affected computer to any other device on the network.  The only way to recover (at least for a few days) is to reboot the affected computer.
    Also, from the display on the 7525, the network tests pass without issue.  I can also download and print content from the internet with no issues.  
    Please do a quick google search of this issue and you will see several THOUSAND entries of people with the same request.  This is a serious issue that people are having and everything is pointing to an HP problem (not routers, improper installation of software or drivers, etc...).  I agree with several other customers that HP should be on the hook for this fix.  I will give it another couple weeks, then back to the store for a reliable unit from another competitor (Canon, Lexmark, etc..)
    Thank you in advance for escalating this issue to product engineering,
    S. Hunn
    There are 10 kinds of people in this world... Those who understand binary and those who do not.

  • KM Scheduler job with MDM APIs

    Hi,
    I am trying to write a background job that makes use of MDM APIs. I created a Portal Application Project and put in the required code. I added the required MDM jar fiels in to the java build path. How ever, I don't know how to add Library Reference with value "com.sap.mdm.tech.mdm4j" since this is not a Webdynpro project. Without this the KM Scheduler fails to run the job thowing an exception ''NoClassDefFoundError...".
    Can any one tell me how do I go about?
    Thanks,
    Sudheer

    Trying to post the question under different category

  • Connection doctor and connection issues

    I have nothing blocking  my internet connection, however mail is a nightmare for me. I continually receive connection issues via the connection doctor for imaps, pops, and icloud.
    Are my settings wrong? I have checked with each of the settings and they are set per instructions provided. Some are google, some yahoo, icloud, etc.
    This is really annoying and I could really use some help.
    Here is a typical message: Could not connect to this Google IMAP server. Check your network connection and that you entered the correct information in the Account preferences. Also verify that the server supports SSL. If it does not, deselect the 'Use SSL" checkbox in the Advanced tab of Account Preference"
    I have done all of this and am still having troubles.
    I am also receiving SMTP connection issues - "Trying to log into this SMTP account failed. Verufy that the username and password are correct."
    I have checked and all are correct. Even more confusing, these issues are not present all the time - however I have not changed anything between when times are good and bad.
    Sigh - I hope someone has an idea to help me out.
    Thanks in advance for your time and thoughts.
    Patti
    I am running osx 10.8 mail 6.2 and use xfinity for my internet (as I mentioned, I disabled their firewall trying to fix this)

    Hi there Japps1,
    You may find the troubleshooting steps in the article below helpful.
    OS X Mail: Troubleshooting sending and receiving email messages
    http://support.apple.com/kb/TS3276
    -Griff W.

Maybe you are looking for