WS Proxy for multi end points

Hi,
I wish to design an WS proxy for consume many web services. The web services have the same wsdl but are deployed in different machines. The proxy uses ws-security to digitally sign the message. The Web services are under https.
Any design ideas for it? or i am crazy for try it?
Thanks
Regards
Fred.

Hi Pankaj,
I hope that you have already checked http://help.sap.com/saphelp_nwce10/helpdata/en/45/595a5396ac2a4fe10000000a11466f/frameset.htm. 
Also, please check if https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/06adbf03-0a01-0010-f386-d8e45561a3c4 helps.
Regards

Similar Messages

  • 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

  • Proxy for Multi User calendar shows user's folder tree

    By giving the View proxy right to other users, so that they can utilize the Multi User calendar, this apparently also gives the user you've assigned that right to the ability to see the folder tree of all users that have given the View right to the user. In other words, by clicking on the Proxy icon at the top of your folder tree, and picking the user who gave you read rights to their appointments, you can see all their folders. Granted, you will only be able to see appointments within those folders. But, some users may assign descriptive folder names they might otherwise not want to be visible to others. Is there some way to hide the folder view, while still proxying the view right to appointments?
    Thanks

    Ok, Thanks - I'm satisfied as long as that's by design.
    Originally Posted by dzanre
    pagjsp wrote:
    > right to the ability to see the folder tree of all users
    > that have given the View right to the user
    There is no way to hide this.
    Danita
    Novell Knowledge Partner
    Moving GroupWise to Linux?
    Shopping Cart

  • Create Zones Rules for registered end-points in H.323

    Hello,
    Someone can help me, I need create a Subzone on VCS Control that will receive the register in H.323 of my devices.
    The field H.323 on the endpoint, has only the alias (E.164) configured and  don´t have @xxxxxxxx
    I noted that when I do not configure the @xxxxxxx, my endpoints will not register to the new created subZone.
    I should create in the Subzone membership rules, a especific search rule with  @xxxxxx.
    Eg. [email protected]?
    Tks
    Cesar

    I don't know if you know, but to work around your issue is to apply a second membership rule for H323 registrations, as a subzone can have multiple membership rules, sorted by priority.
    You should consider changing your current regex pattern to be (.+)@totalpresence\.com\.br so that the periods (.) within the domain are taken literally by inserting a backslash (\) before them, so that they aren't thought of as anything else then a period, as a period is simply considered as any single character.
    If you don't care who gets registered to that subzone, you could specify all domains by using %localdomains%, or a specific domain using %localdomain#% (where # relates to the SIP domains configured on your VCS).  Could save you some typing and trying to make sure the domain is configured correctly in the regex rule.

  • Internal end points load balancing

    I have a cloud service with a web role of 4 instances, having 2 internal end points. I found that for internal end points azure load balancing is not supported. My question here is how to configure my own load balancer for my web role instances and
    if scale up happens based on CPU utilization can those scales instances included in my own load balancer. is auto scaling can be detected by my own load balancer.

    What do you mean by 'your own load balancer' ? are you pointing to the Azure traffic manager?
    If you have configured the auto scaling on your cloud service and if it is kicked in, azure load balancer will consider newly added / deleted role instances automatically.
    Bhushan | http://www.passionatetechie.blogspot.com | http://twitter.com/BhushanGawale

  • Change the end point URL in WSDL for web-service

    Hi All,
    Morning , could someone please help us with this question, we are stuck with this currently.
    In SOA Suite 10g as well 11g we have a jsimple Java class whose one of the methods is exposed as a web service.
    In the project it has created the WSDL as well and have deployed the .ear file to the servers from EM console successfully.
    Now we need to migrate this web service to testing & production environments.
    1. Could someone please let us know the steps as to how do we change the end point url in the WSDL for this web service (present in web content --> WEB-INF/wsdl path in the j-developer project) for migration in case of both 10g (OC4J) as well 11g (WLS) servers.
    2. Also could this change/update be done prior to deployment as well as post deployment as well.
    Looking forward to inputs regards this...as we are stuck with this ..would be very helpful
    Thanks as always for help & guidance..

    Hi
    As Vijay mentioned, you develop a WebService in JDeveloper and test in JDeveloper integrated Weblogic Server say at http://localhost:7101/MyWebService/MyPort?wsdl. Thats it. Once it is working. Export it into a .WAR file. If you have any other supporting EJB JARs etc, put all these into a full blown .EAR at application level. NOW deploy this .EAR or .WAR into any Domain on any host and any port. DOES not matter. That server's host and port will be taken. Infact even if this other domain is Clustered domain, still it will work by giving webserver host and webserver port that sits in front of the cluster.
    I develop my webservices in JDeveloper and test at 7101 port. This .WAR gets deployed in QC Env at qchost:qcport. Same .WAR deployed to UAT at uathost:uatport and finally to prod also at prodhost:prodport.
    Its just the Client (WebService Proxy) that is calling this WebService need to use appropriate host and port based on which Env it is connecting to. For this, simply do not hard code WSDL URL in the java code or anywhere. Simply get it from a .properties file using a key value pair like this.
    WSDL_URL=http://host:port/MyWebService/MyPort?WSDL.
    Now have Environment specific values for above key and put that properties file in that domain root folder. And in your code always refer this key.
    You can use many approaches along the above lines.
    If your WebServies proxy is a webservice adapter say within bpel, still you can modify the value using deployment plan .xml file file while deploying.
    I would not absolutely prefer opening war file from ear and modifying war and updating ear file etc etc. Also do not have multiple EARs for Environment specific. Just have only one single EAR or WAR file that can be deployed to any environment.
    Thanks
    Ravi Jegga

  • How to find the end point URL for a Enterprise Service?

    Hi,
    I'm trying to find the URL for a service called "DocumentERPFileVariantByIDAndFileVariantIDQueryResponse"
    so it can be called through .NET.
    I've been able to locate the WSDL and generated the proxy objects through this URL:
    http://<server>:8000/sap/bc/srt/wsdl/sdef_ECC_DOCUMENTFVBYFVIDQR/wsdl11/ws_policy/document?sap-client=<client>
    But in the WSDL there's no end point definition included, so where can the service it self be found?
    Thanks.
    Regards,
    Frank

    Hi Frank
    Did you check in SOAMANAGER if the service is there? If there is no end point there, you can create one.
    Rgds
    Eng Swee

  • 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

  • How osb handle end point offline for long time

    Hi all,
    In my project, the messages will be sent real time to distributed client, each client is only have one end point, so there is no load balancing could be applied. I already set the retry count, iteration interval and also offline endpoint URIs setting. Will it sufficient, in case the client hang or offline in long time, 2 hours or longer?
    How osb keep the message, will the frequent retry process causing performance issue?
    Any suggestion for proper configuration in this case?
    Really thanks in advanced.
    Regards,
    Mr.K

    only have one end point, so there is no load balancing could be applied. I already set the retry count, iteration interval and also offline endpoint URIs settingYes rety retry count is efficient when the interval are low..2 hrs or longer is little longer for stateless routing which OSB does.
    How osb keep the message, will the frequent retry process causing performance issue?Yes. I guess... OSB will be doing some thing like RequestThread.sleep(...).Again this will be transport to transport related
    Any suggestion for proper configuration in this case?Using such long intervals might not scale up
    Manoj
    Edited by: Manoj Neelapu on May 19, 2010 4:02 PM

  • End point for Effects

    Is there a way to get the exact X and Y coordinates for an objects's location at the end of an effect? Also, is it possible to somehow see the animation happening in the main timeline without having to preview it? With the way the effects seem to work, it's very difficult to place things on screen when you don't know their exact end location point.

    Nope. No math needed. If you want to know exactly where the shape is going to end up (again ±1 pixel since you can't snap the motion path end points) and what it's going to look like in terms of spacing around other objects then using a same sized smart shape with a crosshair image works pretty well. I personally like this method because you can also see the starting point or any in-between points if you'd like. You can also change the smart shape to whichever shape you'd like and the crosshairs will still aim at the center.
    As for rotating objects I've never done it either but that doesn't mean someone else might not have a reason to. But here's a couple screenshots showing an animation of an arrow flying in hitting a surface and bouncing back off. Since you can use the actual shape to visually see where the object will begin and end you do not need math. Aewu, this is just a very crude example I just made up when I got in this morning but hopefully you can see a few more possibilities.

  • Custom text component with different start and end points for each line

    I'm trying to create a custom component extending textArea in which each individual line in the textArea would have different start and end points.  For example, the start/end points for line 1 might be 20 pixels in the front and 35 pixels at the end but start/end points for line 2 might be 25 pixels in front and 20 pixels at the end, etc.  These boundary values would be passed in.  The width of the entire textArea component would be a fixed size.  The result would be something like this:
         Jack and Jill
              ran up the hill
      to fetch a pail of water
    depending on the boundary values of each individual line of course.  The custom component would take a string and render it in the text component with the appropriate individual line start and end points.  I'm trying to do this by adding the text component to the display with the passed in string and then adding in spaces in the beginning of each line and adding a "/n" at the end of the line wherever appropriate based on the start and end values for that line.
    Just wondering if I'm on the right track and if anyone has any advice on this.

    > Applying the marker places the same icon on all lines of the graph and I need a different one for each
    What do you have selected when you assign the marker? It
    shouldn't apply to all the markers on the whole graph unless you have all the existing markers selected when you apply the new one.
    Assigning marker designs is exactly analogous to assigning bar graph designs.
    If you have a single marker selected when you assign the new design, it will apply to only that graph data point.
    If you use the group select tool (or option-click with the direct select tool) to reclick on an already-selected marker until all the markers for the same line are selected, and then assign a design, the new design will apply only to the selected line. (You can extend the graph by adding more rows, and the new data points will inherit the marker for the line they are on.)
    The thread linked to below demonstrates in more detail how the marker designs are scaled:
    http://www.adobeforums.com/cgi-bin/webx/.3bc10970/0

  • Support for TLS-DSK Authentication in UCMA End Point connections?

    The Lync servers support NTLM, Kerberos, TLS-DSK as supported Authentication Protocols.
    However, it appears that  UCMA API when used in the End Point connection mode does not provide an option to use TLS-DSK as an authentication scheme.  Is there any way to connect to a Lync server that only supports TLS-DSK as an authentication protocol?
    //etc
                _collabPlatform = new CollaborationPlatform(clientPlatformSettings);
                _collabPlatform.AllowedAuthenticationProtocol = SipAuthenticationProtocols.None;   //Authentication protocol limitation -- TLS-DSK not available.
    UCFin

    No, UCMA only supports NTLM/Kerberos.  TLS-DSK requires HTTP requests which UCMA can not currently handle.

  • Parameters in OSB End-point URL

    Hi:
    I have a OSB end-point URL say
    https://XXX.XX.XX.XX:7002/Sample/Books
    which is exposed as proxy service with ServiceType as "Any XML Service", and this routes to a business service whose protocol is "jms" and ServiceType is also "Any XML Service".
    I have shared across the proxy end--point URL to other application. Now they have two kind of books available in other application, they want to send across the same as parameters in the same end-point URL like
    https://XXX.XX.XX.XX:7002/Sample/Books?Type=Fiction
    https://XXX.XX.XX.XX:7002/Sample/Books?Type=WarBased
    Now my question is will my OSB service able to pick-up the above case and based on the parameters will we be able to route it to the Business service along with the parametes. For doing that do i need to maintain any schema for Business Service?
    Regards,
    RK

    RK,
    Use the *$inbound/ctx:transport/ctx:request/http:query-string* element to get all the arguments in the URL.
    http://docs.oracle.com/cd/E13159_01/osb/docs10gr3/httppollertransport/transports.html#wp1083292.
    After that You can have conditional routing to Route it specific BS either Fiction BS or WarBased BS or you can try using Routing Table.
    For doing that do i need to maintain any schema for Business Service?No , I think if you just need to route the request to JMS BS coming from Other Application,
    But if You want to validate the request which you would be sending to BS then use schema to validate your incoming request.
    Regards,
    Abhinav

  • Change the end point in a web service client???

    Hello,
    With the Web Service Proxy Wizard of JDeveloper 10g R3, I created a web service proxy that connects to a (web service) end point like this: http://carina.bicevida.cl/OidServices/OidBasicWebServiceSoapHttpPort
    My three related questions are:
    1.- How can I change the end point registered in the (client) web service proxy ?
    2.- How can I do this without need to rebuild the client application?
    3.- How can I do this once my client application have been deployed in the application server?
    Please help.

    Hi,
    these are your options
    - Edit the endpoint meta data stored in the .proxy xml file (e.g. \src\project\myservice.proxy)
    - Use WS proxy wrapper and call setEndpoint on the proxy
    - Recreate the proxy in JDeveloper based on the new endpoint. This may require merging any business logic if it was inserted directly in the proxy (as opposed to a wrappering class)
    where I think option 1 and 2 is what you would look for. I don't know how exactly JDeveloper 11 is different, but I got the info from development that there will be simplifications.
    Frank

  • Reverse Proxy for OIF on iPlanet

    hi,
    I am trying to implement reverse proxy for OIF r3 Identity Provider on iPlanet.
    I configured the obj.conf of iPlanet accordingly.
    <Object name="passthrough1">
    Service fn="service-passthrough" servers="http://backendIDP.com:80"
    Error reason="Bad Gateway" fn="send-error" uri="C:/Sun/WebServer6.1/docs/badgateway.html"
    </Object>
    <Object Default>
    NameTrans fn="assign-name" from="/fed/" name="passthrough1"
    NameTrans fn="assign-name" from="/fed/*" name="passthrough2"
    </Object>
    when i tried the IDP initiated proxy url in a browser like (http://proxy.com/fed/idp/initiatesso?providerid=XXXXXXXX&returnurl=YYYY)
    immediately its being forwaded to backend Identity Provider for authentication like(http://backendIDP.com/sso/jsp/salogin.jsp?doneURL=/user/loginsso&refID=id-ysJ-7-1PR9k-QI2bg9zZkPdyHPw-)
    I was expecting that it is redirected to Proxy URL like (http://proxy.com/sso/jsp/salogin.jsp?doneURL=/user/loginsso&refID=id-ysJ-7-1PR9k-QI2bg9zZkPdyHPw-)
    At the end it is giving me null pointer exception instead of return URL "YYYYY"
    Does any one know how to fix the error.

    web or weblogic.xml files on your RPS needs to define for each case like if inbound port is 7011 then send it to PIA:7011 and http and the same for 7012 then send it to PIA:7012 and https. in the webprofile configuration for your RPS profile, set both https and http relative URLS. I believe you could start using this info and I am sure you could figure out the rest.

Maybe you are looking for

  • My iPod touch says I have a passcode though I haven't had one in weeks...

    My apps weren't working on my iPod second generation so I held the home button and power button until it was shut off. I waited a couple minutes until turning it back on, but when I did, it said I had a passcode, but I actually haven't had a passcode

  • Master Data Synch - Contact persons

    In master data synchronization FSCM for business partner contact person do I have to setup a different bp number range or do they take the same number of the contact person assigned in the customer master? If not is there a way we can configure the B

  • Pro Photographers Speak Up

    I'm developing a new set of templates geared toward professional photographers. Right now I have six sets of page templates (yes, 6 x 7 pages = 42 different page types) that cover two different, but similar styles. What I want to know from the profes

  • Problems in starting Admin server for soa suite in windows 7 homebasic

    Hi All, I installed SOA Suite R1 in my laptop running windows 7 home basic version. Its 64 bit OS but I installed the files in win32 folder as it didn't allow me to install the generic file and even win64 file. installation was successful but after i

  • Understanding append function

    Hi forum users , I also have another question in the usage of the .append function what does this function mean . could anyone explain it from the example that i have given below highlighted in bold .It would be really helpful thank you . String m; i