No end point

ENV: ECC6.0 EHP4 + CE7.2
there are many guide to install CE7.2,but after install the CE7.2 and publish the service in SOAManager.
there are no endpoint in SR.
i guess There are no endpoint in ECC Server.maybe OTL
does any one have some guide that setting ECC Server and CE server both.
can publish Enterprise Service to SR with endpoint several at one time.
which i know is like this but not working
1.ECC -> SFW5
    to active business function
2.ECC -> SICF
    to active Service (not working)
3.ECC -> SPROXY
    don't know what todo
4.ECC -> soamanager
    publish service
Please HELP!

Hi,
Once service is activated using SICF, configure endpoint in SOAMANAGER and then publish to SR. Yes, mass publication to SR possible from SOAMANAGER or using WSPUBLISH transaction.
Make sure you activate right Business Function using SFW5 and correct SWCV installed on your machine (check System->Status->component).
Regards,
Gourav

Similar Messages

  • Problem getting parameter  values at the service end point

    I am having problem getting parameter values at the service end point. I created service end point and this method is having 35 parameters and then i created test client file using Sun One Studio 5. but when i run this test client and make a call to service it sends wrong value to first three parameters to the service end point. I tried all the way round but it gave me same sort of problem. I change the order of parameters change the names of parameters but it didn�t work. And then i started chopping of parameter from the left side. And my problem is solved when my parameter list reached to 12 from 35. So is it a bug or some problem with my configuration or some thing else.
    I am using sun one studio 5 with sun one app 7. My service end point does very simple thing. It only takes out put of the parameter to the server log file. And my wsdl file seems all right. There is no conflict with the count and data type of the parameter information it contains.
    �     Service End Point Definition (in EJB)
    public java.lang.String setNewAddress(java.lang.String propertyName, java.lang.String status, java.lang.String PMSCode, java.lang.String streetNumPrefix, int streetStartNum, java.lang.String streetStartNumSuffix, int streetEndNum, java.lang.String streetEndNumSuffix, java.lang.String streetName, java.lang.String streetType, java.lang.String streetSuffix, java.lang.String localityPrefix,java.lang.String localityName, java.lang.String postcode, java.lang.String stateCode, java.lang.String countryCode, java.lang.String description, java.lang.String coordinateAccuracy, int longitude, int latitude, java.lang.String planNumber, java.lang.String lotPrefix, int lotNumber, int siteID, java.lang.String countryName, java.lang.String parishName, java.lang.String section, int portionNum, int crownAllotNum, int titleVol, java.lang.String folio, java.lang.String esa, int aliasID, int aliasTagID,String ID) {
    System.out.println(propertyName);
    System.out.println(PMSCode);
    System.out.println(streetNumPrefix);
    ........ taking printout of all the paramters
    �     This is my WSDL file
    <?xml version="1.0" encoding="UTF-8"?>
    <definitions name="NMService" targetNamespace="urn:NMService/wsdl" xmlns:tns="urn:NMService/wsdl" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/">
    <types/>
    <message name="NMServiceServantInterface_setNewAddress">
    <part name="String_1" type="xsd:string"/>
    <part name="String_2" type="xsd:string"/>
    <part name="String_3" type="xsd:string"/>
    <part name="String_4" type="xsd:string"/>
    <part name="int_5" type="xsd:int"/>
    <part name="String_6" type="xsd:string"/>
    <part name="int_7" type="xsd:int"/>
    <part name="String_8" type="xsd:string"/>
    <part name="String_9" type="xsd:string"/>
    <part name="String_10" type="xsd:string"/>
    <part name="String_11" type="xsd:string"/>
    <part name="String_12" type="xsd:string"/>
    <part name="String_13" type="xsd:string"/>
    <part name="String_14" type="xsd:string"/>
    <part name="String_15" type="xsd:string"/>
    <part name="String_16" type="xsd:string"/>
    <part name="String_17" type="xsd:string"/>
    <part name="String_18" type="xsd:string"/>
    <part name="int_19" type="xsd:int"/>
    <part name="int_20" type="xsd:int"/>
    <part name="String_21" type="xsd:string"/>
    <part name="String_22" type="xsd:string"/>
    <part name="int_23" type="xsd:int"/>
    <part name="int_24" type="xsd:int"/>
    <part name="String_25" type="xsd:string"/>
    <part name="String_26" type="xsd:string"/>
    <part name="String_27" type="xsd:string"/>
    <part name="int_28" type="xsd:int"/>
    <part name="int_29" type="xsd:int"/>
    <part name="int_30" type="xsd:int"/>
    <part name="String_31" type="xsd:string"/>
    <part name="String_32" type="xsd:string"/>
    <part name="int_33" type="xsd:int"/>
    <part name="int_34" type="xsd:int"/>
    <part name="String_35" type="xsd:string"/></message>
    <message name="NMServiceServantInterface_setNewAddressResponse">
    <part name="result" type="xsd:string"/></message>
    <portType name="NMServiceServantInterface">
    <operation name="setNewAddress" parameterOrder="String_1 String_2 String_3 String_4 int_5 String_6 int_7 String_8 String_9 String_10 String_11 String_12 String_13 String_14 String_15 String_16 String_17 String_18 int_19 int_20 String_21 String_22 int_23 int_24 String_25 String_26 String_27 int_28 int_29 int_30 String_31 String_32 int_33 int_34 String_35">
    <input message="tns:NMServiceServantInterface_setNewAddress"/>
    <output message="tns:NMServiceServantInterface_setNewAddressResponse"/></operation></portType>
    <binding name="NMServiceServantInterfaceBinding" type="tns:NMServiceServantInterface">
    <operation name="setNewAddress">
    <input>
    <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="urn:NMService/wsdl"/></input>
    <output>
    <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="urn:NMService/wsdl"/></output>
    <soap:operation soapAction=""/></operation>
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="rpc"/></binding>
    <service name="NMService">
    <port name="NMServiceServantInterfacePort" binding="tns:NMServiceServantInterfaceBinding">
    <soap:address location="http://localhost:80/NMService/NMService"/></port></service></definitions>
    �     I followed steps given this example. http://developers.sun.com/prodtech/javatools/jsstandard/reference/docs/s1s5/stockapp.html.
    If some one know what is wrong. Is it me or some thing wrong with the method I followed. But I am sure that I followed exactly the same method as it given in examples. So if some one can guide me
    Thanks

    I just found that there is a bug with Sun One Studio 5. It creates faulty JSP file to test the client for the web services. With above problem I tested my web services using different developing environment such as Jdeveloper 10g. I created client stub using wsdl file generated by sun one studio. And made call to my web service and all the parameter reached perfectly at service end point. And then I used stub class created by sun one studio for the client and made the same call. And it also went well. So the problem is with the test application (JSP File) sun one creates for my web service.
    This is the majore problem i faced during the development. But still there is many problem along with this which is not seriouse enough but requires attension. I would like sun developers to make sun one studio IDE simpler and handy .

  • When using option right/left arrow in clip trimmer end point handle won't stick

    From the help menu:
    In the Clip Trimmer, do either of the following:
    Drag the handles at either end of the yellow clip selection to set a new startpoint and endpoint.
    Move the handles one frame at a time by placing the pointer near the handle that you want to adjust, and then holding down the Option key as you press the Left Arrow or Right Arrow key.
    Move the entire yellow selection box to the left or right by pressing the Left Arrow or Right Arrow key, or by clicking within the box and dragging. Using this technique, you can change which video frames are selected without changing the duration of the selection
    End of help menu clip
    The bug I've found is that when I place the pointer near the end handle I can hit option arrow and trim the end one frame forward or backwards but when I then hit option arrow a second time the start handle is trimmed.  Thus it is hard to quickly option arrow the end handle trim multiple frames without having to move the pointer each time before hitting option arrow.  Trimming the start point handle works like I would like as I can just keep hitting option arrow and the start point handle will trim a frame each time.  The end point handle should work the same way but it doesn't.  I'm on the latest ver 9.02

    Tea,
    One thing you can do to help yourself out is to create bookmarks to give you a visual reference for the beats in the music.
    You create a bookmark by choosing Bookmarks>Add Bookmarks or by typing command-b.
    So you can place your song in the timeline and then play it while tapping out command-b's to the beat of the music. You'll then have little green diamonds in the timeline to use as reference points.
    Similarly, you can choose View>Show Audio Waveforms to identify the beats in the music by seeing the peaks in the waveforms.
    These techniques should make it a bit easier to make your edits in time with your music.
    Keep in mind though, that your movie is built from left to right in the time line. When you edit a clip your clips will always slide in to take up any space to the left of the clip.
    When they do that, you can slide them apart again. Doing so will create a clip of black between them that can later be replaced.
    One last thing to mention. If you select your music track and then choose Advanced>Lock Audio Clip at Playhead you can then slide a clip around and the locked audio will move with it.
    It's a bit quirky I've found, but may also be useful.
    Matt

  • Error while creating the end point ICMON_UI_WS - SP11

    Hi All,
    We have upgraded the SAP Solution Manager 7.1 SP04 to SP11.
    Currently i am working on system preparation.
    solman_setup -> System preparation -> 5.3 Enable Web Services getting the below error
    CX_URLAPI_URL_EXCEPTION : Error during End Point creation
    Long Text(1)
    Error during End Point creation.
    Text(2)
    CX_SRT_WSP_CONFIG : Error when reading variant "ICMON_UI" of service
    definition "ICMON_UI": Web service object does not exist
    Also checked the note :1900781 - Missing services required by Solman Setup System Preparation Step 4.3 Enable Web Services.
    But this note is available for download.
    Any idea about this issue.
    Rg,
    Karthik

    Hi
    Try out these point
    1. Take the backup of the folder .dtc ,.dtr in your home directory.Delete .dtr & .dtc folders in your directoryt,hen try to create it.
    2.Check NWDS, WebAS, NWDI,  and its compatability ? Which versions are you running now?
    3. [Connect to DTR Fails |http://help.sap.com/saphelp_erp2005/helpdata/en/69/21244134a56532e10000000a1550b0/frameset.htm]
    4 . See the Note :  939041 & 772755
    Best Regards
    Satish Kumar

  • TS1702 Maps program does not work. In standard it only shows a grid. If I ask for a route it shows start and end point and three route boxes but nothing else. It does show directions. If I switch to hybrid it shows to routes but no roads. Background is a

    Maps program does not work. In standard it only shows a grid. If I ask for a route it shows start and end point and three route boxes but nothing else. It does show directions. If I switch to hybrid it shows to routes but no roads. Background is a blur.

    Do you have a question? This is a user to user help forum. Apple is not here only other users like yourself. You don't report problems to Apple here.
    By the way, it might help if you indicated where you are located.
    To complain to Apple use http://www.apple.com/feedback/ipad.html

  • BPEL End Point URL using External Load Balancer URL

    Hi All,
    We have Oracle SOA Suite installed in a clustered environment as per the Enterprise Deployment Guide 10g Release 310.1.3.3.0 E10294-02.
    I have deployed a BPEL process to the clustered environment and the end point refers to the internal url of the load balancer e.g. http://internallink:8001/orabpel/default/testService/1.0
    When we just paste this end point in a browser, enter the parameters and click on invoke, the BPEL Process gets invoked.
    However, if we try to use the external url(which is on https) of the load balancer as the enpoint url eg https://externallink/orabpel/default/testService/1.0 to invoke the same BPEL process, the page which is used to accept the parameters and the used to invoke the BPEL process is successfully displayed. However, when we try to invoke the service, the connection times out.
    Please note that internallink and externallink are the internal and external VIPs, respectively.
    Does someone have an idea of what may be wrong or what needs to be corrected to be able to invoke the BPEL process using the external VIP, please?
    Thanks in advance.

    Check if the port of ESB in your server is open.
    I think that the port is: 7777
    try from ESB server:
    wget WSDLURI
    if you got the file then the port is closed.

  • Is there any way to achieve dynamic end point in SOA 11g (non-AIA process)

    Hi,
    We are using SOA Suite 11.1.1.5.0 and we are not using AIA product..Is there any mechanism to achieve dynamic end point?If so can you please tell me how we can achieve this.
    Thanks in advance.

    Hi All,
    We can achieve dynamic end point in oracle soa suite 11g
    Check the below link
    https://blogs.oracle.com/ateamsoab2b/entry/invoking_web_services_dynamically_in
    regards
    Shankari

  • End Point URI change in Business service?

    Hi all,
    We had done all our osb code development and moving from one environment to other(Eg. E2E testing to UAT, Then UAT to Production). When we move the codes from one server to the other we need to change the End Point URI in the business service for almost all the OSB services which calls external systems else Calling BPEL services. SO is there any other way to make the end point URI's in some other file and read that file to get the end point URI and set in BS. Or did any one have any other suggestions?? Because each and every time we need to make the code change when we move on from one server to other.
    Regards,
    Prabhu

    Why don't you use customization file -
    http://download.oracle.com/docs/cd/E17904_01/doc.1111/e15867/customization.htm#CACJCAGD
    Regards,
    Anuj

  • Issue with variable while in a PSSession connected to an end point

    Ok so Ive put together a simple script that will allow our helpdesk to look at permissions on a specified folder or share adn display in a nice html page.  I need it to run under different credentials so I set up an endpoint which I can connect to remotely
    and run the script.  The issue is in the variable that needs to get set.  It prompts for the folder location and once you put it in, it just freezes up.  If I run the script locally its fine and works perfectly.  but running it in the remote
    session connected to an end point, it just doesnt do anything once you put in the information after it prompts you.  For testing also I set the $folderpath to a specific path  and it does run fine through a remote session so its just an issue passing
    that input back to the variable while in the remote session.  Any idea?
    $a = "<style>"
    $a = $a + "BODY{background-color:peachpuff;}"
    $a = $a + "TABLE{border-width: 0px;border-style: solid;border-color: black;border-collapse: collapse;}"
    $a = $a + "TD{border-width: 3px;padding: 5px;border-style: solid;border-color: black;background-color:PaleGoldenrod}"
    $a = $a + "</style>"
    $folderpath = Read-Host -Prompt "Enter full folder path here"
    $cname ="Permissions for $folderpath : "
    Get-Acl $folderpath | select access -ExpandProperty access| select identityReference | ConvertTo-HTML -head $a -body "<H2>$CNAME</H2>"  | Out-File \\server\PermReports\perms.html

    Here's some napkin code, FWIW
    On the user side:
    $Session = New-PSSession -ComputerName remoteservername -ConfigurationName checkperms
    $ADIdentityReference =
    #Coax an AD identity reference out of the button monkey
    Invoke-Command -ScriptBlock { .\PermissionsScript.ps1 } -Session $session -Argumentlist $ADIdentityReference |
    ForEach-Object {
    #Ask for more input, or quit
    Remove-PSSession $Session
    and on the remote end:
    Param ($IdentityReference)
    Try {
    Get-ADSomething -Identity $IdentityReference -EA Stop |
    foreach-object {
    Do-SomeStuff
    Catch {
    #Return validation fail message
    [string](0..33|%{[char][int](46+("686552495351636652556262185355647068516270555358646562655775 0645570").substring(($_*2),2))})-replace " "

  • Exporting line end point coordinates?

    Hi,
    I'm in desperate need of a script to export the coordinates of lines, or paths, it doesn't really matter, into a text document.
    I've set my ruler up so the 0,0 is in the center of the image, because I need both 0,0 and -0,-0 to work for what I have in mind, basically using a document as a large Cartesian grid, which you can then extract coordinates of 'edges' or end points of lines from.
    A little background on why I need it, for anyone curious. I figured out a way to build new worlds/maps for a game that generates terrain based on 'boundaries', which are drawn on, in a 2d plane, but I need coordinates to map these boundaries correctly. I could do it manually, where I'd hover my mouse over every edge or end of the line point, but this would save a LOT of time.
    I'd be insanely grateful if anyone can help me out. I've tried looking for scripts or other software, but haven't been successful at all for what I really need.
    The way I have my document setup is, 1 pixel per cm, 16384x16384cm. It's quite large, so most 'graph' software won't work for it. The grid itself works fairly well, I just need a decent way to export the coordinates from it.
    Thanks in advance!
    Edit:
    Here, I made an example of a rectangle to give you guys the idea of which coordinates I'd need:
    http://i.imgur.com/VILOwrL.png

    Don't appologize, I was stuck on cm because I thought there wasn't another way, I only figured out after JJMack mentioned it, that it's possible purely by pixels.
    First time working with coordinates, I'm in total new territory.
    The above works great, except now I've stumbled across 2 new problems, sorry to make it so complicated!
    What I have now, slightly tweaked what you gave me:
    var dataFile = new File('~/desktop/exportData.txt');
    var doc = app.activeDocument;
        for(var c =0; c<doc.layers.length;c++){
           doc.activeLayer= doc.layers[c];
    var pathItem = doc.pathItems[doc.pathItems.length-1];
    var dataStream = "";
    for(var subPathIndex = 0;subPathIndex<pathItem.subPathItems.length;subPathIndex++){
        for(var pointIndex = 0;pointIndex<pathItem.subPathItems[subPathIndex].pathPoints.length;pointIndex++){
                    dataStream = dataStream+doc.activeLayer.name+'\t';
            dataStream = dataStream+pathItem.subPathItems[subPathIndex].pathPoints[pointIndex].anchor+'\t'+'\r';
            dataStream = dataStream+'\r';
    dataFile.open('w');
    dataFile.write(dataStream);
    dataFile.close();
    But this outputs this:
    Background     4222,0
    Background     2963,-3550
    Background     4330,-4210
    Background     6450.3937,-2459
    Background     6141,2387
    Background     4834,2891
    Background     3970,924
    Which made me realize, that the paths aren't bound to a layer (It's been a while since I've used paths), so it'll just use the Background layer. There is no way around that, right? Since this script only targets layers, it'll ignore path names, which brings me to another question, is it possible to use the same thing, only for saved paths? So if you had 2 paths, one named P1 and the other P2, that it would display it like:
    P1     4222,0
    P1     2963,-3550
    P1     4330,-4210
    P1     6450.3937,-2459
    P2     6141,2387
    P2     4834,2891
    P2     3970,924
    And the other thing, because I'm using a loop now, which basically repeats the \r after ever coordinate, there isn't a way to collect all coordinates and display them in a chain, basically, and then using the \r after all the coordinates for one path is exported, before it moves on to the next path, or? Basically like the post previous to this, except with paths, instead of layers.
    Thank you guys so much for helping me though, would been completely lost without it.

  • Getting the end point to end point connections paths that exist from Switch Exe

    Can I query the Switch Exe data base and get a list of the existing paths that Switch EXE has connected?
    I have a debug app that reads the channel names (via a property node) and present them to the operator to manually connect and disconnect paths using the end points. I would like to have an indicator showing the current paths that are connected and I was hoping to be able to get that from Switch Exe without me having to add code to keep track of it myself.
    The goal is to be able to click on any existing path to disconnect it. 
    I do query the switch cards and display the actual relays that are closed, but that is hard to relate that to what channels that are connected when we have 8 matrix cards all interconnected.
    Thanks
    Omar
    Omar

    Hi Omar,
    Try using something like the example below that incorporates an array to check every connection.  If the path is found to exist, then you could add that combination to an array that is displayed on the front panel.  Also see this knowledge base article about the known issue with the Find Routes VI.  Use the VI from the bottom of the page in place of the Find Routes from the palette.  Hopefully this helps!
    Regards,
    h_baker
    National Instruments
    Applications Engineer
    Digital Multimeter Resources

  • Playing Quicktime with Multiple Start End Points

    Hello
    I posted a message a few days which I received help on
    regarding starting and ending a Quicktime movie from various points
    in the movie. Now I have a new problem which I cannot fix at all..
    Here is the problem:
    I have a Quicktime movie on stage and 10 various buttons that
    contain a generic script which allows input of start and end points
    for each button to trigger the movie. Initially just doing this
    with one button is successful.
    However, multiple buttons all with the same generic code make
    the movie freeze up completely. My guess is that they are all
    fighting each other for control. Maybe I need something in the code
    which allows the button that is being used to play the movie to
    keep control.
    Here is the code I use for each button, the movie is on frame
    15.
    property pQT,pStart,pEnd,pFrame, pVolume
    on beginSprite me
    sprite(me.spriteNum).color=rgb (255,255,255)
    cursor 0
    if integer(pQT).ilk=#integer then pQT=integer(pQT)
    end
    on mouseUp me
    sound(3).volume=sprite(15).volume
    sprite(15).volume=pVolume
    sprite(pQT).movieTime=pStart
    sprite(pQT).movieRate=1
    cursor 0
    end
    on mouseEnter me
    sprite(me.spriteNum).color=rgb (173,24,41)
    sprite(me.spriteNum).cursor=280
    end
    on mouseLeave me
    sprite(me.spriteNum).color=rgb(255,255,255)
    sprite(me.spriteNum).cursor=0
    end
    on mouseDown me
    sprite(me.spriteNum).cursor=290
    end
    on enterFrame me
    if sprite(pQT).movieTime>=pEnd then
    sprite(pQT).movieRate=0
    end if
    end
    on getPropertyDescriptionList me
    if not the currentSpriteNum then exit
    vPDList=[:]
    setaProp vPDList, #pQT, [#comment: "Which QT sprite",
    #format: #integer, #default: 0]
    setaProp vPDList, #pStart, [#comment: "Range start",
    #format: #integer, #default: 0]
    setaProp vPDList, #pEnd, [#comment: "Range end", #format:
    #integer, #default: 0]
    setaProp vPDList, #pVolume, [#comment: "Volume", #format:
    #integer, #default: 0]
    return vPDList
    end getPropertyDescriptionList
    Any help is much appreciated. (not a lingo expert)
    Andy

    Many thanks Mike
    Works fantastically.
    I just thought I would post the finished code - well, tweaked
    ever so slightly from Mike's orginal for anybody wanting a nice
    little behaviour for controlling a Quicktime movie.
    (watch out for page breaks etc - should be 68 lines)
    property pQT,pStart,pEnd,pFrame,
    pVolume,pMyControl,pReturnMarker
    on beginSprite me
    sprite(me.spriteNum).color=rgb (255,255,255)
    cursor 0
    if integer(pQT).ilk=#integer then pQT=integer(pQT)
    pMyControl=0
    end
    on mouseUp me
    sound(3).volume=sprite(pQT).volume
    sprite(pQT).volume=pVolume
    sprite(pQT).movieTime=pStart
    sprite(pQT).movieRate=1
    pMyControl=1
    cursor 0
    end
    on mouseEnter me
    sprite(me.spriteNum).color=rgb (173,24,41)
    sprite(me.spriteNum).cursor=280
    end
    on mouseLeave me
    sprite(me.spriteNum).color=rgb(255,255,255)
    sprite(me.spriteNum).cursor=0
    end
    on mouseDown me
    sprite(me.spriteNum).cursor=290
    end
    on enterFrame me
    if pMyControl then
    if sprite(pQT).movieTime>=pEnd then
    sprite(pQT).movieRate=0
    pMyControl=0
    go pReturnMarker
    end if
    end if
    end
    on getPropertyDescriptionList me
    if not the currentSpriteNum then exit
    vPDList=[:]
    setaProp vPDList, #pQT, [#comment:"Which QT sprite",
    #format:#string, #default:0]
    setaProp vPDList, #pStart, [#comment:"Range start",
    #format:#integer, #default:0]
    setaProp vPDList, #pEnd, [#comment:"Range end",
    #format:#integer, #default:0]
    setaProp vPDList, #pVolume, [#comment:"Volume",
    #format:#volume, #default:0]
    setaProp vPDList, #pReturnMarker, [#comment:"Return to
    Marker", #format:#marker, #default:0]
    return vPDList
    end getPropertyDescriptionList

  • Load balancing SMA web service and SMA end point URL

    Hi,
    We have set up the recommended 3 servers with Azure Pack, SMA Web Service and Runbook Worker.  We are now wanting to configure the Azure pack portal to setup the SMA endpoint url for the web service.  Before we do that, we are assuming we should
    load balance the web services to answer on 1 url (ie, smaws.domainname.com).
    1. Is there any guidance or things to consider when load balancing the 3 web services to answer to 1 url.  We will probably use f5 since that is what we use.
    2. The end point url that we configure for Azure Pack automation should be this load balanced URL correct?
    3. Should we have the Azure pack installed on just one of the servers or all 3.  We did all 3 but it seems like server2 and 3 just redirect to 1 anyway so I am assuming the URL for Azure pack is stored in a db somewhere.
    4. Are there any other components of SMA/Azure Pack that should also be load balanced?
    Thanks
    Thanks Lance

    So in this case you need to register the SMA Runbook Workers (do this on machine 1):
    $webService
    = "https://localhost"
    $workers
    = (Get-SmaRunbookWorkerDeployment
    -WebServiceEndpoint
    $webService).ComputerName
    if($workers
    -isnot [system.array]) {$workers
    = @($workers)}
    $workers
    += "MachineName2"
    $workers += "MachineName3"
    New-SmaRunbookWorkerDeployment
    -WebServiceEndpoint
    $webService -ComputerName
    $workers

  • Defining End point

    Hi all,
    I have a standalone XI 2.0 and my scenario is
    file - XI - idoc (R/3)
    i have the flat file in my XI box and im using inbound file adapter.
    but i have a problem in defining the end point .
    im getting an error message like
    end point not defined for the sender system
    my sender system is XI and my receiver system is R/3
    im  using file inbound adapter and idoc outbound adapter.
    i have defined the end point for the receiver system as idoc.
    wht will be my sender system endpoint .
    if any has any idea pls help me.
    thankx,
    shree

    Hi Shree,
    Yes, it's true that in your case the flat file my in fact reside on the XI machine. However, from an XI point of view, you must still register the file adapter first within the SLD and then do the appropriate configuration within XI as Bjorn mentioned. Consider a situation where you may have a file to file scenario with XI performing transformation in the middle...in this case you need two "logical" systems here even though they are installed on the same physical box. One for the first file adapter instance and another for the second file adapter instance.
    Good luck!!!
    ...Scottd

  • Help - Web Service Operation-level (rather than end-point level) policies

    Hi Guys,
    According to the documentation:
    http://download.oracle.com/docs/cd/E15523_01/apirefs.1111/e13952/taskhelp/webservices/ConfigureWSPolicyFile.html
    you can associate a policy at the end-point level, or the operation level.
    I'm wondering if the service implements policy at the operation level, what is required from a client perspective to set SecurityPolicyFeature just for a specific operation?
    Or, does one have to continually keep requesting a new port with the appropriate feature for each operation?
    e.g.
    // operation without policy
    StockMarketPortType port = service.getStockMarketPortTypePort();
    Integer stockprice = port.getStockPrice("ORCL");
    // if ORCL stock price looks good ... :)
    // operation with SAML policy
    SecurityPolicyFeature securityFeatures[] =
    new SecurityPolicyFeature("oracle/wss11_saml_token_with_message_protection_client_policy")
    port = service.getStockMarketPortTypePort(securityFeatures);
    boolean result = port.sellStock("ORCL", 500);
    thanks
    Matt.

    Matt,
    As Bethune mentioned, the WSS implementation that is part of WebLogic does support operation and message-level policy attachments, but Oracle Web Services Manager (OWSM) does not. The SecurityPolicyFeature you reference in your sample is from OWSM. Do you mind sharing any more details about your use case (and specifically why you would have different policy for different operations) that I could share with OWSM?
    In the meantime, your workaround is a good one (different port instances).
    Thanks,
    Ryan

  • Solution: order delivery message for each end-point of many end-points

    Hello,
    Does anyone can help me find a solution to a problem I have.
    Scenario: I have to develop a project with the OSB, and between the various services that I have to develop one have the following requirements.
    I have a system that has multiple end-point (sub-systems; 1200 sub-systems), to whom I send a message (and only one), and these must be delivered in order (sequentially for each sub-system) .
    These messages came from a JMS queue (could be topic).
    Can anyone give some tips, how can I develop my components (proxy service) in order to ensure the delivery of messages in sequence for each sub-system without having to deploy multiple proxy service (one for each sub-system).
    Thanks for any help.
    Miguel

    Hi Miguel,
    Strange requirement but easy to implement. Create a XML which has all the end-points in it (you may create a simple structure line <EndpointList><Endpoint>EndPoint1</Endpoint><Endpoint>EndPoint2</Endpoint>.......</EndPointList>). Upload this xml as a X-Query resource in OSB. Use For each action in message flow (in request-response pipeline) and traverse on each and every EndPoint node in above created XML and from inside that use use publish/dynamic publish action.
    Use Routing options: Modify any or all of the following properties in the outbound request: URI, Quality of Service, Mode, Retry parameters, Message Priority.
    http://download.oracle.com/docs/cd/E13159_01/osb/docs10gr3/userguide/modelingmessageflow.html
    http://download.oracle.com/docs/cd/E13159_01/osb/docs10gr3/eclipsehelp/tasks.html#wp1111432
    Make sure that in the EndPointList XML you put the end-points in the sequence you want.
    Regards,
    Anuj

Maybe you are looking for

  • Copy Appset failed to complete

    Hi. When I want to copy my Application Set using the Admin Console, I retrieve this error: Job 09424900: COPY_APPSET failed to complete: Error in Admin module. Someone knows how to solve this error? Thank you in advance.

  • Query for list of supported auth mechanisms

    Is there a way to query a BO server for a list of supported authentication mechanisms such as secEnterprise or trusted secret or secWinAD, etc?

  • Can I try e-commerce without paying for a year's subscription?

    Hello. I'm so new to Business Catalyst that I don't even know what questions to ask... Any help would be appreciated! I designed a customer's site in Muse, giddy with glee that I can finally, FINALLY handle e-commerce sites. I'd heard that all a pers

  • Is it archlinux or arch linux

    basically what the topic says since the logo on the site does not have a space between arch and linux but most other places have is that just a oversight in the logo or is there a point to it?

  • Acceptable Video Files for Importing

    what type of video files are acceptable to FCX? it won't read my AVIs or MPEG4s