Request help for Simple Itinerary (tricky one)

Hi
I am trying various scenarios for itineraries. I am stuck in simple itinerary solution where i have  my schema exposed as (request and reponse) web service and one itineray service to transform it and finally send it back to the WS response.
I  tried including Offramp but i guess i will not be able to include the servicename, state, type properties. Can someone help me how i can create itineraries for such instances.
I could able successfully complete the scenario where my schema exposed as web service and then transform and invoke another web service and finally the response of the second web service for sent back my original web service. But the above simple scenario
i am totally baffled.
ram

There are samples inside the ESB Toolkit that show exactly how to invoke a service  using the ESB Toolkit. You can find the specific
sample here: C:\Program Files\Microsoft BizTalk ESB Toolkit 2.0\ESBSource\Source\Samples\MultipleWebServices. You will have to first unzip the ESBSource.zip file that comes with the default ESB toolkit installation.
There are also How-to's which are step by step instructions on how to do this inside the ESB documentation.  You can get the documenation here:
http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=bc86cf1e-ef29-4b19-95f7-388f64555090 
Inside the Documentaion under Development Activities there are How-to's which provide step by step instructions on how to Route messages to a Service. (Even though this how to is based off of ASMX, the same principal applies.)
You can also look into earlier MSDN Post in below link
Consume Web Service from ESB Toolkit 2.1
Thanks
Abhishek

