How to deploy MPLS Diff-serv in network?

Hi,I have trouble with how to deploy MPLS Diff-serv in ISP network. Who can give me a example or a design? thanks
Sincerely

Hi,
This link might help you.
http://www.cisco.com/en/US/tech/tk436/tk428/technologies_tech_note09186a008022ad7e.shtml

Similar Messages

  • How to deploy a JCO Server????

    Hello Experts!
    I have written a JCO Server by using the Netweaver Developer Studio. Now I want to deploy this JCO Server on our SAP XI Server. The aim of this should be to create a connection between ABAP and JAVA to send data from JAVA to ABAP.
    The RFC connection already exists and is working. What I don't know is how to deploy my JCO Server and how to start this JCO Server from our XI Server. I hope anybody could help me.
    Thanks in advance!!!
    Greetings Alexander
    Here is the source code of my JCO Server:
    public class JCOServer implements JCO.ServerExceptionListener, JCO.ServerStateChangedListener {
      static public class Repository extends JCO.BasicRepository implements IRepository {
        public Repository(String name)
          super(name);
      protected static IRepository repository;
      static {
        repository = new Repository("TestRepository");
        JCO.MetaData fmeta = new JCO.MetaData("ZEJB_TEST_ZUGRIFF");
        fmeta.addInfo("REQUTEXT", JCO.TYPE_CHAR, 255,   0,  0, JCO.IMPORT_PARAMETER, null);
        fmeta.addInfo("ECHOTEXT", JCO.TYPE_CHAR, 255,   0,  0, JCO.EXPORT_PARAMETER, null);
        fmeta.addInfo("RESPTEXT", JCO.TYPE_CHAR, 255,   0,  0, JCO.EXPORT_PARAMETER, null);
        repository.addFunctionInterfaceToCache(fmeta);
      static public class Server extends JCO.Server {
        public Server(String gwhost, String gwserv, String progid, boolean isUnicode, IRepository repository)
          super(gwhost,gwserv,progid,repository);
           this.setProperty("jco.server.unicode", isUnicode?"1":"0");
        protected void handleRequest(JCO.Function function)
          JCO.ParameterList input  = function.getImportParameterList();
          JCO.ParameterList output = function.getExportParameterList();
          JCO.ParameterList tables = function.getTableParameterList();
          System.out.println("handleRequest(" + function.getName() + ")");
          System.out.println("Anfrage vom SAP-Server: " + input.getString("REQUTEXT"));
          if (function.getName().equals("ZEJB_TEST_ZUGRIFF")) {
            output.setValue(input.getString("REQUTEXT"),"ECHOTEXT");
            output.setValue("Das ist eine Antwort von JCOServer","RESPTEXT");
       JCO.Server srv[] = new JCO.Server[1];
      public JCOServer()
         JCO.addServerExceptionListener(this);
         JCO.addServerStateChangedListener(this);
      public void startServers()
        srv[0] = new Server("vxi1","sapgw00","BEAN",true,repository);
        for (int i = 0; i < srv.length; i++) {
    try {
    srv.setTrace(true);
    srv.start();
    catch (Exception ex) {
    System.out.println("Konnte Server nicht starten: " + srv.getProgID() + ":
    " + ex);
          }//try
        }//for
      public void serverExceptionOccurred(JCO.Server server, Exception ex)
        System.out.println("Ausnahme in Server " + server.getProgID() + ":
    " + ex);
        ex.printStackTrace();
      public void serverStateChangeOccurred(JCO.Server server, int old_state, int new_state)
        System.out.print("Server " + server.getProgID() + " hat den Status geändert von [");
        if ((old_state & JCO.STATE_STOPPED    ) != 0) System.out.print(" GESTOPPT ");
        if ((old_state & JCO.STATE_STARTED    ) != 0) System.out.print(" GESTARTED ");
        if ((old_state & JCO.STATE_LISTENING  ) != 0) System.out.print(" HORCHEN ");
        if ((old_state & JCO.STATE_TRANSACTION) != 0) System.out.print(" TRANSAKTION ");
        if ((old_state & JCO.STATE_BUSY       ) != 0) System.out.print(" BESCHÄFTIGT ");
        System.out.print("] nach [");
        if ((new_state & JCO.STATE_STOPPED    ) != 0) System.out.print(" GESTOPPT ");
        if ((new_state & JCO.STATE_STARTED    ) != 0) System.out.print(" GESTARTED ");
        if ((new_state & JCO.STATE_LISTENING  ) != 0) System.out.print(" HORCHEN ");
        if ((new_state & JCO.STATE_TRANSACTION) != 0) System.out.print(" TRANSAKTION ");
        if ((new_state & JCO.STATE_BUSY       ) != 0) System.out.print(" BESCHÄFTIGT ");
        System.out.println("]");
      public static void main(String[] argv)
        JCOServer obj = new JCOServer();
        obj.startServers();

    Hello Alexander,
    congratulations to the invention of the wheel....
    Now, what do you think is the function of the application server itself? what you do here is to put a shell around JCO and then try to run it from another shell. Why not just use it from your program?
    I recommend to do some of the examples with JCO and then see what  the difference on this is.
    Regards,
    Benny

  • How to deploy MS Sql Server 2005 and 2008 jdbc driver

    Hi SAP Guru's
    Can somebody tell me how to deploy the jdbc driver of MS SQL Server 2005 and 2008 on SDM.
    According to the SAP instruction we should have 3 files(mssqlserver.jar,msbase.jar,msutil.jar) but in 2005 driver file we only have 1 file i.e sqljdbc.jar so how do i deploy it .
    Secondly i cannot deploy it on visual administrator as well and when i am doing the File to jdbc scenarion i am getting this error
    " Accessing database connection "jdbc.sqlserver://localhost:1433;DatabaseName=Employee failed DriverManagerException. Cannot establish connection to URL jdbc.sqlserver://localhost:1433;DatabaseName=Employee  SAPClassNotFoundException com.microsoft.sqlserver.jdbc.SQLServerDriver".
    can somebody please upload the screen shots on mediafire or any other site so that i will solve my problem.

    Hello,
    *OS: First of all: *
    3 files (msbase.jar,mssqlserver.jar and msutility.jar )should be zipped to aii_af_jmsproviderlib.zip file only for UNIX OS.
    For Windows OS only sqljdbc.jar file which in every version of JDBC driver should be zipped to aii_af_jmsproviderlib.zip.
    You can deploy JDBC driver through SDM tool which mention in guide below:
    New version of JDBC driver installation guiade:
    External Driver Configuration for Process Integration 7.0
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/60237e74-ef19-2b10-5a9b-b35cc6a28e83
    Drivertool from this guide you can find at https://www.sdn.sap.com/irj/sdn/howtoguides
    Then Exchange Infrastructure How-to Guides for SAP NetWeaver 2004 HYPERLINK "https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/f04ce027-934d-2a10-5a8f-fa0b1ed4d88f"
    How to Install and Configure External Drivers for JDBC & JMS
    AdaptersHYPERLINK "https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/e00262f5-934d-2a10-b99c-9bc63c2a7768"
    Download attached system files (ZIP 16KB)
    Any questions - let me know
    BR,
    Dzmitry

  • How to deploy a sql server compact 4.0 in windows xp?

    My program is developed by visual basic 6.0 with sql server compact 4.0.   How can I deploy it in windows xp sp3?
    Should I install .netframework version X in windows xp before sql server compact 4.0 ? 
    When I copy my program  to windows xp and run it , it shows not found provider error.

    I you use ADO, the OLEDB provider must be registered. To do the simply install the SQL Server Compact 4.0 SP1 runtime MSI
    Please mark as answer, if this was it. Visit my SQL Server Compact blog http://erikej.blogspot.com

  • How To Deploy in Application Server 9?

    Hi.
    I'm a new comer for EJB.
    I'm using the Newest version of EJB SDK.
    I'm trying to deploy my Hello World Application but I do not know how...
    My codes are as following.
    HelloHome.java
    import java.rmi.*;
    import javax.ejb.*;
    public interface HelloHome extends EJBHome {
        public Hello create() throws CreateException, RemoteException;
    }Hello.java
    import java.rmi.*;
    import javax.ejb.*;
    public interface Hello extends EJBObject{
        public void setHello(String txt) throws RemoteException;
        public String getHello() throws RemoteException;
    }HelloEJB.java
    import java.rmi.*;
    import javax.ejb.*;
    public class HelloEJB implements SessionBean{
        public String txt;
        public void setHello(String txt)
            this.txt = txt;
        public String getHello()
            return txt;
        public HelloEJB() {
        public void ejbCreate(){};
        public void ejbRemove(){};
        public void ejbActivate(){};
        public void ejbPassivate(){};
        public void setSessionContext(SessionContext sc){};   
    }

    You are using EJB 2.1. The latest version EJB 3.0 is much simpler. Among many things, you no longer need home interfaces, or deployment descriptors in most cases. Basically, you need to:
    1. code your bean interfaces and classes;
    2. package all classes and/or ejb-jar.xml descriptor into a jar file;
    3. deploy ejb jar to appserver using admin GUI (http://localhost:4848), or using commonad line (C:\Sun\AppServer\bin\asadmin deploy C:\tmp\my-ejb.jar)
    A good start is JavaEE Tutorial:
    http://java.sun.com/javaee/5/docs/tutorial/doc/

  • How to deploy simple RMI server WLS 7

    Hi,
    I understand that if I write a simple RMI server - not
    extending UnicastRemoteObject, no clustering or IIOP
    issues - I don't need to run an rmic program. I'm not
    clear, however, on what then gets deployed. Does the
    client get the interface or implementation class? And, in
    this simple case, no deployment descriptor configuration
    for RMI is required, correct? I seem to be making this
    harder than it's supposed to be ...
    Thanks, Garry

    Garry, WLS itself is a server , you dont need an additional RMI server. All you need is create an RMI object and bind it to the server JNDI (from the server side) , then your clients can lookup the RMI object via the JNDI and they will get the stubs to make method invocations on the RMI object.
    Check out documentation at :
    http://e-docs.bea.com/wls/docs81/rmi/rmi_api.html#1000008693

  • How to deploy an Azure server to host Dynamics GP and CRM

    I am looking for a step by step guide to Azure and how to setup Dynamics GP and CRM. We are looking to move our GP clients to Azure and I want to perform a test migration. So I need to know how to start. I need to create the Azure site, create a server
    with a domain, install SQL and then finally GP and CRM. If anyone can point to the appropriate links or training videos that would be greatly appreciated.

    Hi Florent,
    I strongly recommend you follow the sap solution manager  E2E RCA setup guide.
    I registered the system on solution manager as abap system.
    Keep in mind that you have to perform some additional steps for java instances and also check sap prereq. for PI. I had two apply some notes...
    Cheers
    Simos

  • How is Apple TV differ from those network media receiver on the market?

    Don't get me wrong, I love apple products, just wondering why does everyone so excited about apple TV?
    So basically what it does is just stream the content from your computer to your TV, right? So function wise, it's just same as those network media reciever. Like Sony VAIO RoomLink Network Media Receiver (VGP-MR200), or some other product like it (Can't think of a brand right now). Right?
    Am I missing something? Can someone explain to me is apple TV falls into same category as network media receiver or is something totally new and innovative?
    Thanks!
    17" MacBook Pro Core 2 Duo   Mac OS X (10.4.8)  

    Well... It really isn't anything new but what is so cool about it and why everyone gets excited is because of the ease that it takes to get it to work.
    I bought one today, came home, hooked up, synced my content, and then kicked my feet up and watched Wedding Crashers.
    My wife called and asked me to rent "The Guardian," I didn't want to get up from my movie and go to Blockbuster, so I just went over to my iMac and bought the Guardian.
    It took about 45 minutes to download and then it was automatically synced to our Apple TV.
    We are about to go watch it right now.
    That is what makes the Apple TV such a great product and it's only the beginning!!
    Just wanted to give you my view of what I think sets the Apple TV apart from the rest.

  • How to deploy findme example which provided by the OCCAS server

    I have X-lite installed on my machine and OCCAS,I have the find me examlple
    How to deploy it on server to register the X-lite client to OCCAS server.
    Also correct me with the findme example location file 'wlcserver_10.3/samples/sipserver/examples/src/genericRegistrar/src/wlss/examples/genericRegistrar' which is provided with its installtion.

    Thanks for the reply..Now I am able to connect X-Lite to my server.I also deployed findmr example it in OEPE enviroment creating Dyanamic project ,preparing the appropriate deployment descriptors.But I want to build the example in Web Service project where I am facing problems .Please provide me the way how to deploy SIP servlets findme exalmple from the Web service project??????
    Please help me with this.

  • Adapter deployment on remote server

    I have read in one of the oracle document that Application adapters and Legacy Adapter should be deployed in the same OC4J container as that of BPEL process manager. In other words your BPEL process and adapter should be on the same server then only it can be integrated. Does this apply for Technology adapters also ?

    Yes. In order to deploy to a non-SCE server, you will need to take your generated EAR or WAR file from the SCE workspace and use Application Server Control to deploy to an external OCMS instance.
    Chapter 7 of the OCMS Admin Guide describes how to deploy with Application Server Control.
    Adam

  • How To Deploy WAR Weblogic

    please need help
    How To Deploy WAR Weblogic server 11gr1
    thanks for your help

    would this help you
    http://www.sagecomputing.com.au/papers_presentations/JDEV11g-WebLogic10.3.pdf

  • How to deploy coldfusion as mvc framework from server standpoint?.

    Does anyone know how to deploy mvc framework from server
    standpoint?. I have all my business logic as cfcs but I want to
    move them to different server so that my cfm code is in one server
    and my cfcs are in another. Has anyone done this or point me in the
    right direction?.

    Marc E wrote:
    > we've actually been trying to go in the opposite
    direction, mostly for ease
    > of deployments. we have a cluster of CF servers, and
    every time we do a code
    > push, we have to migrate to all servers. it's annoying
    and prone to
    > problems.
    Actually that's exactly the way we have our new high
    availability
    environment configured. All the code runs off an EMC device.
    Not sure
    why I didn't draw this parallel yesterday with running the
    CFML on one
    server and the CFCs on another server--as long as you have a
    sufficiently fast network (we're on gigabit) and
    device/drives (our
    stuff is fiber channel), then as you mention below
    performance probably
    isn't an issue. I'd be curious if doing this over 100 megabit
    with more
    low-end hardware would perform as well as having things on a
    local
    drive, however.
    > We want to move all our code onto one machine, such that
    no webserver has
    > any code on it at all. we deploy code to one machine,
    and all webservers on
    > the cluster benefit from the push. this machine is not
    web accessible at all
    > and thus one could say less prone to security problems
    than a webserver is,
    > although i'm not sure that's such a good reason. mostly
    for us it's ease of
    > deployment.
    Yep, very true, and although the NAS/DAS device isn't
    *directly*
    accessible via the web, remember that's it's accessible by
    the user
    that's being used by the web site users, so there isn't a
    huge security
    benefit here vs. having the code locally. You're absolutely
    right
    > separating normal cfm files from objects seems kind of
    silly, when if you
    > want security you'd put all code on a separate,
    non-web-accessible machine.
    Yeah, this is where we head was earlier in the
    discussion--putting the
    CF "pages" on one server and the CFCs on another just seemed
    a bit wacky
    to me.
    > thanks to CF mapping, you can just point "/" to the code
    root of hte machine
    > on which the code lives, and all is well with the world.
    > This is actually how we have our internal environment
    set up, it's just our
    > production environment where our host is a pain in the
    *** about it.
    Right, this is what we do on our production environment but
    we don't
    even use a CF mapping (though you could). We just point our
    web server
    to the EMC device and everything else just falls into place,
    provided
    you've set up the user CF and your web server process (or
    using "connect
    as" in IIS in W2K3) are running as so they have access to the
    network
    storage device.
    > i'd be extremely surprised to see a performance problem
    with this setup.
    > It's not like the web servers are in philly and the code
    servers are in
    > taiwan, sending thousands of bytes per second. you've
    probably literally got
    > the webserver sitting right beside the server on which
    the code lives. it's
    > virtually the same thing as just keeping CF on the C
    drive and all the code
    > on the D Drive (assuming disk speeds on the machines are
    adequate).
    True, good point. We have extremely good performance (might
    even be
    *faster* than local drive speed) with our EMC device, and
    again I'm not
    sure why I didn't see this parallel yesterday in the
    discussions. Blame
    it on a very hectic week. ;-)
    Matt
    Matt Woodward
    [email protected]
    Adobe Community Expert - ColdFusion

  • How to deploy a secured ADF 11g application to WebLogic 10.3 server?

    Hi,
    I have just enabled security in our ADF 11g application, as descripbed in [chapter 29|http://download.oracle.com/docs/cd/E12839_01/web.1111/b31974/adding_security.htm#insertedID0] of the Fusion Developer's Guide. It works fine in the embedded WebLogic server of JDeveloper.
    Now I'm trying to deploy to our WebLogic 10.3 server, which runs in production mode. I'm running into all sorts of problems. The WebLogic console seems to have hundreds of security related pages, I don't know which one I should use, let alone how to use it. The Fusion Developer's Guide doesn't cover deployment to a production server:
    >
    When the target server is configured for production mode, you typically handle the migration task outside of JDeveloper using tools like Oracle Enterprise Manager. For details about using tools outside of JDeveloper to migrate the policy store to the domain-level in a production environment, see the [Oracle Fusion Middleware Security Guide|http://download.oracle.com/docs/cd/E12839_01/core.1111/e10043/toc.htm].
    >
    However, this guide is of very little help to me. I found [chapter 7|http://download.oracle.com/docs/cd/E12839_01/core.1111/e10043/addlsecfea.htm#insertedID0], which says "The recommended tool is Fusion Middleware Control." I have no idea what "Fusion Middleware Control" is, where to get it and how to use it.
    Long story short: I'm totally lost. I'm looking for a step by step guide on how to deploy a secured ADF 11g application to a WegLogic 10.3 server that is running in production mode. Any help is highly appreciated.

    Ok, I found a [very helpful blog post |http://andrejusb.blogspot.com/2009/01/practical-adf-security-deployment-on.html] by [Andrejus Baranovski|http://www.blogger.com/profile/04468230464412457426]. I wish Oracle's documentation was as clear as this...
    The blog post refers to an article by Steve Muench, called [Simplified ADF 11g Application Credential and Policy Migration to Standalone WebLogic Servers|http://www.oracle.com/technology/products/jdev/tips/muench/credmig111100/index.html]. This article presents an Ant script that migrates policies from JDeveloper to WebLogic, using some PFM. (See the last definition here.)
    The problem is that Steve Muench's script assumes that JDeveloper and the standalone WebLogic are on the same machine. However, in a typical environment, such as the one I'm working in currently, this is not the case. In our case the developer stations are Windows machines, while our WebLogic server runs on a HP-UX machine. So the question is: how to perform this migration between two machines with different operating systems?
    Regards,
    Bart Kummel

  • How can I make a server differ between two or more clients?

    How can I make a server differ between two or more clients?
    The clients can connect and talk to the server fine, but how can I make the server talk to one, two or all clients? i.e. what would be a good way to implement this?
    Currently, the server listens for connections like this:
    while (listening) {
    try {
    new ServerThread(this, serverSocket.accept()).start();
    I guess one way would be to add the ServerThreads to a Hashtable with the client ID as key, and then get the ServerThread with the proper client ID, but this seems unnecessary complicated. Any ideas?

    Complicated was perhaps the wrong word, I should have
    written something like it doesn't "feel" right. Or is
    this a common and good way to solve communication
    between a server and multiple clients?Thats pretty much how I do it. I normally use an array or ArrayList of Sockets instead of HashTable, with [0] being the first player etc.... Then you can communicate with exactly who you want. If you want to send bytes to all of them, just send the same thing to each socket individually (or is there a better way to do this?).

  • How to deploy Oracle Forms & Reports in Weblogic Server 11g (10.3)?

    Hi
    How to deploy Oracle Forms & Reports in Weblogic Server 11g (10.3)?
    Thanks

    Hi
    when i am going through your bleow link.
    I am not able understand the 3.3.1 step :2
    http://download.oracle.com/docs/cd/E15523_01/web.1111/e10240/basics.htm#i1010040
    edit this file in the Web Configuration,
    configuration of an application called "my_application" with a form module called "form=hrapp.fmx":
    can deploy only.fmx file ?
    if not how to find the realation between my_application and hrapp.fmx ?
    Thanks in Adavance
    Regards
    Ram

Maybe you are looking for

  • Only Wifi devices' libraries will show up on Apple TV not hard wired

    I have a desktop that is hard wired to my Netgear N600.  I also have 2 laptops and an iPad that link up to the router wifi.  All of my wifi linked devices' libraries show up on apple TV however my desktop will not and nobody in apple support can figu

  • DSL line at two locations

    We have the need to establish a network that connects the VolP phones in the garage of a ranch house and the WiFi network in the remainder of the ranch house. We have extentions of the DSL line at two locations. 1. At the garage and 2. In the other s

  • Cannot restore BKF files in Windows 7 - show stopper

    I've yet to see a way of restoring BKF files backed up from Windows XP, into Windows 7. Pretty annoying when MS say to use NTBackup to backup your files on Windows XP prior to installing Windows 7. I delayed going from Windows XP to Windows Vista as

  • Help on Time type 0903, Identifying Schema and Rule configuration?

    Can you please help me with the following: 1. What is time type 0903? 2. How to identify schema and rule configuration? 3. How do I identify the number of employees affected in case I have to make a configuration change? Thanks

  • TNS error after upgrading to 11.2.0.1

    hi i have just upgraded my database from 11.1.0.7 to 11.2.0.1 i have created new listener from netca (new home) on port 1523 which was my earlier port whenever i issue lsnrctl status , it gives error Connecting to (ADDRESS=(PROTOCOL=tcp)(HOST=)(PORT=