Loading from different servers

I have an admin running on one server and a managed server running on
          another. How can the admin server load the application that was
          installed on the managed server?
          Nael.
          

Hi.
          I'm not sure I understand your question. Why would the admin server load
          an application from a managed server? It should be the other way
          around. I don't think it will do this.
          Can you add anything to clarify your situation?
          Thanks,
          Michael
          Nael wrote:
          > I have an admin running on one server and a managed server running on
          > another. How can the admin server load the application that was
          > installed on the managed server?
          >
          > Nael.
          Michael Young
          Developer Relations Engineer
          BEA Support
          

Similar Messages

  • Why are these classes equal? Loaded from different classloaders.

    I thought that classes loaded from different classloaders were seen as different in the JVM? But this code prints true to every check:
    try
         Class c = new URLClassLoader( new URL[] { new URL( "jar:file://home/tests/test.jar!/" ) } ).loadClass( "Test" );
         Class c2 = new URLClassLoader( new URL[] { new URL( "jar:file://home/tests/test.jar!/" ) } ).loadClass( "Test" );
         System.out.println( ( c == c2 ) );
         System.out.println( ( c.equals( c2 ) ) );
         System.out.println( ( c.getName().equals( c2.getName() ) ) );
    catch (Exception e)
         e.printStackTrace();
    }

    DrClap wrote:
    The more unbelievable thing is that this:
    System.out.println( ( c == c2 ) );prints "true". That shouldn't happen, and it's nothing to do with facts about classloaders. It shouldn't happen because "new" called twice should produce two different objects, no matter what kind of objects they are.
    I didn't try your code because I would have had to spend a couple of minutes creating suitable jar files. But did you actually run that code? Or is it a reduction of some larger piece of code and you just assumed it would do what you said it does? Because I don't believe that.I actually ran the code and every line DID print out true. This is in Java 1.5.
    I figured out why they're all true though - it's because the jar file was in the classpath, so the classes were loaded by a different classloader (the same one). When I put the jar out of the classpath, the statments printed out like this:
    //false
    System.out.println( ( c == c2 ) );
    //false
    System.out.println( ( c.equals( c2 ) ) );
    //true
    System.out.println( ( c.getName().equals( c2.getName() ) ) );I agree on the first one printing true but I seem to remember something about how they changed that rule in Java 1.5. I could be wrong but in c++, that would be a completely valid true statement (assuming your class implemented the "==" operator), so maybe they changed it to be in line with that?

  • HT1199 Two new programmes loaded from different companies fail when I try to use them -quit unexpectedly messages

    Two new programmes from differant companies have loaded ok but when I try to use them I get an imediate error message -quit unexpectedly- and the programme closes. What is wrong? 

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Step 1
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Enter the name of the crashed application or process in the Filter text field. Select the messages from the time of the last crash, if any. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message (command-V).
    When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some private information, such as your name, may appear in the log. Anonymize before posting.
    Step 2
    In the Console window, look under User Diagnostic Reports (not "Diagnostic and Usage Messages") for crash reports related to the crashed process. The report name starts with the name of the process, and ends with ".crash". Select the most recent report and post the entire contents — again, the text, not a screenshot. In the interest of privacy, I suggest that, before posting, you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header of the report, if it’s present (it may not be.) Please don’t post other kinds of diagnostic report — they're very long and not helpful.

  • Portal page serving portlets from different servers

    Can i make a portal page containing portlets which are served by different
    servers. Please reply this is urgent,
    Thanks in advance,
    Amit

    Amit,
    Using WLPortal 4.0 the best way to access remote information is to use the
    Web Service Portlet Wizard (available from the BEA Developer Center -
    http://developer.bea.com/index.jsp). You would need to set up web services
    on your different servers and then access the information using a portlet
    created using the wizard. We will be delivering a more comprehensive remote
    Portlet solution in a future release.
    Sincerely,
    Adrian.
    Adrian Fletcher.
    Senior Software Engineer,
    BEA Systems, Inc.
    Boulder, CO.
    email: [email protected]
    "Amit" <[email protected]> wrote in message
    news:3c608900$[email protected]..
    Can i make a portal page containing portlets which are served by different
    servers. Please reply this is urgent,
    Thanks in advance,
    Amit

  • Installing AIR From Different Servers

    Hi,
    I have an AIR application which can be downloaded from
    different domains, I want the AIR application to target its parent
    domain dynamically. Currently we do this by creating multiple
    builds which has only change in the form of the target URL. Is
    there any way I can make a single AIR build but it needs to update
    some files inside the build to based on from which server it gets
    downloads....
    Thanks

    Yes, this is possible. You have to sign up to redistribute
    the runtime; see
    http://www.adobe.com/products/air/runtime_distribution1.html.
    regards,
    Oliver Goldman | Adobe AIR Engineering

  • Xml file not loading from different server

    Hi,
    I have a simple flash banner that is pulling a number from an xml file on a different server. When it gets to the frame where the number should be it just says "transferring data from eckul.com" and will not actually pull in the number. Unfortunately I can't put the files on the same servers. Any help would be much appreciated, below are the links and the xml code I'm using followed by the action script. Cheers
    http://www.sainters.net/newsletters/2010/flash_test_membership2.html
    http://www.eckul.com/number.xml
    <?xml version="1.0"?>
    <inventors>
        <person>
            <name>892</name>
            </inventors>
    function loadXML(loaded) {
    if (loaded) {
    _root.inventor = this.firstChild.childNodes[0].childNodes[0].firstChild.nodeValue;
    _root.comments = this.firstChild.childNodes[0].childNodes[1].firstChild.nodeValue;
    name_txt.text = _root.inventor;
    comment_txt.text = _root.comments;
    } else {
      trace("file not loaded!");
    xmlData = new XML();
    xmlData.ignoreWhite = true;
    xmlData.onLoad = loadXML;
    xmlData.load("http://www.eckul.com/number.xml");

    so, in frame 1 of your fla before you execute that cross-domain load method, use:
    System.security.loadPolicyFile("http:www.yourcrossdomain.com/subdirectoriesIfNeeded/crossd omain2.xml");
    where the following (crossdomain.xml) is in www.yourcrossdomain.com's root (IF you want to allow allow subdirectory policy files):
    <!DOCTYPE cross-domain-policy SYSTEM "http://www.adobe.com/xml/dtds/cross-domain-policy.dtd">
    <cross-domain-policy>
    <site-control permitted-cross-domain-policies="all"/>
    </cross-domain-policy>
    and in the subdirectory (and its descendents) that you want to allow access put crossdomain2.xml:
    <?xml version="1.0"?>
    <!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
    <cross-domain-policy>
      <allow-access-from domain="www.thedomainthatstryingtoloadcrossdomaindata.com" />
    </cross-domain-policy>

  • Concatenate tables with same name from different servers - CR2013

    Hello,
    I need some help.  I need data from 2 tables with the same name on different SQL servers thru an ODBC connection. When I try to get the data by adding both to my datasource I get data from one or the other.  I have considered creating a view, but not sure how to handle this.  Thanks.

    Hi,
    Linked Servers are pretty simple and straightforward, just do a search for the procedure.
    I do have an additional comment, though.  Depending on what tables you're gathering, I've found noticeable differences in performance when I use a connector to a DB on Server Instance "A" linked to "B" versus Server Instance B linked to A.  I haven't determined the circumstances affecting one over the other.
    If I'm not happy with speed using a connector A, I try switching to B.  I like to use as much SQL code as possible, but you can't get around the connector still being a factor.
    Matt

  • All labview Vi's load from different directory

    OK this may be a stupid question but I done a save with options/ include VI.llbs. on my machine and now when I create a new vi whenever I try to put something on the block diagram it tells me that it is loading the files from the library that i saved for distribution. It only does this when I have the top level vi open of the library and try to open a new blank vi. It even does it when I open labview then open a blank vi and put anything down on the diagram and it does not give me this. then I can open up the top level vi from the library in question and put the same thing on the diagram and it will give me the warning. Maybe this is normal behavior, I don't know.
    It just seams kind of funny that it would try to lo
    ad NI VI's from the llb instead of mine. Hope some can shed some light on this. I do not want to mess anything up.
    thanks in advance.
    Joe
    Joe.
    "NOTHING IS EVER EASY"
    Attachments:
    labview.jpg ‏32 KB

    If I understand what you are saying, this is annoying, but normal behavior.
    LabVIEW can only have one VI of a specific name in memory at a time. So if you have the top level VI in question open, all of it's sub-vis get loaded into memory. So then if you create a new VI and drop the 'General Error Handler.vi' from the palette, it will use the one already in memory from your library.
    Creating a new VI right after you start LabVIEW will let you use the vi.lib files, but then when you open your application from the library, it must use any vi.lib files that are in memory first.
    Usually it's best not to save a .llb with the vi.lib files unless it's required for source code control. Then it's a good idea to use the Development Environment Applicaiton
    Builder from OpenG to build the library for you. This will add a suffix you specify to every VI in the library and relink them to their callers. This way, other VIs you open will use the vi.lib files.
    Ed
    Ed Dickens - Certified LabVIEW Architect - DISTek Integration, Inc. - NI Certified Alliance Partner
    Using the Abort button to stop your VI is like using a tree to stop your car. It works, but there may be consequences.

  • Transferring data from different servers of different versions.

    I have got data on Oracle 7.3 on one server and i want to
    transfer it to the another server on another location having
    version 8.1.5 . Both of these servers can be connected and
    communicated properly. My problem is how to transfer this data?
    I have tried export from 7.3 but it is unable to import at
    8.1.5, giving an error.

    Hi Yayati,
        this can be done and follow the below logic.
    Create an RFC to fetch the data you need and the tables parameter will have the table which will have all the fetched data. After creating this RFC in dev move it to QA.
    The create a Program and call this RFC inside the program. The program should also have logic to fetch the data from the current system. After the RFC is executed you will now have data from both the system and all you have to do is to display it. 
    move this program to QA as well.
    The RFC destination should vary as shown below.
    IF SY-SYSID EQ <Dev system id>.
      RFC destination <Quality system>.
    ELSEIF SY-SYSID EQ <quality system id>. 
      RFC destination <Dev system>.
    ENDIF.
    Please let me know if you require further clarifications.
    <removed by moderator>
    Regards,
    Praveenkumar T.
    Edited by: Thomas Zloch on Feb 14, 2012

  • How to use Xpath to query elements loaded from different xml docs?

    I have a big DBLP XML doc (95mb), to load into the container, i splitted the doc into many small xml docs by the publication types, such as articles, books, inproceedings, etc.
    I tried to use xpath query such as
    query 'collection()/dblp[article/author]/book[title]'
    I got empty answers.
    but if i use XQuery such as
    query 'let $r:=collection()/dblp,$a :=$r/inproceedings/author
    for $l2 in $r/book
    where $a and $l2/title
    return <result> {$l2}{$a}</result>'
    i got answers. However, if i remove {$a} from the return clause, i still got empty answers.
    is there any problem with my Xpath query and flwor Xquery?
    regards,
    xiaoying

    Hi John,
    Following is the procedure i have used to load the xml docs (after the indexes have been created):
    private static void loadXmlFiles(File path2DbEnv,String theContainer, File file) throws Throwable {
         //Open a container in the db environment
              XmlManager theMgr = null;
              XmlContainer openedContainer = null;
              myDbEnv env;
              try {
              env = new myDbEnv(path2DbEnv);
         theMgr = new XmlManager(env.getEnvironment(), new XmlManagerConfig());
         //use node container
         theMgr.setDefaultContainerType(XmlContainer.NodeContainer);
                   try{
                   openedContainer = theMgr.createContainer(theContainer);
                   }catch (XmlException e){
                        //if the container alreay exist, then open it;     
                        openedContainer = theMgr.openContainer(theContainer);
              //Get an update context.
              XmlUpdateContext updateContext = theMgr.createUpdateContext();
                   String theFile = file.toString();
                   String docName=file.getName();
              //Get the input stream.
              XmlInputStream theStream = theMgr.createLocalFileInputStream(theFile);
              System.out.println("Adding " + theFile + " to container " +
                             theContainer);
         //     Do the actual put
              openedContainer.putDocument(docName, // The document's name
              theStream, // The actual document.
              updateContext, // The update context
         //     (required).
              null); // XmlDocumentConfig object
              System.out.println("done.");
              //XmlException extends DatabaseException, which in turn extends Exception.
              // Catching Exception catches them all.
              } catch (XmlException e){
                   System.err.println("Error loading files into container " + theContainer);
                   System.err.println(" Message: " + e.getMessage());
                   //In the event of an error, we abort the operation
                   // The database is left in the same state as it was in before
                   // we started this operation.
                   throw e;
              finally {
              cleanup(theMgr, openedContainer);
    Unfortunately, i waited for around 20 hours 148mb doc was not loaded; so i gave up.
    Could you please give me some suggestions on how to load the large doc efficiently ? thanks.
    regards,
    xiaoying

  • Maintaining client session in request for pages from different servers

    Dear sirs,
    I have a JSP page which is running on a server in a client session. In the JSP, i have a link which is pointing to the JSP of another application running on a different server. How can we maintain the communication in the same client session?
    Regards,
    Sudheesh K S

    Using cookies is one way.

  • Upload Sapscript Form from Different Servers

    Hi All,
    Is it possible to upload/import a downloaded sapscript form from one server to another server? If so, how am i going to do it?
    Points will be awarded.

    Hi,
    Use this program RSTXSCRP.
    In first server:
    Please follow this :
    Select radio Button form>Object name(Script Name)->Mode(Export)>select From on Front end--
    >give file name to download.
    In second server:
    Please follow this :
    Select radio Button form>Object name(Z Script Name)->Mode(Import)>select From on Front end--
    >Select Downlaoded file name which is on the front end for uplaoding.
    Regards
    Janardhan
    Edited by: JANARDHAN REDDY on Aug 14, 2008 9:56 AM
    Edited by: JANARDHAN REDDY on Aug 14, 2008 9:59 AM

  • Loading modules from different domain

    when I load modules from the same location where is main application, everything is fine. But when modules are loaded from different adrress i got following error:
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
              at mx.utils::LoaderUtil$/isRSLLoaded()[E:\dev\4.5.1\frameworks\projects\framework\src\mx\uti ls\LoaderUtil.as:525]
              at mx.utils::LoaderUtil$/http://www.adobe.com/2006/flex/mx/internal::processRequiredRSLs()[E:\dev\4.5.1\frameworks\projects\framework\src\mx\utils\LoaderUtil.as:259]
              at mx.core::FlexModuleFactory/getRSLInfo()[E:\dev\4.5.1\frameworks\projects\framework\src\mx \core\FlexModuleFactory.as:582]
              at mx.core::FlexModuleFactory/update()[E:\dev\4.5.1\frameworks\projects\framework\src\mx\cor e\FlexModuleFactory.as:470]
              at mx.core::FlexModuleFactory/moduleInitHandler()[E:\dev\4.5.1\frameworks\projects\framework \src\mx\core\FlexModuleFactory.as:819]
    any ideas what might be wrong?
    thanks for any help in advance

    This is a link to testing application:
    http://michalnpe.homeip.net:55001/bin-release/LoadModuleApp.html
    you can see source code of this app.
    Let's say we want to run module from different domain.
    so insert following address for crossdomain.xml and module (into TextInput in the applicataion above) .
    http://a2s.pl/crossdomain.xml
    http://www.a2s.pl/npe/softmgr/Michal/wymiana/TestModule.swf
    here is the code that loads the module:
    protected function loadModule(event:MouseEvent):void
                                            testloader.url = moduleAddress.text;
                                            //testloader.loadModule();
                                  public function setup():void { // run before loading modules
                                            Security.allowDomain("*");
                                            Security.loadPolicyFile(crossdomain.text);
                                            var request:URLRequest = new URLRequest(crossdomain.text);
                                            var loader:URLLoader = new URLLoader();
                                            loader.load(request);

  • Unable to load swf from different domain through html wrapper in Chrom

    Hi All,
           I am trying a embed a swf from different domain. My html wrapper was in one domain and swf was in another domain. I have embedded the swf into the html wrapper. When i run the html file it is loading the swf in firefox and working fine. But when i try to run the same html in chrom or IE the swf is aborted. I have crossdomain.xml file in both the servers which is also allowing both the domains. I was not able to figure out the issue. Can anybody help on this.
    regards,
    Jayagopal.

    Are you getting any errors or warnings?

  • Unloadable items from certain servers stalling page loading and page saving

    Occasionally I'll come across pages that stall when trying to load items from certain servers. Most frequently, it is servers at '''ytimg.com''' and another that I can recall is '''simplecdn.net'''. At the bottom of the Firefox window (where it displays page items that are currently loading) it will say ''Waiting for ytimg.com'' (or something similar) and the page will just sit there for hours not fully loading because of that one item. If I try to save the page to my hard drive (use the ''Web Page, complete'' option), the saving process will stall because of those items just as the page loading did. The primary difference being that the page saving eventually times out and an error prompt appears. My question is this: When I encounter these unloadable/unsavable page items, how can I instruct Firefox to just skip them and move on with loading/saving the rest of the page items?

    The problem has existed for years now. I've experienced it with several different computers, many different Firefox versions and many different software (and extension) environments/configurations. I've gone through a lot of trouble throughout the years to make sure the problem isn't being caused by something usual on my end. I'm just now getting around to posting about it. At present, I'm using Windows XP Pro in a very lean state. No services running that aren't needed and no other programs running except for Comodo Firewall. Just before posting here, I ruled out Comodo Firewall by uninstalling it while testing. I also re-installed Firefox and ran it with no extensions in order to rule out the possibility of a problematic extension. I should mention that I posted this a couple of days ago because I was experiencing the stalling problem while trying to load & save a particular web page. The following day there was no problem with loading or saving that same web page. It seems the '''ytimg.com''' server was perhaps down one day and then back up the next. Keep in mind that the problem isn't so much that this stalling occurs but rather that I can find no option in Firefox that will allow me to skip the loading/saving of the particular items that are causing the stalling. (Attached image is a snapshot of my typical running processes while Comodo Firewall is installed and running).

Maybe you are looking for

  • Vendor Payments Report with WBS Elements

    Dear Expert, I am looking a report for Vendor outgoing payment against WBS Elements. Is there any Vendor Payments report with WBS Elements in SAP? I have seen FBL1N but WBS Elements field is blank. Thanks Samiee.

  • (10g) 자동 통계정보 수집(AUTOMATIC OPTIMIZER STATISTICS COLLECTION)

    제품 : ORACLE SERVER 작성날짜 : 2006-07-21 PURPOSE 이 문서는 10g의 new feature인 자동 통계정보 수집(Automatic Optimizer Statistics Collection)에 대한 소개와 기능에 대한 자료이다. Explanation 1. 개요 Optimizer statistics는 GATHER_STATS_JOB에 의해서 자동으로 수집된다. 이 JOB은 SYS 소유로서 OBJECT_TYPE이 JOB이

  • Java code to clear screen

    i am in need of a method to call which clears the screen of a dos based java program which utilzes java.io*; ....checked the API could not find anything suitable can you help. thanks

  • Associate text to each point in a graph

    I must associate text to each point in my graph. The graph has 10000 points and annotations are very slow. How can I do that ?

  • Trying to create trigger for some action to take place after a user logs on

    Hello, I want to create a trigger to fire after a user logs on. How to write this trigger. I am getting an error with syntax below. Thank you. create or replace trigger after_logon_xxtestuser after logon on xxtestuser.xxtestuser begin alter session s