Similar Messages

  • Request help for purchasing HD webcams using iMac, OSX &Lion

    I am requesting help for purchasing a HD webcam using iMac, OSX &Lion.  Any suggestions would help.  The following is what I've done so far...
    I purchased Logitech's HD C910 webcam. It was a mess in requards to freezing up, no zoom and most of all no adjustments in: contrast, hue, color, etc. You're stuck just like a car with no engine or wheels who wants that.  The other Logitech products i.e. Pro 9000 is being discontinued with no software updates in the future  and the same with the other products. Most of the other manufactures do not provide software that is really compatible provideing true HD with full features. I'm willing to spend around $199,00 or so.  Any suggestions?

    Well I found my own answer to the webcam concern that I had ....I bought the Logitech C-910...Yes, I know the Logitech states their software is not compatible with OS X ...That's OK, I only use the basics supplied by Logitech to open the cam...Logitech does supply HD settings which are useful.  I like the wide angle which is there to play around. Then I use a software program called "Webcams Settings" found at Apple's App Store. There is a small charge for this download but more than worth it to have a fully functioning system.  The best way to get there is obliviously via your "Dock." Click on the icon and type in "Webcam Settings" in the top right portion of the page and presto....you have all the goodies to play like a professional. i.e.:  zoom, pan, tilt, aperture. etc. of course your webcam camera(s) must have the capability to perform these options in order to use them.
      Note I have used my webcam for everything you can imagine and have a 60 foot cord (several cords linked together) to go outside (LOL) 'Just love the goodies with "Webcam Settings".  I take outstanding pics too if I do say so, please.  Funny, I rarely use my cam to Skype but knowing the option is there for me anytime I wish.  I my cam to photograph orchids and misc. even portraits and family play photos with my tripod in hand.   Just because there is a big road block in your path doesn't mean there aren't other avenues. In the corporate life it's called take a negative and make it a positive or else.......and if you have to gripe then you better have an idea on how to turn it around.  -So- I did Logitech and Apple.

  • Request help for WS 14000..44 std wrkflw

    Hi,
    I am facing a issue in wokflow WS14000044.It's not sending any work item to any of the purchasers.
    The log says no agent found for this task. I also checked following FM to see whether any entries generated but dod not return any values.Request help.
    BBP_PDH_WFL_GET_PURCHASER_LIST.
    arjman

    Hi,
    Check in PPOMA_BBP that there are purchasers assigned to the relevant purchasing org of your cart.
    Also check that the agent assignment of the approval task TS14007947 is maintained with desired approvers.
    Kind regards,
    Siobhan

  • Request help for confusion over Oracle single instance database

    Hello all,
    Following Oracle version was installed at the client site @ the moment
    Oracle Database 11g Release 1 (11.1.0.6.0) for Microsoft Windows (x64) on Non-Clustered enviornment.
    The clients are going to arrange another identical server and wants to configure it with 2 nodes windows cluster enviornement.
    The current server where Oracle server was installed will become active node of the cluster.
    The confusion is if we should install the following version on node 2
    Oracle Clusterware 11g Release 1 (11.1.0.6.0) for Microsoft Windows (x64)
    or
    node 2 should also be installed with
    Oracle Database 11g Release 1 (11.1.0.6.0) for Microsoft Windows (x64) version ?
    http://www.oracle.com/technetwork/database/enterprise-edition/downloads/111060-win64soft-099656.html
    Any help for removing confusion would be appreciated
    Thanks,

    I think it's first needed to think about what kind of configuration you want; Failsafe, DataGuard or even RAC? But you talk about clustered and an active node, so I take it the object is to create a Failsafe cluster.
    If you want to use FailSafe first read about it, for example use http://www.oracle.com/technetwork/database/windows/index-082893.html (Resources: Documentation)
    Eric

  • Actionscript Help for Simple Button Events

    Hey everyone,
    I'm pretty new to flash and I think this is a fairly simple animation, but I'm not quite sure how to write out the action script for it. I have a website that has very similiar animations to www.cookstreet.net. I have shapes and text that fly in from the bottom when a button is clicked, but I want to get them to fly back out of the top of the screen when any other button is clicked before any new content loads back in from the bottom. What should I add to the action script to tell flash to first check and see if there is content loaded on the screen when a button is clicked, and if there is, to go to the animation that flies that content out of the top and then return to the animation of the new content coming in from the bottom? What I currently have set up for my buttons is:
    function handleClick( pEvent:MouseEvent):void
        if( pEvent.target == reel )
            gotoAndPlay("Reel");
        else if( pEvent.target == home)
            gotoAndPlay("Home");
        else if( pEvent.target == news)
            gotoAndPlay("News");
        else if( pEvent.target == film)
            gotoAndPlay("Film")
        else if( pEvent.target == about)
            gotoAndPlay("About")
        else if( pEvent.target == contact)
            gotoAndPlay("Contact")
    reel. addEventListener(MouseEvent .CLICK, handleClick );
    home. addEventListener(MouseEvent .CLICK, handleClick );
    news. addEventListener(MouseEvent .CLICK, handleClick );
    film. addEventListener(MouseEvent .CLICK, handleClick );
    about. addEventListener(MouseEvent .CLICK, handleClick );
    contact. addEventListener(MouseEvent .CLICK, handleClick );
    Thanks for the help!
    -Sofi

    What you can probably do is have a variable that you use to keep track of who's present on the stage, starting it off as a null value.  That way when you click a button if the value is null is skips processing a moving out scenario and jumps to the moving in one.  So your event listeners would be calling a different handler function that first takes care of the moving out needs, if any, which in turn calls the moving in function after the moving out activity is done (or the timeline for moving out does... I don't know how you plan to implement the moving out stuff).  If it is a functiob to function process, the moving out function could pass the event.target to the moving in function so that wouldn't have to change at all, except to add in somewhere wha the new variable value should be.
    If what I just offered is one big ball of confusion... take your time and inch your way thru it.

  • How do I request help for an Acrobat search efficiency question?

    I have had a search time degradation of 60x-70x when I switch to Acrobat X or XI (went from 14 seconds on v9.5 to 841 seconds with X or 991 seconds seconds with XI).  I am trying to find out where I can ask about this to see what I can do to improve the speed of my searches.
    Is this forum a good place to ask?  My prior posting was at:
       http://forums.adobe.com/message/5338121#5338121
    Thanks.

    The PDF files I search are fairly large.  I was told they are "text under image".  They represent the pages of an organization's bimonthly journal over the course of 80 years.  There are 16 files, averaging about 800 pages per file -- totalling around 600MB.  The ability to search across all those pages in 14 seconds rather than 1000 seconds is greatly desired.
    What kind of additional information would be appropriate and helpful?  Should I repost the details I had included under the other forum?  Are there other tests I should try?
    Am I the only one who has had this kind of issue?  I searched to find similar discussions or articles but had found none.
    Is this the appropriate forum in which to follow up as a discussion?
    BTW --  Best regards, and thanks for your feedback.

  • Exch2k7 to Exch2k10 - SSL 'request' help for the new server

    Hi,
    after read the article 'http://technet.microsoft.com/en-us/library/dd638158.aspx', we already have MBX and CAS 2007 running the lastest spk version and the SSL on the CAS 2007 is already working as 'LEGACY.DOMAIN.COM.BR' + 'Autodiscover.domain.com.br'
    + 'mail.domain.com.br'.
    My question is regarding the SSL request for the new server:
    >>> Can I start the REQUEST for the external Certification Authority using Windows Powershell or IIS console instead to use 'Exchange Management Shell'??
    * I´m afraid about the time (days) to install CAS 2010 on the new server, start the request to the CA, do the internal steps to aprove, pay the tax, wait for generation and then install the new SSL on the new server...

    Hi,
    Based on my research, we can use IIS renew the certificate for IIS:
    http://support.microsoft.com/kb/228991
    And Windows power shell can help us to create certificate request:
    http://social.technet.microsoft.com/Forums/exchange/en-US/1ba38a64-8776-444c-9f4d-a484075f3de2/powershell-to-request-a-certificate-renewal
    Thanks,
    Angela Shi
    TechNet Community Support

  • Need emergency help for simple actionscript commands.

    I havent touched flash for awhile and am now using flash professional to try and create a simple visual prop.
    I used to be able to have the movieclip stop on the first frame and then use the keyboard (anykey) to advance frame by frame in the timeline. Now I cant seem to do it and it just keeps playing through and loops in the publish preview.
    As this is now actionscript 3, Im not familiar with how this is being controlled.
    Help would be greatly appreciated as I have to get this out the door tomorrow.
    JM

    See the following posting: I'D LIKE TO CHANGE MY CODE FROM USING THE LEFT KEY=PREVIOUS FRAME/ RIGHT KEY= NEXT FRAME TO  ANY KEY=NEXT FRAME. HERE IS MY CODE.
    The difference with yours would be that instead of using nextFrame(); inside the function, yours would just use play();

  • Need help for the installation of one key theater and the improper working of touchpad

    hi can anybody tell me how can i install one key theater in g560 laptop running on win 7 32 bit OS as me trying to install it but it doesnt work.
    How to solve the touchpad issue in g560 as sometimes the touchpad stops funtioning or not sensing the finger movement.

    Hi and Welcome to the Community!
    I'm not sure, from your description, exactly what you are looking for. "Username" and "E-mail"? Are you perhaps looking for the ability to enter a "reply-to" email address that is different from the actual email address of the account you are sending from? If so, that feature is indeed not presently available in BB10. Among other features, it may be one that many hope are added to the BB10 platform with future OS releases. But, for now, it is what it is.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Request help for iphone screen flickering

    I'm using iphone 4. Few days ago (before the software update 6.0.1) i noticed my iphone screen is flickering and blurred.this bug was not fixed after IOS update 6.0.1. Thus showing horizontal lines in the screen.
              please help me

    I did resolve it. I did the reset while the phone was plugged into my computer at home (holding down the home button and power button at the same time, until it shuts down and reboots). It took a few tries but eventually it showed the icon of the plug going into the icon for iTunes.  From iTunes, I did a restore from an older backup, and then reinstalled the update from the computer.  Now it works just fine.  I wonder if maybe the update was just too hefty to pull down via the cellular network.
    If you never did a backup of your phone to iTunes or the cloud, then you'll likely have to do a restore to factory conditions and then do the update.  Incovenient, but better than a paperweight

  • Request help for oracle installation

    We are planning to install Oracle 11g on Windows 2003 Enterprise having 2 nodes clusters.
    We would like to have info: on the installation steps
    Thanks

    787060 wrote:
    We are planning to install Oracle 11g on Windows 2003 Enterprise having 2 nodes clusters.
    We would like to have info: on the installation steps
    Thanks11gR1 or 11gR2? which version you want to install?
    refer oracle installation guides, its better and helpful to avoid unnecessary headaches.
    REFER:
    http://tahiti.oracle.com/
    And find clusterware installation guide for 11gR2 or 11gR1.
    Hope, this will helps you.

  • Requesting help for converting .cwk files

    for use with Windows.
    http://discussions.apple.com/thread.jspa?threadID=2548903
    Can someone help this poor soul who is being sucked into the dark hole that is Windows?

    These FAQ entries are a good starting point for file conversion:
    What tools can I use to convert my video to DV-AVI?
    How can I convert my AVCHD footage to more traditional HDV?
    Cheers,
    Neale
    Insanity is hereditary, you get it from your children

  • Request help for synching iPod with iTunes after Windows re-install

    I recently reformatted my hard-drive. I have installed iTunes. When I plug in my iPod (old Nano), I get a message asking me to "Erase and Sync" or "Transfer Purchases". My iPod has some purchased songs, and many songs ripped from my CD collection (mp3 format). I would like to have the entire iPod contents populate the new (empty) iTunes library. I am guessing that the Transfer option is the best of the two, but am worried about losing songs, since it would be a lot of work to re-rip the non-purchased songs. Will "Transfer Purchases" transfer all music?
    I would appreciate any suggestions, before I proceed. Thanks in advance to any replies.
    EMK

    *Will "Transfer Purchases" transfer all music?*
    No it won't, it will only do what it says which is to transfer purchases, it won't transfer non-purchased items.
    *When I plug in my iPod (old Nano), I get a message asking me to "Erase and Sync" or "Transfer Purchases".*
    Connect your iPod to your computer. When you get the message that it is linked to a different library and asking if you want to link to this one and replace all your songs etc, press "Cancel". Pressing "Erase and Sync" will irretrievably remove all the songs from your iPod. When your iPod appears in the iTunes source list change the update setting to manual, that will let you use our iPod without the risk of accidentally erasing it. Check the "manually manage music and videos" box in Summary then press the Apply button. Also when using most of the utilities listed below your iPod needs to be enabled for disc use, changing to manual update will do this by default: Managing content manually on iPod
    Once you are safely connected there are a few things you can do to restore your iTunes from the iPod.
    The transfer of content sources such as songs imported from CD is designed by default to be one way from iTunes to iPod. However there are a number of third party utilities that you can use to retrieve the music files and playlists from your iPod. You'll find that they have varying degrees of functionality and some will transfer movies, videos, photos, podcasts and games as well. Have a look at the web pages and documentation, this is just a small selection of what's available, they are generally quite straightforward. You can read reviews and comparisons of some of them here:
    Wired News - Rescue Your Stranded Tunes
    Comparison of iPod managers
    TuneJack Windows Only
    iPod2PC Windows Only
    iGadget Windows Only
    iDump Windows Only
    SharePod Windows Only
    iPodRip Mac & Windows
    YamiPod Mac and Windows
    Music Rescue Mac & Windows
    iPodCopy Mac and Windows
    iRepo Mac & Windows (iPhone and iPod Touch compatible)
    iPod Access Mac & Windows (iPhone and iPod Touch compatible)
    As for your purchased songs, the transfer of purchased content from the iPod to authorised computers was introduced with iTunes 7. You'll find details in this article but the utilities above will copy both purchased and non purchased songs anyway: Copying iTunes Store purchases from your iPod or iPhone to a computer
    There's also a manual method of copying songs from your iPod to a Mac or PC. The procedure is a bit involved and won't recover playlists but if you're interested it's available on page 2 at this link: Copying Content from your iPod to your Computer - The Definitive Guide
    Whichever of these retrieval methods you choose, keep your iPod in manual mode until you have reloaded your iTunes and you are happy with your playlists etc then it will be safe to return it auto-sync. I would also advise that you get yourself an external hard drive and back your stuff up, relying on an iPod as your sole backup is not a good idea and external drives are comparatively inexpensive these days, you can get loads of storage for a reasonable outlay.

  • Little help for simple gallery

    Hi, i use a very simple spry gallery. the xml format is this
    <photos>
    <photo pathtn="..." path="..." description="..." />
    <photo......
    <photo......
    </photos>
    Then on the thumbnails div i've got a spry:repeat and a
    spry:setrow to set the content of the spry:detailregion which shows
    the large image and the description. The gallery works very well,
    but what i'd like to do is to change the aspect of the active
    thumbnail...Nothing too complicated..just a thicker border ...how
    could i do this?
    thanks!

    I don't know if this is best way to do it, but I wrapped my
    thumbnails section in a div called "thumbnails" to which i applied
    the spry:region="dsPhotos dsGalleries dsGallery".
    From here, I entered my spry div:
    <div spry:repeat="dsPhotos"
    onclick="HandleThumbnailClick('{ds_RowID}');"
    onmouseover="Spry.Effect.AppearFade('tn{ds_RowID}',
    {duration:1000,from:100,to:20,toggle:true})"> <img
    id="tn{ds_RowID}" alt=""
    src="galleries/{dsGalleries::@base}{dsGallery::thumbnail/@base}{@thumbpath}"
    width="24" height="24" /></div>
    Then I closed the thumbnails div.
    From here, I simply created a #thumbnails rule in my css
    file, and changed my border like so:
    #thumbnails img {
    padding: 1px;
    clear: none;
    float: left;
    height: 24px;
    width: 24px;
    margin-top: 5px;
    margin-right: 5px;
    margin-bottom: 0px;
    margin-left: 0px;
    border: 2px solid #CCCCCC;
    Hope this helps!

  • GX60 1AC BIOS request/help for upgraded CPU

    Hello,
    I recently upgraded my GX60 with a 5750m es, running Windows 8.  Would it be smart to upgrade the BIOS to the GX60 Hitman Edition's BIOS version D0L? The Hitman Edition uses the same processor.
    If so, could someone help me mod the bios, so I can have a stable system? I would like to unlock it as well. Thanks!
    - CJ

    Quote
    BIOS Version/Date   American Megatrends Inc. E16FKAMS.509, 12/10/2012
    oki, then you should use .5xx BIOS only
    any others are not for your notebook
    Quote
    Donation: 0R270839Y83717100
    It's pending, says it needs 3-5 working days to complete/cleared.
    Once is cleared i will work on it and will prepare latest bios to be unlocked
    until wait flash your bios to the latest version:
    http://download.msi.com/bos_exe/w8_E16FKAMS.50A.zip

Maybe you are looking for