DFS and Server Refresh

We are replacing our old Windows 2003 Servers with new Windows 2012R2 servers. These servers are Web Servers and have IIS6 installed on them. Our Web Developers who own this server also have set aside selected Web Directories/Folders/Files in a DFS namespace
and have included the Windows 2003 servers as Target Name Servers.
As these Windows 2003 servers are going to be completely replaced by new Windows 2012R2 servers, the Web Developers want to ensure that the same namespace and therefore the same Directories/folders/Files are migrated across and available for users on the
new servers.  Since I am new to DFS, it seems to me that if the Web Developers install IIS on the Windows 2012R2 servers and setup the Directories/Folders exactly the same as they are on the Windows 2003 servers that they can migrate across the data to
the same Directories/Folders on the new Windows 2012R2 servers.   And, once that is done, I can insert the Windows 2012R2 servers as Target Name Servers in the existing namespace to replace the older Windows 2003 (remove them from the namespace).  
And, if the security is established the same on the new Directories/Folders/Files as they were in the Windows 2003 Servers then the users should see the DFS shared drives.
Am I correct?   If not, what should I do to ensure that what the Web Developers want is provided?

Hi,
1.  Since the DFS is hosted on another server (apart from the original and new servers), we keep the current namespace (it's one of our DCs)
I assume that you will keep the namespace server (the DC).
If so, then your plan is correct, just make sure allow enough time for the new target server to replicate files from the old target server before removal. In addition, you will need to create replication group for two target servers so that they would replicate.
More information for you:
Create a replication group
http://technet.microsoft.com/en-us/library/cc756710(v=WS.10).aspx
How DFS Works
http://technet.microsoft.com/en-us/library/cc782417(v=WS.10).aspx
Best Regards,
Amy
Please remember to mark the replies as answers if they help and un-mark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

Similar Messages

  • TS3276 ppl i fed up with my mac air while using my exchange email account, it takes ages to refresh and it doesn't send or receive instantly , no clue although that the same setting and server names has been set up on my iPhone and it is working fine

    ppl i fed up with my mac air while using my exchange email account, it takes ages to refresh and it doesn't send or receive instantly , no clue although that the same setting and server names has been set up on my iPhone and it is working totally fine

    Install ClamXav and run a scan with that. It should pick up any trojans.   
    17" 2.2GHz i7 Quad-Core MacBook Pro  8G RAM  750G HD + OCZ Vertex 3 SSD Boot HD 
    Got problems with your Apple iDevice-like iPhone, iPad or iPod touch? Try Troubleshooting 101

  • DFS and file server

    hi
    1) i have configured DFS on DC but it is replicate to DC2 so if burn my DC1 server can i get all file from DC2 without any error?
    2) burned my DC1 server so i plant to install new same server and want to replace all backup file and folder from my backup HD on this server so we want to make again all setting on all folders and file?
    please clear me.

    Hi,
    First I assume that we have no problem regarding backup and recovery domain controller (DC1 here). So let's talk about DFS and DFS replication.
    A1: If DFS is configged and files are replicated between DC1 and DC2, when DC1 is down/crashed, users will be redirected to DC2 - not immediately but after the local cache of DFS namespace is cleared, DC1 will not be provided in referral list send to client
    request.
    However please understand that DFS-R cannot be considered as a backup tool. So it is still recommended to run regular backup for data files. 
    A2: If DC1 is rebuilt or replaced by DC3, you can delete DC1 as the folder target and replication target in your DFS configuration and add DC3. Replication will back to work between DC2 and DC3. 
    If you have any feedback on our support, please send to [email protected]

  • Distributed system concept, how 2 server link up and serve a client

    here are my code...
    import java.io.*;
    import java.net.*;
    import java.awt.*;
    import javax.swing.*;
    import java.util.*;
    public class Server extends JFrame{
         private JTextArea jta=new JTextArea();
         public static void main (String[] args){
              new Server(); //launch server
         public Server(){//construct a server class
         getContentPane().setLayout (new BorderLayout());
         getContentPane().add(new JScrollPane(jta), BorderLayout.CENTER);
         setTitle("Server");
         setSize(500,300);
         setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         setVisible(true);
         try{
         //create a server socket
              ServerSocket serverSocket=new ServerSocket(8000); //server scoket
              jta.append("Server started" +"........"+'\n');
              //listen for a connection request
              Socket socket=serverSocket.accept(); //connect client
              //create data input and output stream
         DataInputStream inputFromClient=new DataInputStream(socket.getInputStream());//input from client
         DataOutputStream outputToClient=new DataOutputStream(socket.getOutputStream());//output to client
         while(true){ // while true, server wait user input
              jta.append("Server waiting input from client" +"........"+'\n');
              Calendar calendar = Calendar.getInstance();
             int GMT = calendar.get(Calendar.HOUR_OF_DAY); //time
             long totalMilliseconds=System.currentTimeMillis();
             long totalSeconds=totalMilliseconds/1000;
             int currentSecond=(int)(totalSeconds%60); //GMT seconds
              long totalMinutes=totalSeconds/60;
              int currentMinute=(int)(totalMinutes%60);     //GMT minutes
              long totalHours=(totalMinutes/60);
              int currentHour=(int)(totalHours%24);
              int Hour=(currentHour+8)%24; // GMT HOUR
             String c=""; // c for country
              int option = inputFromClient.read();//getinput perform country selection
              if(option==1){
                   c="Africa";
              if(option==2){
                   c="Australia";
              if(option==3){
                   c="Adelaide";
              if(option==4){
                   c="Chaina";
              if(option==5){
                   c="Korea";
              if(option==6){
                   c="Chicago";
              if(option==7){
                   c="New York";
              if(option==8){
                   c="Caracas";
              if(option==9){
                   c="Rio De Janeira";
              if(option==10){
                   c="Racife";
              if(option==11){
                   c="Azores";
              if(option==12){
                   c="London";
              if(option==13){
                   c="Paris";
              if(option==14){
                   c="Cairo";
              if(option==15){
                   c="Moscow";
              if(option==16){
                   c="Baku";
              if(option==17){
                   c="Karachi";
              if(option==8){
                   c="Dhaka";
              if(option==19){
                   c="Bangkok";
              if(option==20){
                   c="Tokyo";
              jta.append("Client select: " + c +'\n');
    switch(option)//read desire destination, and perform calculation, GMT time base on LONDON
             case 1:
             GMT=currentHour+1;
             jta.append("Africa time now is " + GMT+ ":" + currentMinute + ":" + currentSecond +"\n");
             outputToClient.writeInt(GMT);     
                 break;
                 case 2:
             GMT=currentHour+8;
             outputToClient.writeInt(GMT);
                 jta.append("Australia time now is " + GMT + ":" + currentMinute + ":" + currentSecond +"\n");
             break;
             case 3:
             GMT=currentHour+9;
             outputToClient.writeInt(GMT);
             jta.append("Adelaide time now is " + GMT + ":" + currentMinute + ":" + currentSecond +"\n");
             break;
             case 4:
             GMT=currentHour+8;
             outputToClient.writeInt(GMT);
             jta.append("Chaina time now is " + GMT + ":" +currentMinute + ":" + currentSecond +"\n");
             break;
             case 5:
             GMT=currentHour+9;
             outputToClient.writeInt(GMT);
             jta.append("Korea time now is " + GMT + ":" + currentMinute + ":" + currentSecond +"\n");     
              break;
             case 6:
             GMT=currentHour-6;
             outputToClient.writeInt(GMT);
             jta.append("Chicago time now is " + GMT + ":" + currentMinute + ":" + currentSecond +"\n");        
              break;
             case 7:
              GMT=currentHour-5;
             jta.append("New York time now is " + GMT + ":" +currentMinute + ":"+currentSecond +"\n");
             outputToClient.writeInt(GMT);
              break;
             case 8:
             GMT=currentHour-4;
             outputToClient.writeInt(GMT);
             jta.append("Caracas time now is " + GMT + ":"+ currentMinute + ":"+currentSecond +"\n");
                break; 
             case 9:
             GMT=currentHour-3;
             outputToClient.writeInt(GMT);
             jta.append("Rio De Janeiro time now is " + GMT + ":" + currentMinute + ":" + currentSecond +"\n");        
              break;
             case 10:
             GMT=currentHour-2;
             outputToClient.writeInt(GMT);
             jta.append("Recife time now is " + GMT + ":"  + currentMinute + ":" + currentSecond +"\n");
              break;
             case 11:        
             GMT=currentHour-1;
             outputToClient.writeInt(GMT);
             jta.append("Azores time now is " + GMT + ":" + currentMinute + ":" + currentSecond +"\n");
                break;
             case 12:
             GMT=currentHour;
             outputToClient.writeInt(GMT);
                 jta.append("London time now is " + GMT + ":"+ currentMinute + ":" + currentSecond +"\n");
              break;
             case 13:
             GMT=currentHour+1;
             outputToClient.writeInt(GMT);
             jta.append("Paris time now is " + GMT + ":" + currentMinute + ":" + currentSecond +"\n");
              break;
             case 14:        
             GMT=currentHour+2;
             outputToClient.writeInt(GMT);
             jta.append("Cairo time now is " + GMT + ":" + currentMinute + ":" + currentSecond +"\n");        
              break; 
             case 15:       
             GMT=currentHour+3;
             outputToClient.writeInt(GMT);
             jta.append("Moscow time now is " + GMT + ":" + currentMinute + ":" + currentSecond +"\n");        
                 break;
             case 16:       
             GMT=currentHour+4;
             jta.append("Baku time now is " + GMT + ":" + currentMinute + ":" + currentSecond +"\n");
             outputToClient.writeInt(GMT);        
                 break;
             case 17:
                 GMT=(currentHour+5)%24;
             jta.append("Karachi time now is " + GMT + ":" + currentMinute + ":" + currentSecond +"\n");
             outputToClient.writeInt(GMT);
                 break;
             case 18:
             GMT=(currentHour+6)%24;
             jta.append("Dhaka time now is " + GMT + ":" + currentMinute + ":" + currentSecond +"\n");
             outputToClient.writeInt(GMT);
              break;
             case 19:
             GMT=(currentHour+8)%24;
             jta.append("Hong Kong time now is " + GMT + ":" + currentMinute + ":" + currentSecond +"\n");
              outputToClient.writeInt(GMT);
              break;
             case 20:
             GMT=(currentHour+9)%24;
             jta.append("Tokyo time now is " + GMT + ":" + currentMinute + ":" + currentSecond +"\n");
             outputToClient.writeInt(GMT);
                 break;
             }//end switch
                //export HOUR, minute,second to client side
             outputToClient.writeInt(GMT);
             outputToClient.writeInt(currentMinute);  
             outputToClient.writeInt(currentSecond);
              jta.append("Option Found "+ c +'\n');
              catch(IOException ex){
              System.err.println(ex);
      }//end constructor
    }//end server class
    //server 2
    import java.io.*;
    import java.net.*;
    import java.awt.*;
    import javax.swing.*;
    import java.util.*;
    public class Server2 extends JFrame{
         private JTextArea jta=new JTextArea();
         public static void main (String[] args){
              new Server(); //launch server
         public Server2(){//construct a server class
         getContentPane().setLayout (new BorderLayout());
         getContentPane().add(new JScrollPane(jta), BorderLayout.CENTER);
         setTitle("Server");
         setSize(500,300);
         setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         setVisible(true);
         try{
         //create a server socket
              ServerSocket serverSocket1=new ServerSocket("127.0.0.2",8001); //server scoket
              jta.append("Server2 started" +"........"+'\n');
              //listen for a connection request
              Socket socket=serverSocket1.accept(); //connect client
         //     Socket socket1=serverSocket.accept();
              //create data input and output stream
         DataInputStream inputFromClient=new DataInputStream(socket.getInputStream());//input from client
         DataOutputStream outputToClient=new DataOutputStream(socket.getOutputStream());//output to client
         while(true){ // while true, server wait user input
              jta.append("Server waiting input from client" +"........"+'\n');
              Calendar calendar = Calendar.getInstance();
             int GMT = calendar.get(Calendar.HOUR_OF_DAY); //time
             long totalMilliseconds=System.currentTimeMillis();
             long totalSeconds=totalMilliseconds/1000;
             int currentSecond=(int)(totalSeconds%60); //GMT seconds
              long totalMinutes=totalSeconds/60;
              int currentMinute=(int)(totalMinutes%60);     //GMT minutes
              long totalHours=(totalMinutes/60);
              int currentHour=(int)(totalHours%24);
              int Hour=(currentHour+8)%24; // GMT HOUR
             String c=""; // c for country
              int option = inputFromClient.read();//getinput perform country selection
              if(option==1){
                   c="Africa";
              if(option==2){
                   c="Australia";
              if(option==3){
                   c="Adelaide";
              if(option==4){
                   c="Chaina";
              if(option==5){
                   c="Korea";
              if(option==6){
                   c="Chicago";
              if(option==7){
                   c="New York";
              if(option==8){
                   c="Caracas";
              if(option==9){
                   c="Rio De Janeira";
              if(option==10){
                   c="Racife";
              if(option==11){
                   c="Azores";
              if(option==12){
                   c="London";
              if(option==13){
                   c="Paris";
              if(option==14){
                   c="Cairo";
              if(option==15){
                   c="Moscow";
              if(option==16){
                   c="Baku";
              if(option==17){
                   c="Karachi";
              if(option==8){
                   c="Dhaka";
              if(option==19){
                   c="Bangkok";
              if(option==20){
                   c="Tokyo";
              jta.append("Client select: " + c +'\n');
    switch(option)//read desire destination, and perform calculation, GMT time base on LONDON
             case 1:
             GMT=currentHour+1;
             jta.append("Africa time now is " + GMT+ ":" + currentMinute + ":" + currentSecond +"\n");
             outputToClient.writeInt(GMT);     
                 break;
                 case 2:
             GMT=currentHour+8;
             outputToClient.writeInt(GMT);
                 jta.append("Australia time now is " + GMT + ":" + currentMinute + ":" + currentSecond +"\n");
             break;
             case 3:
             GMT=currentHour+9;
             outputToClient.writeInt(GMT);
             jta.append("Adelaide time now is " + GMT + ":" + currentMinute + ":" + currentSecond +"\n");
             break;
             case 4:
             GMT=currentHour+8;
             outputToClient.writeInt(GMT);
             jta.append("Chaina time now is " + GMT + ":" +currentMinute + ":" + currentSecond +"\n");
             break;
             case 5:
             GMT=currentHour+9;
             outputToClient.writeInt(GMT);
             jta.append("Korea time now is " + GMT + ":" + currentMinute + ":" + currentSecond +"\n");     
              break;
             case 6:
             GMT=currentHour-6;
             outputToClient.writeInt(GMT);
             jta.append("Chicago time now is " + GMT + ":" + currentMinute + ":" + currentSecond +"\n");        
              break;
             case 7:
              GMT=currentHour-5;
             jta.append("New York time now is " + GMT + ":" +currentMinute + ":"+currentSecond +"\n");
             outputToClient.writeInt(GMT);
              break;
             case 8:
             GMT=currentHour-4;
             outputToClient.writeInt(GMT);
             jta.append("Caracas time now is " + GMT + ":"+ currentMinute + ":"+currentSecond +"\n");
                break; 
             case 9:
             GMT=currentHour-3;
             outputToClient.writeInt(GMT);
             jta.append("Rio De Janeiro time now is " + GMT + ":" + currentMinute + ":" + currentSecond +"\n");        
              break;
             case 10:
             GMT=currentHour-2;
             outputToClient.writeInt(GMT);
             jta.append("Recife time now is " + GMT + ":"  + currentMinute + ":" + currentSecond +"\n");
              break;
             case 11:        
             GMT=currentHour-1;
             outputToClient.writeInt(GMT);
             jta.append("Azores time now is " + GMT + ":" + currentMinute + ":" + currentSecond +"\n");
                break;
             case 12:
             GMT=currentHour;
             outputToClient.writeInt(GMT);
                 jta.append("London time now is " + GMT + ":"+ currentMinute + ":" + currentSecond +"\n");
              break;
             case 13:
             GMT=currentHour+1;
             outputToClient.writeInt(GMT);
             jta.append("Paris time now is " + GMT + ":" + currentMinute + ":" + currentSecond +"\n");
              break;
             case 14:        
             GMT=currentHour+2;
             outputToClient.writeInt(GMT);
             jta.append("Cairo time now is " + GMT + ":" + currentMinute + ":" + currentSecond +"\n");        
              break; 
             case 15:       
             GMT=currentHour+3;
             outputToClient.writeInt(GMT);
             jta.append("Moscow time now is " + GMT + ":" + currentMinute + ":" + currentSecond +"\n");        
                 break;
             case 16:       
             GMT=currentHour+4;
             jta.append("Baku time now is " + GMT + ":" + currentMinute + ":" + currentSecond +"\n");
             outputToClient.writeInt(GMT);        
                 break;
             case 17:
                 GMT=(currentHour+5)%24;
             jta.append("Karachi time now is " + GMT + ":" + currentMinute + ":" + currentSecond +"\n");
             outputToClient.writeInt(GMT);
                 break;
             case 18:
             GMT=(currentHour+6)%24;
             jta.append("Dhaka time now is " + GMT + ":" + currentMinute + ":" + currentSecond +"\n");
             outputToClient.writeInt(GMT);
              break;
             case 19:
             GMT=(currentHour+8)%24;
             jta.append("Hong Kong time now is " + GMT + ":" + currentMinute + ":" + currentSecond +"\n");
              outputToClient.writeInt(GMT);
              break;
             case 20:
             GMT=(currentHour+9)%24;
             jta.append("Tokyo time now is " + GMT + ":" + currentMinute + ":" + currentSecond +"\n");
             outputToClient.writeInt(GMT);
                 break;
             }//end switch
                //export HOUR, minute,second to client side
             outputToClient.writeInt(GMT);
             outputToClient.writeInt(currentMinute);  
             outputToClient.writeInt(currentSecond);
              jta.append("Option Found "+ c +'\n');
              catch(IOException ex){
              System.err.println(ex);
      }//end constructor
    }//end server2 class
    //client class
    import java.io.*;
    import java.net.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.util.*;
    public class Client extends JFrame implements ActionListener{
         private JTextField jtf =new JTextField();//text feild for receiving option
         private JTextArea jta=new JTextArea();//text area display contents
         private JButton btnDownload=new JButton("Download");
         //IO stream
         private DataOutputStream toServer;
         private DataInputStream fromServer;
         public static void main(String [] args){
              new Client();        //launch client
         public Client(){//construct a client class
             //display layout
              JPanel p=new JPanel();
              p.setLayout(new GridLayout(1,3));
             p.add(new JLabel("Select file name:"));
             p.add(jtf, BorderLayout.NORTH);
             p.add (btnDownload);
              p.add (new JButton("RESUME"));
              p.add(new JButton("STOP"));
             jtf.setHorizontalAlignment(JTextField.LEFT);
             getContentPane().setLayout(new BorderLayout()); //set borderlayout
            getContentPane().add(p, BorderLayout.NORTH);
             getContentPane().add(new JScrollPane(jta), BorderLayout.CENTER);
             //     btnDownload.addActionListener(this);
             jtf.addActionListener(this); //perform action
             setTitle("Client"); //interface title
             setSize(600,300); //interface size
             setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
             setVisible(true);
             try{
              //create a client socket
              Socket socket=new Socket("localhost",8000);
        //      Socket socket1=new Socket("127.0.0.2",8001);
              jta.append("Client started.....\n" +"your locale time is " + new Date()+ '\n');
              fromServer=new DataInputStream(socket.getInputStream()); //initialize get from server
              toServer=new DataOutputStream(socket.getOutputStream()); //initialize to server
              catch(IOException ex){ //error if server timeout
                   jta.append(ex.toString()+'\n');
         public void actionPerformed(ActionEvent e){ //action perform when user hit enter
              String actionCommand=e.getActionCommand();
              if(e.getSource() instanceof JTextField){
                   try{
                        int option=Integer.parseInt(jtf.getText().trim());//convert text to integer
                        String c=""; //c for country list
                        toServer.write(option);//write selection and sent to server
                        toServer.flush(); //server refresh
                        int inputFromServer = fromServer.readInt();//initilize read data from server, integer format
              //if ...selection to determine the country user desire     
              if(option==1){
                   c="Africa";
              if(option==2){
                   c="Australia";
              if(option==3){
                   c="Adelaide";
              if(option==4){
                   c="Chaina";
              if(option==5){
                   c="Korea";
              if(option==6){
                   c="Chicago";
              if(option==7){
                   c="New York";
              if(option==8){
                   c="Caracas";
              if(option==9){
                   c="Rio De Janeira";
              if(option==10){
                   c="Racife";
              if(option==11){
                   c="Azores";
              if(option==12){
                   c="London";
              if(option==13){
                   c="Paris";
              if(option==14){
                   c="Cairo";
              if(option==15){
                   c="Moscow";
              if(option==16){
                   c="Baku";
              if(option==17){
                   c="Karachi";
              if(option==8){
                   c="Dhaka";
              if(option==19){
                   c="Bangkok";
              if(option==20){
                   c="Tokyo";
              jta.append("Selected: "+ c +'\n');     
                        int GMT = fromServer.readInt();     //hour import from server     
                      int currentMinute = fromServer.readInt();//minute import from server
                        int currentSecond = fromServer.readInt();// second from server
                        //print full time format in JtextArea
                        jta.append("Time is >>"+GMT+ ":" +currentMinute+ ":" +currentSecond+'\n');
                   catch (IOException ex){
                        System.err.println(ex);
              }// end if ..true
         }// end actiond
    }//end client class

    here i attach my similar code again, which can compile..
    problem is, how to let this server to communicate with each other, if i duplicate my server code. Which mean 2 server.
    import java.io.*;
    import java.net.*;
    import java.awt.*;
    import javax.swing.*;
    import java.util.*;
    public class Server extends JFrame{
         private JTextArea jta=new JTextArea();
         public static void main (String[] args){
              new Server(); //launch server
         public Server()
         {//construct a server class
         getContentPane().setLayout (new BorderLayout());
         getContentPane().add(new JScrollPane(jta), BorderLayout.CENTER);
         setTitle("Server");
         setSize(500,300);
         setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         setVisible(true);
         try{
         //create a server socket
              ServerSocket serverSocket=new ServerSocket(8000); //server scoket
              jta.append("Server started" +"........"+'\n');
              //listen for a connection request
              Socket socket=serverSocket.accept(); //connect client
         DataInputStream inputFromClient=new DataInputStream(socket.getInputStream());//input from client
         DataOutputStream outputToClient=new DataOutputStream(socket.getOutputStream());//output to client
         while(true){ // while true, server wait user input
              jta.append("Server waiting input from client" +"........"+'\n');
                         jta.append("Option Found "+ '\n');     
              catch(IOException ex){
              System.err.println(ex);
    }

  • Error in INTEGRATION_DIRECTORY_HMI and CACHE REFRESH

    Hi guys, well after checking the forum and several blogs i can't get rid of my problem!
    I have a problem concerning INTEGRATION_DIRECTORY_HMI and CACHE REFRESH.
    i wanted to get a file from a FTP-Server via CC and i got error:
      <SAP:AdditionalText>Error when reading HTTP destination: INTEGRATION_DIRECTORY_HMI.</SAP:AdditionalText>
      <SAP:ApplicationFaultMessage namespace="" />
      <SAP:Stack>Error while refreshing the XI runtime cache</SAP:Stack>
      <SAP:Retry>M</SAP:Retry>
    Because of this i tried to update my cache (SXI_CACHE). When i do a Delta Cache Refresh i get:
    Prefix Number: entry missing for system SSID client 100.
    When i do a complete Cache Refresh nothing happens at all. I also checked the cache notification in IB - Integration Directory where i fin dout that only the Integration Server (ABAP Cache) won't refresh. Well status is started but nothing else is happening.
    Then i checked the RFC INTEGRATION_DIRECTORY_HMI, did a connection test where i get an Internal Server error.
    Let me tell u that the systems runs very well in the last days but now i have no clue what might be wrong.
    Can somebody please advice me? I already read all blogs concerning this and also did a complete system-restart....
    br Jens

    when you check INTEGRATION_DIRECTORY_HMI with SM59 it is normal to get
    HTTP Response 500 - Internal Server Error. In this case it meens everything OK
    see the rediness check, that is attached to SAP note 817920
    when you start the complete cache refresh, you can see
    the function module SAI_CACHE3_REFRESH_BACKGROUND in SM58. As long as you can see this entry, the cache
    refresh is ongoing. If the refresh takes too long and runs on an error, try to specify another timeout in INTEGRATION_DIRECTORY_HMI or in the ICM
    Best Regards
    Alexander
    Message was edited by:
            Alexander Wrobel
    Message was edited by:
            Alexander Wrobel
    Message was edited by:
            Alexander Wrobel

  • Problems in SLD and Cache refresh (SXI_CACHE).

    Dear Experts,
    I am facing SLD and Cache refresh problems in PI 7.0 on HP-UX.
    1) SXI_CACHE : Last Error During Cache refresh is showing LCR_GET_OWN_BUSINESS_SYSTEM - NO_BUSINESS_SYSTEM error. And also Start Delta Cache Refresh / Start Complete Cache refresh are in deactive mode (Frozen).
    2) SLDCHECK : Log says No Business System for ABC Client 100 ".
    where ABC=SID. Business System INTEGRATION_SERVER_ABC is declared in SLD and client 100 is assigned.
    My question is : Is this a BASIS or DEVELOPER issue? Also please let me know if you have any solutions for the above mentioned issue. Thanks in Advance.
    SLDCHECK Log Snippet:
    SLD server access settings:
    host name: ABCXIDEV
    port number: 50000
    user : PIAPPLUSER
    Use transaction SLDAPICUST if you wish to maintain the SLD server access data
    Launching the SLD GUI in a separate browser window...
    => Verify in the browser GUI that the SLD is in a healthy running state!
    Calling function LCR_LIST_BUSINESS_SYSTEMS
    Retrieving data from the SLD server...
    Function call terminated sucessfully
    List of business systems maintained in the SLD:
    INTEGRATION_SERVER_ABC
    ERP_DEV_100
    Calling function LCR_GET_OWN_BUSINESS_SYSTEM
    Retrieving data from the SLD server...
    No corresponding business system found for system ABC client 100
    => Check and maintain the SLD content for the current client

    Hello,
    Since this is an PI system, your XI consultant must have created/will need to create business systems in SLD for the scenario to work properly. This error is because it cannot find the business system.
    You cannot point out the fingers on Basis or XI and say that it is THEIR issue. Please consult with the consultant who is doing the XI interface and check if the business systems he require are properly created in SLD. If not, create them or ask them to create it (if they are allowed to..).
    From the error, what i can see is that you have defined an integration server INTEGRATION_SERVER_ABC in SLD . the XI interface is checking the required business system in the integration server INTEGRATION_SERVER_ABC in SLD but cannot find it over there. Please check the integration server INTEGRATION_SERVER_ABC in SLD and talk to the XI consultant and you will be able to fix this with their help.
    Hope this helps you..
    Regards,
    Jazz

  • Possible issue with DFS and CSC error 80070035

    I have a handful of users who have a strange, recurring issue with Offline Files and DFS in Win7 SP1 x64.
    We have a DFS root \\domain.local\DFS. Server ukln1fs1 is a root replica, running a fully patched instance of Server 2012 R2. dfsnamespace is a DNS alias of ukln1fs1, and the SPNs for host/dfsnamespace<.domain.local>
    and cifs/dfsnamespace<.domain.local> are registered with that server.
    Clients have the Documents folder redirected by GPO to
    \\dfsnamespace\DFS\-teamfolder-\-username-\docs and redirection works fine. 
    Sometimes when clients are disconnected from the network and then reconnect, or when they start up disconnected from the network and then connect, they are unable to connect to
    \\dfsnamespace\dfs. They get error 80070035. Clients can connect to
    \\dfsnamespace fine and to the individual shared within the DFS structure. This affects all users on the computer once it has begun occurring, and the only resolution is to restart the computer whilst connected to the domain.
    Kerberos is using TCP (MaxPacketSize 0)
    LanManServer & LanManWorkstation signing requirements match (EnableSecuritySignature 1, RequireSecuritySignature 0)
    Have used FormatDatabase on the CSC service to rebuild the offline files cache.
    Latest hotfixes for Win7 file services and offline files components are installed: KB2775511 (enterprise hotfix rollup), all latest hotfixes from KB2820927 (collection of enterprise hotfixes including offline files and folder redirection components), all
    latest hotfixes from KB2473205 (file server technology services).
    Adapters & bindings order has the SSL VPN adapter at the top followed by the NIC then the wifi adapter. IPv4 is a the higher priority protocol in adapters & bindings.

    Please have a look at this blog (DFSN and DFSR-RO interoperability), it may help you somehow.
    Regards, Ravikumar P

  • What is the difference between jsp :include and server side include

    what is the difference between jsp :include and server side include(request dispatcher include method)????
    i understand that both request dispatcher include method and jsp:include take dynamic data,so when would one use request dispatcher include and when jsp:include.
    Is the usage interchangeable?i believe jsp include is used only for jsp/html but include directive can be used to include servlets ,jsp and html....correct me if i m wrong and
    do suggest if u hav ny other diff in this context...

    The difference really is: in what format do you want your inclusions? If your environment has many Java developers and only a few designers that focus mainly on, say, Flash, that might push you more towards the server-side include() directive. Or, if you have a large set of pages that receive dynamic content that is displayed in a consistent fashion (such as a workflow header area on a page).
    If, on the other hand, you have more web designers, there may be a greater desire to deal in markup rather than Java code. Java developers themselves might prefer to view markup (JSP) that more resembles the eventual output than something occuring in Java code.
    Finally, there are considerations of tiering. While it is totally possible to (and I have previously) implement 'view classes' that render markup or generate layout templates, JSP's offer, IMO, a subtle, psychological advantage. By forcing a developer to work in a different format, markup versus Java source, the separation on view from controller and model becomes a bit easier. It is still possible to make mistakes, but if a developer at some point notices, "Wait, I'm in a JSP, should I be importing a java.sql class?", then the choice to use JSP includes has paid off in spades.
    - Saish

  • Connection between SDM client and server is broken

    Dear All,
    First of all this is what I have
    -NW04 SPS 17
    -NWDS Version: 7.0.09 Build id: 200608262203
    -using VPN connection
    -telnet on port 57018 is succesfull
    I can login to SDM server (from NWDS and from SDM GUI) I can see the state of SDM(green light), restart it, can navigate through tabs in GUI, but every time I am trying to deploy an ear i have this error:
    Deployment exception : Filetransfer failed: Error received from server: Connection between SDM client and server is broken
    Inner exception was :
    Filetransfer failed: Error received from server: Connection between SDM client and server is broken
    I have already read a lot of topics,blogs,notes but didn't find the solution.
    Can anybody help me?
    Best Regards

    Having same issue. Nothing helped so far... Using NWDS 7.0 SP18.
    I have turned SDM tracing on and this is what I see on client side after sending first data package:
    com.sap.sdm.is.cs.cmd.client.impl.CmdClientImpl: debug "20120224140253 0280/17 Client: finished sending string part"
    com.sap.sdm.is.cs.cmd.client.impl.CmdClientImpl: debug "20120224140253 0280/0 Client: receive String part from Server"
    com.sap.sdm.is.cs.cmd.client.impl.CmdClientImpl.receiveFromServer(NetComm ..): Entering method
    com.sap.bc.cts.tp.net.NetComm.receive(): Entering method
    com.sap.bc.cts.tp.net.NetComm: debug "Method "receive(char[])" could not read all requested bytes. There are still 12 bytes to read"
    com.sap.bc.cts.tp.net.NetComm: debug "Caught IOException during read of header bytes (-1,          43):Connection reset"
    com.sap.bc.cts.tp.net.NetComm: debug "  throwing IOException(net.id_000001)"
    com.sap.bc.cts.tp.net.NetComm.receive(): Exiting method
    com.sap.sdm.is.cs.cmd.client.impl.CmdClientImpl: Exiting method
    com.sap.sdm.is.cs.cmd.client.impl.CmdClientImpl: debug "20120224140253 0281/1 Client: connection was broken"
    com.sap.sdm.is.cs.cmd.client.impl.CmdClientImpl: Exiting method
    com.sap.sdm.is.cs.cmd.client.impl.CmdClientImpl: debug "20120224140253 0281/0 Client: finshed sendAndReceive"
    com.sap.sdm.is.cs.cmd.client.impl.CmdClientImpl: Exiting method
    My connection on server is still active so I have to restart SDM server to reset and try it again.
    Anyone have idea whats happening?
    Edited by: skyrma on Feb 24, 2012 2:46 PM
    Edited by: skyrma on Feb 24, 2012 2:47 PM
    Edited by: skyrma on Feb 24, 2012 2:47 PM

  • Connection Problem while client is behind proxy and server out side proxy

    hello
    i implemented ChatApplication in JAVA, for that i used socket connection when client and server both are in same network then it's working fine.
    but when my server is on internate and client is behind proxy and try to connect with server
    it not able to connect i get exception.
    i serch most of forum i got same answer and i try it but i was not success.
    any kind of help is appriciated.
    i attached my code(which i implement for testing ) pls reply me
    thanks in advance.
    Server.java
    import java.lang.*;
    import java.io.*;
    import java.net.*;
    class Server {
       public static void main(String args[]) {
          String data = "you are successfully connected with server.";
          try {
             ServerSocket srvs = new ServerSocket(1234);
             Socket skt = srvs.accept();
             System.out.print("Server has connected!\n");
             PrintWriter out = new PrintWriter(skt.getOutputStream(), true);
             System.out.print("Sending string: '" + data + "\n");
             out.print(data);
             out.close();
             skt.close();
             srvs.close();
          catch(Exception e) {
             System.out.print("Whoops! It didn't work!\n");
    ProxyClient.java
    import java.io.*;
    import java.net.*;
    import java.util.*;
    class ProxyClient{
       public static void main(String args[]) {
         String host="61.17.212.29";
         int port=1234;
               String line;
         Properties properties = System.getProperties();
         /*properties.put("firewallSet", "true");
         properties.put("firewallHost", "192.168.0.1");
         properties.put("firewallPort", "808");*/
         properties.put("socksProxySet","true");
         properties.put("socksProxyHost", "192.168.0.1");
         properties.put("socksProxyPort", "1080");
         System.setProperties (properties);
         try {
         /*SocketAddress addr = new InetSocketAddress("192.168.0.1", 1080);
         Proxy proxy = new Proxy(Proxy.Type.SOCKS, addr);
         Socket skt = new Socket(proxy);
         InetSocketAddress dest = new InetSocketAddress("61.17.212.29",1234);
         skt.connect(dest);*/
             System.out.println("before socket taken");
             Socket skt = new Socket(host,port);
             System.out.println("after socket taken");
             BufferedReader networkBin = new BufferedReader(new InputStreamReader(skt.getInputStream()));
             System.out.println("Received string: '");
             line = networkBin.readLine();     // Read one line
          while(true)
                 System.out.println(line);     // Output the line
                 line = networkBin.readLine(); // Read the next line, if any
          catch(Exception e) {
             System.out.print("Whoops! It didn't work!\n");
         e.printStackTrace();
    }

    Now look here. I could not care less about this
    code. I don't know anything about it, I don't
    want to know, I have already recommended you don't
    use it, and I have also given you a simpler and
    better solution. If you don't want to take my advice
    that is your privilege and your problem.ya i has understand system propertis i have setted and u can see it in the code i have tried by both system properties and also J2SE 5.0 proxy class but i got a same problem malformed Exception server refuse to connection.
    is there any problem at sever side?
    can u tell me in which way u r teling to set the propery i m looking forward for ur reply.
    ya i m sure u will give me.................reply "ejp".
    Thnx in advance.

  • Sharepoint foundation and server 2013

    hi all
    i have scom 2012 sp1 on windows server 2008 r2. sql reporting services (mssql 2012 sp1) installed and configured on this server.
    OM, OMDW, scom`s reportserver db - on other server 2008 r2 (mssql 2012 sp1).
    i try to install management pack sharepoint foundation and server 2013 (use
    http://www.enduria.eu/the-sharepoint-2013-management-pack-and-my-experience-installing-it/).
    in scom console task status - success, but server (sharepoint 2013) in unidentified machines.
    in log on sp2013 server i get error:
    Cannot identify which SharePoint farm this server is associated with. Check the management pack guide for troubleshooting information.
    in log on scom management server i get same error every 10 minutes:
    Failed to deploy reporting component to the SQL Server Reporting Services server. The operation will be retried.
    Exception 'DeploymentException': Failed to deploy reports for management pack with version dependent id 'edf9e0b9-65aa-df29-6729-d16f0005e820'. Failed to deploy linked report 'Microsoft.SharePoint.Server_Performance_Report'. Failed to convert management pack
    element reference '$MPElement[Name="Microsoft.SharePoint.Foundation.2013.Responsetime"]$' to guid. Check if MP element referenced exists in the MP. An object of class ManagementPackElement with ID 75668869-f88c-31f3-d081-409da1f06f0f was not found.
    One or more workflows were affected by this. 
    Workflow name: Microsoft.SystemCenter.DataWarehouse.Deployment.Report
    Instance name: d2781f95-d488-4e35-8226-a9e1d7127149
    Instance ID: {96379E66-14B2-B413-F73F-1F39806AF714}
    Management group: scom-service_group
    what could be the problem?
    thanks

    Same issue...running SCOM 2012 RTM with UR3 on Windows 2008 R2 and SharePoint 2013.  I got the discovery to work after editing the .config file.  All appeared to be working with the exception of the Configuration Databases and Content Databases
    which are currently in a Not monitored state (this could be by design?). 
    I believe this is a bug with the SharePoint 2013 Management Pack.  I tried importing the SharePoint 2010 MP to validate my SCOM environment and Report Server and did not get any errors and the reports imported fine.  Has anyone openened
    a case with Microsoft or know if this is a known issue?  Thanks!
    Error:
    Data Warehouse failed to deploy reports for a management pack to SQL Reporting Services Server. Failed to deploy reporting component to the SQL Server Reporting Services server. The operation will be retried.
    Exception 'DeploymentException': Failed to deploy reports for management pack with version dependent id 'edf9e0b9-65aa-df29-6729-d16f0005e820'. Failed to deploy linked report 'Microsoft.SharePoint.Server_Performance_Report'. Failed to convert management
    pack element reference '$MPElement[Name="Microsoft.SharePoint.Foundation.2013.Responsetime"]$' to guid. Check if MP element referenced exists in the MP. An object of class ManagementPackElement with ID 75668869-f88c-31f3-d081-409da1f06f0f was not
    found.
    One or more workflows were affected by this.
    Workflow name: Microsoft.SystemCenter.DataWarehouse.Deployment.Report
    Instance name: 9afddb34-5f35-40fa-8564-1de5d33773d3
    Instance ID: {4BF8AF22-E5E4-1FC6-3951-F731DCA65317}
    Only two SharePoint 2013 reports are showing up in SCOM:
    SharePoint Foundation Performance
    SharePoint Server Performance
    Missing the following reports (according to the product guide):
    Server Alert
    This report renders all alerts raised by specified server(s).
    Service Alert
    This report renders all alerts raised by specified service(s).
    Server Event
    This report renders all events raised on specified server(s).
    Service Event
    This report renders all events raised on specified service(s).
    Top Server Events
    This report renders top 20 events raised on specified server(s).
    Top Service Events
    This report renders top 20 events raised on specified service(s).
    Top Alerts
    This Most Common Alert Report helps to identify high volume alerts, the volume a distinct alert contributes to the total number of
    alerts and the resolution times. This report helps in tuning the alerts.
    Server Performance
    This report renders performance data for specified server(s).
    Entity State
    This report renders entity state for specified SharePoint object(s) over time.

  • Async tcp client and server. How can I determine that the client or the server is no longer available?

    Hello. I would like to write async tcp client and server. I wrote this code but a have a problem, when I call the disconnect method on client or stop method on server. I can't identify that the client or the server is no longer connected.
    I thought I will get an exception if the client or the server is not available but this is not happening.
    private async void Process()
    try
    while (true)
    var data = await this.Receive();
    this.NewMessage.SafeInvoke(Encoding.ASCII.GetString(data));
    catch (Exception exception)
    How can I determine that the client or the server is no longer available?
    Server
    public class Server
    private readonly Dictionary<IPEndPoint, TcpClient> clients = new Dictionary<IPEndPoint, TcpClient>();
    private readonly List<CancellationTokenSource> cancellationTokens = new List<CancellationTokenSource>();
    private TcpListener tcpListener;
    private bool isStarted;
    public event Action<string> NewMessage;
    public async Task Start(int port)
    this.tcpListener = TcpListener.Create(port);
    this.tcpListener.Start();
    this.isStarted = true;
    while (this.isStarted)
    var tcpClient = await this.tcpListener.AcceptTcpClientAsync();
    var cts = new CancellationTokenSource();
    this.cancellationTokens.Add(cts);
    await Task.Factory.StartNew(() => this.Process(cts.Token, tcpClient), cts.Token, TaskCreationOptions.LongRunning, TaskScheduler.Default);
    public void Stop()
    this.isStarted = false;
    foreach (var cancellationTokenSource in this.cancellationTokens)
    cancellationTokenSource.Cancel();
    foreach (var tcpClient in this.clients.Values)
    tcpClient.GetStream().Close();
    tcpClient.Close();
    this.clients.Clear();
    public async Task SendMessage(string message, IPEndPoint endPoint)
    try
    var tcpClient = this.clients[endPoint];
    await this.Send(tcpClient.GetStream(), Encoding.ASCII.GetBytes(message));
    catch (Exception exception)
    private async Task Process(CancellationToken cancellationToken, TcpClient tcpClient)
    try
    var stream = tcpClient.GetStream();
    this.clients.Add((IPEndPoint)tcpClient.Client.RemoteEndPoint, tcpClient);
    while (!cancellationToken.IsCancellationRequested)
    var data = await this.Receive(stream);
    this.NewMessage.SafeInvoke(Encoding.ASCII.GetString(data));
    catch (Exception exception)
    private async Task Send(NetworkStream stream, byte[] buf)
    await stream.WriteAsync(BitConverter.GetBytes(buf.Length), 0, 4);
    await stream.WriteAsync(buf, 0, buf.Length);
    private async Task<byte[]> Receive(NetworkStream stream)
    var lengthBytes = new byte[4];
    await stream.ReadAsync(lengthBytes, 0, 4);
    var length = BitConverter.ToInt32(lengthBytes, 0);
    var buf = new byte[length];
    await stream.ReadAsync(buf, 0, buf.Length);
    return buf;
    Client
    public class Client
    private TcpClient tcpClient;
    private NetworkStream stream;
    public event Action<string> NewMessage;
    public async void Connect(string host, int port)
    try
    this.tcpClient = new TcpClient();
    await this.tcpClient.ConnectAsync(host, port);
    this.stream = this.tcpClient.GetStream();
    this.Process();
    catch (Exception exception)
    public void Disconnect()
    try
    this.stream.Close();
    this.tcpClient.Close();
    catch (Exception exception)
    public async void SendMessage(string message)
    try
    await this.Send(Encoding.ASCII.GetBytes(message));
    catch (Exception exception)
    private async void Process()
    try
    while (true)
    var data = await this.Receive();
    this.NewMessage.SafeInvoke(Encoding.ASCII.GetString(data));
    catch (Exception exception)
    private async Task Send(byte[] buf)
    await this.stream.WriteAsync(BitConverter.GetBytes(buf.Length), 0, 4);
    await this.stream.WriteAsync(buf, 0, buf.Length);
    private async Task<byte[]> Receive()
    var lengthBytes = new byte[4];
    await this.stream.ReadAsync(lengthBytes, 0, 4);
    var length = BitConverter.ToInt32(lengthBytes, 0);
    var buf = new byte[length];
    await this.stream.ReadAsync(buf, 0, buf.Length);
    return buf;

    Hi,
    Have you debug these two applications? Does it go into the catch exception block when you close the client or the server?
    According to my test, it will throw an exception when the client or the server is closed, just log the exception message in the catch block and then you'll get it:
    private async void Process()
    try
    while (true)
    var data = await this.Receive();
    this.NewMessage.Invoke(Encoding.ASCII.GetString(data));
    catch (Exception exception)
    Console.WriteLine(exception.Message);
    Unable to read data from the transport connection: An existing   connection was forcibly closed by the remote host.
    By the way, I don't know what the SafeInvoke method is, it may be an extension method, right? I used Invoke instead to test it.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Remote access VPN to server from outside and server reach internet on the same time

    Dear,
    I have problem in my ASA 5515-X , when i make Remote access VPN to servers in inside zone the internet connection disconnected in the servers, or when i have internet in servers, the remote access cant reach servers.
    the configuration for server as static NAT for each server, and the connection of VPN is to another public IP but in the same subnet of NAT ip.
    server1 : 10.10.10.2 nat to 5.6.7.8
    server2: 10.10.10.3 nat to 5.6.7.9
    server3: 10.10.10.4 nat to 5.6.7.10
    VPN connection to 5.6.7.12
    is there any solution for this senario, remote vpn to servers and the same time the servers have internet readability for download updates .. etc

    Hi,
    So it seems that the problem is with lacking a NAT0 configuration
    You could modify the below configuration to match your networks/IP addresses used. In the below configuration I presume that you have interfaces "inside" and "outside".
    object network SERVER-NETWORK
     subnet <server network address> <network mask>
    object network VPN-POOL
     subnet <vpn pool network address> <network mask>
    nat (inside,outside) 1 source static SERVER-NETWORK SERVER-NETWORK destination static VPN-POOL VPN-POOL
    Just insert the correct address related information and change the "object" and interface names if required.
    This configuration will tell the ASA that no NAT will be performed for traffic between the VPN-POOL and SERVER-NETWORK. The NAT configuration is bidirectional. With this configuration the Static NAT configurations will continue to work for the servers Internet traffic and this NAT0 configuration will be applied only to the VPN Client traffic.
    Hope this helps :)
    - Jouni

  • Custom Report using Metrics of Instance and Server

    Hello
    I need to create a custom report using different instance and server metrics like:
    File System Space Available
    Tablesapaces
    Database Spaces usage
    Sort in Memory
    library Cache Hit
    Data Dictionary Hit
    Buffer Cache Hit
    I already made the report, but I can´t change the size of the graphic (for a better presentation on my report)....
    Do you know how can I change the size of the report?
    I think that I´m using a "metric" so for that reason I Can´t change the size ... :(

    I am currently having a problem with this report and drilldown to KSB1, the cost centers selected int S_ALR_87013611 are not transferring to KSB1 and thus all the cost centers come up in the call to KSB1, are you experiencing this problem? I am on V4.7

  • Animated gif and page refresh problem

    Animated gif and page refresh problem
    Hi There,
    I'm trying to build a simple "Please wait......" screen using jsp and javascript.
    So far all is going well except that my animatate gif keeps refreshing everything the page is refresh.
    Is there a way the i can prevent the body of the page from refreshing?
    below is my sample code:
    <%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
    <jsp:useBean id="StatusBean" class="com1.CandidateRelease" scope="session"/>
    <html>
    <script LANGUAGE="JavaScript">
    function refresh()
    <% if (StatusBean.isRunning()) { %>     
         //setTimeout("refresh()", 1000);
         setTimeout("location='status.jsf'", 1000);
    <% }else{%>
         window.location= "busStopAdmin.jsf";
    <%} %>
    </script>
    <head>
         <script LANGUAGE="JavaScript">     
              refresh();
         </script>     
    </head>
    <body>
         <img id="myImage" src="../img/ojp_wait.gif" alt="" width="151" height="36">
    </body>
    </html>

    Animated gif and page refresh problem
    Hi There,
    I'm trying to build a simple "Please wait......" screen using jsp and javascript.
    So far all is going well except that my animatate gif keeps refreshing everything the page is refresh.
    Is there a way the i can prevent the body of the page from refreshing?
    below is my sample code:
    <%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
    <jsp:useBean id="StatusBean" class="com1.CandidateRelease" scope="session"/>
    <html>
    <script LANGUAGE="JavaScript">
    function refresh()
    <% if (StatusBean.isRunning()) { %>     
         //setTimeout("refresh()", 1000);
         setTimeout("location='status.jsf'", 1000);
    <% }else{%>
         window.location= "busStopAdmin.jsf";
    <%} %>
    </script>
    <head>
         <script LANGUAGE="JavaScript">     
              refresh();
         </script>     
    </head>
    <body>
         <img id="myImage" src="../img/ojp_wait.gif" alt="" width="151" height="36">
    </body>
    </html>

Maybe you are looking for

  • Groupings - Form on a table or view

    Hi I have a view eg. field_a, field_b, field_c, field_d, field_e, field_f. I have selected all these columns when creating a page (Form on a table or view). However I would only be displaying field_d, field_e, field_f. I have selected field_a,field_b

  • Windows 8.1 Update (with WinPE 5.1) ADK + SCCM 2012 R2 and WinXP

    Hello, I see new ADK version (8.1 Update) is released http://www.microsoft.com/en-US/download/confirmation.aspx?id=39982 It contains WinPE 5.1 and new USMT (which version?), does it support migration from WinXP to Win7? Previously I used USMT5 (inste

  • Grouping of purchase requisioner as requisioner grp

    Can any body tell me is their any way to customise the grp of purchase requisioner is added into some specific Requisioner grp in ECC 6.0? If yes pls explain.

  • Newbie: trying to use XML in a Line Series.

    So, I have a similar question to my last one, how to connect some XML from an RPC to a line series. The XML comes across fine. Problem is, why does it not work below? The XML is simple, and I use dataProvider="{tsRPC.lastResult.TIMESERIES}"....then y

  • Weblogic server 8.1 sp5 startup problem

    Hello all, I have been having a problem with Weblogic 8.1 sp5. Twice in a week, I would start an admin and managed server and what would happen is that the managed server will not startup. I would click the it's startup .cmd file and it would pop up