Required Info About End Point URL and WSDL generated in SOA

Hi All
Consider the follow example WSDL
http://localhost:8001/soa-infra/services/default/DehydrationDetails/dehydrationstorebpelprocess_client_ep?WSDL
The above is the END POINT URL generated in my SOA.
Can i have a control over it ? I mean whenever i deploy the total url is something like this : http://host:port//soa-infra/services/default/CompositeName/BPELName?WSDL
Can i customize to have it deployed into another location of my SOA and have WSDL URL like this ? : http://host:port//BPELNAme?WSDL

I guess not easily: the part /soa-infra is the URL for the SOA Suite webapplication, / is the URL for FMW Welcome Page Application.
Try to change these around, good luck :-)
You can look this up in your weblogic console application.
Groeten,
HJH

Similar Messages

  • 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

  • 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

  • End point url name to be customized

    Hi All,
    Please suggest me how to change or assign end point url as custom url.. when clicking 2nd link "Open WSDL document for selected binding" on Web Service administration in SOAMANAGER.
    What I need exactly is, if we click on this link a new page will be opened with some data. I need URL of this new page should be customized as per my requirement.
    Please suggest me how and where to change this configuration.
    Regards,
    Saravanan

    HI Zekeriya Sirin ,
    Thanks for reply.  Can you please tell the path to "Transport Binding" in SOAMANAGER.
    Regards,
    Saravanan

  • Handling Web Service's End Point URL in ADF

    Hi experts,
    Would like to seek for advice on handling the availability of the End Point of a Web Service.
    I'm tying to catch the availability of the URL but, it seems that they are throwing different exception.
    Case 1: End Point URL (in enterprise manager) : set to Blank.
    - This is OK
    Case 2: End Point URL (in enterprise manager) : put prefix in the URL
    - ex. aaaahttp://<wsdl URL>
    - This will throw a malformed URL exception and will not proceed.
    Case 1: End Point URL (in enterprise manager) : put suffix in the URL
    - ex. http://<wsdl URL>BBBBBBBBB
    - for some reason, even if I put a suffix in the endpoint URL, the URL is still valid. But in reality, it should be invalid.
    Now, For this 3 cases, I would like to have a standard exception/error message. Do you think it's possible considering the behavior of the web service? Any tips would be gladly appreciated.
    Thanks...

    Hi,
    C) in fact is a valid URL, only that it has not matching WS endpoint. So beforte invoking a WS you wouldneed to test a URL call to the URL to see if this is answered. However, there is a case D) you don't mention which is when http://<wsdl URL>BBBBBBBBB references a valid URL (but just the wrong from the perspective of the WS you use it with. How do you handle this case ?
    Here's some code snippet you can use to access the connection from within the WS client
    Context ctx = ADFContext.getCurrent().getConnectionsContext();
    WebServiceConnection wsc = (WebServiceConnection) ctx.lookup("MyAppModuleService");
    wsc. (...)"MyAppModuleService" is the name of the connection.xml entry for the Web Service connection you created at design time.
    Frank

  • 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

  • Need info about RH Server 6 and reports

    I'm interisted in RH Server 6 but I'm unable to locate much
    practical info about it on the Web site, and a call to sales didn't
    help. I need to know what I'm getting us into before I contribute
    our $2,000. Can anyone provide this information or point me to its
    location on the site:
    --I have system requirements from the Adobe site, but what is
    the "server" and what does installation and setup entail? About how
    how long does it take, or how difficult, to achieve operability?
    --According to a piece by John Daigle, the server component
    should be installed on a Windows server running IIS 5+. Is IIS a
    separate software or standart part of Windows server? If separate,
    what preparation should that server have before the installation in
    addition to installation of IIS?
    --I know nothing about security/firewall protocols. We will
    have our own and our customer firewalls to navigate. Are the server
    setup instructions adequate for setting all that up? Or are
    purchasers expected to have sys admins knowledgeable to set that
    up? Is that applied to the RH server or the Windows server? if RH
    server, how can I get a copy of instructions for my system people
    to review?
    --Have users found the RH server/RoboEngine reliable, once
    it's operable?
    --Is it true that the usage reports aren't customizable? Can
    additional usage data be specified in the RH server?
    --These report summaries are vague--Areas Requiing Help,
    Frequently Viewed Content--stating only that repoorts show the
    suchandsuch done "most frequently" or "most often." Does that mean
    the top 3, 5, 10 or what? Is there a way to track all of that
    activity from most to least?
    --The summaries of the reports Unanswered Questions and
    Frequently Asked Questions say that terms entered in the Search
    field are identified. Questions and terms aren't the same in my
    book--am I right that it captures anything entered? Can it do the
    same for the Index field?
    --I saw no RH server under downloads, or maybe missed it.
    Correct in guessing that a demo version is not available?
    --Is RH server user doc available on the web site? I found
    the Getting Started gude, which isn't much use in evaluating the
    product.
    I have additional questions, but if you can answer these
    questions or direct me to answers some of those may be covered.
    Thanks,
    Mike
    Access database.

    Hey, Mike!
    I found a few things for you. I'm in a hurry, so I'll list
    them quickly.
    For the Trial, go to the Adobe downloads page
    http://www.adobe.com/downloads/
    Then select RoboHelp Server 6 from the dropdown list. You
    will be asked to register (free) if you haven't already. When you
    arrive at the download page make sure you note the Trial Serial #
    To make it easier for you, its:
    1336-1033-2628-5062-0993-4570
    You can also find a RoboHelp Server 6 Getting Started Guide
    here
    http://www.adobe.com/support/robohelp/downloads/getting_started_rh6_server.pdf
    You were asking about IIS. Yes. As Colum says, this comes
    with virtually any version of Windows Server (or Windows XP
    Professional). However, you must install and configure it. I am not
    an IT or web administrator so it took me a while to learn, but
    amazingly I got it to work if you're patient and follow the steps.
    (I'm speaking of both IIS and Robohelp Server) Clearly IIS
    configuration is not a trivial thing and it is assumed that an
    author would have help and cooperation from the IT or Web Admin
    folks.
    As for customizing reports. At present, the existing reports
    are the only ones offered. Since these reports are generated from a
    database (Access, SQL Server or Oracle) I would think (haven't done
    it myself) that someone familiar with database adminstration could
    open the DB (after a backup that is) and be more creative with
    generating customized reports.
    You are right that the "Question" does in fact mean any
    search term or phrase that an end user puts in the search field.
    This is the string that is stored and reported as a question. In
    discussing this with the Adobe team at STC last month, they agreed
    that this was definitely a holdover from the legacy software and is
    due for a change sometime in the future.
    To answer your other question, text entered in the Index
    field is not stored in the database, only the search term field.
    Since taking on the old legacy product from eHelp and
    Macromedia, Adobe is focusing most of its attention on beefing up
    the client authoring app for the next version (Adobe RoboHelp 7).
    My assumption is that they are keen on improving the RoboHelp
    Server as well. I have passed along many feature requests along the
    lines you seem to suggest and hopefully the server will evolve
    along with the client app.
    Even with its limitations, my clients tell me RoboHelp Server
    provides very useful feedback to help them improve their knowledge
    base content to make it more helpful and responsive to users needs.
    They also like the searchability of PDF, Word, PPT and Excel as
    well...something which plain WebHelp without the RoboHelp Server
    does not do.
    I probably didn't get to everything, but hope this helps.
    John

  • 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

  • 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.

  • Want more info about optimizing battery lifespan and performance

    I have read Apple Support's basic article on iPhone battery charging, but it doesnt answer all of my questions.  i am kind of a fanatic about maintaining the health and longevity of my battery.  I usually run it down to 3% or less before plugging in, then charge it all the way up.  This creates some inconvenience, but after one year, my iPhone 5 battery is still performing much better than any previous iPhone ever did.  Here are a few questions I have:
    1. Is it really neccessary to wait for the battery to drop to 3%, or could I charge it after it goes below 20%, if it is more convenient?
    2. Is there any harm in charging to less than 100% if I am in a hurry?
    3. If I regularly plugged it in at over 50%, would it develop a memory and hold less charge?
    4. What effect, if any, do Mophie Juick Packs have on iPhone battery health (I just got one)?
    If there were no memory issues, the most convenient thing to do would be to plug it in every night at bedtime.  Any knowledgable commentary would be welcome.

    There's a few aspects to this - and such several "correct" answers.
    First, what exactly will you be doing? Are you just editing or will there be vfx/color grading etc? If it is the latter, and you're in SD, I'd personally go with uncompressed 10-bit. The files will be large, but it will be worth it if you do a lot of processing.
    ProRes files will be much smaller, and still look very good, but may not hold up as well to heavy processing.
    Not sure what you mean with #2... what other codec(s) are you looking at. Saying it is "unnecessary for SD" is an interesting comment - depends on what you want to do with the footage.
    Some info about ProRes (and uncompressed) bitrates:
    http://www.appleinsider.com/articles/07/04/18/acloser_look_at_apples_new_prores_422_videoformat.html
    http://www.apple.com/finalcutstudio/finalcutpro/apple-prores.html
    http://sportsvideo.org/main/blog/2009/08/11/apple-final-cut-prores-lowers-bitrat e/
    http://documentation.apple.com/en/finalcutpro/professionalformatsandworkflows/in dex.html#chapter=10%26section=1%26tasks=true

  • Full qualified host name not appearing in url within WSDL generated from PI

    Hi
       We are on PI711  ( AIX OS ) and are stuck with an issue of the fully qualifed hostname not appearing within WSDL file  generated in PI71 for a webservice it exposes using the Integration builder
    We changed the host name in exchange profile ( all locations ) from hostname to hostname.companyname.intra and also in the ABAP stack as recommended in all OSS notes.
    We use the Integration Directory --> Sender Agreement --> Display WSDL option to generate the WSDL.
    Its to be noted that all locations ( including url for WSDL ) have the fully qualified hostname except the url within the WSDL.
    Dioes anyone come across this issue/ know which parameters to be updated on the PI server to make the url within the WSDL for the PI webservice to have the fully qualified host name ?

    HI Karthik,
    As Mentioned by Baskar donu2019t use proposed URL .. while creating WSDL in Id.. but instead provide URL in following format and use it in that place and create WSDL.. details about URL format..
    the URL format is fix. and it is simple.
    http://host:HTTPPort/XISOAPAdapter/MessagingServlet?channel=party:sendersystem:CC_sender
    in above URL provide your sender service component name instead of sender system.
    and provide SOAP sender communication channel name in place of CC_sender
    provide your PI system host and http name in place of host and https and use this..
    for more details about URL..
    Propose URL when Configuring Sender SOAP Adpater
    soap url
    Thanks,
    Bhupesh

  • ALSB passing NTLM security credentials to end point URL in business service

    Hi,
    We are using AXIS API to pass NTLM authentication details to SharePoint Web Service by setting the user name and password details as below.
    call.setUsername
    call.setPassword
    This is working fine when we invoke the MOSS search WSDL directly. However, when we introduce ALSB in between and create proxy and business service, the user name and password set using call.setUsername and call.setPassword are not passed correctly and we are getting the below error.
    BEA-380000: Unauthorized
    Could any one help how this can be resolved?
    Thanks
    Sampath

    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

  • END point URL for ESB Routing service says NOT FOUND

    Hi All,
    For the routing services in ESB, The link of WSDL is opening up fine, but the link of endpoint URI for the routing service is failing with the message below message. When i invoke the WSDL using SOAP UI, i get back the the same error message. I tried bouncing the server , but of no help. I also notice that slide directory ESB_Projects gives 404 error on any browser.
    So when i click below url for any of the routing service
    http://<hostname>:<port>/event/<systemName>/<serviceGroupName>/AddressStandardizeRS
    I get below error in browser-
    Not Found
    The requested URL /event/<System Name>/<Service Group Name>/<Routing Service Name> was not found on this server.
    Oracle-Application-Server-10g/10.1.3.1.0 Oracle-HTTP-Server Server at odevsoa.local1.wbcgp.com Port 7777

    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.

  • Need info about "sh int dot11Radio" and "sh int dot11Radio stati"

    Hello,
    Could someone explain me the counters in the 2 following display on an AP (like a AIR-AP1231G)
    sh int dot11Radio 0
    sh int dot11Radio 0 statistics
    SiteR02#sh int dot11Radio 0
    Dot11Radio0 is up, line protocol is up
    Hardware is 802.11G Radio, address is 000f.3415.bf30 (bia 000f.3415.bf30)
    MTU 1500 bytes, BW 54000 Kbit, DLY 1000 usec,
    reliability 255/255, txload 1/255, rxload 1/255
    Encapsulation ARPA, loopback not set
    ARP type: ARPA, ARP Timeout 04:00:00
    Last input 00:00:12, output 00:00:12, output hang never
    Last clearing of "show interface" counters never
    Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0
    Queueing strategy: fifo
    Output queue: 0/30 (size/max)
    5 minute input rate 0 bits/sec, 0 packets/sec
    5 minute output rate 0 bits/sec, 0 packets/sec
    24680 packets input, 3282575 bytes, 0 no buffer
    Received 129 broadcasts, 0 runts, 0 giants, 0 throttles
    0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored
    0 input packets with dribble condition detected
    23427 packets output, 4831674 bytes, 0 underruns
    212 output errors, 0 collisions, 1 interface resets
    0 babbles, 0 late collision, 0 deferred
    0 lost carrier, 0 no carrier
    0 output buffer failures, 0 output buffers swapped out
    SiteR02#sh int dot11Radio 0 statistics
    DOT11 Statistics (Cumulative Total/Last 5 Seconds):
    RECEIVER TRANSMITTER
    Host Rx Bytes: 3265473 / 0 Host Tx Bytes: 4338004 / 0
    Unicasts Rx: 88699 / 1 Unicasts Tx: 27040 / 0
    Unicasts to host: 88699 / 1 Unicasts by host: 23629 / 0
    Broadcasts Rx: 0 / 0 Broadcasts Tx: 4601528 / 49
    Beacons Rx: 0 / 0 Beacons Tx: 4601528 / 49
    Broadcasts to host: 0 / 0 Broadcasts by host: 0 / 0
    Multicasts Rx: 0 / 0 Multicasts Tx: 0 / 0
    Multicasts to host: 0 / 0 Multicasts by host: 0 / 0
    Mgmt Packets Rx: 0 / 0 Mgmt Packets Tx: 3411 / 0
    RTS received: 0 / 0 RTS transmitted: 1721 / 0
    Duplicate frames: 230 / 0 CTS not received: 1597 / 0
    CRC errors: 4303 / 0 Unicast Fragments Tx: 26833 / 0
    WEP errors: 0 / 0 Retries: 2540 / 0
    Buffer full: 0 / 0 Packets one retry: 435 / 0
    Host buffer full: 0 / 0 Packets > 1 retry: 174 / 0
    Header CRC errors: 43265 / 0 Protocol defers: 2 / 0
    Invalid header: 311 / 0 Energy detect defers: 206 / 0
    Length invalid: 0 / 0 Jammer detected: 0 / 0
    Incomplete fragments: 0 / 0 Packets aged: 0 / 0
    Rx Concats: 0 / 0 Tx Concats: 0 / 0
    RATE 2.0 Mbps
    RATE 5.5 Mbps
    RATE 11.0 Mbps
    SiteR02#
    Somes counters are displayed on those 2 displays but it is not with the same figure (CRC errors, input, output, broadcast, ...)
    Can someone explaines me this ?
    regards,

    Hello, do you know the formula ?
    If I had errors to the "input field -from sh int-" then I don't get the unicats received field in the "sh int stat".
    Regards,

  • How to download ws end point

    Hi,
    Is there any way to download endpoint urls of all the services deployed in bpel? my aim is to use ant to get the end point urls from a domain.
    I'd appreciate it if anyone can tell me bout any documentation out there that gives info on how to do this.
    Thank you,
    Revanth

    BPEL server supports WSIL. If you have a WSIL browser (such as the one available in JDev when you add partner links) you can view all the deployed processes and get their WSDL descriptions. If you want to do this programmatically you may have to implement some sort of WSIL client.

Maybe you are looking for

  • Compiled Error in Xcode for iphone game and other questions

    Dear all, Hi, I am a newbie of xcode and objective-c and I have a few questions regarding to the code sample of a game attached below. It is written in objective C, Xcode for iphone4 simulator. It is part of the code of 'ball bounce against brick" ga

  • UltraNav and TrackPoint not working for my user account - but ok for others...

    Got a strange one on my X201T.  For some reason I can't fathom, my laptop's Trackpoint, Touchpad and all their associated buttons do not work when I log into my laptop - they did before but in the last few days, they've stopped.  My external USB stil

  • PowerBook G4 867 Success

    A note of hope to those considering installing Leopard on the minimum hardware: I have had virtually no problems at all with it on my pokey G4. It did take up a big chunk of my available harddrive - 8 GB! I had cloned my drive to an external and perf

  • Lost images.

    My camera recently rolled over from 9999 to 0001 and many images from my old catalogue are missing. Has Lightroom overwritten the entire image file or just the catalogue number? If just the number, where do I find the original images? If a thumbnail

  • How do i dynamically reference the contents of an item in a where clause

    I have a select statement that references an item i.e. 'where sysdate=:diary.day1' at the moment, however i want to use this select to loop through every day of the week, so on the fist record it will change depending on where you are in the loop eit