Verity K2 Server - point to another server?

Well i am stuck, i have looked through the coldfusion
documentation and also asked adobe support but neither have given
me an answer so far.
I was wondering if anyone out there knows if you can
configure Verity K2 to point to another server in Coldfusion 8
standard edition? The link does not appear in standard but does in
developer/enterprise. If i type the URL in standard i can actually
get to the page that lets you configure another server however when
i save it does not save the change. None of the feature matrix's
out there tell me wether this feature is included in Standard
edition and adobe support dont seem to know either (seriously).
Can anyone out there help me?

Sorry, there are 2 sections that need to be uncommented:
<!-- The following two services are for handling server-to-server traffic. -->
<!-- External asychronous DNS resolver -->
<service id="dnsrv">
<host/>
<load>
<dnsrv>/usr/lib/jabber/dnsrv.so</dnsrv>
</load>
<dnsrv xmlns="jabber:config:dnsrv">
<resend service="xmpp-server.tcp">s2s</resend>
<resend service="jabber.tcp">s2s</resend>
<resend>s2s</resend>
</dnsrv>
</service>
<!--
The following 's2s' config handles server connections and
dialback hostname verification. The <legacy/> element is
here to enable communication with old 1.0 servers. The
karma settings are a little higher here to handle the
higher traffic of server-to-server connections (read
the io section below for more details, medium settings).
-->
<service id="s2s">
<load>
<dialback>/usr/lib/jabber/dialback.so</dialback>
</load>
<dialback xmlns='jabber:config:dialback'>
<legacy/>
<ip port="7000"/>
<ip port="5269">127.0.0.1</ip>
<ip port="5269"/>
<karma>
<init>50</init>
<max>50</max>
<inc>4</inc>
<dec>1</dec>
<penalty>-5</penalty>
<restore>50</restore>
</karma>
</dialback>
</service>
If you are still having problems, turn off the firewall when you test. If that doesn't work, it is likely a network or dns issue.

