Trying to get AuthenticationUser from custom tag

Hello, I'm trying to access the authentication username from a custom tag. The code we're using is this:
IPTSession session = (IPTSession)GetEnvironment().GetUserSession();
String authName = session.GetUser().GetAuthenticationUser();
But we get an exception:
com.plumtree.server.marshalers.PTException: -2147024891 - Error in function PTUser.GetAuthenticationUser (): -2147024891 - PLUMTREE authentication in use. AuthUser is user name.
What does this mean? Does anyone know how else to approach this?

Are you trying to get login name or definition of the user present in user repository ?
Check these methods: GetUniqueAuthName() or GetLoginName().

Similar Messages

  • Partner roles not getting copied from customer.

    Hi ,
    Partner Roles not getting copied from customer to delivery Document .
    we have created one delivery document from a purchase order and when trying to create billing document from that delivery document it is giving log "payer" and ' Bill to party " not maintained.
    when checked in partner tab in delivery document these partner roles are not present there . so what can be the probable reason . These partner functions are maintained in customer.
    thanks!!!!!!
    which customizing seeting to check for this

    Hello Payal,
    Please go to T.code VOPA i.e. Maintain Partner Determination and select Delivery from the list and then click Partner Procedurers and select the relevant delivery type and double click you will get mandatory Partner Functions like Sold To, ship To, Bill to are ticked or not.
    Reward if useful

  • How to get and set custom tag attributes

    How do i get and set custom tag attributes from a jsp page?

    Not sure if this is what your looking for, but....
    example...
    < taglibprefix:testtag attribute1="x" attribute2="y">
    ...of course, the attributes have to be defined in your taglib (.tld) file

  • Why am I getting ErrorCode: OperationNotSupported _Code: 204 When I am trying to get campaigns from sandbox account

    Hi All,
          Seasonal Greetings. 
          I am new one to bing ads . I am trying to get Campaigns from my sandbox account. The following is my code.                    
     <?php
    // To ensure that a cached WSDL is not being used,
    // disable WSDL caching.
    ini_set("soap.wsdl_cache_enabled", "0");
    try
        //$accountId = <youraccountid>; // Application-specific value.
         $accountId = "8951263";
        // Use either the sandbox or the production URI.
        // This example is for the sandbox URI.
        $URI =
            "https://api.sandbox.bingads.microsoft.com/Api/Advertiser/v8/";
        // The following commented-out line contains the production URI.
        //$URI = "https://adcenterapi.microsoft.com/api/advertiser/v8/";
        // The API namespace.
        $xmlns = "https://adcenter.microsoft.com/v8";
        // The proxy for the Campaign Management Web service.
        $campaignProxy = 
            $URI . "CampaignManagement/CampaignManagementService.svc?wsdl";
        // The name of the service operation that will be called.
        $action = "GetCampaignsByAccountId";
        // The user name, password, and developer token are
        // expected to be passed in as command-line
        // arguments.
        // $argv[0] is the PHP file name.
        // $argv[1] is the user name.
        // $argv[2] is the password.
        // $argv[3] is the developer token.
        if ($argc !=4)
            printf("Usage:\n");
            printf(
              "php file.php username password devtoken\n");
            exit(0);
        $username = $argv[1];
        $password = $argv[2];
        $developerToken = $argv[3];
        $applicationToken = "";
        // Create the SOAP headers.
        $headerApplicationToken = 
            new SoapHeader
                $xmlns,
                'ApplicationToken',
                $applicationToken,
                false
        $headerDeveloperToken = 
            new SoapHeader
                $xmlns,
                'DeveloperToken',
                $developerToken,
                false
        $headerUserName = 
            new SoapHeader
                $xmlns,
                'UserName',
                $username,
                false
        $headerPassword = 
            new SoapHeader
                $xmlns,
                'Password',
                $password,
                false
        $headerCustomerAccountId = 
            new SoapHeader
                $xmlns,
                'CustomerAccountId',
                $accountId,
                false
        // Create the SOAP input header array.
        $inputHeaders = array
            $headerApplicationToken,
            $headerDeveloperToken,
            $headerUserName,
            $headerPassword,
            $headerCustomerAccountId
        // Create the SOAP client.
        $opts = array('trace' => true);
        $client = new SOAPClient($campaignProxy, $opts); 
        // Specify the parameters for the SOAP call.
        $params = array
            'AccountId' => $accountId,
        // Execute the SOAP call.
        $result = $client->__soapCall
            $action,
            array( $action.'Request' => $params ),
            null,
            $inputHeaders,
            $outputHeaders
         print "Successful $action call.\n";
         print "TrackingId output from response header: "
              . $outputHeaders['TrackingId']
              . ".\n";
         // Insert a blank line to separate the text that follows.
         print "\n";
        // Retrieve the campaigns.
        if (isset(
            $result->Campaigns
            if (is_array($result->Campaigns->Campaign))
                // An array of campaigns has been returned.
                $obj = $result->Campaigns->Campaign;
            else
                // A single campaign has been returned.
                $obj = $result->Campaigns;
            // Display the campaigns.
            foreach ($obj as $campaign)
                print "Name          : " . $campaign->Name . "\n";
                print "Description   : " . $campaign->Description . "\n";
                print "MonthlyBudget : " . $campaign->MonthlyBudget . "\n";
                print "BudgetType    : " . $campaign->BudgetType . "\n";
                print "\n";
    catch (Exception $e)
        print "$action failed.\n";
        if (isset($e->detail->ApiFaultDetail))
          print "ApiFaultDetail exception encountered\n";
          print "Tracking ID: " . 
              $e->detail->ApiFaultDetail->TrackingId . "\n";
          // Process any operation errors.
          if (isset(
              $e->detail->ApiFaultDetail->OperationErrors->OperationError
              if (is_array(
                  $e->detail->ApiFaultDetail->OperationErrors->OperationError
                  // An array of operation errors has been returned.
                  $obj = $e->detail->ApiFaultDetail->OperationErrors->OperationError;
              else
                  // A single operation error has been returned.
                  $obj = $e->detail->ApiFaultDetail->OperationErrors;
              foreach ($obj as $operationError)
                  print "Operation error encountered:\n";
                  print "\tMessage: ". $operationError->Message . "\n"; 
                  print "\tDetails: ". $operationError->Details . "\n"; 
                  print "\tErrorCode: ". $operationError->ErrorCode . "\n"; 
                  print "\tCode: ". $operationError->Code . "\n"; 
          // Process any batch errors.
          if (isset(
              $e->detail->ApiFaultDetail->BatchErrors->BatchError
              if (is_array(
                  $e->detail->ApiFaultDetail->BatchErrors->BatchError
                  // An array of batch errors has been returned.
                  $obj = $e->detail->ApiFaultDetail->BatchErrors->BatchError;
              else
                  // A single batch error has been returned.
                  $obj = $e->detail->ApiFaultDetail->BatchErrors;
              foreach ($obj as $batchError)
                  print "Batch error encountered for array index " . $batchError->Index . ".\n";
                  print "\tMessage: ". $batchError->Message . "\n"; 
                  print "\tDetails: ". $batchError->Details . "\n"; 
                  print "\tErrorCode: ". $batchError->ErrorCode . "\n"; 
                  print "\tCode: ". $batchError->Code . "\n"; 
        if (isset($e->detail->AdApiFaultDetail))
          print "AdApiFaultDetail exception encountered\n";
          print "Tracking ID: " . 
              $e->detail->AdApiFaultDetail->TrackingId . "\n";
          // Process any operation errors.
          if (isset(
              $e->detail->AdApiFaultDetail->Errors
              if (is_array(
                  $e->detail->AdApiFaultDetail->Errors
                  // An array of errors has been returned.
                  $obj = $e->detail->AdApiFaultDetail->Errors;
              else
                  // A single error has been returned.
                  $obj = $e->detail->AdApiFaultDetail->Errors;
              foreach ($obj as $Error)
                  print "Error encountered:\n";
                  print "\tMessage: ". $Error->Message . "\n"; 
                  print "\tDetail: ". $Error->Detail . "\n"; 
                  print "\tErrorCode: ". $Error->ErrorCode . "\n"; 
                  print "\tCode: ". $Error->Code . "\n"; 
        // Display the fault code and the fault string.
        print $e->faultcode . " " . $e->faultstring . ".\n";
        // Output the last request.
        print "Last SOAP request:\n";
        print $client->__getLastRequest() . "\n";
    ?>
    http://msdn.microsoft.com/en-us/library/bing-ads-campaign-management-php-samples-get-campaigns(v=msads.80).aspx
    But I am getting responce 
    GetCampaignsByAccountId failed.
    ApiFaultDetail exception encountered
    Tracking ID: efa654c5-b112-4e96-8c3d-79bac7e70112
    Operation error encountered:
    Message: This operation is not supported.
    Details: 
    ErrorCode: OperationNotSupported
    Code: 204
    s:Server Invalid client data. Check the SOAP fault details for more information.
    Last SOAP request:
    <?xml version="1.0" encoding="UTF-8"?>
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="https://adcenter.microsoft.com/v8"><SOAP-ENV:Header><ns1:ApplicationToken></ns1:ApplicationToken><ns1:DeveloperToken>BBD37VB98</ns1:DeveloperToken><ns1:UserName>-XXXXXX-</ns1:UserName><ns1:Password>-XXXXX-</ns1:Password><ns1:CustomerAccountId>8951263</ns1:CustomerAccountId></SOAP-ENV:Header><SOAP-ENV:Body><ns1:GetCampaignsByAccountIdRequest><ns1:AccountId>8951263</ns1:AccountId></ns1:GetCampaignsByAccountIdRequest></SOAP-ENV:Body></SOAP-ENV:Envelope>
    Please Help me to get out of this .  
    Thank you in advance.
    Deepa Varma 

    Hello Nalin,
              Thank you for the reply . Now I am using
    $campaignProxy ="https://api.sandbox.bingads.microsoft.com/Api/Advertiser/CampaignManagement/v9/CampaignManagementService.svc?wsdl" ;
    // The API namespace.
        $xmlns = "https://adcenter.microsoft.com/v9";
        $xmlns = "https://bingads.microsoft.com/AdIntelligence/v9";
    But I am getting 
    GetCampaignsByAccountId failed.
    AdApiFaultDetail exception encountered
    Tracking ID: ca31d743-7b7b-4479-8082-44997d60d549
    Error encountered:
    Message: Authentication failed. Either supplied credentials are invalid or the account is inactive
    Detail: 
    ErrorCode: InvalidCredentials
    Code: 105
    s:Server Invalid client data. Check the SOAP fault details for more information.
    Last SOAP request:
    <?xml version="1.0" encoding="UTF-8"?>
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="https://bingads.microsoft.com/CampaignManagement/v9" xmlns:ns2="https://adcenter.microsoft.com/v8"><SOAP-ENV:Header><ns2:ApplicationToken></ns2:ApplicationToken><ns2:DeveloperToken>BBD37VB98</ns2:DeveloperToken><ns2:UserName>vbridgellp</ns2:UserName><ns2:Password>XXXX</ns2:Password><ns2:CustomerAccountId>8951263</ns2:CustomerAccountId></SOAP-ENV:Header><SOAP-ENV:Body><ns1:GetCampaignsByAccountIdRequest><ns1:AccountId>8951263</ns1:AccountId></ns1:GetCampaignsByAccountIdRequest></SOAP-ENV:Body></SOAP-ENV:Envelope>
    I am able to login to sand box UI and see my campaigns. What may be reason for the error ? 
    Thank you in Advance. 
    Deepa Varma

  • Photoshop CC 2014 freezes after 20 minutes of use. I can only minimize it. It even crashes sometimes. Trying to get help from Photoshop GPU FAQ but in vain.

    I have formatted my laptop, Reinstalled all my Adobe softwares and still the same problem continues.
    Photoshop sometimes gets stuck in between while working no matter what the file size and dimensions. Its not about lagging. The screen is just stationary and I can't access any of Photoshop's commands for the stationary period of some seconds or a minute. I can only minimize it. Photoshop even crashes at times.
    I have latest wacom drivers installed 5.3.5-5, Bamboo dock installed, and NVIDIA, GT 740M version 347.52. I have verified the problem with Wacom but they say the tablet doesn't have a problem. I have even tried using Intuos 5. When I use the zoom command with mouse the document zooms in and out continuously without any control.
    I tried to get help from Photoshop CS6 GPU FAQ
    but in vain.
    Bamboo Create Medium CTH 670/K0 C
    Windows 8.1 with NVIDIA graphic card and Intel R HD graphic card

    If you have both a Nvidia GPU and Intel GPU on your machine have you disabled the Intel GPU in windows Device manager. Adobe in the GPU FAQ clearly state that you may have Photoshop problems if your running machine configuration has multiple GPU that are  different GPU.  

  • How to get username from customer email id.

    Hi experts,
    How to get username from customer email id.I am using transaction XD02.
    I would be thankful for your kind replies .
    Regards,
    Sachin Hada

    Hi sachin,
    Re: Email id field
    Regards,
    Sravanthi

  • Finding message bundle from custom tag

    I have a JSP page which has a <fmt:setBundle> to set the translations bundle. It also has a tag which I handle using a custom tag handler based on TagSupport. One of the attributes to this tag is a string which I need to look up in the message bundle, so I need to find the right message bundle as set at the top of the JSP page.
    So putting the question succinctly, how, from custom tag handler code, do I find the message bundle the page is using?

    So putting the question succinctly, how, from custom tag handler code, do I find the message bundle the page is using? To answer your question:
    The <fmt:setBundle> tag (according to the documentation:
    Creates an i18n localization context and stores it in the scoped variable or the
    javax.servlet.jsp.jstl.fmt.localizationContext configuration variableSo you can look up that configuration variable, and use its information to obtain the resource bundle name, or the Localization object which wraps the bundle.
    Of course, thats the hard way...
    You see the friendly folks who wrote the JSTL knew that there would be people who would want to do this.
    So they wrote a helper class for us: [javax.servlet.jsp.jstl.fmt.LocaleSupport|http://java.sun.com/products/jsp/jstl/1.1/docs/api/javax/servlet/jsp/jstl/fmt/LocaleSupport.html]
    A better question is actually:
    How do I look up a message in the bundle set by JSTL <fmt:setBundle> when I am in a custom tag handler?The answer is:
    LocaleSupport.getLocalizedMessage(pageContext, key)Its all in their (relatively readable) [JSTL specification|http://java.sun.com/products/jsp/jstl/reference/api/index.html]
    cheers,
    evnafets

  • Lost my iphone dont know my IMEI number tried to get it from ituens about and clicking the Control key but there is one imei and i have 2 phones backed up on my ituens is there a way to know which one is the right one?

    Lost my iphone dont know my IMEI number tried to get it from itunesby clicking about and the Control key but there is one imei and i have 2 phones backed up on my itunes is there a way to know which one is the right one? and is there another way to find my phone and its offline so i cant use find my phone! Help

    Other ways? Check the box? Call your carrier?

  • Passing Values back from Custom Tag

    I'm using custom tags, and I'm trying to pass back values to the JSP page from a tag which is iterating over values it gets from an Array. But for some reason I can't access the values.
    Here is the Tag:
    public class MemberHelper extends TagSupport implements IterationTag {
        private Iterator iterator;
        protected Tag parent;
        protected PageContext pageContext;
        public MemberHelper() {
            super();
        public void otherDoStartTagOperations() { 
            sfmember_prop_desc desc = new sfmember_prop_desc();
         ArrayList allt = new ArrayList();
         try {
                 allt = desc.GetAllCustom();
         } catch (java.sql.SQLException ex) {}
            if(allt.size() > 0)
             iterator = allt.iterator();

        public void otherDoEndTagOperations()  {
        public boolean shouldEvaluateRestOfPageAfterEndTag()  {
            return true;
        public int doStartTag() throws JspException, JspException {
           otherDoStartTagOperations();
           if (theBodyShouldBeEvaluated()) {
              return EVAL_BODY_INCLUDE;
           } else {
              return SKIP_BODY;
         public int doEndTag() throws JspException, JspException {
           otherDoEndTagOperations();
           if (shouldEvaluateRestOfPageAfterEndTag()) {
              return EVAL_PAGE;
           } else {
              return SKIP_PAGE;
        public int doAfterBody() throws JspException {
           if (theBodyShouldBeEvaluatedAgain()) {
              return EVAL_BODY_AGAIN;
           } else {
              return SKIP_BODY;

  • Need to get filename from custom extension

    Hello,
    I am currently writing a custom extension and I'm having a tough time trying to get the filename of the document (java file) of the currently selected (and opened) file. So I have a java file open and right click on it to launch my extension. How do I get information on that document?
    Also is there javadocs for the extsnsion API's? If so where are they located.
    Thanks in advance!
    Bill

    Hi Bill,
    You can find javadoc on the extension API via the help system (JDeveloper Extension SDK topic under the Reference section). Alternatively, you can extract the contents of the ${jdevhome}/jdev/doc/ohj/jdev-doc.jar to a directory somewhere to view the javadoc in a browser.
    To get the filename of a document, assuming you're using 10g (not much different from 9.0.x), you need to get an instance of oracle.ide.addin.Context. Normally, you'll have a Context instance because you're implementing your logic in a Controller or a Command subclass. If not, you can obtain one using:
    Ide.getMainWindow().getLastActiveView().getContext()Once you have the context, you can get the current selection from it. If that selection implements oracle.ide.model.Locatable, it has a URL. From the URL, you can get the filename:
    import oracle.ide.model.Element;
    import oracle.ide.model.Locatable;
    import java.net.URL;
    import oracle.ide.net.URLFileSystem;
    Element[] selection = context.getSelection();
    if ( selection != null )
      if ( selection[0] instanceof Locatable )
        URL url = ((Locatable)selection[0]).getURL();
        String filePath = URLFileSystem.getPlatformPathName(
          url
    }One final thing, if the current view is an editor, the selection may be empty or will not contain Locatables. If that's the case, you might want to get the Document from the Context instead. I.e.:
    URL url = context.getDocument().getURL();
    String filePath = URLFileSystem.getPlatformPathName(
      url
    );Thanks,
    Brian
    JDev Team

  • IsUserInRole() - return boolean from custom tag?

    Hello
    Im writing some custom tags extending TagSupport. At the moment my tags just create some collection and put it in the page scope for the jsp to access. (see example below)
    I have a tag however that I would like to return a boolean for. This is specifically for checking isUserInRole();
    I cant quite get my head around the idea of manipulating the page body or not and how this impacts writing the custom tags. If I want to return some value directly from my tag ie. a boolean value from isUserInRole(); is this manipulating the page body?
    Is TagSupport the correct class to extend if I want to return a boolean value from my tag call.
    Id appreciate any advice.
    Thanks
    Jon
    public class refSuppliersTag extends TagSupport {
    public int doStartTag() throws JspException {
    try {
    HashMap supplierMap = new HashMap();
    supplierMap = (HashMap) referenceData.getSuppliers();
    pageContext.setAttribute("suppliers", supplierMap);
    } catch (Exception e) {
    throw new JspException(e.toString());
    return EVAL_PAGE;
    ------------------------------------------

    this is one way of designing your tag:
    In JSTL
    <my:login var="isAdminRole" role="admin"/>
    <!-- test for it -->
    <c:if test="${isAdminRole}">
    yeah, you are admin user!
    </c:if>
    In Java
    boolean isLoggedin = login();
    session.setAttribute(var,isLoggedin);
    // where "var" is a String tag attribute!
    //...put the "boolean" result in "var", which is a session's parameter, request's parameter or whatever!
    by Avatar Ng
    [blog http://avatar21.superihost.com/ ]
    Message was edited by:
    Avatar_Ng

  • Trying to get information from GetCustomListTemplate (PowerShell)

    Hi
    I am trying to get Information about my custom list templates on my SharePoint site.
    I tried to use the following code:
    $Web = "http://test.side.com/"
    $SPWeb = Get-SPWeb -Identity $Web  
    $Templates = $SPWeb.GetCustomListTemplates | Select Name | Sort Name 
    Write-Host "" 
    Write-Host "The following templates are available:"  
    $($Templates)  
    $SPWeb.Dispose()
    And it is empty result ;(
    I I try to use Get-SPSite instead I get Errors.
    Any idea how I could get a list of my custom list templates??
    Thanks in advance ;-)
    Cheers
    Michael
    Kind regards Michael Damaschke

    Hi
    The following is working:
    Create list from custom list template with PowerShell
    $GetSites = Get-SPWeb -Identity http://test.actgruppe.de
     $listTemplate = $GetSites.Site.GetCustomListTemplates($Getsites)
     $GetSites.Lists.Add("Test2",$GetSites,$listTemplate["MIA"])
    Cheers
    Michael
    Kind regards Michael Damaschke

  • Comcast technician trying to get cash from customers...

    Has anyone ever experienced the situation described below?  This happened to me yesterday (8/6/2015) in Huntsville, AL.  When I spoke to someone at Comcast about this yesterday they pretty much told me my two options were to reschedule the install or cancel my account and services all together. I called a week or two ago to schedule a transfer of services (Internet only).  Comcast informed me that the new house that I was moving to has never had Comcast service before so there would be additional installation charge to bring services into my home.  I agreed and they said it would be added to my next month's bill. Yesterday a technician comes to the house and, after coming into the house and looking at my setup, he informed me that they would have to reschedule because he wasn't aware that he was going to have to run a cable from the outdoor pole, go underneath the house, and drill a hole in the floor to pull the cable up.  He said he wasn't informed that this type of work was going to need to be done and that it would be "extra" for him to do something like this.  I hesitantly said okay, how much, and could I pay with a check or would it go onto my first month's bill.  He said it would be $30 additional and it needed to be paid directly to him in cash. I told him to go ahead and get started and I'd give him the cash afterwards.  While he began working, I called Comcast and they informed me that a technician would never need to receive cash from a customer (unless it was a disconnect due to nonpayment and needed money to start the services back up).  At this point it was realized that this technician was trying to take money from me.  I informed him of what I had just been told and walked back in the house.  He approached my house, I cracked the door, and he then said "Hey man, let me talk to you for a second".  I declined, told him to pack up all of his materials and equipment, and asked him to leave my property immediately. I stayed on the phone with Comcast this whole time and the technician didn't leave for another 30-45 minutes after I asked him to leave my property.  I understand he was probably just getting his materials loaded up but, nonetheless, I had no idea if this guy was going to try and come back into my home or what.  The situation was somewhat frightening. Again, I told Comcast this and all they would do is either reschedule the install date or cancel my services.  Any help would be appreciated here.

    twd11-
    I have escalated your concerns regarding the technician and your installation appointment to your Regional Office. Once we receive a response, i will send you a private message with the details. In the meantime, if you have any further questions or concerns, please feel free to respond to this thread.

  • Help needed with variable - trying to get data from Oracle using linked svr

    Sorry if I posted this in the wrong forum - I just didn't know where to post it.
    I'm trying to write a simple stored procedure to get data from an oracle database via a linked server in SQL Enterprise manager. I have no idea how to pass a variable to oracle.
    Here's how I would get the variable in SQL:
    declare @maxkey INTEGER
    select @maxkey= MAX(keyfield) from [server].Data_Warehouse.dbo.mytable
    select * from [server].Data_Warehouse.dbo.mydetailtable where keyfield=@maxkey
    the select statement I need to do in oracle would use that variable like this:
    select * from OPENQUERY(OracleLinkedServer,'select
    * from ORACLEDB.TABLE where keyfield > @maxkey')
    and I get this message: OLE DB provider "OraOLEDB.Oracle" for linked server "OracleLinkedServer" returned message "ORA-00936: missing expression".
    I realize that I can't pass the @maxkey variable to oracle - so how do I accomplish this?

    Please refer the example in this link which deals with Oracle date format.
    You can finnd a command DECODE which is used for date formats. If you have a look at whole theory then you will get an idea.
    Link:[Bulk insert SQL command to transfer data from SAP to Oracle|http://sap.ittoolbox.com/groups/technical-functional/sap-dev/bulk-insert-sql-command-to-transfer-data-from-sap-to-oracle-cl_sql_connection-3780804]

  • Getting IRemoteSession in Custom Tag through PRC

    Hi All,
    I am working on custom tag and i have to use sssion object that i am getting through GetExplicitloginContext method, but i dont want to use that since it will bind users to provide username and password when ever they will access it.
    Anyone who has used PRC in custom tags, please help us.
    Is there any way of getting Page Request Object in Custom Tags????
    Thanks in advance.......

    You can use following code(java) to get request object:
    IXPRequest request = this.GetEnvironment().GetCurrentHTTPRequest();Alternatively you can store variable using this code:
    this.GetState().SetVariable(s, obj, scope);or
    this.GetState().SetSharedVariable(s, obj, scope, flag);More info here:
    http://edocs.bea.com/alui/devdoc/docs60/References/API_Libraries/portal/UIJavaDocs/tags/tags/com/plumtree/portaluiinfrastructure/tags/ITagState.html
    Example: http://edocs.bea.com/alui/devdoc/docs60/Portlets/Adaptive_Portlets/Using_Adaptive_Tags/PlumtreeDevDoc_Portlets_Adaptive_CustomExample_EOD.htm
    Piotr
    Edited by Piotr Dudkiewicz at 08/20/2007 2:50 AM

Maybe you are looking for

  • Possible to convert PDF to HTML?

    Hello, I basically want to take this fancy PDF I created that has a ton of hyperlinks and beautiful images into an HTML version for the web (on Wordpress).  Is this possible and if so, could you please point me in the right direction? Thanks! EDIT: I

  • Creation of components on page load

    Hi All, My question stems from the answers I received in these forum posts: - http://forum.java.sun.com/thread.jspa?threadID=5262963 (how to dynamically add components to a specific position in the page) - http://forum.java.sun.com/thread.jspa?forumI

  • Simple L9 question

    Hi all, I've been a DP user for at least a decade, and a Studio Vision Pro user before that. I've never tried Logic Pro for any length of time, because of one huge missing item. Logic only allows you to have a single sequence/ arrangement/ whatever i

  • Does JDialog setVisible create a new threaD?

    I am having a problem with my program and it seems that it may be because my call to JDialog setVisible is creating a new thread. In my program I have a JDialog which is a creation wizard that puts some specific files in the specified directory. Afte

  • Difference between rebate and discount

    difference between rebate and discount