JMS BC User Properties

Hi,
Is it possible to create JMS BC Message User Properties which can be mapped within the BPEL?

Hi.
This is indeed possible using the JMS message extensibility element in your WSDL which can then be mapped to an XML element using your BPEL assign activity. You can read more about this on the following page...just scroll down to "JMS properties Extensibility Element"
http://wiki.open-esb.java.net/Wiki.jsp?page=JMSBC_WSDLXtensibility
NB: You are encouraged to use the open-esb users mailing list for questions relating to OpenESB components. You may receive a faster response. This forum is intended for pure JBI questions, rather than any specific implementation. Details of how to subscribe to the mailing list are available here:
https://open-esb.dev.java.net/MailingLists.html
Regards,
Louis

Similar Messages

  • Not able to figure out the table index for Edit table User Properties Dialo

    Studio Edition Version 11.1.1.0.0
    Build JDEVADF_MAIN.D5PRIME_GENERIC_080403.0915.4920
    I'm trying to automate the various features in Jdeveloper dialogs. At one point I got struck with table in Edit Table Dialog.
    Right Click on New -> Database Tier-> Select APPS: Import to offline database Objects. Step 1- Step5 dialogs comes up. Click on Next till finish button comes up. After that one table along with xdf file will be shown in the Jdeveloper Tree Menu. Right click on Table, Go to Properties. Then Select User Properties in the Left Pane. On Right Side table will be shown. I want to know what is the index for this table and also I need to input certain text and select some drop downs from this table.
    Automation Tool: JFCUnit
    Could you please tell how can I put values in some of the fields and select the values from the drop downs.
    Kindly let me know if you need any more Information for the same.

    Hi,
    if you are from Oracle, please use an internal forum. If not, the JDeveloper 11 forum is at: JDeveloper and OC4J 11g Technology Preview
    Frank

  • User Property changes show up on the outlook 2013 UI correctly but it does not show up on the MailItem User Properties in Shared Account between PCs Environment

    Hello There,
    I have written an Outlook Add-In to add several User Properties to our incoming emails. This add-in will be installed in 100 computers in different states and our Exchange server is hosted in our datacenter in CA. 
    Everything works great but there is an odd thing happens and that is when one PC changes a UserProperty Value all the other PCs  show up that change on their outlook UIs but when I get the MailItem object from the same other PC is
    not showing the changes. But if I shutdown outlook on that PC and open it up again the changes will be showing up in the MailItem object. It seems to me that MailItem doesn't refresh but UI does.
    Does anyone know how I can refresh the MailItem after its UserProperties has been changed from another pc in a shared account environment.   
    These are my codes to save a property and show all properties:
    Public Sub SaveUserProperty(xName As String, xValue As String)
    Dim ns As Outlook.NameSpace = Me.Application.GetNamespace("MAPI")
    Dim oMailItem As Outlook.MailItem = Nothing
    Dim oUserProperties As Outlook.UserProperties = Nothing
    Dim oUserProperty As Outlook.UserProperty = Nothing
    Try
    oMailItem = ns.GetItemFromID(curMailId)
    oUserProperties = oMailItem.UserProperties
    oUserProperty = oUserProperties.Find(xName)
    If oUserProperty IsNot Nothing Then
    oUserProperty.Value = xValue
    End If
    oMailItem.Save()
    Catch ex As Exception
    MsgBox(String.Format("{0}: {1}{2}", "SaveProperty", vbTab, ex.Message))
    Finally
    If Not IsNothing(oUserProperty) Then
    Marshal.ReleaseComObject(oUserProperty)
    oUserProperty = Nothing
    End If
    If Not IsNothing(oUserProperties) Then
    Marshal.ReleaseComObject(oUserProperties)
    oUserProperties = Nothing
    End If
    If Not IsNothing(oMailItem) Then
    Marshal.ReleaseComObject(oMailItem)
    oMailItem = Nothing
    End If
    If Not IsNothing(ns) Then
    Marshal.ReleaseComObject(ns)
    ns = Nothing
    End If
    End Try
    End Sub
    Public Sub ShowUserProperties()
    Dim builder As StringBuilder = New StringBuilder()
    Dim ns As Outlook.NameSpace = Me.Application.GetNamespace("MAPI")
    Dim oMailItem As Outlook.MailItem = Nothing
    Dim oUserProperties As Outlook.UserProperties = Nothing
    Dim oUserProperty As Outlook.UserProperty = Nothing
    Try
    oMailItem = ns.GetItemFromID(curMailId)
    oUserProperties = oMailItem.UserProperties
    For Each oUserProperty In oUserProperties
    builder.AppendFormat("{2}:{0}{3}{1}", vbTab, vbNewLine, oUserProperty.Name, oUserProperty.Value)
    Runtime.InteropServices.Marshal.ReleaseComObject(oUserProperty)
    Next
    If (builder.Length > 0) Then
    System.Windows.Forms.MessageBox.Show(builder.ToString(), "The UserProperties collection")
    End If
    Catch ex As Exception
    MsgBox(String.Format("{0}: {1}{2}", "ShowUserProperties", vbTab, ex.Message))
    Finally
    If Not IsNothing(oUserProperty) Then
    Marshal.ReleaseComObject(oUserProperty)
    oUserProperty = Nothing
    End If
    If Not IsNothing(oUserProperties) Then
    Marshal.ReleaseComObject(oUserProperties)
    oUserProperties = Nothing
    End If
    If Not IsNothing(oMailItem) Then
    Marshal.ReleaseComObject(oMailItem)
    oMailItem = Nothing
    End If
    If Not IsNothing(ns) Then
    Marshal.ReleaseComObject(ns)
    ns = Nothing
    End If
    End Try
    End Sub

    Outlook will not see the latest changes downloaded from Exchange (or changed through MAPI bypassing the Outlook Object Model on the local machine) until the MailItem object is completely released and reopened. The explorer list shows the changes since it
    is fed off the underlying folder contents table, not the cached MailItem object.
    There is nothing you can unless you make sure the MailItem object is released and is never kept referenced fro any prolonged periods of time.
    Dmitry Streblechenko (MVP)
    http://www.dimastr.com/redemption
    Redemption - what the Outlook
    Object Model should have been
    Version 5.5 is now available!

  • JANZ  User Properties in SOA Suite 11G

    Hi All,
    I am trying to configure users in Oracle SOA Suite 11G to JANZ Realm . I am able to add user.
    In documentation i see user property file present in this location "SOA_Oracle_Home\bpel\system\services\config\demo-users-properties.xml " , I don't have BPEL folder in SOA_SERVER1 , File available in 10G not in 11G.
    Basically i am looking to set Manager to users which i define.
    Users which i add in admin console are stored in WebLogin Embeded LDAP Server. I am able to see list of user by connecting server using LDAP Browser.
    When i try to add manager attribute using LDAP Browser , it fails , record is not displayed in Jdeveloper .
    Appreciate if your help in finding user properties or setting Manager role to the user. How can i add more attributes defined in documentation.
    Regards
    Vijay

    Hi Siva,
    I don't think still there is any support for PGP in Oracle SOA. You may use java for PGP encryption/decryption and transfer externally encoded messages over SFTP.
    Please refer -
    Re: PGP Encryption/Decryption
    PGP Encryption in B2B
    Regards,
    Anuj

  • Order of execution of named method user properties and server script

    Dear All,
    If for a Custom method on an applet, we have scripts in WebApplet_preinvokemethod and WebApplet_invokemethod and also for the same Custom method we have applet Named Method user properties and BC Named Method user properties, what will be the order of execution of these scripts and Named Method user properties??

    The Private Event Submission sample portlet shows how to achieve this. It is part of the PDK download.
    Peter

  • How to update user properties using CSOM

    Hello All ,
    Is it possible to update a SharePoint user properties (like email, title, etc) using CSOM API? In the User class (Microsoft.SharePoint.Client.User) i saw properties like Email, Title are possible to get and set. I tried updating these properties through code
    like below, but it is not getting updated in SharePoint. Is there any alternative way?
            String updateUser= "john alex";
                User user1 = web.EnsureUser(updateUser);
                user1.Email = "[email protected]";
                clientContext.Load(user1);
                clientContext.ExecuteQuery();
    Regards
    Shahabas

    You are not calling the update on the user object. Here is an example:
    String updateUser= "john alex";
    User user1 = web.EnsureUser(updateUser);
    user1.Email = "[email protected]";
    user1.Update();
    clientContext.Load(user1);
    clientContext.ExecuteQuery();
    Nadeem Yousuf

  • Need help to check multiple conditions and set AD user properties

    hello All,
    I have a data csv sheet where information as follows, using below information I need to update AD account attributes based on below conditions . I have full right and I can set any user properties. So this is not access right issue.   
    samaccountname,Othertelephone,language,employeeId
    abcd                      XXXXXXXXX     EN         SMS
    Now I need to check following conditions:
    Othertelephone =  if this should not be blank ,if so display message " filed is blank " and no changes should allowed in further attributes and  it should abort
    language= this field should only contain  EN or FR value if No display msg " error in language field " and no further changes to  the user attributes and it should abort
    employeeID= this field should only contain OTP or SMS value if Not filled display msg " error in Employee ID field " No further changes to the user attributes and it should abort
    changes to user will permit  when all attributes is filled. I do the testing taking samaccountname , othertelephone and employeeId into consideration but it did not helped. Getting error
    THIS is complete Code Of my Task where you need my focus on conditions
    group=Get-QAdGroup -SearchRoot  "domain/vpn group"
    Import-Csv D:\VPN.csv |
    ForEach-Object{
    if ($_.samaccountname -eq "")
       Write-Host "SAMACCOUNTNAME is blank"   -fore red
    else
     $user=Get-QAduser $_.samaccountname
    if ($user.memberof -contains  $group.DN)
     Write-Host "$($_.Samaccountname) user is allready a member" -fore red
    else
     Add-QADGroupMember $group $_.Samaccountname
    If ($_.othertelephone -eq "")
    Write-Output "$($_.samaccountname) telephone Number is blank"
    else
    if ($_.EmployeeID -notmatch 'OTP' -and 'SMS')
    Write-Output "$($_.samaccountname) EmployeeID field is not correctly field")
    Else
    Set-QADUser $_.SamAccountName -ObjectAttributes @{telephonenumber=$_.othertelephone;EmployeeID=$_.EmployeeID}
    error
    Set-QADUser : Access is denied.
    At C:\Users\g512263\AppData\Local\Temp\5f8facb6-f942-4c3d-b924-8953d9a706da.ps1:37 char:8
    +                    Set-QADUser $_.SamAccountName -ObjectAttributes @{telephonenumber=$_.othe ...
    +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : NotSpecified: (:) [Set-QADUser], UnauthorizedAccessException
        + FullyQualifiedErrorId : System.UnauthorizedAccessException,Quest.ActiveRoles.ArsPowerShellSnapIn.Powershell.Cmdlets.SetUserCm
       dlet

    <title>Untitled - PowerGUI Script Editor</title>
    Hello JRV,Thank you for your time, There is no comma in my csv file , I double check. below I wrote a simple code.I removed all the conditions and just try to set the EmployeeID and it is working fine with same file.But as soon as I add conditions it gives access denied. as well as if I remove employee Id from your previous code and only try to set telephone No. still it gives access denied.I am just trying to figure out what is causing this.
    $group=Get-QAdGroup -SearchRoot "com/Group"
    Import-Csv D:\VPN.csv |
    ForEach-Object{
    if ($_.samaccountname -eq ""){
    Write-Host "SAMACCOUNTNAME is blank" -fore red
    }else{
    $user=Get-QAduser $_.samaccountname
    if ($user.memberof -contains $group.DN){
    Write-Host "$($_.Samaccountname) user is allready a member" -fore red
    }else
    Add-QADGroupMember $group $_.Samaccountname
    If ($_.othertelephone -ne "")
    Set-QADUser $user.SamAccountName -ObjectAtt Aributes @{telephonenumber=$_.othertelephone}
    } else
    Write-Output "$($_.samaccountname) phonenumber is blank"
    If ($_.EmployeeID -ne "")
    Set-QADUser $_.SamAccountName -ObjectAttributes @{EmployeeID=$_.EmployeeID}
    }else
    Write-Output "$($_.samaccountname) EmployeeID field is blank"
    If ($_.Preferredlanguage -ne "")
    Set-QADUser $_.SamAccountName -ObjectAttributes @{Preferredlanguage=$_.preferredlanguage}
    } else
    Write-Output "$($_.samaccountname) PreferredLanguage field is blank"

  • JMS Queue User

    Hi,
    I am trying to configure an IDOC -> PI -> JMS (Party for JMS) and also JMS -> PI -> IDOC scenario.
    We will be installing certificates while communicating between JMS and PI.
    While configuring JMS sender/ receiver channel, there is a section to enter JMS Queue User and Password
    Now since we are using certificates what should I mention in the the above section (user)? Someone told me that I should be using the Certificate Name in the JMS Queue User section. Is it correct? Or should I ask for a specific user-name and password.
    Thank you,
    Pankaj.

    Hi,
    Actually in present landscape, the client-system is communicating with external system using JMS (a JAVA application is used instead of PI) and they are using Digital certificates. Now when PI will replace the JAVA application, they are going to replicate the same setting in PI (certificates and others).
    Hence, when I asked for JMS Queue User and Password, the client team member mentioned to use the digital certificate name.
    SonicMQ and Weblogic is used.
    Thank you,
    Pankaj.

  • User Properties - Missing ZENworks tab

    I am very new to Novell environments and am trying my best to follow directions, KB articles, support forum suggestions, etc... Perhaps this is a problem with our installation procedures, but I have been unable to locate the cause/fix for this problem to date.
    We are running a Novell OES, NetWare 6.5, version 5.70.07 server. We also have C1 installed on the server, v 1.3.6h.
    When I view the properties page for a user under NDS>TREE>CONTEXT, I am expecting to see a ZENworks tab with a Launcher Configuration page, but it's not there. I have installed ZENworks Desktop Management v7 SP1 Release 2, and the associated Desktop Management Services. I have extended the schema. But I still don't see this tab in the User Properties window.
    I can only assume that I have missed a step somewhere, or have not configured something properly, but don't know where to begin researching this issue. If someone could just point me in the right direction, I would be more than happy to do the research on my own.
    I should also note that I have registered for a Novell course 3080 so I can be brought up to speed on the basics of NetWare 6.5 and OES, but it doesn't start until next week. This missing tab is somewhat of a time-sensitive matter, so any help would be greatly appreciated. Thank you!

    Most Likely you need to download and install the latest ZDM Plugins for
    ZCM on your local copy of C1.
    On 1/29/2010 2:46 PM, libby steven wrote:
    >
    > I am very new to Novell environments and am trying my best to follow
    > directions, KB articles, support forum suggestions, etc... Perhaps this
    > is a problem with our installation procedures, but I have been unable to
    > locate the cause/fix for this problem to date.
    > We are running a Novell OES, NetWare 6.5, version 5.70.07 server. We
    > also have C1 installed on the server, v 1.3.6h.
    > When I view the properties page for a user under NDS>TREE>CONTEXT, I am
    > expecting to see a ZENworks tab with a Launcher Configuration page, but
    > it's not there. I have installed ZENworks Desktop Management v7 SP1
    > Release 2, and the associated Desktop Management Services. I have
    > extended the schema. But I still don't see this tab in the User
    > Properties window.
    > I can only assume that I have missed a step somewhere, or have not
    > configured something properly, but don't know where to begin researching
    > this issue. If someone could just point me in the right direction, I
    > would be more than happy to do the research on my own.
    > I should also note that I have registered for a Novell course 3080 so I
    > can be brought up to speed on the basics of NetWare 6.5 and OES, but it
    > doesn't start until next week. This missing tab is somewhat of a
    > time-sensitive matter, so any help would be greatly appreciated. Thank
    > you!
    >
    >

  • User Properties

    Is there a way to change user properties assigned to nodes during runtime. For example, I have a user property 'Tooltip' assigned to few nodes and I display it using a UI element. I want to change this property based on selection of the options. Is this possible using a rule (CX or otherwise)? Thanks.

    Biju --
    Endorsing Jason's suggestion...a dynamic User String Property is definitely the way to go here. Your CX will initialize, for example, UserStr01 to be the "Tooltip" User Property value on each node that has that Property. Your CX will also be responsible for managing how UserStr01 should change as the configuration changes. You may then use UserStr01 as the 'Rollover Text Source' in the UI Content Template that's being used to display your Options.
    Eogan

  • BC and Field User Properties

    Hi,
    I want to learn more about various Siebel BC and Field User poperties.
    Can anybody guide from where can I get the details for the same. Any specific documents or anything.
    Thanks :-)

    Hi,
    In the ToolsDevRef pdf you can see the user properties for the following sections:
    About User Properties” on page 79
    *“About Setting Numbered Instances of a User Property” on page 80*
    *“Applet User Properties” on page 80*
    *“Business Component User Properties” on page 98*
    *“Business Service User Properties” on page 189*
    *“Control User Properties” on page 190*
    *“Field User Properties” on page 192*
    *“Integration Component User Properties” on page 202*
    *“Integration Component Field User Properties” on page 204*
    *“List Column User Properties” on page 205*
    Regards,
    Joseph

  • Powershell export User properties and policy settings

    is there a Powershell script "out-there" that export and import all the user properties from the User Profile service Application - including their individual placement on the various sections (contact, basic, details etc), and also including their
    policy settings (only me /everyone/replicate settings) - basic all the settings - and if the AD mapping is there as weel it would be nice...
    So I can export from environment A and then import them to environment B... ?

    Did you try this blog:
    POWERSHELL TO EXPORT / QUERY ALL USER PROFILE PROPERTIES AND AD MAPPINGS
    http://www.sharepointfix.com/2012/01/powershell-script-to-print-user-profile.html
    also
    SharePoint 2010: Updating User Profile Properties with PowerShell
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

  • Exposing User properties in remote portlet?

    I am somewhat familiar in firing methods and such with the EDK's.  But exposing some of the user meta data (i.e. Email, Title, etc) is proving to be more difficult.  Any help in the right direction?
    vr, Rich

    Judging by the fact that you want Email, Title etc, I'd say you want User Info settings, not user properties (the former are user settings while the latter are objects themselves associated with the user).
    In VB:
    DimptContextAsPlumtree.Remote.Portlet.IPortletContextDimptRequestAsPlumtree.Remote.Portlet.IPortletRequestptContext= Plumtree.Remote.Portlet.PortletContextFactory.CreatePortletContext(Request, Response)ptRequest= ptContext.GetRequest()DimvalueAsStringvalue= ptRequest.GetSettingValue(Plumtree.Remote.Portlet.SettingType.UserInfo, "Title")
    Make sure that user info settings you are interested in are selected in the User Information section for your web service and note their mapped name in the User Profile Manager.
    Ruslan.

  • Adding attributes to ADUC user properties

    Hi,
    I want an extra field to appear in the user properties box for ADUC.  I know I have to do this in ADSI edit, but after trawling through a few articles I am still non the wiser what needs adding where and how :-S
    I would like to add an extra field in the users Address tab that would indicate which floor they work on.  Below is an example of where I would like this field adding.
    Any advice on how this can be added would be gratefully received!

    I don't want to bee offending, but if you don't understand how, don't touch it.
    Consider adding the info in one of the existing fields/attributes. you could for example include the floor number in the address field.
    You can see all attributes and their values by choosing view - advanced features in ADUC. This will add a tab attribute editor. (not it does not work when you searched for an account). There are even 'ExtensionAttributes' which allow you to store additional
    info without changing he schema.
    If you wan to add  a real custom property, you need to extend the AD schema. doing this is not something you can do and undo at will, so trial and error is out of the question! http://technet.microsoft.com/en-us/library/cc759633(v=ws.10).aspx
    Aside from the challenge of selecting an appropriate attribute, you also need some configuration to make ADUC display it. the way you want it (a nice textfield on an exsiting tab) will involve some coding effort
    http://msdn.microsoft.com/en-us/library/aa814681(v=vs.85).aspx
    MCP/MCSA/MCTS/MCITP

  • Filer using user properties in DIAdem

    I added to my channels some user properties which values clarify the context of different channels, saving all channels in different TDM files. Working woth data loaded in the Data Portal or selecting dat for loading I would like to view / compare /process data with specific values of user properties. How can I filter my channels using User Properties content ?
    Thanks
    Luca
    Solved!
    Go to Solution.

    Hello Luca,
    This should be pretty easy.
    In the NAVIGATOR, selected the"Advanced Search" button (little blue icon on the top right side of the NAVIGATOR Window).
    Build the query based on your customer property (in your case a Channel property) in the query builder. If you have numeric properties, you can use ">" "<" ">=" "<=" and "=" for your queries. Queries can be connected with AND or OR, it should be pretty straight forward from there.
    Let us know if you have any additional questions. If you do, it always helps to share your version of DIAdem and a few data files if you can.
        Otmar
    Otmar D. Foehner
    Business Development Manager
    DIAdem and Test Data Management
    National Instruments
    Austin, TX - USA
    "For an optimist the glass is half full, for a pessimist it's half empty, and for an engineer is twice bigger than necessary."

Maybe you are looking for

  • Can't update credit card information

    I have updated the credit card information for our cloud account multiple times over the last few days.  I have been on hold for almost 2 hours.  Chat is unavailable.  I have tried all the instructions, including clearing the cache and using differen

  • Function for getting password with *** from the cmd?

    Hey all, i am trying to find a function to get a password from the user using the command prompt in a hidden way... e.g. i want the function to take the password from the user but simultaneously apear * on the screen..? is any function doing that ? t

  • Multiple Language BW...

    Hello al, We are on Bw3.1C with AIX and Oracle. In few months we will be on BI 7.0. My question is that does BW support multiple language like R/3. Currently we have only English and Japneese. We had to replace DE with JA when we were on BW 2.0. So w

  • Has anyone gotten to the prepaid option 2 work on purpose??

    getting one soon dont want a 2yr. & u can just use a debit card?

  • Trigger can't retrieve user

    hello, I'm trying to retrieve the current user from dual to populate it in a created_by column at my new table. Unfortunatelly the value I get in the trigger is "ANONYMOUS". When I execute the same statement at the SQL command line I get the correct