User conversion tag

Hi people,
I have following mapping rule in mappings file:
in-chan=*;out-chan=tcp_intranet;convert $C$:T$EYes,Channel=tcp_keeper
The $T is used to find user conversion tag, but it seem that it not working, at the same time it does work with mailDomainConversionTag.
I think user conversion tags don't get applied on "relaying" systems but instead get applied only on the final, mailhost system.
May you please tell me why it's not working in Front-End servers as it's working with the domain conversion tag?
Regards

Reply from Kristin Hubner:
In addition to what [email protected] wrote:
(manually forwarding from:
http://swforum.sun.com/jive/thread.jspa?forumID=15&threadID=21487)
Hi people,
I have following mapping rule in mappings file:
in-chan=*;out-chan=tcp_intranet;convert $C$:T$EYes,Channel=tcp_keeper
The $T is used to find user conversion tag,
Not exactly. $:T is used to test the $T flag, which is set by the
presence of conversion tags.
but it seem that it not
working, at the same time it does work with mailDomainConversionTag.
If it isn't working it is because the conversion tag for the user isn't
being read.
I think user conversion tags don't get applied on "relaying" systems
but instead get applied only on the final, mailhost system.
Correct. User conversion tags only apply if the mailhosts match. They're
not considered otherwise.Note that there is an RFE (# 4906355) to consider changing this (make user
conversion tags apply even on front end/relaying systems). The customer might
want to get themselves added to the interest list, as there's no customer
attached to it currently; having a real customer interested in this might
increase the chances we'll get around to doing it.
Regards,
Kristin
A special exception is made for domain conversion tags in this case so that
they can be applied.
May you please tell me why it's not working in Front-End servers as
it's working with the domain conversion tag?
See above.
                    Ned

Similar Messages

  • New Conversations Tag - can I remove it?

    I've just noticed the Conversations tag in my BT Yahoo mail. (Yes, I know that I'm always moaning about it, that I've had excellent advice here to change my email 'provider', but I'm so busy!!)
    I saw that there was an entry in it, which I declined - I should of course have ignored it as I have now probably confirmed to someone that my email address is genuine.
    I went to Messenger options and clicked on the tab that said "only allow conversations from my contacts". Hours later, I now have had five more conversation requests from non-contacts.
    (1) Is it me or is it yet another BTYAhoo system shambles?
    (2) Is this Windows Messenger or MSN Messenger? I hadn't installed either - or so I thought. I was one of only a handful of people in the UK who hadn't seen "The Sound of Music" film and neither have I any interest in Facebook, Twitter etc etc.
    Yet the blasted things seem to have infiltrated my PC.
    Any advice please? 
    Solved!
    Go to Solution.

    I am pleased its sorted
    They don`t want to make it too easy for you to opt out
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

  • SharePoint 2010 Enterprise Search for User Profile tags and Notes

    Hi,
    Actually my requirement is, "Sharepoint Enterprise Search for User Profile tags and Notes".
    I would like to use the Tags and Notes in enterprise search.
    Is it possible?
    Thanks & Regards
    Poomani Sankaran

    Check if this helps
    http://blogs.msdn.com/b/spses/archive/2011/02/05/social-computing-part-3-activity-feeds-social-ratings-tags-and-notes.aspx
    If this helped you resolve your issue, please mark it Answered. You can reach me through http://itfreesupport.com/

  • [All Platforms][Your Music] Make it possible to tag and filter "My Music" with user-defined tags

    It would be very nice and convenient to be able to tag and filter "My Music" (playlists, songs, albums and artists) with user-defined tags. I'm sure quite a few users would like to classify their music by genre. Myself, I would like to tag my albums, assigning them to different virtual collections.

    Updated: 2015-07-23Hello and thanks for the feedback!
    A similar idea has also been suggested here:
    https://community.spotify.com/t5/Live-Ideas/Your-Music-Grouping-or-Sorting-by-Tags/idi-p/744947
    Add your kudos and comments there please! ;)

  • Adding a "custom" color to a user defined tag ?

    How can I add my own user defined "color" to a new tag I create in the Finder ?
    Thx

    Hi a_mumford,
    Using tags is a great way to stay organized. I use this feature quite a bit. I've linked to an article which explains how to use and edit them:
    OS X Yosemite: Use tags to organize files
    Edit tags
    In the Finder, choose Finder > Preferences, click Tags, then do any of the following: 
    See a tag in the Finder sidebar: Select the blue checkbox to the right of the tag. 
    Change a tag color: Click the color next to the tag , then choose a new color. 
    Change a tag name: Click the tag, click the tag’s name, then enter a new name.
    Create a new tag: Click Add . 
    Delete a tag: Select the tag, then click Remove . 
    Add a tag to the shortcut menu: Select the tag in the list, then drag it over the tag you want to replace in the favorites section at the bottom of the window. There can be up to seven tags in the shortcut menu that appears when you Control-click a file. 
    Remove a tag from the shortcut menu: Drag the tag out of the Favorite Tags section until you see a puff of smoke.
    Thank you for contributing to Apple Support Communities.
    Take care,
    Bobby_D

  • User-defined tagged structures in Documents

    Hi, here's my situation. I'm trying to build an interface for users to create, edit, and view information that is marked up with two types of tags. The first type is structural and function pretty much identically to XML tags. Not a problem, really, if that's all I wanted. However, the second type of tags are structure-independent (i.e. can start and end anywhere) and thus don't work as part of an XML document.
    Here's an example:
    <Start>
    Starting here...
    <1>Hey, this is <A id = "blue">pretty </1>
    <2>cool</A id = "blue"></2>
    </Start>
    the "Start" and "1" tags are the structure tags and the "A" is what I call a floating tag. My plan is to have the user perform various operations on both sets of tags, such as adding of deleting them, moving the start or end, swapping between various stored content, etc.
    Anyway, I've been banging my head against the wall trying to integrate this with the StyledDocument interface, hopefully by slightly extended the DefaultStyledDocument class. I oculd run the whole thing with Positions and insertString() and delete()'s, but I feel as if there should be something that I can hook in with that let's me do this.
    I've been hoping that the Element interface would be my savior here, but that seems to be getting further and further from happening the more I screw around with it.
    Anyway, if you've gotten this far, thanks for your time and interest. Here are my questions:
    1) Is there any way to implement the Element interface and then insert my classes into a DefaultStyledDocument?
    2) Is there anyway of using the createBranchElement and createLeafElement from AbstractDocument to insert Elements into an already filled Document?
    3) When using the ElementSpec methods of inserting Elements, is there any way of getting the created Elements a la the createXXXElement methods from AbstractElement?
    4) After I get an Element in a Document, is there any simple way of getting it a reference to it based on position in the Document? Also, is there a programmatic way of removing it from the Document?
    5) Am I totally on the wrong track here? Is there some really easy way of pulling this off that I'm just overlooking?
    Again, thanks for your time,
    Steve Erdman

    Hi Jack,
    Here they hav explained clearly pls go through the link below USER DEFINED INCLUDE STRUCTURES
    http://www.michaelmanagement.com/forum/uploads/20070621_164819_OSS_335065_-_Us.pdf
    Datasourceenhancement
    Below are the steps to enhace a data source.
    log on to r/3
    1..R/3sys, enter RSA7, SELECT UR DS(0FI_GL_4), SELECT DISPLAY ENTRIES,
    2.Select Delta Update and Execute.
    3.now u can see the records if at all they r available.
    4.Now Check The Data in u2018smq1u2019 in R/3 and Execute.
    5.Select ur Data source now.
    6.Display Entries.
    if at all any entries are there it display in the form of queues
    if u find any where data , it must be scheduled to ur data target using Info packages.
    Now let us see How to Enhance the Data source.
    7.R/3, Enter RSA6., select ur Data source, then Click on enhance extract structure.
    8. Now it populates a structure name. Like this u201CZADTFIGL_4u201D. Go with continue
    9.Give the Description.
    10. Under Component Give the Description of the fields u want to add Starting with ZZ
    11. Under component type give the concerned Technical names OF RELEVANT FIELDS in r/3. AND u201CENTERu201D
    12. SAVE
    13.Give The Package go with save, request no go with continue.(or create a new request)
    14. Now check and activate.
    15. go back from current screen select ds and go with change. Message continue, Request no continue
    16.now find ur newly added fields in ds, deselect hide flag and field only flag(check box)
    17. So far u have added field to ur DS, now u need to populate Data to UR Newly Added fields by writing user exit.
    Enter CMOD in R/3, give the project name , go with Create.
    18. Give the Description and Save
    log on to bw , rsa1-source systems, find ur ds replicate ds
    Now Devolope Required fields in Bw
    Add to ur communication structure,
    apply the Transfer rules ,
    Add to ur Target
    Recreate Update rules.
    Schedule the data..
    Regards,
    Marasa.

  • Issue with Data Extraction from OAGIS 9 User Area Tags ...

    We are working on displaying the data coming from OAGIS9 into Excel sheet. We created a custom Schema for the Excel sheet and are able to display all the data in OAGIS9 except for the ones in UserArea. We are facing issue in extracting data from tags present in UserArea of OAGIS 9 schema and transforming it into our Custom built schema.
    Can you please suggest us some way in which we extract data from userArea?
    Thanks in advance ~

    Here is the example with instructions, we have just done it and working
    1.You need to have the custom schema that is coming with in the <UserArea>/<any>
    For example this custom schema is like this one shown below and you are using this CutomerPartyMaster of OAGIS
    <?xml version="1.0" encoding="utf-8"?>
    <xs:schema xmlns="http://www.userarea.com/mdm/oagisextensions" elementFormDefault="qualified" targetNamespace="http://www.userarea.com/mdm/oagisextensions" xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:element name="Customer" type="CustomerType" />
    <xs:complexType name="CustomerType">
    <xs:sequence>
    <xs:element minOccurs="0" name="Gender" type="xs:string" />
    <xs:element minOccurs="0" name="DOB" type="xs:date" />
    <xs:element minOccurs="0" name="SSN" type="xs:string" />
    <xs:element minOccurs="0" name="PAN" type="xs:string" />
    </xs:sequence>
    </xs:complexType>
    </xs:schema>
    and the Input data snippet will be like this inside CustomerPartyMaster
    <tnsa:UserArea>
         <tnso:Customer>
              <tnso:Gender>string</tnso:Gender>
              <tnso:DOB>1980-10-13</tnso:DOB>
              <tnso:SSN>string</tnso:SSN>
              <tnso:PAN>string</tnso:PAN>
         </tnso:Customer>
    </tnsa:UserArea>
    where xmlns:tnsa="http://www.openapplications.org/oagis/9" and xmlns:tnso="http://www.userarea.com/mdm/oagisextensions"
    Lets assume your Target Schema is like this where only DOB is coming from userarea
    <CreateRequest>
    <record>
    <firstname></firstname>
    <lastname></lastname>
    <dob></dob>
    </record>
    </CreateRequest>
    2.declare the name space of incoming userarea custom schema in your xsl file like this
    xmlns:nsext="http://www.userarea.com/mdm/oagisextensions"
    3.here is xsl code that copies element from CustomerPartyMaster/UserArea
    <xsl:template match="/">
    <imp1:CreateRequest>
    <xsl:for-each select="/inp1:ESBProcessCustomerRequest/body/ns4:ProcessCustomerPartyMaster/ns4:DataArea/ns4:CustomerPartyMaster">
         <imp1:record>
    <xsl:for-each select="ns4:UserArea/nsext:Customer/nsext:DOB">
              <imp1:dob>
              <xsl:value-of select="."/>
              </imp1:dob>
         <imp1:record>
    </xsl:for-each>     
    where imp1 is target schema namespace
         ns4 is OAGIS standard namespace.
    *****************

  • PDA Menu Selection (user) Item Tag returns Item Name

    Using LV Mobile 8.6.1 with iPAQ on Windows Mobile 5.0 (5.1.1702) I have a custom run-time menu.  The Item Tags are shortened versions of the full Item Name.  The event structure provides the Item Tag, but the actual string value returned is the full Item Name.  The Item Path returns the complete hierarchy of the menu selection, but also contains the Item Name.
    Michael Munroe, ABCDEF
    Certified LabVIEW Developer, MCP
    Find and fix bad VI Properties with Property Inspector

    Hi David,
    My PDA application has a custom run-time menu of 20 items.  Some menu items are up to 4 words in length, so I used unique single-word names for the item tag to differentiate the commands.  Debugging my code, only the single word menu items executed correctly.   All others ended up in the default case.
    This has to be a bug in LabView, that the event structure returns the Item Name in place of the cluster element labeled Item Tag.  The same problem exists in the Get Menu Selection.vi.
    The work around was to change all the case elements to match the item name and not the tag.  The item tag then is never used.
    Michael Munroe, ABCDEF
    Certified LabVIEW Developer, MCP
    Find and fix bad VI Properties with Property Inspector

  • DirectPropertyManagerBean remote fatal exception from user management um tags.

    Hi
    I am wondering if any one has experienced the same problems as us or if you have
    some advice. Recently we put our web lgoic commerce server 3.5 running on weblogic
    server 6.0 and MS SQL server 7 sp 3 into production.
    Now we receive remote exceptions from the DirectPropertyManagerBean from our login
    jsp pages and <um> tags intermittently which forces us to reboot the application
    server a few times a week. This prevents any of our customers from logging into
    our site once these exceptions start being thrown.
    Our exception stack is Servlet failed with Exception> java.lang.NullPointerException:
    at java.lang.String.<init>(String.java:193) at jsp_compiled._commerce._user._mydm._jspService(_mydm.java:282)
    at weblogic.servlet.jsp.JspBase.service(JspBase.java:27) at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:213)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:1265)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:1631)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137) at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    ####<2002/03/08 06:07:29> <Info> <EJB> <***> <wlcsServer> <ExecuteThread: '9'
    for queue: 'default'> <angusg> <2269:e645911858eef116> <010051> <EJB Exception
    during invocation from home: com.beasys.commerce.foundation.property.DirectPropertyManagerBeanHomeImpl@9f4365
    threw exception: java.rmi.RemoteException: EJB Exception:; nested exception is:
    java.rmi.RemoteException: Error checking for explicit property in profileType:
    Customer Profile> java.rmi.RemoteException: EJB Exception:; nested exception is:
    java.rmi.RemoteException: Error checking for explicit property in profileType:
    Customer Profile java.rmi.RemoteException: Error checking for explicit property
    in profileType: Customer Profile at com.beasys.commerce.foundation.property.DirectPropertyManagerBean.getExplicitProperty(DirectPropertyManagerBean.java:610)
    at com.beasys.commerce.foundation.property.DirectPropertyManagerBeanImpl.getExplicitProperty(DirectPropertyManagerBeanImpl.java:190)
    at com.beasys.commerce.foundation.property.DirectPropertyManagerBean.getProperty(DirectPropertyManagerBean.java:700)
    at com.beasys.commerce.foundation.property.DirectPropertyManagerBean.getProperty(DirectPropertyManagerBean.java:429)
    at com.beasys.commerce.foundation.property.DirectPropertyManagerBeanImpl.getProperty(DirectPropertyManagerBeanImpl.java:210)
    at com.beasys.commerce.foundation.property.DirectPropertyManagerBeanEOImpl.getProperty(DirectPropertyManagerBeanEOImpl.java:206)
    at com.beasys.commerce.foundation.property.DirectPropertyManagerBeanEOImpl_WLSkel.invoke(DirectPropertyManagerBeanEOImpl_WLSkel.java:160)
    at weblogic.rmi.internal.BasicServerAdapter.invoke(BasicServerAdapter.java:373)
    at weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java:128)
    at weblogic.rmi.internal.BasicServerAdapter.invoke(BasicServerAdapter.java:237)
    at weblogic.rmi.internal.BasicRequestHandler.handleRequest(BasicRequestHandler.java:118)
    at weblogic.rmi.internal.BasicRequestDispatcher.dispatch(BasicRequestDispatcher.java:115)
    at weblogic.rmi.internal.ServerRequest.sendOneWayRaw(ServerRequest.java:88) at
    weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:108) at weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java:247)
    at weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java:225)
    at com.beasys.commerce.foundation.property.DirectPropertyManagerBeanEOImpl_WLStub.getProperty(DirectPropertyManagerBeanEOImpl_WLStub.java:219)
    at com.beasys.commerce.user.jsp.beans.CachedProfileBean.getProperty(CachedProfileBean.java:128)
    at com.beasys.commerce.user.jsp.beans.CachedProfileBean.getProperty(CachedProfileBean.java:165)
    at com.beasys.commerce.user.jsp.tags.GetPropertyTag.getProperty(GetPropertyTag.java:161)
    at com.beasys.commerce.user.jsp.tags.GetPropertyTag.doStartTag(GetPropertyTag.java:107)
    at jsp_compiled._commerce._user._mydm._jspService(_mydm.java:268) at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:213)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:1265)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:1631)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137) at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120).
    Where should I be looking to address this issue? In the database or application
    server?
    Thanx João

    Hi
    I am wondering if any one has experienced the same problems as us or if you have
    some advice. Recently we put our web lgoic commerce server 3.5 running on weblogic
    server 6.0 and MS SQL server 7 sp 3 into production.
    Now we receive remote exceptions from the DirectPropertyManagerBean from our login
    jsp pages and <um> tags intermittently which forces us to reboot the application
    server a few times a week. This prevents any of our customers from logging into
    our site once these exceptions start being thrown.
    Our exception stack is Servlet failed with Exception> java.lang.NullPointerException:
    at java.lang.String.<init>(String.java:193) at jsp_compiled._commerce._user._mydm._jspService(_mydm.java:282)
    at weblogic.servlet.jsp.JspBase.service(JspBase.java:27) at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:213)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:1265)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:1631)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137) at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    ####<2002/03/08 06:07:29> <Info> <EJB> <***> <wlcsServer> <ExecuteThread: '9'
    for queue: 'default'> <angusg> <2269:e645911858eef116> <010051> <EJB Exception
    during invocation from home: com.beasys.commerce.foundation.property.DirectPropertyManagerBeanHomeImpl@9f4365
    threw exception: java.rmi.RemoteException: EJB Exception:; nested exception is:
    java.rmi.RemoteException: Error checking for explicit property in profileType:
    Customer Profile> java.rmi.RemoteException: EJB Exception:; nested exception is:
    java.rmi.RemoteException: Error checking for explicit property in profileType:
    Customer Profile java.rmi.RemoteException: Error checking for explicit property
    in profileType: Customer Profile at com.beasys.commerce.foundation.property.DirectPropertyManagerBean.getExplicitProperty(DirectPropertyManagerBean.java:610)
    at com.beasys.commerce.foundation.property.DirectPropertyManagerBeanImpl.getExplicitProperty(DirectPropertyManagerBeanImpl.java:190)
    at com.beasys.commerce.foundation.property.DirectPropertyManagerBean.getProperty(DirectPropertyManagerBean.java:700)
    at com.beasys.commerce.foundation.property.DirectPropertyManagerBean.getProperty(DirectPropertyManagerBean.java:429)
    at com.beasys.commerce.foundation.property.DirectPropertyManagerBeanImpl.getProperty(DirectPropertyManagerBeanImpl.java:210)
    at com.beasys.commerce.foundation.property.DirectPropertyManagerBeanEOImpl.getProperty(DirectPropertyManagerBeanEOImpl.java:206)
    at com.beasys.commerce.foundation.property.DirectPropertyManagerBeanEOImpl_WLSkel.invoke(DirectPropertyManagerBeanEOImpl_WLSkel.java:160)
    at weblogic.rmi.internal.BasicServerAdapter.invoke(BasicServerAdapter.java:373)
    at weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java:128)
    at weblogic.rmi.internal.BasicServerAdapter.invoke(BasicServerAdapter.java:237)
    at weblogic.rmi.internal.BasicRequestHandler.handleRequest(BasicRequestHandler.java:118)
    at weblogic.rmi.internal.BasicRequestDispatcher.dispatch(BasicRequestDispatcher.java:115)
    at weblogic.rmi.internal.ServerRequest.sendOneWayRaw(ServerRequest.java:88) at
    weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:108) at weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java:247)
    at weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java:225)
    at com.beasys.commerce.foundation.property.DirectPropertyManagerBeanEOImpl_WLStub.getProperty(DirectPropertyManagerBeanEOImpl_WLStub.java:219)
    at com.beasys.commerce.user.jsp.beans.CachedProfileBean.getProperty(CachedProfileBean.java:128)
    at com.beasys.commerce.user.jsp.beans.CachedProfileBean.getProperty(CachedProfileBean.java:165)
    at com.beasys.commerce.user.jsp.tags.GetPropertyTag.getProperty(GetPropertyTag.java:161)
    at com.beasys.commerce.user.jsp.tags.GetPropertyTag.doStartTag(GetPropertyTag.java:107)
    at jsp_compiled._commerce._user._mydm._jspService(_mydm.java:268) at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:213)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:1265)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:1631)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137) at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120).
    Where should I be looking to address this issue? In the database or application
    server?
    Thanx João

  • Faces Integration With Facebook User Tags

    Does anyone understand how (3.1) Faces work with "downloaded"* facebook photos?
    Faces seem to behave a bit strangely images on Facebook (at least on images "downloaded" from Facebook). Edits to Faces in Aperture seem to be separate from those on Facebook. Any new faces added in Aperture are initially pushed to Facebook, and tagged users on downloaded Facebook images are initially added as Faces in Aperture. But after that, faces and tagged users seem to be independent. A tag can be removed on Facebook, without affecting its presence in Aperture, and a Face can be deleted from the corresponding image in Aperture without affecting it's presence in Facebook.
    Worse still if you add a or edit a Face in Aperture, and then sync, once the Face is correctly mapped to a user tag on Facebook, it is sometimes "lost" in the Aperture version (it shows as "unnamed"). Those that are not lost sometimes get "disconnected" from the Aperture Face and are replaced by the Facebook user (indicated by a facebook logo). And sometimes (there's no apparent pattern here that I can discern) it works, and the Aperture user shows in Aperture, while the Facebook user is tagged on Facebook. (And yes, in all cases the users have allowed tagging, they have not removed their tag from the image in question, and the e-mails match and are visible to me.)
    (There are other quirks, for example if a user has removed a tag from an image, Facebook prevents retagging, but Aperture provides no feedback about this; but these are minor and unavoidable.)
    Does anyone understand the underlying model here? Is it just buggy? And is there a way to "reset" so that Faces/tags the "downloaded" image and the Facebook image are again in sync? (You'd think, that of all things, "Faces" is one thing Facebook could get right!)
    *I haven't experimented with this in fully synced (as opposed to "downloaded") Facebook photos, but I do notice that some Faces in Aperture "switch" after a sync from the local Aperture Face to the Facebook user (the logo appears and the link to the Aperture Faces list vanishes), though it seems this process can be reversed.

    Hi Sagar,
    To resolve this issue, do the following:
    1. Click on System Configuration Tab at the top.
    2. Click Mobile & Social on the Left Hand Side.
    3. Click Mobile & Social Settings.
    4. On the right hand side, you will see proxy server settings. You can remove the www-proxy.us.oracle.com from the proxy hostname and 80 from the port field.
    Let me know if you still see issues.
    Regards
    Parag

  • JMS Adapter module content conversion

    Hi,
    I'm developing a module for the jms adapter(sender). My requirement is to parse the XI message(text) using some XML parsing api and do some formatting, logic etc and to make the jms adapter create a xml file with the processed information. Jms File Content Conversion does not suit our requirement and thats the reason we are trying this option.
    My understanding is: Access the  payload in the "process" method of the local ejb, apply XML parsing using JDOM etc, make a xml which should be the output of the jms adapter. This xml will be the xml with my user defined tag elements after content conversion. Can i form this xml and assign to the inputModuleData? Will the jms adapter use this string to create the xml and send to IS? Are there any other parameters to be set or processes to be done?
    Also in which sequence should I put my adapter module in communication channel.
    ================================================
    My code snippet:
    public ModuleData process(ModuleContext moduleContext, ModuleData inputModuleData)
            throws ModuleException
              Object obj = null; // Handler to get Principle data
              Message msg = null; // Handler to get Message object
            try
                   obj = inputModuleData.getPrincipalData();
                   msg = (Message)obj;
                   AuditMessageKey amk = new AuditMessageKey(msg.getMessageId(),AuditDirection.INBOUND);
                   Audit.addAuditLogEntry(amk, AuditLogStatus.SUCCESS,"sample: Inside sample Module---efore reading payload");
                   try
                        XMLPayload xmlpayload = msg.getDocument();
                        String messageStr = xmlpayload.getText();
                        String inputStr = null;
                        String tags[] = new String[2];
                        String values[] = new String[2];
                        Audit.addAuditLogEntry(amk, AuditLogStatus.SUCCESS,"sample: Inside sample Module---before content conversion");
    String tagvalue1 = messageStr.substring(messageStr.indexOf("BEGIN+"), messageStr.indexOf("'");
    String tagvalue2 = messageStr.substring(messageStr.indexOf("'"), messageStr.lastindexOf("ENDING");
                             tags[0] = "tag1";
                             tags[1] = "tag2";
                             values[0] = tagvalue1 ;
                             values[1] = tagvalue2 ;
                             Audit.addAuditLogEntry(amk, AuditLogStatus.SUCCESS,"sample: Inside sample Module---after content conversion");
                             Document xmldoc = null;
                             DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
                             DocumentBuilder builder = factory.newDocumentBuilder();
                             DOMImplementation impl = builder.getDOMImplementation();
                             org.w3c.dom.Element e = null;
                             Node n = null;
                             xmldoc = impl.createDocument(null, "MT940", null);
                             org.w3c.dom.Element root = xmldoc.getDocumentElement();
                             for(int i = 0; i < tags.length; i++)
                                  e = xmldoc.createElementNS(null, tags<i>);
                                  n = xmldoc.createTextNode(values<i>);
                                  e.appendChild(n);
                                  root.appendChild(e);
                             Audit.addAuditLogEntry(amk, AuditLogStatus.SUCCESS,"sample: Inside sample Module---before dom creation");
                             DOMSource domSource = new DOMSource(xmldoc);
                             ByteArrayOutputStream myBytes = new ByteArrayOutputStream();
                             Result dest = new StreamResult(myBytes);                         
                             TransformerFactory tf = TransformerFactory.newInstance();
                             Transformer serializer = tf.newTransformer();
                             serializer.setOutputProperty("indent", "yes");
                             serializer.transform(domSource, dest);
                             Audit.addAuditLogEntry(amk, AuditLogStatus.SUCCESS,"sample: Inside sample Module---before setting principal data");
                             byte[] docContent = myBytes.toByteArray();
                             if (docContent != null) {
                             xmlpayload.setContent(docContent);
                             inputModuleData.setPrincipalData(msg);
                             Audit.addAuditLogEntry(amk, AuditLogStatus.SUCCESS,"sample: Inside sample Module---after setting principal data");
                   catch(ArrayIndexOutOfBoundsException e)
                        e.printStackTrace();
                   catch(StringIndexOutOfBoundsException e)
                        e.printStackTrace();
                   catch(TransformerException e)
                        e.printStackTrace();
                   catch(Exception e)
                        e.printStackTrace();
            catch(Exception e)
                ModuleException me = new ModuleException(e);
                throw me;
            return inputModuleData;

    This is for sender channel. The doubt in adapter module is in the process block how will I get the main data being read by the jms adapter from the text file.As I am reading text file from websphere MQ, the content of the text file can be obtained thru xmlpayload.getText() or is there any other way.
    obj = inputModuleData.getPrincipalData();
    msg = (Message)obj;
    XMLPayload xmlpayload = msg.getDocument();
    String messageStr = xmlpayload.getText();
    At present I am using my adapter module before call sap adapter, but before sap adapter there are two other modules(toBinary and to Xmb), so shld I place it before both or after both the modules.
    Thanx in advance
    Rachit

  • ISE 1.2 & AD & Meraki - Per User Group Policy ?

    I am working on a PoC for a deployment in an MDU. We are using Meraki switches and access points. There are 250 units in the building, each unit will have it's own subnet. The goal is to have the tenant be able to connect to a common building SSID and be placed into their assigned VLAN. There will also be physical ports in each unit that will need to do the same. I am trying to figure out a way to use ISE to authorize on a per user basis and not based on groups of users. On the Meraki system there are group policies that will assign the VLAN for the user as well as any type of layer 7 firewalling and bandwidth control. So there will be 250 group policies, one for each unit. There is a deployment guide that shows how to setup ISE for use with Meraki and it is great but it assumes that there will be large groups like Employees, Contractors, etc.. that will be used. This is where I'm being tripped up, also... this is my first swing at a NAC deployment so I have a lot to learn.
    1.Can I setup each user in Active Directory to have a tag that ISE can then forward on to Meraki for the group policy? Say it's unit 101 and I have a group policy called 101 in Meraki, Meraki documentation says to use the Airespace-ACL-Name attribute in ISE to indicate the group policy to use. This gives me the ability to place a group into that policy but not an individual. Or would this be better done by creating the users in ISE directly? Omit AD entirely?
    2. Each unit will have devices that will need MAB because they are not 802.1x compatible. I need to do the same as above with them. I would create a separate SSID for these devices but then use the MAC address to authenticate them but will need to authorize them to go into a specific group policy.
    I know this isn't a typical ISE application but I think that this will work really well in the end, just need to iron out these details and get a test system functioning. Any help would be greatly appreciated!!!
    Thanks,
    Nathan

    Please find the Meraki_ISE integration doc. in attachment.
    When VLAN tagging is configured per user, multiple users can be associated to the same SSID, but their traffic is tagged with different VLAN IDs. This configuration is achieved by authenticating wireless devices or users against a customer-premise RADIUS server, which can return RADIUS attributes that convey the VLAN ID that should be assigned to a particular user’s traffic.
    In order to perform per-user VLAN tagging, a RADIUS server must be used with one of the following settings:
    MAC-based access control (no encryption)
    WPA2-Enterprise with 802.1x authentication
    A per-user VLAN tag can be applied in 3 different ways:
    The RADIUS server returns a Tunnel-Private-Group-ID attribute in the Access-Accept message, which specifies the VLAN ID that should be applied to the wireless user. This VLAN ID could override whatever may be configured in the MCC (which could be no VLAN tagging, or a per-SSID VLAN tag). To have this VLAN ID take effect, “RADIUS override” must be set to “RADIUS response can override VLAN tag” under the Configure tab on the Access Control page in the “VLAN setup” section.
    The RADIUS server returns a group policy attribute (e.g., Filter-ID) in the Access-Accept message. The group policy attribute specifies a group policy that should be applied to the wireless user, overriding the policy configured on the SSID itself. If the group policy includes a VLAN ID, the group policy’s VLAN ID will be applied to the user.
    On the Client Details page, a client can be manually assigned a group policy. If the group policy includes a VLAN ID, the group policy’s VLAN ID will be applied to the user. 

  • User detail in custom master page

    Hi All,
    I want to make appear logged in user detail in master page. 
    In SharePoint 2013, User can see "about me" detail in System account appearing at top right corner. 
    I want same user detail to appear in custom master page. I am not sure where we can look for it. 
    I guess we need to copy user detail tag from oslo master page and can paste in our custom master page. 
    But i am not sure where to find this. 
    Any help is much appreciated.
    Thanks..
    Rakesh

    Hi,
    According to your post, my understanding is that you wanted to display user information in the master page.
    We can register SPSWC at the top of the master page to call the user profiles.
    Register SPSWC at the top of the master page:
    <%@ Register Tagprefix="SPSWC" Namespace="Microsoft.SharePoint.Portal.WebControls" Assembly="Microsoft.SharePoint.Portal, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
    Register the propertys below the starting Form tag:
    <SPSWC:ProfilePropertyLoader runat="server"/>
    There are some good articles for your reference.
    http://chayadigital.wordpress.com/2012/03/20/displaying-user-information-on-a-master-page-in-sharepoint-2010/
    http://chrisstahl.wordpress.com/2012/12/21/user-information-in-sharepoint-2010-with-help-of-the-spcwc-control/
    http://blog.bugrapostaci.com/2011/06/22/sharepoint-2010-change-your-display-of-wellcome-name/
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • WebDAV items tags in 9.0.2

    I have found the webDAV TAG management has been implemented in oradav.
    The system automatically reports creationdate, getcontentlength, getlastmodified, getetag, getcontenttype, and the various tags necessary to declare and manage file locking (it works perfectly!).
    It is also possible to register user defined tags, which get stored in the wwdav$prop table.
    Unfortunately, it is not yet possible:
    1. to retrieve (and/or modify) other item properties/tags like the category, the expiration mode/date, the perspectives...
    2. to access user defined item attributes.
    Is there any plan on this?
    Thanks

    yes, we are aware of the limitation and is something we are considering addressing in the future.

  • What is the right TAG for incremental level 1 backup?

    We have a sunday level 0 backup like this:
    run {
    backup as compressed backupset
    filesperset 1
         incremental level 0 database
         tag='LEVEL_0_BACKUP'
         include current controlfile
         plus archivelog delete input;
    SQL 'alter database backup controlfile to trace';
    And Monday to Saturday incremental level 1 backup as this:
    run {
    backup as compressed backupset
         incremental level 1 database
         tag='LEVEL_1_BACKUP'
         include current controlfile
         plus archivelog delete input;
    SQL 'alter database backup controlfile to trace';
    Those scripts existed a while ago. I wonder if level 1 tag should be same as level 0 so they can all combined together?
    Please kindly advice.

    849425 wrote:
    Thanks for all your response.
    What I think is with block change tracking enabled, is that the incremental should roll into the level 0 full backup?
    What makes you think that?  Block change tracking simply allows rman to avoid having to scan every block to see if it needs to be backed up.
    I've never heard of an incremental (level 1) "rolling into" a level 0.
    Recovery starts with restoring the files from a level 0.  Followed by restoring individual blocks from the Level 1.  Followed by applying changes from the archived redo.  Followed by (if necessary) applying changes from the online redo.
    As stated earlier, tags are just user-defined labels.  Use them however seems appropriate -- after fully understanding what they are and what they are not. User-specified tags are not even required. I'd be cautious about changing them in an already defined and running system.

Maybe you are looking for

  • I have an iPod mini and classic and I to load the music library on to my iPod classic

    How do I transfer my music library from my iPod Mini to my iPod Classic. THe control wheel on my mini will not work!

  • Please help me to avoid this Exception.

    I have a JTextField which will accept only non-negative integer. To get the Document roll_doc for the constructor of JTextField I have a class maxLengthText which will make sure that the JTextfield accepts only non-negative integer. I have a problem

  • Issue at PSA Level data

    Hi, I am trying to extract data from the 0CRM_COMPLAINTS_I into BI. I have to enhance this DS with two Z fields. I can clearly see data populated for these Z fields in RSA3 with the enhancement code. When I tried to get the same into BI, the data is

  • A thought about keyword organization

    I don't know how many others have trouble keeping their keyword lists organized but until the developers make it easier to organize existing words into a hierarchy besides drag & drop I came up with a way to deal with new keywords being added, especi

  • HP Photosmart c4780 refusing to NOT print in color.

    Hey guys, first time poster. I generally consider myself to be tech savvy, but I have run into a bit of a problem. I am trying to fix my girlfriend's parent's printer, and it is giving me the most peculiar issue. It is an HP Photosmart C4780, wireles