Port assignment script availability?

Hi, I am wondering if there are any jython scripts available that will take a "starting port" value and then go and configure all of the ports within a new domain? I would like to be able to install a new domain, add any number of managed jvm's and nodemanagers and have this script configure the entire domain with wlst.

stop the sia and go into it's properties from the CCM. I believe they can both be set there as well as in the CMC > Servers > CMS
Regards,
Tim

Similar Messages

  • Is there a script available for arranging elements for optimal use of the printable area?

    I'm starting a sticker printing business using Illustrator as my main layout and illustration too. I was wondering if there's a script available for automatically arranging a set of elements on a page so that they optimally take up the available space. I figured this would save me some on material costs.
    If I were to create a script from scratch, can someone give me pointers? I'm a casual AI user but I have Javascript experience.
    Thanks.

    The below image shows the 4 different die sizes, the artwork fits inside the dotted box so make sure that we have room around the die and the drill holes are assigned as well.
    The name of each die is listed above it, and the size is listed below it.
    The script is set to take each die and place it on the template until it is full, then it will save it and move it to the folder where it will be grabbed and preped for printing.
    Everything below the **** is the script.
    #target illustrator   
        var tempDoc = app.activeDocument;
        copy();
        if (tempDoc.selection.length > 0)
            var myFile = File("S:/TEMPLATES/IN USE/DB_TEMPLATE.ai");
            app.open(myFile);
            var thisDoc = app.activeDocument;
                thisDoc.views[0].centerPoint = [324,503];
                thisDoc.views[0].zoom = .65;
            var allGroups;
            var horizontalCords = [0,180,360,540,0,180,360,540,0,180,360,540,0,180,360,540,0,180,360,540,0];
            var verticalCords = [1012.5,1012.5,1012.5,1012.5,810,810,810,810,607.5,607.5,607.5,607.5,405,405,405,405,202. 5,202.5,202.5,202.5,202.5];
            var oneGroups = new Array();
            var twoGroups = new Array();
            var oneAGroups = new Array();
            var twoAGroups = new Array();
            var makeNew1 = new Array();
            var makeNew2 = new Array();
            var twoACounter = 0;
            var layerRemainder = [4,4,4,4];
            var totalDies = 0;
            var noGo = 0;
            var caseTest;
        if (thisDoc.pageItems.length == 0)
            drawTemplate();
        var newLayer = thisDoc.layers.add();
        newLayer.name = "Die Layer";
        paste();
    allGroups = thisDoc.groupItems;
        for (i=0;i<allGroups.length;i++){// determine what dies are present
            if (allGroups[i].name == "1"){
                oneGroups.push(allGroups[i]);
            else
        if (allGroups[i].name == "1A"){
                oneAGroups.push(allGroups[i]);
        if (allGroups[i].name == "2") {
            twoGroups.push(allGroups[i]);
        else
        if (allGroups[i].name == "2A"){
            twoAGroups.push(allGroups[i]);
        }// end FOR
    if (oneAGroups.length == 1)
        oneAGroups[0].position = [540,101.5];   
    if (twoAGroups.length == 1)
        twoAGroups[0].position = [360.25,101.25];
    if (oneAGroups.length == 1 && twoAGroups.length == 1)
        oneAGroups[0].position = [360,203.5];   
        if(oneAGroups.length == 2){
        var add1Group = thisDoc.groupItems.add();
            add1Group.name = "1";
            oneAGroups[0].name = "1A changed";
            oneAGroups[1].name = "1A changed";
            oneAGroups[0].position = [0,0];
            oneAGroups[1].position = [0,-100.75];
            oneAGroups[0].moveToBeginning(add1Group);
            oneAGroups[1].moveToBeginning(add1Group);       
            oneGroups.push(add1Group);
            oneAGroups.length = 0;
            redraw();
        if(twoAGroups.length == 2){
        var add2Group = thisDoc.groupItems.add();
            add2Group.name = "2";
            twoAGroups[0].name = "2A changed";
            twoAGroups[1].name = "2A changed";
            twoAGroups[0].position = [0,0];
            twoAGroups[1].position = [0,-100.75];
            twoAGroups[0].moveToBeginning(add2Group);
            twoAGroups[1].moveToBeginning(add2Group);
            twoGroups.push(add2Group);
            twoAGroups.length = 0;
            redraw();
        if (twoGroups.length > 0){
                var h = 0;
                var v = 0;
                var dieCount = 0;
                for (i = 0; i < twoGroups.length; i++) {
                    twoGroups[i].position = [horizontalCords[h],verticalCords[v]];
                    h = h + 2;
                    v = v + 2;
                    dieCount++
                    }//end FOR
            }// end twoGroups length IF
            if (oneGroups.length > 0){
            var h = 0+(twoGroups.length*2);
            var v = 0 + (twoGroups.length*2);
             for (i = 0; i < oneGroups.length; i++){
               oneGroups[i].position = [horizontalCords[h],verticalCords[v]];
                  h = h +1;
                    v = v + 1;
                 }//  end FOR
             }//  end onGroups IF
              redraw();//  redraws template so it updates changes on the page
           //thisDoc.close(SaveOptions.SAVECHANGES);
            }//  end noGo
    else
    alert("You have nothing selected...");
        totalDies = (oneGroups.length + (twoGroups.length*2) + (twoAGroups.length/2) + (oneAGroups.length/2));
    if (totalDies < 20)
        caseTest = 0
        else if (totalDies > 20)
        caseTest = 1
        else if (totalDies == 20)
        caseTest = 2;
    switch (caseTest)
            case 0:
                thisDoc.close(SaveOptions.SAVECHANGES);
                break;
            case 1:
                alert ("Die will not fit on the Template at this time.  Try again later.");
                thisDoc.close(SaveOptions.DONOTSAVECHANGES);
                break;
            case 2:
                    var answer = confirm ("The Template is full.  Do you want to clear it?");
                        if (answer == true)
                            printTheTemplate();
                            break;
    function drawTemplate(){  //draws the template if the page is empty
            var tempDoc = app.activeDocument;
        tempDoc.rulerOrigin = [0,0];
        tempDoc.pageOrigin = [0,0];
        var newLayer = tempDoc.layers.add();
        newLayer.name = "Template Layer";
        var templateGroup = tempDoc.groupItems.add();
        templateGroup.name = "Template Build";
        var vertLoc = .25;
        var horzLoc = -.25;
        var topTemp = new Array();
        var botTemp = new Array();
        var leftTemp = new Array();
        var rightTemp = new Array();
        for (i=0;i<5;i++){
            botTemp[i] = thisDoc.pathItems.rectangle(0,vertLoc,.5,21);
            topTemp[i] = thisDoc.pathItems.rectangle(1033,vertLoc,.5,21);
             botTemp[i].moveToBeginning(templateGroup);
             topTemp[i].moveToBeginning(templateGroup);
            vertLoc = vertLoc + 180;
        for (j=0; j<6;j++){
            leftTemp[j] = thisDoc.pathItems.rectangle(horzLoc,-21,21,.5);
            rightTemp[j] = thisDoc.pathItems.rectangle(horzLoc,720,21,.5);
             leftTemp[j].moveToBeginning(templateGroup);
             rightTemp[j].moveToBeginning(templateGroup);
            horzLoc = horzLoc +202.5;
    return
    }//  end function drawTemplate
    function printTheTemplate()
              // October 16, 2012  Henry J. Klementovich
            //var TemplatePath = File("C:/Users/henryk/Desktop/Illustrator Test Files/HS_TEMPLATE.ai");
            //open(TemplatePath)
            //open(myFile);
            var thisDoc = app.activeDocument;
                thisDoc.rulerOrigin = [0,0];
                thisDoc.pageOrigin = [0,0]; 
            var thePath = ("S:/TEMPLATES/PRINTED");
            //  Will only continue if the artist has selected the art.  This step saved a lengthy FOR loop that would have had to select each page or path item of the
            //  document.  Some of the templates had over 5,000 items, resulting in an un-exceptable wait-time for the loop to select them.
            for (x=0;x<thisDoc.groupItems.length;x++)
                thisDoc.groupItems[x].selected = true;
            if (thisDoc.selection.length > 0)
            //  This section pulls the date from the system for two purposes:  the date shown on the template and the date used to save the file to the ArtShare.
            //  They are different b/c system filenames cannot include the  ":" char, which is used on the template for the time object.
            var  theDate = new Date();
                    var day = theDate.getDate();
                    var month = theDate.getMonth() + 1;
                    var year = theDate.getFullYear();
                    var hours = theDate.getHours();
                    var min = theDate.getMinutes();
                        if (min < 10)
                            min = ("0" + min);
                    var morn;
                        if (hours >= 12)
                                hours = hours - 12;
                                morn = " PM";
                        else
                            morn = " AM"
            var saveDate = (month + "-" + day + "-" + year + "    " + hours + min + morn );
            var tempDate = thisDoc.textFrames.add();
                    tempDate.name = theDate;
                    tempDate.contents = (month+ "/" + day + "/ " + year + "    " + hours + ":" + min );
                    tempDate.top = 1026;
                    tempDate.left =40;
                    tempDate.filled = true;
            var actGroups = thisDoc.selection;
            var artGroup = thisDoc.groupItems.add();
                  artGroup.name = "Art Group";
            for (i=0;i<actGroups.length;i++)
                  actGroups[i].moveToEnd(artGroup);
            tempDate.moveToEnd(artGroup);
            artGroup.selected = true;
            copy();
            thisDoc.pageItems.removeAll();//  copies everything from the current template into the clipboard, clears the template, saves it and closes it.
            var layLen = app.activeDocument.layers.length;
            //alert(layLen);
            for (i=0;i<layLen;i++)
            app.activeDocument.layers[0].remove();
            thisDoc.close(SaveOptions.SAVECHANGES);
            app.documents.add();//  adds new document for the template to be saved in the Printed folder.
            paste();
            var thisDoc = app.activeDocument;  
            var saveName = new File (thePath + "/" + saveDate);
                  saveOpts = new IllustratorSaveOptions();
                  saveOpts.compatibility = Compatibility.ILLUSTRATOR13;
                  saveOpts.generateThumbnails = true;
                  saveOpts.preserveEditability = true;
                  thisDoc.saveAs( saveName, saveOpts );
            var actGroups = thisDoc.selection;
            copy();
            thisDoc.close(SaveOptions.SAVECHANGES);
            $.sleep(10);
            app.documents.add();
            paste();
            var nexDoc = app.activeDocument; 
            var actGroups = nexDoc.selection;
            var artGroup =nexDoc.groupItems.add();
                  artGroup.name = "Art Group";
            for (i=0;i<actGroups.length;i++)
                    actGroups[i].moveToEnd(artGroup);
                    //artGroup.selected = true;
                    artGroup.resize(70,70);
                    alert("The current template has been saved to the Printed Templates folder.  This page is to be printed and sent to editing.")
    Hope this helps someone get one created because if they can make one that doesn't depend on the premade dies that would help me out quite a bit because some of the dies that we make are an odd size so we have to place them manually.

  • GPS Error on F3507g & Windows 7 "The GPS NMEA COM Port is not available" x200

    I have an X200 with a WWAN Card 43R153 (Ericsson F3507g) running Window 7.
    The WWAN reliably connects to Vodafone but I can't get the GPS to work.
    Device manager shows this port Enabled:-
    Ericsson E3507G Mobile Broadband MiniCard GPS Port (Com8)
    Driver Invogps.sys from Ericsson AB, Version 1.0.0.28  29/09/2008.
    Thinkvantage GPS version 2.50 is also installed and Lenovo System Update says everything is up to date.
    When I "Turn on GPS" or run 'Lenovs GPS"  I get this message:-
    The GPS NMEA COM port is not available. You need to check the following things.
    - Another GPS application is using the COM port.
    - COM ports is disabled. You can enable the COM port in the Device Manager.
    Location and Other Sensors shows nothing installed.
    I've tried deleting all the drivers and reinstalling but not luck.
    Has anyone else had the same problem and found a solution. I can't think of anything else to try.
    ThinkPad X200 7459-1P0

    If you are running a Windows 7 Weather Gadget on your desktop, try shutting it down entirely and see if that changes your GPS "in use" problem.
    Cheers,
    Bill
    I don't work for Lenovo

  • Ipod 7th generation. bought it 3 days ago. no problem then but now won't turn on. I keep getting a usb device not recognized (and i keep changing ports to no avail). what to do?

    ipod 7th generation. bought it 3 days ago. no problem then but now won't turn on. I keep getting a usb device not recognized (and i keep changing ports to no avail). what to do?

    wish i can rmber how mine was fixed i think i just waited tried again and likr magic it worked again left itunplugged, i was like you recently boughtand it happened to me, now i have another diffrent promblem with it.

  • Why am I getting this error message when trying email a PDF?Server Connection Error. Please verify that port 143 is available for connection on your machine or contact your administrator.

    My Inspector for my house sent me his report via PDF that I had to access from an online link. I downloaded it but cannot forward it in an email to my insurance company who is requiring a copy. I get this error report every time:
    Server Connection Error. Please verify that port 143 is available for connection on your machine or contact your administrator.
    I have no idea what this means. Can someone help? I really don't want to have to print and scan this beast but I've been messing with this for 2 days now and am out of ideas.
    Thanks!

    I'm having the same issue.  Did you resolve it?

  • Is there a script available for 'live' endnotes in Indesign 5.5?

    I want to export books to epub with live endnotes (1,2,3,4,) displayed chapter by chapter at the end of the ebook. There are usually around 10 chapters and 700 notes. How can this be done? I have ongoing books to do like this, so I need an automated solution, is there a script available to do this?. Until now (for non epub books) I have been importing text from word, stripping the notes, and organising ‘dead’ notes, at the end of the book. What is the best way to import word files and keep dynamic links alive in the epub?  Thanks a lot for your help.

    InDesign doesn't support any endnote scheme at all, so all you could do is create hyperlinks to and from the note.
    The same answer for your index query, actually, although there you are going to run into another problem: there is no way the page numbers in the index are going to "update" live as the user resizes his screen, toggles the font, changes the font size etc.

  • ACE - Port-channel High Availability

    We have configured two ACEs with high Availability. ACEs link with our cores, switches cat6500, through a port-channel, ACE’s ports G1/1 and G1/2. High availability works fine if some vlan down but it doesn’t work if an interface down, only if both interfaces get down because then, all vlans of the channel port get down two.
    If possible get an interface port-channel high availability?
    Thanks for your help in advance.

    Thanks for your answer. I have two Cat6500, no VSS possibility. I have two ACEs so each one has configured a port-channel with one Cat6500 (two ports). It works fine. Any problem with that. My issue is when one port-channel of both port is down, failover doesn’t works then, only if both ports are down or vlans are down. I think high availability is only possible in vlan interfaces, not in physical interfaces.
    Regards my friend.

  • VLAN Port Assignment failed on Campus Manager 5.1

    Dear All,
    i deploying LMS 3.1  in my organization.
    I finalized the installation and  all looks fine BUT   when i try to assign a port to a different VLAN in Campus Manager (5.1)  i am getting the following error message.
    There were some errors during operation."
    Error occured moving port Gi1/8 in device 10.x.y.z  into vlan with index XY.
    Cause:An error occured while performing SNMP operation.
    Action:Examine and save the server log file and report the error to the product administrator for further action.
    VLAN Port Assignment failed
    any idea?
    here is simply the config  related to SNMP on my switch.
    snmp-server community XXXXXXXX
    snmp-server host 10.X.Y.Z version 2c XXXXXXXX
    snmp-server enable informs
    snmp-server enable traps 
    do i miss anything else?  any recommendation? Why i am getting that error message?
    Thank you for your support and asistance.
    Kind Regards,
    mico

    Hi Joe,
    thank you so much for your kind reply. I configured the snmp RW community string on the switch matching the credentials  on the LMS server but still getting the same error message when i try to assign ports no a different VLAN
    here is my commands for the switch:
    snmp-server community xxxxxx ro
    snmp-server community yyyyyy rw
    snmp-server host x.y.w.z version 2c yyyyyy
    snmp-server enable informs
    snmp-server enable traps
    and on the LMS server i set the values:
    snmp-server community xxxxxx ro
    snmp-server community yyyyyy rw

  • Hp officejet j6450 port assignment changes each time i start up.

    When I startup, the printer always comes up in "offline status", and I cannot figure out how to reset to online.  The problem seems to be that each time the printer syncs up with the wireless router, the port assignments change, so I have to "discover" the correct port and reset that via the Windows control panel properties for the printer.  How can I set this such that the port assignment remains constant?  or is there some simpler solution?  Thanks.

    Let's set a static IP address for the printer:
    - Print a Network Config Page from the front of the printer. Note the printer's IP address.
    - Type that IP address into a browser to reveal the printer's internal settings.
    - Choose the Networking tab, then Wireless along the left side, then the IPv4 tab.
    - On this screen you want to set a Manual IP. You need to set an IP address outside the range that the router automatically sets (called the DHCP range). You can find the DHCP range of the router using its internal settings page or in its manual. Use the CD that came with your router or type the router's IP address (ends in .1) into a browser.
    - Use 255.255.255.0 for the subnet (unless you know it is different, if so, use that)
    - Enter your router's IP (on the Network Config Page) for the gateway and first DNS. Leave the second one blank.
    - Click 'Apply'.
    Now, shut down the router and printer, start the router, wait, then start the printer.
    After this you may need to redo 'Add a Printer' using the new IP address.
    Say thanks by clicking "Kudos" "thumbs up" in the post that helped you.
    I am employed by HP

  • Is "bpelc" script available in BPEL 11g?

    Dear all,
    Is "bpelc" script available in BPEL 11g, which could be used to deploy BPEL process manually in 10g?
    If not, does BPEL 11g support other deployment ways instead of using JDeveloper?
    Thanks a lot.

    Have resolved.
    It seems bpelc is not available in BPEL 11g. It must use either JDeveloper, EM, WLST, Ant 4 ways to do the deployment.
    Edited by: TF on Sep 15, 2009 5:56 AM

  • Port assignment for Online library

    I'm sitting behind a rather stern firewall and it's blocking
    access to Device Central CS4's Online Library. I need to know the
    port assignement for the feature in order to request access from
    our IT staff. Any info on this question will be greatly
    appreciated.

    WorldofCables One Stop Store for USB Cables, DVI Cables,
    Firewire Cables, Monitor Cables, Adapters, PC Cables, Connectors,
    Audio Video Cables, Gaming Accessories, PDA & Phone
    Accessories, iPOD Accessories.
    http://www.worldofcables.com/store/default.asp

  • Port Assignment SIA and CMS

    Hi,
    I need to change port assignment on SIA and CMS.
    How do I change ports on these services?
    Br,
    Sonni

    stop the sia and go into it's properties from the CCM. I believe they can both be set there as well as in the CMC > Servers > CMS
    Regards,
    Tim

  • Readymade eCATT Scripts Available in a SAP Product?

    Hi Experts/Guru's,
    I'm exploring few things and like to understand them on customer perspective?
    As we know,there are lots lots lots of eCATT Scripts available in SAP for their products & Application.
    Is it (eCATT Scripts)shipped with SAP Products ?( eg: ECC 6.0 )
    (I'm not talking about the explantory scripts of eCATT shipped with the product).I'm aware of this.
    My Question is Say Create a Sales order,purchase order or a Business scenario?Will i have some scripts available in a SAP Product ?
    Or
    Is it downloaded from the SAP Support Portal ?
    Or
    Is it delivered to customer on request  ?
    If the answer is "yes" for anyone of these then,my question is, How & where do we do this?
    Your answers might help in lot in this group.If you dont know.Please take it as investigate topic and try to find out as like me.
    Regards,
    Venky

    Hello,
    Yes for few of the industries the eCATT's are shipped like in case of OIL industry . But this is a rear case.
    Most of the time the eCATT's are not shipped and its used internally within SAP by the SAP test team to check for the correctness of the functionality and to perform regular regression runs. Reason as to why its not shipped is that once its shipped to the customer then there is a need to setup a seperate team for maintenance of the scripts which is a huge task.
    Also the eCATTs created might not be applicable for all possible options of the transaction , it means it might not be reusable for all the conditions.
    There are many more reasons.
    Hope it answers your question.
    Thanks & Best regards,
    Ajay

  • Query to get all ports assigned and used by EBS instance.

    Hi,
    Can some one pleaase help to get
    Query to get all ports assigned and used by EBS instance.
    Help is appreaciated.
    Regards,
    Milan

    MILAN RATHOD wrote:
    Hi,
    Can some one pleaase help to get
    Query to get all ports assigned and used by EBS instance.
    Help is appreaciated.
    Regards,
    MilanIn addition to the thread referenced above by Helios, please check the context files and (Oracle E-Business Suite R12 Configuration in a DMZ [ID 380490.1] -- F. List of Ports to Open in a DMZ Configuration).
    Thanks,
    Hussein

  • LMS 4.0 VLAN Port Assignment Cat3750X

    Hello together
    Have installed LMS 4.0 at a customer. The main switches he uses are the following ones:
    WS-C3750X-24P-S (1.3.6.1.4.1.9.1.1224)
    First problem I faced was with lack of support for Cisco View and the mentioned device. This is fixed with the following package Cisco View Device Update: Cat3750.cv50.13-0.zip. Have tested this today.
    But now to my new problem. One reason for Cisco View usage is VLAN assignement. Unfortunately this is not supported with the Cat3750 devices and Cisco View like with other devices. So I thought I show the customer how to do it with the VLAN Port Assignement:
    Configuration > Workflows > VLAN > Configure Port Assignment
    Unfortunatly it seems that this is not supported with these devices. From the following document I can't find something which underlines the lack of support: http://www.cisco.com/en/US/docs/net_mgmt/ciscoworks_lan_management_solution/4.0/device_support/table/lms40sdt.html#Cisco Catalyst 3750 Series Switches
    It even seems it should be supported. See picture in the bottom from the above link.
    My question to the community:
    - Does anybody else have the same switches? If yes, does Configure Port Assignment work in LMS 4.0
    - @Cisco, is this feature really not supported with the following device: WS-C3750X-24P-S? If yes, are any patches planned with release date.
    Thanks for any feedback.
    Erich

    Hi Joseph
    Thanks for your feedback. Have asked the customer to do the following steps and send me a screen shot:
    - Configuration > Workflows > VLAN > Configure Port Assignment
    - Select Domain Selector
    - Choose a Domain of a Switch C3750X
    - Click on List Ports
    Actually the same thing what I have done during my installation Onsite. When I have done the above steps I only have received a empty windows. Now, a week later it seems to work. Enclosed a screen shot with evidence for all those you have the same devices in use.
    Happy that it works. Funny, that it didn't worked when I was onsite. Sorry for the inconvenience and thanks for your feedback / support.
    Erich

Maybe you are looking for

  • Condition (Defintion) in BEX Query Designer

    Hi Experts,   I am trying to define a condition in BEX Query Designer. I defined my condition and bit confused with Characterstic Assignment What Happens if is select 9What is the difference) 1) All Characterstic in the Drilldown Independtly 2)Most D

  • My iPhone 5 and now my iPhone 6 have horrible ( 0.15mb/s) at my workplace over 4G and 3G

    This started in June with the iPhone 5 and has continued since I got the iPhone 6. Prior to the slowdown, I was getting 20-30 mb/s down in the exact same location. What could be causing this? I use most of my data while at work, so I wouldn't put it

  • NullPointerException while sending signed XML via SOAP to Axis webservice

    Hello, I was wondering if it was possible to change the behavior of Apache XML Security libraries and delete "ds:" namespaces while digitally signing XML files. We are trying to send signed XML to a local chilean IRS, as a part of an automatic autent

  • Cant purchase runes in order and chaos online

    i added a 25 dollars itunes card to my id, but when i tried to made an in app purchase in order and chaos, it appears imposible to conect to itunes store, but when i tried with a more expensive one appear that exceeded my credit, what can i do?

  • Logo on SAP easy access to based on client ID

    hi , we have requirement to upload 2 logo to appear on sap easy access based on the client ID  those logo's has to be appear .. please share how to acheive this. thanks Guru