Is possible to make Serializable a Connection object?

Hi I would like to know if is possible to make Serializable a Connection Object, I would like to save the Connection object into a text file so other class can read it and execute a proper query. If is possible how can I do it?.
Thanks.

Actually, if a class isn't already Serializable, you can't make it become Serializable reliably. Consider the following case:
class A
    int x = 0;
    public void setX(int new_x) { x = new_x; }
    public int getX() { return x; }
class B extends A implements Serializable
    int y = 0;
    public void setY(int new_y) { y = new_y; }
    public int getY() { return y; }
public static void main(String arg[]) throws Exception
    B b = new B();
    b.setX(10);
    b.setY(12);
    someObjectOutputStream.writeObject(b);
}The problem with this is that the implementation of Serializable by class B does not affect class A. In the above example, the ObjectInputStream that obtains the instance of B will have a y value of 12, but an x value of 0 (not 10).
Thus, unless the Connection object implemented Serializable to begin with, it can't become Serializable. And, as the above post has described, the implementers of the Connection object would not make it Serializable as the local Connection object uses underlying O/S resources which cannot simply be transformed into a byte array.

Similar Messages

  • Is it possible to make a broadband connection in iOS for ipad?

    Hi, is it possible to make a broadband connection on iPad using iOS 6.1.3 ?
    As I had this problem in my apple devices, I searched a lot and finally I found out how to make a broadband connection like what what we do on widows 7 or windows 8 on Mac OS X mountain Lion, but I still can't make it on iPad, I just want to know if it's possible.
    Thanks.

    For example, in the university where I study in order to use wi-Fi you are given a user name and a pass word first you connect to the Wi-Fi but you won't have access to the Internet if you just try to connect to the Wi-Fi after that you have to connect to the broadband you've made in your PC with that username and password, this is what I mean. Of course I have used Wi-Fi this way on windows and Mac but not in iOS.

  • Is it possible to make Multiple Broadband connecti...

    Hi
    I have been using BT broadband for some years using a BT Homehub 1.5.  
    My Freesat box is plugged in to my Homehub, so that I can reliably get BBC iPlayer on the main household TV, so I am unable to move the hub to improve wireless reception elsewhere in the house. 
    The wireless connection in most of the house is OK, but in one room the reliability is poor and often signal strength shows as low. There is a phone line in this room and I was wondering whether it is possible to make a connection to this line using either a separate modem (Speedtouch 330), or a second hub.
    If this is a possible solution then the computer connected to the new modem would affectively be a wired connection, leaving the wireless option still available to the homehub. Both the new modem and the homehub would need to be able to access my BT Broadband account.
    If this is technically not possible I seem to have options of using an ethernet connection from the 'poor reception' room to my hub (not really practical as the house has solid floors and routing the cable would be a nightmare), or perhaps upgrading my hub (and wireless dongle) to a later version. Any advice would be very welcome.
    thanks
    MalcDu   
    Solved!
    Go to Solution.

    MalcDu wrote:
    Hi,
    this looks good.
    Would it be worth upgrading the hub and dongles at the same time or is this overkill
    MalcDu
    No, I would strongly advise that you keep using the home hub 1.5, as in my opinion, the version 1.0 and 1.5 are the most stable of the home hubs, and do not have some of the problems of the later versions.
    If you want to add extra wireless coverage, then an additional wireless access point is the best option, connected to the far end of the powerline adapters.
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

  • How do I make a data connection object variable?

    This should be easy but I can' t sort it out.
    I created a database connection and cloned it so I could avoid security issues.
    The cloned connection works fine and I can query for specific records and the bound fields are populated. The problem comes when I try to advance to the next record with "clonedDB.next()" for example. The error that says "clonedDB is not defined". This code is all in Java by the way.
    So I though maybe I need to create an object variable to contain the clonedDB object; this is what I can't figure out how to do or if will solve my problem.
    Thanks in advance!
    Cheers,
    Al

    Can you send me your form so I can have a look?
    If the attachment ability is not available for you can you email it to [email protected]
    Thanks
    Paul

  • Is it possible to make connection for the VC application the SQL Server

    hi
    I have requirement like, We have some data available in SQL server as central repositoty. My client want to make the Anylatics application like showing graphs in VC based on the data available in SQL server.
    My question. Is there any possiblity to make the connection the sql server by creating some system object using some JDBC connection Like that.
    What is the possibility.
    can u any body tell what is the work around need to be for this requirement. Whether it is possible or not.
    Regards
    vijay

    Hi Vijay,
    In your other thread, I have given the link to the following doc which will help you to in configuring the JDBC Connector.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/uuid/b00917dc-ead4-2910-3ebb-b0a63e49ef10
    That was the first step.
    In the second step, you need to create a JDBC System in the portal. Go through the following doc which explains how to create BI JDBC system for VC. All you need to change is that on Page 10, choose JDBC system instead of BI JDBC system, and do the necessary configurations.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/6209b52e-0401-0010-6a9f-d40ec3a09424
    As rightly said by Marcel, you can use stored procedures as well as SQL statements. As far as stored procedures are concerned, all you need to do is go to Enterprise Manager, and create procedures in your database in the same way by which you create new tables and users (Refer my article). Then you can use these procedures in your Visual Composer provided you have properly created the JDBC system in portal properly.
    Also have a look at the following doc:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/6339e7d4-0a01-0010-1c98-db00e52e989a
    Bye
    Ankur
    Do reward points for helpful as well as solved answers!!

  • Possible to make speakers connected to a Mac available to remote iTunes?

    Hi,
    So with my current setup it's pretty nice. I've got my iMac in my bedroom that holds all of my music, my mac mini in my living room that is my media center. I've also go an airport express next to my iMac so that I can play music synchronously in my living room and my bedroom.
    My question is that if it is possible to have the speakers connect to the local mac appear in the iTunes remote speakers menu on other macs. I hope that makes some sort of sense?
    Regards,
    Ken

    Anyone?

  • Serialization of an Object containing an opened database connection

    Hi everyone,
    My question is simple:
    If you serialize an object containing an active databse connection, will it be de-serialized with that connection active and ready to use?

    First of all, lets look at the purpose. what is that
    making you write an object which hold the Connection
    object to a network or to the file.
    First check the condition. The conditions for
    serialization are
    1) Connection object should not be declared as
    transiant.
    2) And it should not be as static.
    It the above conditions are meet then the it is
    serializable.
    Now the obejct holding the connection object is
    written to the file or over the n/w.
    Reading
    Case 1 ) You read from the file at the server end no
    issues. You can reconstruct the Connection object and
    use it.
    case 2) If you are writing to the n/w , your client
    is some where in Aus and the java server the db
    server are in US. Java Server being public and db
    server being local to the Java Server , how you
    would use the connection object to execute the querys
    on that DB.
    Think about this :).Hi,
    Are n't you missing the whole point here? What you've said above is valid , of course, but then your readObject/writeObject methods would take care of restoring the connection object (from wherever) if such an implementation is taken up. IMHO, such an implementation is not practical in the first place, and if it's required in your project, it's bad design.
    Regards
    Hrishikesh

  • Is it possible to make an object to always face the camera (in 3d)?

    I have an animation with a camera flying through a map in 3D.
    Is it possible to make all my texts layers automatically "face" the camera, no matter what movement the camera makes in 3d?
    Thanks in advance,
    Morimitsu Yamauchi

    Sure, just use the Basic Motion > Point At behavior and make the camera the target. You'll need to tweak the settings a bit.

  • Sending Connection object over the network

    Hi,
    How can a Connection object be sent over the network and run on another JVM. I need to hold connection object to execute processes one after other, that require Oracle connection without ever connecting again. I do not have J2EE container or webserver setup to hold connection/connectionpool,but need to run the process on command line. I am using RMI infrastructure to pass parameters/return values but connection object is not serializable and cannot be marshalled and failing. Please explain, if there is another way using JDK 1.4
    Sudheer

    I don't believe this is possible. A connection object has a number of associated structures on the operating system, which generally makes it impossible to move. From a fundamental networking level, you also cannot, in general, cause a connection to machine1 to start communicating with machine2-- that would introduce all manner of security problems.
    Why don't you want to just create another connection on the other machine?
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • Is it possible to copy a Cross-Tab object and Formulars to a new report.

    Afteroon all,
    I have created a Balance Sheet report using quite a few formulars and items. They are listed in a cross-tab object. Everything is working fine except something has happened to the report at some stage and it is causing problems when I deploy my web app (the rpt file will not delete when I undeploy my web app, it gets locked, untill I shutdown tomcat)
    So I want to try create a new rpt file and copy the cross-tab object and all its formulars across.
    So is there a way to copy formulars from one report to another and also is it possible to copy a cross-tab object across.
    Thanks
    Darren
    (PS Unless someone can tell me why my rpt file is being locked by tomcat)

    I am running windows and the rpt file "locks" and I have just noticed the \WEB-INF\lib\derby.jar file also locks. I dont use the derby.jar file at all. (as far as I am aware - I got an oracle connection).
    Maybe I am redeploying incorrectly or not clearing the report correctly.
    What I do is, I copy the WAR file to the webapps folder, Tomcat unpacks the app and I can run my reports no problem, fresh data is displayed if different parameters are used. I then close my browser window and make changes to my report design. I delete the WAR file in the webapps folder and export my project to a war file again - to the webapps, Tomcat then tries to clear the old project folder so that it can deploy the new WAR. it clears out everything except the rpt file and the derby.jar files. And then of course cannot redeploy the WAR file. So I have to stop tomcat and delete the project myself and start Tomcat again.
    Clearly this is not good as I dont want to have to stop and start my Tomcat server everytime I make changes.
    So how should I correctly undeploy a current version of my webapp and then deploy the new changes. Or am I not doing something when I am finished viewing the report.
    Sorry for going off Thread topic.
    I have tried using copies of the report but the same still happens.
    Thanks
    Darren
    Im busy reading the "CR not releasing the memory " thread, hopefully the answer is in there somewhere
    Edited by: Darren Jackson on Oct 7, 2008 5:21 PM

  • Where to store the Connection object?

    Hi,
    I am using JDBC together with JSF technology to building web applications. I have the following questions:
    1. Where do we usually store the open Connection object so that every class in my web application can make use of it to update or retrieve database data?
    2. Since JSF uses managed-beans which is not a servlet itself, if I store the Connection object as an attribute in the application scope then it can only be retrieved from a servlet.
    3. If I make the Connection object on every class where I would like to have database access, it seems that it is not following good practice since this would create duplicate codes in every Java class which is going to have database access.
    Does anybody have an idea? Thank you.

    Hensome wrote:
    1. But how do I use the managed bean within a servlet? Could you write some simple sample codes?
    2. If I only use simple navigation rules and backing beans, when the submit button is clicked then the action method of the managed bean is triggered. I will then trigger the action which uses JDBC for database access. This whole process does not go through a particular servlet. Is this also possible? If yes, how?
    Thank you.the process does run through a particular servlet, it's the faces servlet and is defined by something that looks like
      <servlet>
        <servlet-name>Faces Servlet</servlet-name>
        <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
        <load-on-startup>0</load-on-startup>
      </servlet> in your web.xml file. You don't have direct access to it, but you can save references to objects in the session or request so other objects can access it. Lets say that your faces code uses a DAO to read some data and you want to pass the data to a servlet, what you need to do something like:
         List data = myDAO.read();
         FacesContext facesContext = FacesContext.getCurrentInstance();
         HttpSession session = (HttpSession)facesContext.getExternalContext().getSession(true);
         session.setAttribute("myData", data);this will save the data object or list in the session as an attribute. Then, when the other servlet runs, you can do something like:
    public void doPost(HttpServletRequest request, HttpServletResponse response)
         throws ServletException, IOException {
         HttpSession session = request.getSession(false);
         Object obj  = session.getAttribute("myData");
         List myData = (List)obj;
    }          Now the servlet has access to the list of data read by the faces bean. You shouldn't directly access faces beans themselves from another servlet, you should instead access POJOs that you have defined or collections of them.

  • Parameterizing connection object

    I'd like to pass login info to the JDeveloper connection object (like you can do with the JDBC conn object).
    sessionInfo.setConnectionInfo(new LocalConnection("<<login info here??>>"));
    Is this possible?

    Dixon,
    It depends on what context you are talking about. All connection information used by a client at runtime is stored in a file named connections.properties. The connections are listed by name. Within the different client applications you can create, you only reference the name of the connection itself, allowing you to alter this text-file at runtime without having to edit your code in many places and re-compile it.
    We do allow for passing in a password at runtime. For the connection itself, make sure the checkbox for 'Include deployment password at runtime' is unchecked. It is (unchecked) by default, meaning the password for each connection is not written to the connection.properties file as text so the user must provide it.
    From a DAC client such as an application or an applet, you can create a login dialog where the user enters their username and password, and this information is used to perform the connection to the specified database. There is a login dialog control you can pick from the InfoSwing controls palette.
    From a JSP web application or servlet, you will need to do some work by hand. In the case of a JSP web app, the connection name is included in your BC4J.xcfg file, and the name of the config (and password) is listed in your appmodule.properties file. So it is a little more indirect.
    I believe the BC4J Auctions demo includes an example of a 'login dialog'. See the online help topic 'Business Components for Java Auctions Sample Web Application' under the Samples and Tutorials folder, then under Sample Applications.

  • How to store Connection object and call it from other programs.

    Hi,
    I am trying to connect to the database, store the connection object and use this connection object from other standalone java programs.
    Can any one tell me how to do this? I've tried in the following way:
    In the following program I am connecting to the database and saving the connection object in a variable.
    public class GetKT2Connection {
       public static void main(String[] args) {
          String url = "jdbc:odbc:SQLDsn;
          String dbUser = "sa";
          String dbPwd = "sa";
          Connection kt2conn = Connection connection = java.sql.DriverManager.getConnection(url, dbUser, dbPwd);
          if(kt2conn == null) {
             System.out.println("Database Connection Failure!");
          else {
             System.out.println("Connected to Database...");
         GetKTConnectionObj.storeKT2ConnectionObj(kt2conn);
    } Here is the program to save connection object in a variable.
    public class GetKTConnectionObj {
       static Connection kt2Connection = null;
       public static void storeKT2ConnectionObj(Connection conn) {
       kt2Connection = conn;
       public static Connection getKT2ConnectionObj() {
       try {
          return kt2Connection;
       catch(Exception e){
          System.out.println(e);
      return null;
    }Now from the following code I am trying to get the connection object that is stored. But this is throwing NullPointerException.
    public class Metrics_Migration {
      public static void main(String args[]) {
         try {
        java.sql.Connection connection_1 =   GetKTConnectionObj.getKT6ConnectionObj();
         catch(Exception e){
    }

    kt2Connection is null. You need to store it first, to make it not null. Otherwise it will stay null forever. And why on earth are you trying to do this THIS way?
    If you are running the two applications separately, it wont work either.

  • [SOLVED] - Unable to Distribute to Some DP's: Failed to make a network connection to ADMIN$ (0x5)

    For the past few days I've been struggling to wrap my head around what may have happened that resulted in distribution errors like this in distmgr.log:
    Sleep 30 minutes... SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:35 PM 6584 (0x19B8)
    Found notification for package 'AP2000D9' SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:40 PM 5288 (0x14A8)
    Used 0 out of 5 allowed processing threads. SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:40 PM 5288 (0x14A8)
    Starting package processing thread, thread ID = 0x1BA8 (7080) SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:41 PM 5288 (0x14A8)
    Sleep 3600 seconds... SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:41 PM 5288 (0x14A8)
    STATMSG: ID=2300 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=AP2SCCM01.F.Q.D.N SITE=AP2 PID=11276 TID=7080 GMTDATE=Thu Apr 24 18:06:41.487 2014 ISTR0="Wireless (Internal)" ISTR1="AP2000D9" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=1 AID0=400 AVAL0="AP2000D9" SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:41 PM 7080 (0x1BA8)
    No action specified for the package AP2000D9. SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:41 PM 7080 (0x1BA8)
    Start adding package to server ["Display=\\svcm01.F.Q.D.N\"]MSWNET:["SMS_SITE=AP2"]\\svcm01.F.Q.D.N\... SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:41 PM 7080 (0x1BA8)
    Attempting to add or update a package on a distribution point. SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:41 PM 7772 (0x1E5C)
    Start adding package to server ["Display=\\brcm01.F.Q.D.N\"]MSWNET:["SMS_SITE=AP2"]\\brcm01.F.Q.D.N\... SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:41 PM 7080 (0x1BA8)
    Attempting to add or update a package on a distribution point. SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:41 PM 11496 (0x2CE8)
    Start adding package to server ["Display=\\sfcm01.F.Q.D.N\"]MSWNET:["SMS_SITE=AP2"]\\sfcm01.F.Q.D.N\... SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:41 PM 7080 (0x1BA8)
    Will wait for 3 threads to end. SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:41 PM 7080 (0x1BA8)
    Thread Handle = 0000000000001D40 SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:41 PM 7080 (0x1BA8)
    Attempting to add or update a package on a distribution point. SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:41 PM 6680 (0x1A18)
    STATMSG: ID=2342 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=AP2SCCM01.F.Q.D.N SITE=AP2 PID=11276 TID=11496 GMTDATE=Thu Apr 24 18:06:41.602 2014 ISTR0="Wireless (Internal)" ISTR1="["Display=\\brcm01.F.Q.D.N\"]MSWNET:["SMS_SITE=AP2"]\\brcm01.F.Q.D.N\" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="AP2000D9" AID1=404 AVAL1="["Display=\\brcm01.F.Q.D.N\"]MSWNET:["SMS_SITE=AP2"]\\brcm01.F.Q.D.N\" SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:41 PM 11496 (0x2CE8)
    STATMSG: ID=2342 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=AP2SCCM01.F.Q.D.N SITE=AP2 PID=11276 TID=6680 GMTDATE=Thu Apr 24 18:06:41.610 2014 ISTR0="Wireless (Internal)" ISTR1="["Display=\\sfcm01.F.Q.D.N\"]MSWNET:["SMS_SITE=AP2"]\\sfcm01.F.Q.D.N\" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="AP2000D9" AID1=404 AVAL1="["Display=\\sfcm01.F.Q.D.N\"]MSWNET:["SMS_SITE=AP2"]\\sfcm01.F.Q.D.N\" SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:41 PM 6680 (0x1A18)
    Get site system FQDN and account information from DB for ["Display=\\sfcm01.F.Q.D.N\"]MSWNET:["SMS_SITE=AP2"]\\sfcm01.F.Q.D.N\ SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:41 PM 6680 (0x1A18)
    for ["Display=\\sfcm01.F.Q.D.N\"]MSWNET:["SMS_SITE=AP2"]\\sfcm01.F.Q.D.N\, no connection account is available SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:41 PM 6680 (0x1A18)
    STATMSG: ID=2342 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=AP2SCCM01.F.Q.D.N SITE=AP2 PID=11276 TID=7772 GMTDATE=Thu Apr 24 18:06:41.655 2014 ISTR0="Wireless (Internal)" ISTR1="["Display=\\svcm01.F.Q.D.N\"]MSWNET:["SMS_SITE=AP2"]\\svcm01.F.Q.D.N\" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="AP2000D9" AID1=404 AVAL1="["Display=\\svcm01.F.Q.D.N\"]MSWNET:["SMS_SITE=AP2"]\\svcm01.F.Q.D.N\" SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:41 PM 7772 (0x1E5C)
    Thread Handle = 0000000000002634 SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:41 PM 7080 (0x1BA8)
    Thread Handle = 00000000000024E4 SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:41 PM 7080 (0x1BA8)
    The current user context will be used for connecting to ["Display=\\brcm01.F.Q.D.N\"]MSWNET:["SMS_SITE=AP2"]\\brcm01.F.Q.D.N\. SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:42 PM 11496 (0x2CE8)
    The current user context will be used for connecting to ["Display=\\sfcm01.F.Q.D.N\"]MSWNET:["SMS_SITE=AP2"]\\sfcm01.F.Q.D.N\. SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:42 PM 6680 (0x1A18)
    The current user context will be used for connecting to ["Display=\\svcm01.F.Q.D.N\"]MSWNET:["SMS_SITE=AP2"]\\svcm01.F.Q.D.N\. SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:42 PM 7772 (0x1E5C)
    Failed to make a network connection to \\brcm01.F.Q.D.N\ADMIN$ (0x5). SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:42 PM 11496 (0x2CE8)
    Cannot establish connection to ["Display=\\brcm01.F.Q.D.N\"]MSWNET:["SMS_SITE=AP2"]\\brcm01.F.Q.D.N\. Error = 5 SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:42 PM 11496 (0x2CE8)
    Failed to make a network connection to \\sfcm01.F.Q.D.N\ADMIN$ (0x5). SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:42 PM 6680 (0x1A18)
    STATMSG: ID=2323 SEV=E LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=AP2SCCM01.F.Q.D.N SITE=AP2 PID=11276 TID=11496 GMTDATE=Thu Apr 24 18:06:42.260 2014 ISTR0="5" ISTR1="3" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="AP2000D9" AID1=404 AVAL1="["Display=\\brcm01.F.Q.D.N\"]MSWNET:["SMS_SITE=AP2"]\\brcm01.F.Q.D.N\" SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:42 PM 11496 (0x2CE8)
    Failed to make a network connection to \\svcm01.F.Q.D.N\ADMIN$ (0x5). SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:42 PM 7772 (0x1E5C)
    Error occurred. Performing error cleanup prior to returning. SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:42 PM 11496 (0x2CE8)
    STATMSG: ID=2323 SEV=E LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=AP2SCCM01.F.Q.D.N SITE=AP2 PID=11276 TID=6680 GMTDATE=Thu Apr 24 18:06:42.329 2014 ISTR0="5" ISTR1="3" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="AP2000D9" AID1=404 AVAL1="["Display=\\sfcm01.F.Q.D.N\"]MSWNET:["SMS_SITE=AP2"]\\sfcm01.F.Q.D.N\" SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:42 PM 6680 (0x1A18)
    Cannot establish connection to ["Display=\\sfcm01.F.Q.D.N\"]MSWNET:["SMS_SITE=AP2"]\\sfcm01.F.Q.D.N\. Error = 5 SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:42 PM 6680 (0x1A18)
    DP thread with array index 1 ended. SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:42 PM 7080 (0x1BA8)
    Cannot establish connection to ["Display=\\svcm01.F.Q.D.N\"]MSWNET:["SMS_SITE=AP2"]\\svcm01.F.Q.D.N\. Error = 5 SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:42 PM 7772 (0x1E5C)
    Error occurred. Performing error cleanup prior to returning. SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:42 PM 7772 (0x1E5C)
    STATMSG: ID=2323 SEV=E LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=AP2SCCM01.F.Q.D.N SITE=AP2 PID=11276 TID=7772 GMTDATE=Thu Apr 24 18:06:42.356 2014 ISTR0="5" ISTR1="3" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="AP2000D9" AID1=404 AVAL1="["Display=\\svcm01.F.Q.D.N\"]MSWNET:["SMS_SITE=AP2"]\\svcm01.F.Q.D.N\" SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:42 PM 7772 (0x1E5C)
    Error occurred. Performing error cleanup prior to returning. SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:42 PM 6680 (0x1A18)
    DP thread with thread handle 0000000000002634 and thread ID 11496 ended. SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:42 PM 7080 (0x1BA8)
    Will wait for 2 threads to end. SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:42 PM 7080 (0x1BA8)
    Thread Handle = 0000000000001D40 SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:42 PM 7080 (0x1BA8)
    Thread Handle = 00000000000024E4 SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:42 PM 7080 (0x1BA8)
    DP thread with array index 1 ended. SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:42 PM 7080 (0x1BA8)
    DP thread with thread handle 00000000000024E4 and thread ID 6680 ended. SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:42 PM 7080 (0x1BA8)
    Will wait for 1 threads to end. SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:42 PM 7080 (0x1BA8)
    Thread Handle = 0000000000001D40 SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:42 PM 7080 (0x1BA8)
    DP thread with array index 0 ended. SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:42 PM 7080 (0x1BA8)
    DP thread with thread handle 0000000000001D40 and thread ID 7772 ended. SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:42 PM 7080 (0x1BA8)
    Created policy provider trigger for ID AP2000D9 SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:44 PM 7080 (0x1BA8)
    Package AP2000D9 does not have a preferred sender. SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:44 PM 7080 (0x1BA8)
    A program for package AP2000D9 has changed, therefore it needs to be replicated to all child sites. SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:44 PM 7080 (0x1BA8)
    Package AP2000D9 is new or has changed, replicating to all applicable sites. SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:44 PM 7080 (0x1BA8)
    CDistributionSrcSQL::UpdateAvailableVersion PackageID=AP2000D9, Version=1, Status=2301 SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:44 PM 7080 (0x1BA8)
    StoredPkgVersion (1) of package AP2000D9. StoredPkgVersion in database is 1. SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:44 PM 7080 (0x1BA8)
    SourceVersion (1) of package AP2000D9. SourceVersion in database is 1. SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:44 PM 7080 (0x1BA8)
    STATMSG: ID=2302 SEV=E LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=AP2SCCM01.F.Q.D.N SITE=AP2 PID=11276 TID=7080 GMTDATE=Thu Apr 24 18:06:44.252 2014 ISTR0="Wireless (Internal)" ISTR1="AP2000D9" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=1 AID0=400 AVAL0="AP2000D9" SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:44 PM 7080 (0x1BA8)
    Failed to process package AP2000D9 after 0 retries, will retry 3 more times SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:44 PM 7080 (0x1BA8)
    Exiting package processing thread. SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:44 PM 7080 (0x1BA8)
    Sleep 30 minutes... SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:45 PM 6584 (0x19B8)
    The log is huge so I invite you to check out the 'FailedDistributionLog.log' log in the 'FailedDistributionError5' folder of my OneDrive.
    The hierarchy is simple:
    single primary site with a local SQL installation, management point role (among other roles)
    five other servers acting as the distribution points: 1 local, 4 remote
    Something has changed recently because distribution was working fine up until I believe this week.  I suspect some GPO is in place (or not in place) which is causing trouble, but I have not been successful in confirming that or isolating the issue to
    anything other than "it affects my 2008 R2 servers".
    What I've checked so far:
    the site server (2008 R2 Standard) has no issues during distribution to itself
    Local DP win7dp01 has no issues during distribution (this is a Windows 7 DP just for testing/proof of concept purposes)
    Remote DP 2003dp01 (Server 2003) has no issues during distribution
    Remote DP's 2008dp01, 2008dp02 & 2008dp03 (all 2008 R2 Standard) are producing the errors above
    Site System Installation Account is set to 'Use the site server's computer account to install this site system'
    All servers are joined to the same domain
    All servers are members of an SCCM Servers AD security group
    All servers have the above SCCM Servers AD security group added to the local administrators group
    As part of troubleshooting, I've added the Site Server by name (domain\servername) to the local administrators group, in addition to the AD security group which its already a member of, to the three 2008 DP's that are failing.  (The Windows 7 and 2003
    DP's don't have this setup because they seem to be working fine with the AD security group.)
    The firewall is disabled [via GPO] on all these servers & DP's
    The ADMIN$ share is available & accessible on the three 2008 DP's
    The three 2008 DP's have NO_SMS_ON_DRIVE.SMS only on the root drive (not the data drive)
    The three 2008 DP's have Data drives which house the SCCMContentLib, SMSPKG$, SMS_DP$, SMSPKGSIG$ & RemoteInstall directories.
    I checked the Share & NTFS permissions for the SCCMContentLib, SMSPKG$, SMS_DP$, SMSPKGSIG$ & REMINST shares, and local Administrators have full access/full control
    The three 2008 DP's have at least 100GB free; this package is under 1MB.
    The file 2 files in this package (one XML & one CMD) have very short file name lengths
    The files in this package are not currently in use.  (I've edited, renamed & moved them to be sure)
    RSOP of the server confirms firewall is disabled (I checked wf.msc manually anyway)
    Under Component Status, SMS_DISTRIBUTION_MANAGER is showing critical errors for the three 2008 DP's.  I've copied up the relevant entries from the log up to my OneDrive as 'SMS_DISTRIBUTION_MANAGERLog.log'.
     In short there are two error codes:
    2323 with a description of:
    Distribution Manager failed to connect to the distribution point.
    Possible cause: Distribution Manager cannot access the distribution point machine because of access permissions issues.
    Solution: Make sure that the site server machine account or Site System Installation account has administrative permissions on the distribution point machine.
    Retry Interval is 5 minutes, number of retries left is 3.
    2302 with a description of:
    Distribution Manager failed to process package "My (Package)" (package ID = PRI000D9).
    Possible cause: Distribution Manager does not have access to either the package source directory or the distribution point.
    Solution: Verify that distribution manager can access the package source directory/distribution point.
    Possible cause: The package source directory contains files with long file names and the total length of the path exceeds the maximum length supported by the operating system.
    Solution: Reduce the number of folders defined for the package, shorten the filename, or consider bundling the files using a compression utility.
    Possible cause: There is not enough disk space available on the site server computer or the distribution point.
    Solution: Verify that there is enough free disk space available on the site server computer and on the distribution point.
    Possible cause: The package source directory contains files that might be in use by an active process.
    Solution: Close any processes that maybe using files in the source directory. If this failure persists, create an alternate copy of the source directory and update the package source to point to it.
    I stood up 1 more DP on a 2003 servers which completed successfully.  Its already received content error-free.  I'll enable PXE & verify that works before standing up my final 2003 DP.  I don't have any other 2008 servers I could test
    this on which complicates this a bit.
    Before I go standing up more [2008] servers, what else could I be testing/validating?

    Tried to redistribute again this early morning and it looks like many packages succeeded but not all.  For instance a .NET package I deployed reached 7 of 8 DP's, Dell CCTK reached 5 of 8 etc..
    So seemingly by magic some DP's like some packages but not others.  I quit.
    distmgr log shows access denied errors as before:
    Used 0 out of 5 allowed processing threads. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:43 PM 4324 (0x10E4)
    Starting package processing thread, thread ID = 0x188C (6284) SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:44 PM 4324 (0x10E4)
    Starting package processing thread, thread ID = 0x1DB0 (7600) SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:44 PM 4324 (0x10E4)
    Starting package processing thread, thread ID = 0x1210 (4624) SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:45 PM 4324 (0x10E4)
    Starting package processing thread, thread ID = 0x1858 (6232) SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:45 PM 4324 (0x10E4)
    Starting package processing thread, thread ID = 0x5F8 (1528) SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 4324 (0x10E4)
    Used all 5 allowed processing threads, won't process any more packages. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 4324 (0x10E4)
    STATMSG: ID=2300 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SITESERVER.F.Q.D.N SITE=SITE1 PID=2892 TID=4624 GMTDATE=Tue May 13 16:09:46.240 2014 ISTR0="Nuance PDF Converter Enterprise 8.2" ISTR1="SITE10001C" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=1 AID0=400 AVAL0="SITE10001C" SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 4624 (0x1210)
    STATMSG: ID=2300 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SITESERVER.F.Q.D.N SITE=SITE1 PID=2892 TID=6232 GMTDATE=Tue May 13 16:09:46.243 2014 ISTR0="PayneGroup Forms Assistant Add-in for Word 2007" ISTR1="SITE100022" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=1 AID0=400 AVAL0="SITE100022" SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 6232 (0x1858)
    Sleep 3600 seconds... SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 4324 (0x10E4)
    STATMSG: ID=2300 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SITESERVER.F.Q.D.N SITE=SITE1 PID=2892 TID=6284 GMTDATE=Tue May 13 16:09:46.248 2014 ISTR0="User State Migration Tool for Windows 8" ISTR1="SITE100001" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=1 AID0=400 AVAL0="SITE100001" SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 6284 (0x188C)
    STATMSG: ID=2300 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SITESERVER.F.Q.D.N SITE=SITE1 PID=2892 TID=7600 GMTDATE=Tue May 13 16:09:46.246 2014 ISTR0="Workshare Professional 7.5" ISTR1="SITE100018" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=1 AID0=400 AVAL0="SITE100018" SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 7600 (0x1DB0)
    No action specified for the package SITE100018. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 7600 (0x1DB0)
    STATMSG: ID=2300 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SITESERVER.F.Q.D.N SITE=SITE1 PID=2892 TID=1528 GMTDATE=Tue May 13 16:09:46.250 2014 ISTR0="PayneGroup Metadata Assistant" ISTR1="SITE100023" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=1 AID0=400 AVAL0="SITE100023" SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 1528 (0x05F8)
    No action specified for the package SITE100023. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 1528 (0x05F8)
    Start updating the package on server ["Display=\\remotedp02.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp02.F.Q.D.N\... SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 1528 (0x05F8)
    No action specified for the package SITE10001C. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 4624 (0x1210)
    Start updating the package on server ["Display=\\remotedp02.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp02.F.Q.D.N\... SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 7600 (0x1DB0)
    Start updating the package on server ["Display=\\remotedp02.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp02.F.Q.D.N\... SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 4624 (0x1210)
    Attempting to add or update a package on a distribution point. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 5344 (0x14E0)
    Start updating the package on server ["Display=\\remotedp04.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp04.F.Q.D.N\... SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 4624 (0x1210)
    Attempting to add or update a package on a distribution point. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 6464 (0x1940)
    Start updating the package on server ["Display=\\remotedp05.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp05.F.Q.D.N\... SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 4624 (0x1210)
    Attempting to add or update a package on a distribution point. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 1000 (0x03E8)
    Start updating the package on server ["Display=\\remotedp03.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp03.F.Q.D.N\... SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 4624 (0x1210)
    Will wait for 4 threads to end. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 4624 (0x1210)
    Attempting to add or update a package on a distribution point. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 5504 (0x1580)
    Thread Handle = 0000000000002618 SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 4624 (0x1210)
    Start updating the package on server ["Display=\\remotedp04.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp04.F.Q.D.N\... SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 1528 (0x05F8)
    Thread Handle = 0000000000002B18 SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 4624 (0x1210)
    Thread Handle = 000000000000258C SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 4624 (0x1210)
    No action specified for the package SITE100001. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 6284 (0x188C)
    Attempting to add or update a package on a distribution point. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 3684 (0x0E64)
    STATMSG: ID=2342 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SITESERVER.F.Q.D.N SITE=SITE1 PID=2892 TID=5504 GMTDATE=Tue May 13 16:09:46.713 2014 ISTR0="Nuance PDF Converter Enterprise 8.2" ISTR1="["Display=\\remotedp03.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp03.F.Q.D.N\" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="SITE10001C" AID1=404 AVAL1="["Display=\\remotedp03.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp03.F.Q.D.N\" SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 5504 (0x1580)
    STATMSG: ID=2342 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SITESERVER.F.Q.D.N SITE=SITE1 PID=2892 TID=1000 GMTDATE=Tue May 13 16:09:46.738 2014 ISTR0="Nuance PDF Converter Enterprise 8.2" ISTR1="["Display=\\remotedp05.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp05.F.Q.D.N\" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="SITE10001C" AID1=404 AVAL1="["Display=\\remotedp05.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp05.F.Q.D.N\" SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 1000 (0x03E8)
    Get site system FQDN and account information from DB for ["Display=\\remotedp03.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp03.F.Q.D.N\ SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 5504 (0x1580)
    STATMSG: ID=2342 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SITESERVER.F.Q.D.N SITE=SITE1 PID=2892 TID=6464 GMTDATE=Tue May 13 16:09:46.842 2014 ISTR0="Nuance PDF Converter Enterprise 8.2" ISTR1="["Display=\\remotedp04.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp04.F.Q.D.N\" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="SITE10001C" AID1=404 AVAL1="["Display=\\remotedp04.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp04.F.Q.D.N\" SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 6464 (0x1940)
    STATMSG: ID=2342 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SITESERVER.F.Q.D.N SITE=SITE1 PID=2892 TID=3684 GMTDATE=Tue May 13 16:09:46.762 2014 ISTR0="PayneGroup Metadata Assistant" ISTR1="["Display=\\remotedp02.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp02.F.Q.D.N\" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="SITE100023" AID1=404 AVAL1="["Display=\\remotedp02.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp02.F.Q.D.N\" SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 3684 (0x0E64)
    Start updating the package on server ["Display=\\remotedp05.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp05.F.Q.D.N\... SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 1528 (0x05F8)
    Attempting to add or update a package on a distribution point. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 6832 (0x1AB0)
    Start updating the package on server ["Display=\\remotedp03.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp03.F.Q.D.N\... SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 1528 (0x05F8)
    Will wait for 4 threads to end. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 1528 (0x05F8)
    Attempting to add or update a package on a distribution point. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 6388 (0x18F4)
    No action specified for the package SITE100022. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 6232 (0x1858)
    Attempting to add or update a package on a distribution point. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 6116 (0x17E4)
    STATMSG: ID=2342 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SITESERVER.F.Q.D.N SITE=SITE1 PID=2892 TID=6832 GMTDATE=Tue May 13 16:09:47.037 2014 ISTR0="PayneGroup Metadata Assistant" ISTR1="["Display=\\remotedp04.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp04.F.Q.D.N\" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="SITE100023" AID1=404 AVAL1="["Display=\\remotedp04.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp04.F.Q.D.N\" SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 6832 (0x1AB0)
    STATMSG: ID=2342 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SITESERVER.F.Q.D.N SITE=SITE1 PID=2892 TID=6116 GMTDATE=Tue May 13 16:09:47.045 2014 ISTR0="PayneGroup Metadata Assistant" ISTR1="["Display=\\remotedp05.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp05.F.Q.D.N\" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="SITE100023" AID1=404 AVAL1="["Display=\\remotedp05.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp05.F.Q.D.N\" SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 6116 (0x17E4)
    Thread Handle = 00000000000026FC SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 1528 (0x05F8)
    Thread Handle = 0000000000002160 SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 1528 (0x05F8)
    Thread Handle = 0000000000002A18 SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 1528 (0x05F8)
    Start updating the package on server ["Display=\\remotedp02.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp02.F.Q.D.N\... SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 6232 (0x1858)
    for ["Display=\\remotedp03.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp03.F.Q.D.N\, no connection account is available SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 5504 (0x1580)
    Thread Handle = 000000000000164C SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 1528 (0x05F8)
    The current user context will be used for connecting to ["Display=\\remotedp05.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp05.F.Q.D.N\. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 1000 (0x03E8)
    STATMSG: ID=2342 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SITESERVER.F.Q.D.N SITE=SITE1 PID=2892 TID=5344 GMTDATE=Tue May 13 16:09:47.335 2014 ISTR0="Nuance PDF Converter Enterprise 8.2" ISTR1="["Display=\\remotedp02.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp02.F.Q.D.N\" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="SITE10001C" AID1=404 AVAL1="["Display=\\remotedp02.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp02.F.Q.D.N\" SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 5344 (0x14E0)
    The current user context will be used for connecting to ["Display=\\remotedp02.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp02.F.Q.D.N\. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 3684 (0x0E64)
    Sleep 30 minutes... SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 4468 (0x1174)
    Start updating the package on server ["Display=\\remotedp04.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp04.F.Q.D.N\... SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 6232 (0x1858)
    Attempting to add or update a package on a distribution point. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 7072 (0x1BA0)
    Start updating the package on server ["Display=\\remotedp02.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp02.F.Q.D.N\... SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 6284 (0x188C)
    STATMSG: ID=2342 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SITESERVER.F.Q.D.N SITE=SITE1 PID=2892 TID=6388 GMTDATE=Tue May 13 16:09:47.457 2014 ISTR0="PayneGroup Metadata Assistant" ISTR1="["Display=\\remotedp03.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp03.F.Q.D.N\" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="SITE100023" AID1=404 AVAL1="["Display=\\remotedp03.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp03.F.Q.D.N\" SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 6388 (0x18F4)
    Get site system FQDN and account information from DB for ["Display=\\remotedp03.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp03.F.Q.D.N\ SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 6388 (0x18F4)
    Failed to make a network connection to \\remotedp05.F.Q.D.N\ADMIN$ (0x5). SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 1000 (0x03E8)
    The current user context will be used for connecting to ["Display=\\remotedp04.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp04.F.Q.D.N\. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 6832 (0x1AB0)
    The current user context will be used for connecting to ["Display=\\remotedp05.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp05.F.Q.D.N\. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 6116 (0x17E4)
    for ["Display=\\remotedp03.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp03.F.Q.D.N\, no connection account is available SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 6388 (0x18F4)
    STATMSG: ID=2342 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SITESERVER.F.Q.D.N SITE=SITE1 PID=2892 TID=7072 GMTDATE=Tue May 13 16:09:47.653 2014 ISTR0="PayneGroup Forms Assistant Add-in for Word 2007" ISTR1="["Display=\\remotedp02.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp02.F.Q.D.N\" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="SITE100022" AID1=404 AVAL1="["Display=\\remotedp02.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp02.F.Q.D.N\" SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 7072 (0x1BA0)
    Attempting to add or update a package on a distribution point. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 5752 (0x1678)
    Will wait for 1 threads to end. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 6284 (0x188C)
    Thread Handle = 00000000000026E0 SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 6284 (0x188C)
    Start updating the package on server ["DISPLAY=\\remotedp01.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp01.F.Q.D.N\... SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 7600 (0x1DB0)
    STATMSG: ID=2342 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SITESERVER.F.Q.D.N SITE=SITE1 PID=2892 TID=7712 GMTDATE=Tue May 13 16:09:47.758 2014 ISTR0="Workshare Professional 7.5" ISTR1="["Display=\\remotedp02.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp02.F.Q.D.N\" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="SITE100018" AID1=404 AVAL1="["Display=\\remotedp02.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp02.F.Q.D.N\" SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 7712 (0x1E20)
    Attempting to add or update a package on a distribution point. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 7712 (0x1E20)
    Start updating the package on server ["Display=\\remotedp04.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp04.F.Q.D.N\... SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 7600 (0x1DB0)
    Start updating the package on server ["Display=\\remotedp05.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp05.F.Q.D.N\... SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 7600 (0x1DB0)
    Attempting to add or update a package on a distribution point. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 8080 (0x1F90)
    Attempting to add or update a package on a distribution point. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 5628 (0x15FC)
    Cannot establish connection to ["Display=\\remotedp05.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp05.F.Q.D.N\. Error = 5 SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 1000 (0x03E8)
    Error occurred. Performing error cleanup prior to returning. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 1000 (0x03E8)
    STATMSG: ID=2323 SEV=E LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SITESERVER.F.Q.D.N SITE=SITE1 PID=2892 TID=1000 GMTDATE=Tue May 13 16:09:47.921 2014 ISTR0="5" ISTR1="3" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="SITE10001C" AID1=404 AVAL1="["Display=\\remotedp05.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp05.F.Q.D.N\" SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 1000 (0x03E8)
    The current user context will be used for connecting to ["Display=\\remotedp03.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp03.F.Q.D.N\. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 6388 (0x18F4)
    The current user context will be used for connecting to ["Display=\\remotedp03.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp03.F.Q.D.N\. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 5504 (0x1580)
    Failed to make a network connection to \\remotedp02.F.Q.D.N\ADMIN$ (0x5). SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 3684 (0x0E64)
    Failed to make a network connection to \\remotedp04.F.Q.D.N\ADMIN$ (0x5). SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 6832 (0x1AB0)
    The current user context will be used for connecting to ["Display=\\remotedp02.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp02.F.Q.D.N\. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 5344 (0x14E0)
    STATMSG: ID=2342 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SITESERVER.F.Q.D.N SITE=SITE1 PID=2892 TID=5628 GMTDATE=Tue May 13 16:09:48.015 2014 ISTR0="Workshare Professional 7.5" ISTR1="["DISPLAY=\\remotedp01.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp01.F.Q.D.N\" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="SITE100018" AID1=404 AVAL1="["DISPLAY=\\remotedp01.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp01.F.Q.D.N\" SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 5628 (0x15FC)
    Thread Handle = 0000000000002320 SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 4624 (0x1210)
    Failed to make a network connection to \\remotedp03.F.Q.D.N\ADMIN$ (0x5). SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 5504 (0x1580)
    Failed to make a network connection to \\remotedp05.F.Q.D.N\ADMIN$ (0x5). SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 6116 (0x17E4)
    STATMSG: ID=2323 SEV=E LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SITESERVER.F.Q.D.N SITE=SITE1 PID=2892 TID=5504 GMTDATE=Tue May 13 16:09:48.254 2014 ISTR0="5" ISTR1="3" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="SITE10001C" AID1=404 AVAL1="["Display=\\remotedp03.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp03.F.Q.D.N\" SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 5504 (0x1580)
    Start updating the package on server ["Display=\\remotedp03.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp03.F.Q.D.N\... SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 7600 (0x1DB0)
    Attempting to add or update a package on a distribution point. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 2548 (0x09F4)
    Cannot establish connection to ["Display=\\remotedp03.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp03.F.Q.D.N\. Error = 5 SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 5504 (0x1580)
    The current user context will be used for connecting to ["Display=\\remotedp02.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp02.F.Q.D.N\. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 7712 (0x1E20)
    Failed to make a network connection to \\remotedp02.F.Q.D.N\ADMIN$ (0x5). SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 5344 (0x14E0)
    The current user context will be used for connecting to ["Display=\\remotedp04.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp04.F.Q.D.N\. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 6464 (0x1940)
    STATMSG: ID=2342 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SITESERVER.F.Q.D.N SITE=SITE1 PID=2892 TID=8080 GMTDATE=Tue May 13 16:09:48.397 2014 ISTR0="Workshare Professional 7.5" ISTR1="["Display=\\remotedp04.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp04.F.Q.D.N\" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="SITE100018" AID1=404 AVAL1="["Display=\\remotedp04.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp04.F.Q.D.N\" SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 8080 (0x1F90)
    STATMSG: ID=2323 SEV=E LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SITESERVER.F.Q.D.N SITE=SITE1 PID=2892 TID=6116 GMTDATE=Tue May 13 16:09:48.360 2014 ISTR0="5" ISTR1="3" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="SITE100023" AID1=404 AVAL1="["Display=\\remotedp05.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp05.F.Q.D.N\" SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 6116 (0x17E4)
    Cannot establish connection to ["Display=\\remotedp05.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp05.F.Q.D.N\. Error = 5 SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 6116 (0x17E4)
    STATMSG: ID=2323 SEV=E LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SITESERVER.F.Q.D.N SITE=SITE1 PID=2892 TID=6832 GMTDATE=Tue May 13 16:09:48.438 2014 ISTR0="5" ISTR1="3" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="SITE100023" AID1=404 AVAL1="["Display=\\remotedp04.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp04.F.Q.D.N\" SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 6832 (0x1AB0)
    Cannot establish connection to ["Display=\\remotedp04.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp04.F.Q.D.N\. Error = 5 SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 6832 (0x1AB0)
    STATMSG: ID=2342 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SITESERVER.F.Q.D.N SITE=SITE1 PID=2892 TID=5752 GMTDATE=Tue May 13 16:09:48.495 2014 ISTR0="User State Migration Tool for Windows 8" ISTR1="["Display=\\remotedp02.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp02.F.Q.D.N\" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="SITE100001" AID1=404 AVAL1="["Display=\\remotedp02.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp02.F.Q.D.N\" SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 5752 (0x1678)
    Error occurred. Performing error cleanup prior to returning. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 6832 (0x1AB0)
    Cannot establish connection to ["Display=\\remotedp02.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp02.F.Q.D.N\. Error = 5 SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 3684 (0x0E64)
    Error occurred. Performing error cleanup prior to returning. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 3684 (0x0E64)
    STATMSG: ID=2323 SEV=E LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SITESERVER.F.Q.D.N SITE=SITE1 PID=2892 TID=3684 GMTDATE=Tue May 13 16:09:48.597 2014 ISTR0="5" ISTR1="3" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="SITE100023" AID1=404 AVAL1="["Display=\\remotedp02.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp02.F.Q.D.N\" SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 3684 (0x0E64)
    Error occurred. Performing error cleanup prior to returning. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 5504 (0x1580)
    The current user context will be used for connecting to ["DISPLAY=\\remotedp01.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp01.F.Q.D.N\. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 5628 (0x15FC)
    The current user context will be used for connecting to ["Display=\\remotedp02.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp02.F.Q.D.N\. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 7072 (0x1BA0)
    Failed to make a network connection to \\remotedp02.F.Q.D.N\ADMIN$ (0x5). SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 7712 (0x1E20)
    Failed to make a network connection to \\remotedp04.F.Q.D.N\ADMIN$ (0x5). SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 6464 (0x1940)
    Cannot establish connection to ["Display=\\remotedp04.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp04.F.Q.D.N\. Error = 5 SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 6464 (0x1940)
    STATMSG: ID=2323 SEV=E LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SITESERVER.F.Q.D.N SITE=SITE1 PID=2892 TID=6464 GMTDATE=Tue May 13 16:09:48.843 2014 ISTR0="5" ISTR1="3" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="SITE10001C" AID1=404 AVAL1="["Display=\\remotedp04.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp04.F.Q.D.N\" SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 6464 (0x1940)
    DP thread with array index 1 ended. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 1528 (0x05F8)
    Failed to make a network connection to \\remotedp01.F.Q.D.N\ADMIN$ (0x5). SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 5628 (0x15FC)
    Start updating the package on server ["Display=\\remotedp05.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp05.F.Q.D.N\... SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 6232 (0x1858)
    Attempting to add or update a package on a distribution point. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 7992 (0x1F38)
    DP thread with array index 2 ended. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 4624 (0x1210)
    DP thread with thread handle 0000000000002B18 and thread ID 1000 ended. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 4624 (0x1210)
    The current user context will be used for connecting to ["Display=\\remotedp04.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp04.F.Q.D.N\. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 8080 (0x1F90)
    Will wait for 3 threads to end. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 4624 (0x1210)
    Thread Handle = 0000000000002618 SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:49 PM 4624 (0x1210)
    The current user context will be used for connecting to ["Display=\\remotedp02.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp02.F.Q.D.N\. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:49 PM 5752 (0x1678)
    Thread Handle = 000000000000258C SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:49 PM 4624 (0x1210)
    Thread Handle = 0000000000002320 SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:49 PM 4624 (0x1210)
    Attempting to add or update a package on a distribution point. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:49 PM 7964 (0x1F1C)
    Will wait for 5 threads to end. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:49 PM 7600 (0x1DB0)
    Thread Handle = 0000000000002688 SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:49 PM 7600 (0x1DB0)
    Thread Handle = 0000000000002D40 SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:49 PM 7600 (0x1DB0)
    STATMSG: ID=2323 SEV=E LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SITESERVER.F.Q.D.N SITE=SITE1 PID=2892 TID=5344 GMTDATE=Tue May 13 16:09:49.282 2014 ISTR0="5" ISTR1="3" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="SITE10001C" AID1=404 AVAL1="["Display=\\remotedp02.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp02.F.Q.D.N\" SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:49 PM 5344 (0x14E0)
    Thread Handle = 00000000000022F8 SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:49 PM 7600 (0x1DB0)
    Cannot establish connection to ["DISPLAY=\\remotedp01.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp01.F.Q.D.N\. Error = 5 SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:49 PM 5628 (0x15FC)
    Cannot establish connection to ["Display=\\remotedp02.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp02.F.Q.D.N\. Error = 5 SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:49 PM 5344 (0x14E0)
    Start updating the package on server ["Display=\\remotedp03.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp03.F.Q.D.N\... SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:49 PM 6232 (0x1858)
    STATMSG: ID=2342 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SITESERVER.F.Q.D.N SITE=SITE1 PID=2892 TID=2548 GMTDATE=Tue May 13 16:09:49.351 2014 ISTR0="Workshare Professional 7.5" ISTR1="["Display=\\remotedp05.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp05.F.Q.D.N\" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="SITE100018" AID1=404 AVAL1="["Display=\\remotedp05.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp05.F.Q.D.N\" SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:49 PM 2548 (0x09F4)
    Attempting to add or update a package on a distribution point. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:49 PM 6428 (0x191C)
    Thread Handle = 000000000000234C SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:49 PM 7600 (0x1DB0)
    Thread Handle = 00000000000021B0 SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:49 PM 7600 (0x1DB0)
    Will wait for 4 threads to end. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:49 PM 6232 (0x1858)
    Attempting to add or update a package on a distribution point. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:49 PM 752 (0x02F0)
    STATMSG: ID=2342 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SITESERVER.F.Q.D.N SITE=SITE1 PID=2892 TID=6428 GMTDATE=Tue May 13 16:09:49.564 2014 ISTR0="PayneGroup Forms Assistant Add-in for Word 2007" ISTR1="["Display=\\remotedp05.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp05.F.Q.D.N\" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="SITE100022" AID1=404 AVAL1="["Display=\\remotedp05.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp05.F.Q.D.N\" SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:49 PM 6428 (0x191C)
    Error occurred. Performing error cleanup prior to returning. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:49 PM 5628 (0x15FC)
    Shell launched under site server context shows I can access \\remotedp01\admin$ & manipulate files & directories. (e.g.: mkdir \\remotedp01\admin$\test_%username% && echo %date% %time% > \\remotedp01\admin$\%username%.txt)  Also
    ran wbemtest again to confirm connectivity to \\remotedp01\root\cimv2.

  • How can I make my adodc connect faster to my SQL Server? It's taking a minute (so long) before I can view thousand of record in my listview.

    How can I make my adodc connect faster to my SQL Server? It's taking a minute (so long) before I can view thousand of record in my listview. Please anyone help me.
    I'm using this code:
    Public Class McheckpaymentNew
    Private cn As New ADODB.Connection
    Private rs As New ADODB.Recordset
    Private Sub McheckpaymentNew_Load(sender As Object, e As EventArgs) Handles MyBase.Load
    Try
    cn.ConnectionString = "DSN=database; UID=user; PWD=password"
    cn.Open()
    rs.CursorLocation = ADODB.CursorLocationEnum.adUseClient
    rs.CursorType = ADODB.CursorTypeEnum.adOpenStatic
    rs.LockType = ADODB.LockTypeEnum.adLockBatchOptimistic
    Catch ex As Exception
    MsgBox("Failed to Connect!, Please check your Network Connections, or Contact MIS Dept. for assistance.", vbCritical, "Error while Connecting to Database.."
    End
    End Try
    End Sub
    End Class

    How can I make my adodc connect faster to my SQL Server? It's taking a minute (so long) before I can view thousand of record in my listview. Please anyone help me.
    I'm using this code:
    Public Class McheckpaymentNew
    Private cn As New ADODB.Connection
    Private rs As New ADODB.Recordset
    Private Sub McheckpaymentNew_Load(sender As Object, e As EventArgs) Handles MyBase.Load
    Try
    cn.ConnectionString = "DSN=database; UID=user; PWD=password"
    cn.Open()
    rs.CursorLocation = ADODB.CursorLocationEnum.adUseClient
    rs.CursorType = ADODB.CursorTypeEnum.adOpenStatic
    rs.LockType = ADODB.LockTypeEnum.adLockBatchOptimistic
    Catch ex As Exception
    MsgBox("Failed to Connect!, Please check your Network Connections, or Contact MIS Dept. for assistance.", vbCritical, "Error while Connecting to Database.."
    End
    End Try
    End Sub
    End Class

Maybe you are looking for