Similar Messages

  • Packet drop when clients moving from one Access point to another

    HI  All ,
    I am new to wireless . I am using  WS-SVC-WISM-1-K9  wism module and using 5 Access points . When my clients are moving from one access point to another we are getting packet drops .
    Kindly anyone suggest me what all configuration i need to verify on the controller  for Proper client roaming so that i can resolve my issues..
    Please let me know in case of any explanations requiered .
    Thanks  in Advance !!!
    Regards
    Angus

    For radius authenticated SSIDs, you need WPA2-aes or wpa1-tkip-CCKM. It depends on what the client supports.
    For pre-shared key, any WPA should be decent enough for roaming speed.
    If you're on WEP ... no comment.
    If you covered the above point, check if it's not a coverage problem. If the 2 APs coverage zone are not overlapping there will be a hole where you don't have signal and logically will have packet drops.

  • Is there a way to draw a straight line from one point to another?

    Is there a way of drawing a straight line from one point to another please?

    Yes.  First click on this icon:
    Now select the line drawing icon:
    Now press a shift key and drag your mouse on the image to draw a straight line.
    These instructions are for Windows system so you need to adapt the method for Macs.  I can't afford to by an Apple Mac!!!!!
    Good luck.

  • Problem with Ai when working with a logo (I just can´t move the logo quickly from one point to another) Help!

    Hi there, Hope everyone is well. I have troubles with my Ai when working with a logo, I just want to move it from one point to another and it gets pretty slow to be moved. I am working on a brand new iMac and this problem surprises me a little bit. Do you know why is this happening? I get de Ai from the Creative Cloud...could it be the internet?

    Thnks rcraighead, glad to know about how CC runs. The logo was before a jpg then our designer transform it into vectors but today we were working she found complicated to move the image, it takes secooonds to make it move either from the keyboard or the mouse. I will ask her to see the symbol option, I think she is working with several logos (in vectors) at the same archive...so let see. Thanks buddy! I will be back with a screenshot

  • I recently upgraded my iphone to the latest IOS but my GPS seems to have a problem... I am unable to get directions from one point to another ... how do I solve this problem?

    help! I recently upgraded my iphone to the latest IOS but my GPS seems to have a problem... I am unable to get directions from one point to another ... how do I solve this problem?

    If using the built-in Maps app, directions are not available everywhere. Read here:
    http://www.apple.com/ios/feature-availability/#maps-directions
    If that's your problem, download the Google Maps app.

  • How to see my code drawing a line from one point to another

    hi, im wondering if you could help me.
    i am working on my project which is to visualise travelling salesman heuristics.
    i have managed to make my first heuristic work, but my problem is that when i clicked the run button on my GUI,
    the output is already a complete tour with all the edges already drawn, but what i want is to see how it solves or draw the lines from one vertex to another just by clickin the run button once.
    would be great if you could advice me of what method or technique i need to use to see my application solving the tour or drawing the edges.
    below is my cofe for drawing the edges from one point to another
      void drawLineNNh(Graphics g){
             Graphics2D g2 = (Graphics2D) g;
             g2.setColor(Color.blue);
             int i = 0;
             if (P == null) return;
             else
                 for(i=0; i<P.getSize(); i++)
                 Line2D.Double drawLine = new Line2D.Double(P.x_coor[nnH.seen]+5, P.y_coor[nnH.seen[i]]+5, P.x_coor[nnH.seen[i+1]]+5,P.y_coor[nnH.seen[i+1]]+5);
    Line2D.Double drawLastEdge = new Line2D.Double(P.x_coor[nnH.seen[P.getSize()-1]]+5, P.y_coor[nnH.seen[P.getSize()-1]]+5, P.x_coor[0]+5,P.y_coor[0]+5);
    g2.drawString( " Total Distance : " + nnH.totalDistance , 10, 300);
    g2.draw(drawLine);
    g2.draw(drawLastEdge);
    public void setNNh(Points p)
    nnH = new NNheuristic(p);
    useNNh = true;
    public void paint(Graphics g)
    frame(g);
    drawpoints(g);
    if(useNNh)
    drawLineNNh(g);
    below is my code for calling the above method to draw edges, actionlistererun.addActionListener(new ActionListener()
    public void actionPerformed(ActionEvent e) {
    if (e.getActionCommand().equals("Run")) {
    if (chooseHeur.getSelectedItem()=="Nearest-Neighbour")
    System.out.println(chooseHeur.getSelectedItem());
    //points = new Points(toInt((String)chooseNum.getSelectedItem()));
    //PlotArea.set(points);
    PlotArea.setNNh(points);
    PlotArea.repaint();

    I AM USING SWING.
    HERE IS MY CODE, HOPEFULLY ENOUGH TO UNDERSTAND THE PROBLEM.
    class Plot extends Panel{
         public static int num;
         NNheuristic nnH;
         Closest_insertion CI;
         Points P;
         public static boolean useNNh= false;
         boolean useCI=false;
         boolean triangleDrawn = false;
         boolean CIupdate;
         void drawpoints (Graphics g)
             Graphics2D g2 = (Graphics2D) g;
             Graphics2D g3 = (Graphics2D) g;
             int i=1;
             g2.setColor(Color.red);
                    if (P==null) return;
                    else
                    while (i<P.getSize())
                         Ellipse2D.Double vertices = new Ellipse2D.Double(P.x_coor,P.y_coor[i],10,10);
    g2.fill(vertices);
    i++;
    g3.setColor(Color.MAGENTA);
    Ellipse2D.Double initial = new Ellipse2D.Double(P.x_coor[0],P.y_coor[0],10,10);
    g3.fill(initial);
    System.out.println("No. of Vertices: " + P.getSize());
    for(int k = 0; k < P.getSize(); k++)
    System.out.println("x coordinate: " + P.x_coor[k] + ", " + "y coordinate :" + P.y_coor[k] );
    // System.out.println("next:"+ P.x_coor[k+1]);
    triangleDrawn = false;
    void drawLineNNh(Graphics g){
    Graphics2D g2 = (Graphics2D) g;
    g2.setColor(Color.blue);
    int i = 0;
    if (P == null) return;
    else
    for(i=0; i<P.getSize(); i++)
    Line2D.Double drawLine = new Line2D.Double(P.x_coor[nnH.seen[i]]+5, P.y_coor[nnH.seen[i]]+5, P.x_coor[nnH.seen[i+1]]+5,P.y_coor[nnH.seen[i+1]]+5);
    Line2D.Double drawLastEdge = new Line2D.Double(P.x_coor[nnH.seen[P.getSize()-1]]+5, P.y_coor[nnH.seen[P.getSize()-1]]+5, P.x_coor[0]+5,P.y_coor[0]+5);
    g2.drawString( " Total Distance : " + nnH.totalDistance , 10, 300);
    g2.draw(drawLine);
    g2.draw(drawLastEdge);
    public void set (Points p)
    P=p;
    useNNh = false;
    useCI = false;
    public void setNNh(Points p)
    nnH = new NNheuristic(p);
    useNNh = true;
    void frame (Graphics g)
    g.setColor(Color.white);
              g.fillRect(0,0,size().width,size().height);
              g.setColor(Color.green);
              g.drawRect(0,0,579,280);
    public void paint(Graphics g)
    frame(g);
    drawpoints(g);
    if(useNNh)
    drawLineNNh(g);
    else if(useCI)
    if(!CIupdate)
    drawTriCI(g);
    else
    drawRestCI(g);
    // drawLineNNh(g);
    public void clear ()
         // remove the points and the graph.
    P=null;
    triangleDrawn = false;
    code of my GUIpublic class TSP extends JFrame{
    JButton run;
    ...................codes...........
    TSP() {
    ...............................codes...........
    run = new JButton ("Run");
    run.setPreferredSize(new Dimension(113,30));
    run.addActionListener(new ActionListener()
    public void actionPerformed(ActionEvent e) {
    if (e.getActionCommand().equals("Run")) {
    if (chooseHeur.getSelectedItem()=="Nearest-Neighbour")
    System.out.println(chooseHeur.getSelectedItem());
    //points = new Points(toInt((String)chooseNum.getSelectedItem()));
    //PlotArea.set(points);
    PlotArea.setNNh(points);
    PlotArea.repaint();
    else if(chooseHeur.getSelectedItem()=="Closest-Insertion")
    PlotArea.setC_I(points);
    PlotArea.repaint();
    pane2.add(run);

  • Change a favorite/Bookmark so it point to another query.

    We are using BW web as front end
    What we want is:
    Change a favorite so it point to another query.
    The scenarie is that we have a query that does not work anymore and instead of changing it we create a new query. This means that all the bookmarks/favorites that users has created will not work.
    Is there a solution on how to find and relocate these bookmarks/favorites? It will save the users and the support line for a lot of work.

    herms-ra,
    now i cant de-expand?
    Undo (Ctrl/Cmd+Z) may be your only friend (until it is too late).
    how do i isolate a path/segment with the direct select tool?
    It is important to have the path/object deselected before using the Direct Selection Tool; you may do that by clicking an empty spot on the artboard, then clicking the segment of your choice.

  • My flickr contact name points to another account

    When attempting to add my Flickr account to my Apple TV, it accesses another account. I enter my contact name, not my username. I tried a workaround by successfully adding one of my mutually contacts and searching their contact list for my account, and then adding that. Still points to another account. I have also tried changing my contact name at flickr.com, but attempting to add that on the Apple TV connects to exactly the same account, which is very strange. Entering the same string into the "People" search on flickr (while I am logged out) returns my account successfully.
    If anyone reading this has an Apple TV and wants to try to replicate this, my Flickr contact name is "Tom & Viv". It returns an account with the contact name "Tom & Viv" but with the additional name "Tom Nguyen", and with a flickr stream that is not mine.
    Can anyone here help? Or should I be referring to flickr for help?
    Cheers,
    Tom Ackroyd

    Chenks wrote:
    as far as i know, it's the username you are supposed to enter and not the contact name.
    when i added mine, it was the username that i entered.
    Thanks. Not sure that can be right, as my username is "tom_ackroyd", not "Tom Ackroyd".
    Also, the Apple TV specifically asks for "contact name" which is what it displays on contact lists too.
    Flickr have responded with this:
    +Regarding your problem with your account, please note that Apple TV+
    +searches on the Flickr Screen name which has to be entered exactly+
    +including any spaces and/or capitol letters. If an account has special characters that are not available to search by on their interface you will+
    +not be able to search for the account.+
    What they refer to as screen name is what Apple refer to as contact, isn't it?

  • Mounting multiple directories with same name on different severs to a single mount point on another server

    We have a requirement where in we have multiple solaris servers and each solaris server has a directory with the same name.
    The files in these directories will be different.
    These same name directories on multiple severs has to be mounted to a single directory on another sever.
    We are planning to use NFS, but it seems we can not mount multiple directories with same name on different severs to a single mount point using NFS, and we need to create multiple mount points.
    Is there any way we can achieve this so that all the directories can be mounted to a single mount point?

    You can try to mount all these mount points via NFS in one additional server and then export this new tree again via NFS to all your servers.
    No sure if this works. If this works, then you will have in this case just an additional level in the tree.

  • Cascading RV180 as DHCP server but pointing to another default gateway router

    Hi,
    My network topology is as follows:
    Internet <-> Residential Gateway (RG) from ISP (OEM: Pace) [192.168.1.254/255.255.255.0] <-> RV180 [192.168.1.253/255.255.255.0] <-> SG500 switch [192.168.1.250/255.255.255.0] <-> rest of network.
    I know this is a cascading LAN-to-LAN arrangement. The cable from the RG to the RV180 is from a LAN port on the RG to a LAN (not WAN) port on the RV180.
    I eventually want to segment my network into a few VLANs from the RV180 down. I am aware most people would recommend DHCP on the "primary" router, but the RG is non-VLAN aware, so I figure I need to handle the DHCP off the RV180. At the same time, I have also opted not to do a LAN-to-WAN cascade because I want to retain the ability to configure the RG from the rest of the network and not have to cart a computer over to the RG to do it.
    On the RG, I've disabled DHCP, and placed 192.168.1.253 in the DMZ.
    On the RV180, I've enabled DHCP and put it in Router mode.
    The issue is that I do not have any Internet connectivity. If I allow the computers in the network to receive IP addresses over DHCP, the default gateway that is communicated is 192.168.1.253, which is the RV180. If I configure static IPv4 information on my computers to point to 192.168.1.254, I am able to connect outside, as you would expect.
    How can I get the RV180 to pass out DHCP IP addresses, but point to 192.168.1.254 as the default gateway? I thought the solution might be to create a default route (or something). I went to the static routes tab but it wouldn't let me enter 0.0.0.0 as a destination IP to route through 192.168.1.254.
    Further down the line, is it possible for both the RG and the RV180 to connect directly to the SG500, along with the other nodes in my network? That way the RV180 only serves to maintain the VLANs and pass out IP addresses via DHCP, instead of having it be the choke through which everything goes through on the way out?
    Sorry if there is a really obvious solution to this. It's really been floundering about in the dark so would appreciate any advice

    Hi Jason, I have considered your post here for quite some time. I came to one conclusion based off your text. The entire purpose of the RV180 is a DHCP server for multiple subnet / vlan.
    Here's the thing, you have a SG500 switch. Based off reading your text, this will do everything the RV180 can except the DHCP service. The limitation you are going to run in to is still going to be your gateway unit, the RG.
    In the end, even with such a configuration using the RV!80 or the SG500 (layer 3), the RG will have to be configured with static routes since the RG has no concept of those other LAN segments.
    Here is a post I wrote about a SG300 connecting to a RV0XX router (which doesn't understand the VLANs)
    https://supportforums.cisco.com/message/3739083#3739083
    Using the concept of this topic, you may be able to add aditional static routes on the RV180 sending each subnet to the common IP interface of the RG.
    It would be very interesting to see if we could make that work.
    -Tom
    Please rate helpful posts

  • Verity Search Server Issues

    Anyone else have this issue when trying to use cfsearch
    against a
    collection? If so, was there a fix? We installed the search
    server when we
    installed CF8 as a package install.
    Message Unable to connect to the ColdFusion Search service.
    Detail On Windows, you may need to start the ColdFusion
    Search Server from
    the services control panel.
    On Unix, you may need to run the search startup script in the
    ColdFusion bin
    directory.
    Error: java.io.IOException: unable to obtain from connection
    pool: cannot
    make connection to server at: k2://localhost:9951
    I restarted the search server about 10 times and even tried
    the uninstall
    and install bat files. Nothing seems to work. Thanks

    Thanks for the suggestion. I tried just re-installing the CF8
    Search server, but it still didn't work so I uninstalled it and
    then reinstalled it. After that I was able to create the new
    collections and finally, re-index the new collections. All seems
    well for now. I have four more systems to recreate the collections
    for and then re-index all of them.
    This whole thing begs the questions:
    1. How long is this installation going to survive?
    2. Is this an indication of a very fragile product?
    3. Are you and I the only ones having problems?
    4. Are you and I the only ones using CF8 Verity?
    5. Is Adobe aware of any problems with CF8 Verity?
    6. Is there something wrong with my code that has worked
    successfully with CF4, CF5 & CF6 now that I'm using CF8?
    I’m sure there are other questions that should be asked
    but I’m too tired and hungry to think about them right now.
    Thanks again for your insight.
    Len

  • Verity Search Server on Macintosh

    I was intending to use the ColdFusion Verity Search Service but the service is unable in the ColdFusion Administrator. It would seem the server needs to be installed separately but the link in LiveDocs is unavailable, I’m using CF8 developer on a Macintosh, if anyone knows where I can find the installation software that would be appreciated. Thanks.

    I don't know about that, pwizzard. Here's something else to consider. While there's no "Mac" installer, there is a Linux one. I think that will work for you. Note that you do need to have a license key for CF to get to it. (In other words, this won't work if you're using the Developer edition, because it has no license key.)
    Short answer:
    Go to the page, https://www.adobe.com/cfusion/entitlement/index.cfm?e=verity, enter your CF license key (standard or enterprise), and download the installer (for Linux) from there. Let us know if it works
    It's also unfortunate that the /go/verity/ link fails. While we can't change the CF8 licvedocs page you found, I did change the corresponding CF9 page to offer the link above.
    Long answer:
    As for how I figured out that this may be what you need, here's what I did, in case any of it may help you or others in the future.
    First, I recalled that there was a page of installers that went along with CF. I couldn't remember the link, but I trusted that the Adobe CF site would get me there.
    - I went to the CF front page (can be found via google): http://www.adobe.com/products/coldfusion/
    - choose link in lower right of right nav bar for CF8: http://www.adobe.com/products/coldfusion/coldfusion8/
    - choose link to download trial
    - log in (if you don't want to login, just keep reading).
    - choose link for "related ColdFusion downloads": http://www.adobe.com/support/coldfusion/downloads.html
         - and note that you could also just visit that link directly, now that you know it, without needing to log in
    - there, it offers a section on "Verity (language packs and standalone installer)", and it has the link I offered above
    Admittedly, that page says that the installer is meant for installing Verity on a machine separate from CF, so I wondered if it was what you really needed. I decided to search google for help (coldfusion install verity) and found this http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=othertechnologies_06.htm l. I guess that's the page you had found, because it offers a link to get to the installer, as http://www.adobe.com/go/verity, which fails (and because this is the CF8 docs, we can't even update it with a corrected link if we find one.)
    But note that these help pages offer a popup box that offers a link to the CF9 docs: http://help.adobe.com/en_US/ColdFusion/9.0/CFMLRef/index.html. Unfortunately, that goes to the front page of the docs. You need to note where you were on the previous page (bummer). At the top of the CF8 doc page, we see that the page was within "Installing and Using ColdFusion / Installing Integrated Technologies". We can select that from the CF docs front page, which opens to http://help.adobe.com/en_US/ColdFusion/9.0/Installing/WSc3ff6d0ea77859461172e0811cdec18c28 -7ff1.html.
    The link for the verity page itself is http://help.adobe.com/en_US/ColdFusion/9.0/Installing/WSc3ff6d0ea77859461172e0811cdec18969 -7ffd.html. Sadly, that page (almost identical to the CF8 one) also has that failing link, but at least we can update the page with the proper one.
    I wasn't positive that it was the right link, until I did some more digging. (FWIW, I tried to find any old version of the go/verity page at archive.org, but no luck. Returning to the google search results list, I did find this, though: http://www.adobe.com/support/coldfusion/verity_reg/register/index.cgi. That looked just like the first link offered above, though only for CF7, so I was more confident that the first link I offered is indeed what you need.)
    I thought to search google for the specific phrase "adobe.com/go/verity", and there it found a couple of other CF9 doc pages, and one of them (https://www.adobe.com/cfusion/entitlement/index.cfm?e=verity) did also have the bad /go/verity link, and someone offered in a comment a link to (again) the original download page I offered (https://www.adobe.com/cfusion/entitlement/index.cfm?e=verity). So that really seems the right page, and I have added a comment to http://help.adobe.com/en_US/ColdFusion/9.0/Installing/WSc3ff6d0ea77859461172e0811cdec18969 -7ffd.html.
    One last thing: while the download page doesn’t have an OS X-specific installer, the help page does mention OS X and says getting this installer is the solution, and it does offer a Linux installer to look for, so I suppose that's what you are supposed to you. One thing that still has me a little suspect of things is that I did use a key to get to that download page, and I see the filename offered for the Linux installer is "coldfusion-search-lin.bin", not the "ColdFusion_9_Verity_linux.bin name offered". But maybe it's just a doc inconsistency.
    Anyway let us know if it helps.
    /charlie

  • Verity Search Server Problem

    Hello all,
    This is my first attempt to use Verity on my localhost and
    I've run into a problem trying to create a collection via the CF
    Administrator pages. Whenever I click on Data & Services >
    Verity Collections I see the following error:
    "Unable to retrieve collections from the Search Service.
    Please verify that the ColdFusion Search Server is installed and
    running."
    I've taken the following troubleshooting steps:
    - Checked to make sure Verity was installed
    - Stopped and started the ColdFusion 8 Search Server services
    - Ran the verity-install.bat again. When I did this I
    recieved the following error: OpenService Failed: Access is Denied
    I'm running Windows Visa Home Premium.
    Any thoughts on how I can get Verity working on my local
    machine would be most appreciated.
    D

    Hello all,
    This is my first attempt to use Verity on my localhost and
    I've run into a problem trying to create a collection via the CF
    Administrator pages. Whenever I click on Data & Services >
    Verity Collections I see the following error:
    "Unable to retrieve collections from the Search Service.
    Please verify that the ColdFusion Search Server is installed and
    running."
    I've taken the following troubleshooting steps:
    - Checked to make sure Verity was installed
    - Stopped and started the ColdFusion 8 Search Server services
    - Ran the verity-install.bat again. When I did this I
    recieved the following error: OpenService Failed: Access is Denied
    I'm running Windows Visa Home Premium.
    Any thoughts on how I can get Verity working on my local
    machine would be most appreciated.
    D

  • CF8 Verity K2 server excessive memory

    I can see this is an old post, but it still appears to be
    relavent today even with CF8. My understanding is that CF8 is using
    Verity K2 5.5 (same as CF7). I am able to take up a massive amount
    of system memory just by simply adding collections without even
    indexing them. I noticed this problem when we started getting ready
    deploy several of our home grown CMS products onto our development
    server and I noticed that a large chunck of memory was being taken
    up.
    So, I decided simply to see what the server would do if I
    just started adding a bunch of empty verity collections. The memory
    taken up by just 60 collections was over 1G. I tried to take it to
    120 collections, but verity kept crashing (out of memory errors).
    I read in this post (
    Verity
    Not Working in CF MX 7) that it was possible to seperate out
    the verity server from the CF server, so I have been attempting to
    do just that. Rob Rush provides a good informational link in that
    post. So far I have been unsuccessful. I have followed that
    instructions in the CF documentation and from the technote and it
    seems like I have the two servers communicating, but when I go to
    perform an index, it fails.
    If anyone has successfully seperated the servers, it would be
    of great interested and help to me if you can shed any light on
    this.

    Thanks for the suggestion. I tried just re-installing the CF8
    Search server, but it still didn't work so I uninstalled it and
    then reinstalled it. After that I was able to create the new
    collections and finally, re-index the new collections. All seems
    well for now. I have four more systems to recreate the collections
    for and then re-index all of them.
    This whole thing begs the questions:
    1. How long is this installation going to survive?
    2. Is this an indication of a very fragile product?
    3. Are you and I the only ones having problems?
    4. Are you and I the only ones using CF8 Verity?
    5. Is Adobe aware of any problems with CF8 Verity?
    6. Is there something wrong with my code that has worked
    successfully with CF4, CF5 & CF6 now that I'm using CF8?
    I’m sure there are other questions that should be asked
    but I’m too tired and hungry to think about them right now.
    Thanks again for your insight.
    Len

  • Connect a primary site as a ditribution point to another primary site

    Hi @ all,
    I have a Central site and a primary site server running - all is working fine. Now I have to provide another primary site server. I setuo the server and connected the new site to the Central site - all is working fine.
    But on my forst primary site (P1) are some (many) software packages which I would like to deploy on the new primary site server (P2). Is it possible to establich a connection from P1 to P2 so that I can handle P2 as a distribution point from P1.
    On the other site the only way I see is to copy all software packgaes from P1 to the Central Site and ditribute the packages to the P1 and P2.
    Maybe there is a way which I don't see. Every help is very apreciated.
    Many thanks for your attention.
    Rolf

    Hi Jason,
    thanky for your reply. This way to is not the way I would like to go.
    I'll be able to make a decision, if I sent the package from P1 to P2. I'm sorry, but I did not explain that the P1 and P2 will work in parallel - because the servers are for two different branches. But the P1 server contains software which can be used in
    the other branch offfice. We are using SCCM 2007 R3 - I forgot in my first post.
    I hope this helps to understand which problem I have to solve.
    Regards
    Rofl

Maybe you are looking for

  • Print Button on JSP page prints title,time etc

    Hi I have aprint Button on my jsp page which prints whatever I want selectively using the <style tags> <style type="text/css" media=print> .noprint { display: none} .noscreen { color: black } </style> <style type="text/css" media=screen> .noscreen {

  • Using REGEXP_REPLACE to remove XML data from between XML tags

    Hello there, I am trying to use the REGEXP_REPLACE SQL function on a piece of XML, to remove the actual XML data from the elements. My end goal is to end up with a comma-delimited list of XML element names. As part of the first step, I just want to r

  • Current and Last PO Calculation

    Hello All, 0PUR_C01 is my InfoProvider. I also have data in 0PUR_O01, which is an DSO. I need to build a report giving Current and Last PO details for a Material (independent of vendor). The user will input only single date. The system should check w

  • Installing Photoshop Error

    I bought a student version of CS5 and every time I try to install Photoshop I keep getting errors that say I need adobe flash 10 to install that one program. All of the other programs in the package installed fine except for that one. What can I do?

  • I cant find my youtube app on my ipad wut do i do

    I cant find my youtube app on my ipad wut do i do