WCF static send port, use of custom behavior to change the endpoint location?

The send port is outbound to various web service endpoints, all of which is the same WSDL just different location. Prefer to use the static port for features like ordered delivery. Is it possible to change the Microsoft.XLANGs.BaseTypes.Address dynamically
by a custom behavior?
https://ninithepug.wordpress.com/

Hi,
You can make static send ports partially dynamic, this can be achieved in a custom pipeline component in the send pipeline.
You should refer to the below mentioned articles:
Adding dynamic behavior to static send ports
Using a Static Send Port like a Dynamic Send Port
Rachit
Please mark as answer or vote as helpful if my reply does

Similar Messages

  • Timeouts on WCF-BasicHttp send port

    I have set the retry count 3 at the sed port for the interval of 5 minutes, but message is getting timed out at first attempt within a minuets. Can some one suggest me the possible reason.

    Hi,
    Please configure WCF-BasicHttp Send Port properties mentioned below to an appropriate value
    SendTimeout
    OpenTimeout
    CloseTimeout
    They have default have value set to 1 minute. I suspect the issue you are facing is because of these default settings.
    Link:- http://msdn.microsoft.com/en-us/library/bb226467(BTS.20).aspx
    Rachit
    If this answers your question please mark it accordingly. If this post is helpful, please vote as helpful
    by clicking the upward arrow mark next to my reply.

  • After ejecting a disk plugged into the USB port using Finder, I am now getting "The disk was not properly ejected" message.  This didn't used to happen.  How can this be corrected?

    After ejecting a disk plugged into the USB port using Finder, I am now getting "The disk was not properly ejected" message.  This didn't used to happen.  How can this be corrected?

    When you right (control) click on the disk and click eject "disk name", do you pull it immeadiatly or wait a few seconds for it to unmount? Try waiting and see if you get the same message. If you do, when the disk is connected go to applications/utilities/disk utility, after opening DU, select the volume in question from the left side bar and try a permissions repair, you may also run verify disk and see if it comes up with any errors (they will be in red)

  • My old itunes id was an email that no longer can be used, therefore, I can not change the password for that account.  Everything that I purchased under that id name will not play.  How can I fix this?

    My old itunes id was an email that no longer can be used, therefore, I can not change the password for that account.  Everything that I purchased under that id name will not play.  How can I fix this?

    I no longer have an email address that was also my Apple ID. Can I still use the email address as my Apple ID?
    Apple recommends you change your Apple ID to your current, working email address. This will not create another Apple ID, it will only change it to your working email address. See Changing the name you use for your Apple ID if you'd like more information.
    Note: @mac.com and @me.com Apple IDs can not be renamed.  If you no longer use the .mac or .me email address be sure to add your valid email address as an additional email address.
    From here  >  http://support.apple.com/kb/HT5622?viewlocale=en_US
    If necessary...
    Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • I have 5 html pages that share a common header, footer, and sidebar. how do i use my nav bar to change the content of the body without duplicating a lot of code?

    i have 5 html pages that share a common header, footer, and sidebar. how do i use my nav bar to change the content of the body without duplicating a lot of code? thank you!

    i inherited the website. It’s for a non-profit and is not very
    sophisticated, and neither am I in webdesign. It currently has multiple
    pages that are identical except for that body section, so whenever i change
    the navigation (in the sidebar) I have to update every html page.  I want
    to have one basic page, and just call in the different body content based
    on the link the user selects from the nav bar. How can i do that using a
    script? i am using Dreamweaver.
    ~ in love and light ~
    Jeannie
    On Sat, Feb 7, 2015 at 4:07 AM, Ben Pleysier <[email protected]>

  • Cr XIR1 to create a custom function to change the timestamp of a field

    Post Author: palm
    CA Forum: Crystal Reports
    Hi,
    I am trying to create a custom function to change the timezone of a field in the report depending on the timezone selected by the user in the prompt
    I wrote a SQL Expression to do this , but i ended up creating a bunch of expressions for each time zone ,
    So i am thinking of custom fuction some thing like
    TimeZoneConvertor:
    Fuction(TimeStampField ,  Timezone)
    Returns: Timestamp field with newtimezone as selected by user
    Hope you get this and please give me some kind of ideas to acheive this
    Thanks in Advance!!!!!!!!

    Hi
    goto se37...here u need to create a function group... then u need to create a function module. inside assign import/export parameters. assign tables/exceptions. activate the same. now write ur code within the function module
    http://help.sap.com/saphelp_nw04/helpdata/en/9f/db98fc35c111d1829f0000e829fbfe/content.htm
    Look at the below SAP HELP links, These links will show you the way to create a Function Module
    http://help.sap.com/saphelp_nw04/helpdata/en/26/64f623fa8911d386e70000e82011b8/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/9f/db98fc35c111d1829f0000e829fbfe/content.htm

  • How to change the storage location using BAPI_OUTB_DELIVERY_CHANGE

    Hi !
    I want to do batch split in the delivery using BAPI_OUTB_DELIVERY_CHANGE.
    Can anyone tell me how to pass/change the storage location of each batch item.
    Is there any other BAPI that can do the batch split and populate the storage location also for the split batches?
    Regards,
    Firoz.

    Hi all,
    BAPI_OUTB_DELIVERY_CHANGE  can be used to do batch split and updating storage loaction against each item of an outbond delivey.
    I have done that in the folllowing way:
    1 > Firstly i have updated the storage location for each delivery item using 'BAPI_OUTB_DELIVERY_CHANGE' passing some mininal parameters.
       Fetch the item details from LIPS table based on the outbound delivery and pass the corresponding fields to item_data, item_control  and item_data_spl parameters and passed into intenal table li_lips.
    Loop at li_lips inti lw_lips.
        lw_item_data-deliv_numb           = lw_lips-vbeln.
        lw_item_data-deliv_item             = lw_lips-posnr.
        lw_item_data-material                = lw_lips-matnr.
        lw_item_data-fact_unit_nom      = lw_lips-umvkz.
        lw_item_data-fact_unit_denom  = lw_lips-umvkn.
        lw_item_data-base_uom            = lw_lips-meins.
        lw_item_data-sales_unit            = lw_lips-vrkme.
        lw_item_control-deliv_numb      = lw_lips-vbeln.
        lw_item_control-deliv_item        = lw_lips-posnr.
        lw_item_data_spl-deliv_numb   = lw_lips-vbeln.
        lw_item_data_spl-deliv_item     = lw_lips-posnr.
        lw_item_data_spl-pick_denial   = 'X'.
        lw_item_data_spl-stge_loc       = v_lgort.
    "(This would be your Storage Location which you want to be updated)
    Appending work areas into internal table to pass as parameter
        APPEND lw_item_data_lgort     TO li_item_data_lgort .
    Appending work areas into internal table to pass as parameter
        APPEND lw_item_control_lgort  TO li_item_control_lgort.
    Appending work areas into internal table to pass as parameter
        APPEND lw_item_data_spl_lgort TO li_item_data_spl_lgort.
    endloop.
    Passing the delivery no in the work area of header data
      lw_header_data-deliv_numb           = v_delivery_no.
      lw_header_control-deliv_numb       = v_delivery_no.
      lw_header_tech_control-upd_ind   = 'U'.
    Calling BAPI to change the Storage location
      CALL FUNCTION 'BAPI_OUTB_DELIVERY_CHANGE'
        EXPORTING
          header_data       = lw_header_data
          header_control   = lw_header_control
          delivery               = v_delivery_no
          techn_control     = lw_header_tech_control
        TABLES
          item_data           = li_item_data
          item_control       = li_item_control
          return                 = li_return_change
          item_data_spl    = li_item_data_spl.
    Calling BAPI to committ the task
        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT' .
    2> Then i have used the same BAPI again 'BAPI_OUTB_DELIVERY_CHANGE' to do the batch split/update batch only(if required) and change the Actual Delivered Quantity.
    Here you have to pass the same thing along with actual delivery qauntity and different batches to do batch split.
    Here it is assumed that Batch numbers, actual delivered quantity are coming from an internal table i_lqua.
    Looping through Internal table to get Bin details
      LOOP AT i_lqua INTO w_lqua .
    Clearing work area before use
        CLEAR : lw_item_data, lw_lips, lw_item_control, lw_item_data_spl.
    Reading table comparing metrial number
        READ TABLE li_lips INTO lw_lips
        WITH KEY matnr = w_lqua-matnr BINARY SEARCH.
    If read is successful, passing values from table
        IF sy-subrc EQ 0.
    Passing the delivery details into Item level table
          lw_item_data-deliv_numb              = lw_lips-vbeln.
          lw_item_data-deliv_item                = lw_lips-posnr.
          lw_item_data-material                   = lw_lips-matnr.
          lw_item_data-batch                       = w_lqua-charg.
          lw_item_data-dlv_qty                    = w_lqua-verme.
          lw_item_data-dlv_qty_imunit         = w_lqua-verme.
          lw_item_data-base_uom               = w_lqua-meins.
          lw_item_data-hieraritem                = lw_lips-posnr.
          lw_item_data-usehieritm                = 1.
          lw_item_data-fact_unit_nom          = lw_lips-umvkz.
          lw_item_data-fact_unit_denom      = lw_lips-umvkn.
          lw_item_data-sales_unit                 = lw_lips-vrkme.
          lw_item_control-deliv_numb           = lw_lips-vbeln.
          lw_item_control-deliv_item             = lw_lips-posnr.
          lw_item_control-chg_delqty           = 'X'.
          lw_item_data_spl-deliv_numb        = lw_lips-vbeln.
          lw_item_data_spl-deliv_item          = lw_lips-posnr.
          lw_item_data_spl-stge_loc            = w_lqua-lgort.
          lw_item_data_spl-pick_denial        = 'X'
    Appending work area into internal table to pass as parameter
          APPEND  lw_item_data TO  li_item_data.
    Appending work area into internal table to pass as parameter
          APPEND lw_item_control TO li_item_control.
    Appending work area into internal table to pass as parameter
          APPEND lw_item_data_spl TO li_item_data_spl.
    Clearing work areas after use
          CLEAR : lw_item_data, w_lqua,lw_item_data_spl,lw_item_control,
                        lw_vbpok, lw_lips.
        ENDIF.
      ENDLOOP.
    Passing the delivery no in the work area of header data
      lw_header_data-deliv_numb           = v_delivery_no.
      lw_header_control-deliv_numb       = v_delivery_no.
      lw_header_tech_control-upd_ind   = 'U'.
    Calling BAPI to change the Batch/Batch-Split/Delivery Quantity
      CALL FUNCTION 'BAPI_OUTB_DELIVERY_CHANGE'
        EXPORTING
          header_data           = lw_header_data
          header_control       = lw_header_control
          delivery                   = v_delivery_no
          techn_control         = lw_header_tech_control
        TABLES
          item_data                = li_item_data
          item_control            = li_item_control
          return                     = li_return_change
          item_data_spl         = li_item_data_spl.
    Calling BAPI to committ the task
        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT' .
    This is the only way which i found as better way to do the Batch split and updating storage location togetherly.
    I hope this code will help you.

  • Illustrator crashes when using save as and changing the save location yosemite OS

    I am having a problem with illustrator crashing when using save as to save a file to another location than the one it was previously saved in. It will save to the same location just fine but on macbook pro with yosemite os it crashes immediately when i change the save location.  Tried reinstall and also tried other users and still does it. Any solutions?

    Hi Parisian tiger
    What happens when you try to open any file from the same location where you are saving the file using Save As command ?
    Will it be possible to join a connect session with me ?
    Please do let me know about your time availability ?
    Thanks & Regards,
    Raghuveer Singh
    [email protected]
    Time Zone: +5:30 GMT (IST)

  • Can we change the bound location of an operator using OMB?

    Hi,
    I'm trying to change the location of an table operator using the following code:
    OMBALTER MAPPING 'MAP_NAME' MODIFY OPERATOR 'TABLE_TEST' SET PROPERTIES (database_link) VALUES ('PROJECT1/SOURCE1/TEMP_TABLE3')
    OMBCOMMIT
    OMBPlus tells me that the command ran successfully. But if i take a look on the design center, the change didn't occur. The old location for the operator remains.
    Am i using the right property type? database_link?
    Thank You!
    Filipe

    What you've run only change the link location. It doesn't change the bound location.
    I've write an OMB scripts to automate the changing of bound location within different project .
    set OMBPROMPT ON
    OMBDCC
    OMBCC '/'
    set projects [OMBLIST PROJECTS]
    puts -nonewline "Please enter the Project Name ($projects): "
    gets stdin projectName
    set path [lindex [OMBDCC] 1]
    OMBCC '$projectName'
    set modules [OMBLIST ORACLE_MODULES]
    puts -nonewline "Please enter the Module Name ($modules): "
    gets stdin moduleName
    puts "================"
    puts "Finding on Module $moduleName"
    set path [lindex [OMBDCC] 1]
    set no_mod 1
    OMBCC '$path/$moduleName'
    set no_map 1
    puts "Find $moduleName"
    foreach mapname [OMBLIST MAPPINGS] {
    foreach klname [OMBRETRIEVE MAPPING '$mapname' GET OPERATORS] {
    set bname [lindex [OMBRETRIEVE MAPPING '$mapname' OPERATOR '$klname' GET BOUND_OBJECT] 1]
    set oname [lindex [OMBRETRIEVE MAPPING '$mapname' OPERATOR '$klname' GET BOUND_OBJECT] 0]
    # PTI_DW_TST is the name of project orig bound
    # PTI_DW is the name of project destination bound
    set result [regexp {^(/PTI_DW_TST)+} $bname match]
    if { $result == 1 } {
    set myresult [regsub {^(/PTI_DW_TST)+} $bname "/PTI_DW" new_bname]
    #puts "$klname ($oname) : $bname => $new_bname"
    OMBRECONCILE $oname '$new_bname' TO MAPPING '$mapname' OPERATOR '$klname' USE (RECONCILE_STRATEGY 'REPLACE', MATCHING_STRATEGY 'MATCH_BY_OBJECT_NAME')
    puts "Reconcile Mapping $mapname change $bname to $new_bname for operator $klname with type $oname"
    incr no_map
    OMBCC '/'

  • Just wondering is it possible that someone could send them self a MSG but then change the senders number on the MSG??

    Just wondering is it possible that someone could send them self a MSG but then change the senders number on the MSG??

    Partipie88 wrote:
    Although could anyone do it if they knew or found out how??
    Yep, but again, not as easily done as it once was. Since it's illegal in most of the world & most carriers have provisions in place to stop such, you really need to know what you're doing to do such.

  • Using a custom login page for the portal

    Hi all,
    I'm currently doing a migration from Plumtree 4.5WS to Plumtree 5.0.4. In the current 4.5WS portal, I'm catering to 3 different login mechanisms due to time-lags in migration of my users' workstations. The 3 mechanisms are:
    1) Smart Card Reader on Windows 95 using TLS (uses a client side ActiveX)
    2) Smart Card Reader on Windows XP using SSL (uses client side ActiveX)
    3) Java PKI Card on Windows XP using SSL (uses server side scripting)
    To cater to the above, we've made customisations to login.asp and dologin.asp and also added a few scripts of our own.
    I now need to migrate these over to Plumtree 5.0 as well. I've thought of 2 ways to do this:
    1) Doing a custom view replacement of the Login View. This however has limitations as I'm not sure how the codes for the above 3 mechanisms will come in, especially 3), which involves server side scripting.
    2) Creating a custom login and exit page. This is probably a much more feasible solution in my case as it allows me to freely create my login pages and exit pages accordingly to cater for the above. However to do this, I need to be able to customize the Log In and Log Off links on the Portal Banner in order to point these to my own login and exit pages.
    Any ideas what is the best (or correct) way to do this?
    Thanks!
    Weng Kong Lee

    AFAIK only one login.jsp is called.
    But you can include logic into that one JSP file.
    If referer = portal.company.com THEN
    else
    This way you can create different look and feel for different virtual hosts.
    Login portlets have the disadvantage that https is not supported
    Ton

  • SAP Cloud For Customer : How to change the Logo or Image into the Standard Form Template

    Hi Experts,
    I have requirement to change the standard template format.
    I have copy standard template and edit using Adobe Life Cycle Designer to change the logo / image.
    After changed and upload modified template and change the output setting for print i can able to see the changes but logo / image can not display.
    Can anyone have idea how to solve this issue ?
    Can we change the template within cloud system?
    If Yes than How ?
    Regards,
    Mithun

    The following are the instructions (November 2014 version of SAP Cloud for Customer)
    Edit a Form Master Template
    Overview
    As an administrator, you can edit existing form master templates. These are used to define the header, footer, and logos used in form templates. Form master templates also contain an e-mail disclaimer that is appended to automatically generated e-mails sent to business partners when a document is output from the system.
    Procedure
    1. Go to Application and User Management or Administrator Business Flexibility Master Template Maintenance .
    2. In the Master Template Maintenance view, select Form Master Templates from the Show menu.
    3. Select the master template you want to edit and click Edit.
    4. On the Form Master Template tab, do the following:
    Under Header, click Upload and browse to find the file you want as logo. Adjust the size and alignment of the logo, as required.The file formats .gif, .bmp, .jpg, .png, and .tif are supported. The logo should not be larger than 40 mm width x 20 mm height. If you upload a graphic that is larger than 40 mm x 20 mm, it is resized automatically.Select the Header Divider checkbox if you want a graphical divider to appear on your form.Under Sender Address, enter your company’s address. The sender address is shown above the recipient's address in a letter.Under Footer, choose the number of footer columns you want to display. Enter the footer text exactly as you would like it to appear on the form. You can maintain up to 4 footer blocks with a maximum of 10 lines per footer.Note that the width of each footer block is equally divided over the available space. If a line of text in the footer is too long for the current font size, the system will automatically enter a line break. If this automatic line break does not meet your needs, you may need to enter the text after the line break as a separate line.To maintain multiple languages, you must first add the language from the Add menu and then maintain the texts in that language by selecting the language from the dropdown list.
    5. Click the refresh button to preview your changes. From the dropdown list under Preview, you can select a country. The preview is then displayed using the country-specific template, for example, some countries do not use sender addresses or have different paper sizes.
    6. On the E-Mail Disclaimer tab, you can enter a disclaimer or other company-specific legal information.
    This text is appended to the main text body of e-mails that are created when a document is output by the system. It is not possible to create separate language versions of this text; therefore if your company uses multiple communication languages, you should enter all language versions of the disclaimer here.
    7. Click Save and Close.
    Result
    If required, you can now assign the form master template to a company/org unit and/or output channel. For more information, see the Master Template Maintenance Quick Guide.
    Note that master templates can be activated and deactivated for each form template in the Form Template Maintenance view. For more information, see the Form Template Maintenance Quick Guide.

  • Hide the custom control while changing the tab

    Hello Experts,
    I am using many screens & subscreens in my application. In a tabstrip control, I am calling one subscreen which has Custom Control to display the text editor.
    When I change the tab say for ex from TAB1 to TAB2, the custom control with text editor remains at the same place. In TAB2 I dont want custom control of TAB1.
    Thank you to go through my query.
    Regards,
    Bhavina
    Edited by: Rob Burbank on Aug 23, 2010 5:12 PM

    Hello Alej,
    I have created one subscreen which i need in a tabstrip control. Now this subscreen has one Editor Control (CL_GUI_TEXTEDIT->TEXT_EDITOR)  which I put on Custom Control. Custom Control is placed in the subscreen with SE51.
    to put the editor control  of CL_GUI_TEXTEDIT, I need Custom Control on screen. And I didnt find any property using which we can hide custom control.
    Is there any way using classes or methods, can we put Editor Control without using the custom control of screen.
    I think in your prob, you had ALV, that we can put on another subscreen, but in my prob how can we remove custom control Please Explain.
    Thanks & Regards,
    Bhavina

  • Custom fields to change the actions ;list

    Dear all,
    I had put a custom check box in the new custom tab.
    Based on this check box value I want to set the actions in the action list.
    for example ...say the custom check box is 'Approval required' . if this is checked only then the action list should have action as Approved ...otherwise not.
    This is field is created in the crmd_customer_h table thru the structure.
    Now I have created a parameter in the container editor like the same screen field (with import and export options checked) and in the condtions for this action, I have written to display this action only if this parameter has the value 'X'.
    Its not working.please advice me how to proceed.
    Also can we set the break point here.
    thanks
    regards
    sanjeev

    Hi,
    please use BADI CONTAINER_PPF to fill the value of your parameter.
    Check note [865619 - Actions should only be scheduled if status is newly set|https://service.sap.com/sap/support/notes/865619] for further examples.
    Regards,
    Christoph

  • Changing the default location PowerPoint uses for templates

    I do not want to use the default location MS Office initially configures for templates that is buried in some obscure folder on a local machine in that only Office know about.  Instead want to keep my templates in the same location on a company server
    with the rest of my materials so I can access it from my company laptop or from the Virtual machines I am forced to use in other company locations. This way I will have my templates everywhere I work.  When I make changes they are available to me everywhere
    I work and are not buried in a folder on a laptop or a virtual machine in a conference room half a world away. 
    MS Word allows users to configure this default location for templates but no where in PowerPoint can I find any way to configure this location. Previously on my laptop I have been able to configure the default PowerPoint template location, I believe, by
    setting the location in MS Word; however, this is not happening for me now on the virtual machines I am using when away.  I have scoured the Options settings and if it is there it is well hidden.
    To make matters worse I am trying to use what PPT is providing to me while I sort this out and when you try to open "My Templates": there is a message that says:
    "To add a template to My templates, click the File tab, click Save As, click Trusted Templates, and then save the file as a template."
    Of course when I follow these instructions there is no folder named Trusted Templates on the left side of the dialog box.  I am not sure why it is so difficult to allow us to configure this ourselves for each program but apparently it is.

    Hi,
    Please refer to this kb below:
    http://support.microsoft.com/kb/924460/en-us
    As mentioned, if you use Word 2007 or Word 2010 to change the location in which your new templates are saved, you also change the location in which all 2007 Office program templates or all 2010 Office program templates are saved.
    Office programs use one registry key to record the user templates file location, you can browse to the following path to check if it's recorded:
    HKEY_CURRENT_USER\Software\Microsoft\Office\14.0\Common\General
    The user templates location is stored in the
    UserTemplates
    string value.
    If it doesn't exist, try to manually add it, check if this helps. Detailed information can also be found in the kb introduced above.
    Important This section, method, or task contains steps that tell you how to modify the registry. However, serious problems might occur if you modify the registry incorrectly. Therefore, make sure that you follow these steps
    carefully. For added protection, back up the registry before you modify it. Then, you can restore the registry if a problem occurs. For more information about how to back up and restore the registry:http://support.microsoft.com/kb/322756/en-us
    Regards,
    Melon Chen
    TechNet Community Support

Maybe you are looking for