Passing session parameter to a portlet from webcenter spaces page

How do you pass a parameter to a portlet on a WebCenter Spaces page? For example, I have the user's company ID in the session, I need to pass that company ID to the portlet defined to accept a company ID parameter so that the returned data can be filtered.

You can for example add the companyID to the url of the page and then pass that parameter to the parameter of your portlet.
Have you created your portlet to enable inter portlet communication? You should first do that and create a navigation-parameter in the oracle.xml. If you don't know what i'm talking about, i'll explain a bit more.
Their is another way, which is easier i think, is to set the value of your portlet parameter to an expression language refering to a session variabel.
In you portlet parameter set the companyId (if you have created a navigation-parameter companyID) to following value:
#{sessionScope.company}You will have to set the value of that session variable from within your webcenter spaces.
How are you doing that? Are you planning on setting that variable using another portlet, taskflow,... This can be very important on how webcenter reactt on parameters and it can also give you additional ways on passing the parameters.

Similar Messages

  • Consuming a Liferay portlet from WebCenter

    Hi all,
    I'm trying to consume the default Liferay "Hello World" portlet from WebCenter but keep on getting a null portlet instance when trying to drop the portlet on a jspx page.
    Any help would be greatly appreciated.
    Regards
    Antonis

    Hi Yannick,
    Exactly, i'm using WSRP to register the portlet. It registers successfully, it's only when you try to add the portlet to the page that you get a NPE.
    I have a customer requirement of integrating or even better migrating their portlets to WebCenter. Their Liferay portlets use Liferay APIs and custom security. How would you tackle this requirements?
    Thanks
    Antonis

  • How can i pass the  parameter for strored procedure from java

    dear all,
    I am very new for stored procedure
    1. I want to write the strored procedure for insert.
    2. How can i pass the parameter for that procedure from java.
    if any material available in internet create procedure and call procedure from java , and passing parameter to procedure from java

    Hi Ram,
    To call the callable statement use the below sample.
    stmt = conn.prepareCall("{call <procedure name>(?,?)}");
    stmt.setString(1,value);//Input parameter
    stmt.registerOutParameter(2,Types.BIGINT);//Output parameter
    stmt.execute();
    seq = (int)stmt.getLong(2);//Getting the result from the procedure.

  • Dvt:map, JSR-168 portlets, and WebCenter Spaces

    Please click here [http://fusion.appshosting.com:8788/coxcustomportlets/faces/callcenterportlet.jspx]
    When I attempt to view this portlet in WebCenter Spaces, the map will not render.
    The rest of the portlet renders fine.
    The connections.xml file is included in the portlet ear.
    I am supposing I have to upload connections.xml to the Spaces server as well.. but where do I upload to, and how to I "register" it??
    Can anyone help? Thank you very kindly.
    Josh

    Hello,
    JSR168 is a fairly simplistic standard, but there are ways of doing most things.
    For example, to get the portlet's ID (I'm assuming you want a unique portlet instance ID, and not an ID for that "type" of portlet), you can use the PortletRequest.getWindowID() to return an ID for the portlet unique to the user's session.
    For storing URLs that need to be re-configured depending on deployment, that is usually done with portlet preferences in JSR168 portlets-- the portlet can read its preference value, which can be set by a developer or an administrator (or the portlet itself, if you wish). Java property files deployed with the portlets can also contain this configuration information.
    Kevin

  • I am trying to pass the value of a field from the seeded page /oracle/apps/

    I am trying to pass the value of a field from the seeded page /oracle/apps/asn/opportunity/webui/OpptyDetPG. The value I want is in the VO oracle.apps.asn.opportunity.server.OpportunityDetailsVO and the field PartyName.
    I have created a button on the page whose destination URL is
    OA.jsp?OAFunc=XX_CS_SR_QUERY&CustName={#PartyName}
    It opens the correct page, but in the URL it shows this
    http://aa.com:8005/OA_HTML/OA.jsp?OAFunc=XX_CS_SR_QUERY&CustName=&_ti=1897289736&oapc=177&oas=x5E2TIfP1Y0FykBt1ek4ug..
    You can see that &CustName is not getting the proper value. Do I need to do something different?

    You cannot call the form with OA.jsp . This is applicable only for OAF based pages registered as a function.
    For calling a Form, use the below example:
    You have to change the application responsibility key and form function name .
    "form:PN:PN:STANDARD:XXPNTLEASE:QUERY_LEASE_ID={@QueryLeaseNumber}"
    Regards,
    Sudhakar Mani
    http://www.oraclearea51.com

  • Force Webcenter Spaces Page to Refresh on focus

    Hi all,
    We are on WebCenter Spaces PS5. We have a page inside spaces which we want to refresh on focus. We have a document upload portlet on a page which is used to upload a document and then display the list of documents in a result table on that page.
    PROBLEM: We have to manual refresh the page for the newly uploaded document to be displayed on the resultable on the page.
    QUESTION: How can we force the page to refresh on focus?
    Remember this is a webcenter spaces page.
    Thank you....

    You can invoke serverlistener from onFocus client event,
    Pass the control to the backend and use the following code to refresh.
    HttpServletRequest request=(HttpServletRequest)FacesContext.getCurrentInstance().getExternalContext().getRequest();
    FacesContext.getCurrentInstance().getExternalContext().redirect( request.getRequestURL());

  • Unable to pass the parameter to other portlet

    Hi,
    I am trying to pass the parameter from one portlet to other portlet using the convention below...
    Example say you have two reports on a page dept and employee. You want to refresh employee report by clicking on
    the dept in the department report in the same page.
    (1) Create the first report based on the query
    SELECT htf.anchor('http://domain/servlet/page?&_pageid=97&_dad=portal_dad&_schema=portal_schema&_mode=3&dept_code='||DEPTNO,DEPTNO) Department,
    dname FROM scott.dept;
    (2) Create a 2nd report
    select * from EMP where DEPTNO = :dept_code
    (3) In the the additional pl/sql code section before display page on the 2nd report do this
    portal30.wwv_name_value.replace_value(
    l_arg_names, l_arg_values,
    p_reference_path||'.dept_code',portal30.wwv_standard_util.string_to_table2(nvl(get_value('dept_code'),10)));
    (4) Created a page and added these reports as portlets.
    In point (4) I am not getting the value of selected deptno in 'dept_code'. It is always taking the default value as '10'...
    I like to have the quick solution for this so that I can show the demo to my client...
    Thanks in Advance
    Sudheer

    Hi Ali,
    We can add parameterized queries to any TableAdapter (and controls to accept parameter values and execute the query) using the
    Search Criteria Builder Dialog Box. 
    For detail information, please refer to the following article to create a Windows Form to Search Data:
    http://technet.microsoft.com/en-us/library/hbsty6z7.aspx
    In addition, this issue is more related to Windows Form. I would suggest open a new thread in Windows Form forum if you have any more qestions:
    http://social.msdn.microsoft.com/Forums/windows/en-US/home?forum=winforms
    Regards, 
    Elvis Long
    TechNet Community Support

  • How do I pass a parameter to a portlet on the URL?

    I have a portlet on one tab that searches for parts. (This portlet is written and maintained by someone else.) When a user clicks on a part number in the result set on this portlet they need to be taken to another tab (different portlet on the same page) with that part number as a parameter. The second portlet then dynamically writes an
    <iframe src="http://someurl?partnumber=xyz" />
    to call an external application passing the part number as a URL parameter to the external application.
    Writing the <iframe /> dynamically is no problem. The problem is passing the part number from one portlet to another. We planned to do this by using hrefs in the part search portal using URLs like
    http://hostname:port/pls/portal/url/page/test1/portlet2?partnumber=xyz
    for each part number. The problem is that the URL parameter doesn't get passed to the second portlet. Here is the code in the second portlet:
    <%
    PortletRenderRequest portletRenderRequest =
    (PortletRenderRequest)request.getAttribute("oracle.portal.PortletRenderRequest");
    String partnumber = portletRenderRequest.getQualifiedParameter("partnumber");
    %>
    It always sees null for the partnumber parameter.
    I also have <passAllUrlParams>true</passAllUrlParams> in provider.xml.
    I've tried checking this by calling the URL of the second portlet directly from a browser. The portlet sees the partnumber parameter as null, but the URL window in the browser returns the modified URL from the portal with the partnumber parameter set properly. Portal is seeing the parameter but not passing it to the portlet.
    I haven't tried actually setting the in the first portlet and seeing if it all works when called from inside the portal, but I don't see why it shouldn't work by calling the second portlet URL directly with a parameter.
    Am I missing some step in order to pass a parameter from one portlet to another? The parameters I have to pass are dynamic, based on the result set returned by a search in the first portlet.

    My second to last paragraph should have been:
    "I haven't tried actually setting the hrefs in the first portlet and seeing if it all works when called from inside the portal, but I don't see why it shouldn't work by calling the second portlet URL directly with a parameter."

  • Passing a parameter to Web Dynpro from an external system

    Hi All,
    I want to pass a parameter to a Web Dynpro Application from an external browser.
    I have developed a simple application with an input "ServiceOrder".
    In the Portal I have created an Iview for the Web Dynpro application and have set an Application Parameter (ServiceOrder="000003000012"). Just for testing.
    In web Dynpro Controller I have created an attribute in the Context and write tje code below in the wdDoInit.
    String SO = WDProtcolAdapter.getProtoclAdapter().getRequestParameter("ServiceOrder");
    wdContext.currentContextElement.setServiceOrder(SO);
    My problem is that the String SO is empty.
    Please help.
    Regards,
    Ridouan

    Hi R. Taibi,
    try this.
    IWDProtocolAdapter protocolAdapter = WDProtocolAdapter.getProtocolAdapter();
    IWDRequest request = protocolAdapter.getRequestObject();
    wdContext.currentContextElement().setServiceOrder(request.getParameter("ServiceOrder"));
    regards
    Gunter

  • Pass session parameter with javascript

    H� all?
    I have strange problem...
    I connect some database and take some data in JSP page and after I set these data to session values and I open anothewr JSP page by using javascript window.open() method. By the way I lost session parameter in second JSP page opened by window.open();
    // Here the codes...
    there is a button in my first JSP on Click event : calling Talep_Read1() Javascript function.. This function is below.... Bu I heard about: JSP and javascript works different times...
    function talep_Read1(){
    deg = "<%=abr_kd%>";
    if( deg== "0" || deg == "9"){
    var URL = "/METSIS/talep_read.jsp;jsessionid=<%=session.getId()%>";
    newWin = window.open(URL,'SelWnd','menubar=no,toolbar=no,location=no,status=no,scrollbars=yes,resizable=no,width=800,height=600');
    newWin.focus();
    }else{
    var URL = "/METSIS/Detay_Read2.jsp;jsessionid=<%=session.getId()%>";
    newWin = window.open(URL,'SelWnd','menubar=no,toolbar=no,location=no,status=no,scrollbars=yes,resizable=no,width=800,height=600');
    newWin.focus();
    HOw can solve this prob...?
    Open the second page I lost session parameter but I refresh the this page session parameter is seeen
    What is the problem please helpp::
    Thanks.

    Should be:
    var URL = "/METSIS/Detay_Read2.jsp?jsessionid=<%=session.getId()%>";

  • Weather portlet for Webcenter Spaces

    Is there a free Weather portlet available which I can directly use in Webcenter Spaces portal ?
    Hopefully download an application which can be deployed to the server and registered as a wsrp.
    Any suggestions are welcome. I am hoping this being a common requirement and hope many many of you have done some research and findings.
    Currently using Webcenter Spaces PS3.
    Thanks,
    Arun

    I don't think there is a usable portlet that you can use, however there are severall weather web services that provide you with the data.
    With PS3, in the resource manager you can add data controls. These data controls can be based upon a query or a web service. This way you can easily show data from a web service in your portal. If you know the omniportlet, that you can see the data control feature as omniportlet gone 2011 :)

  • Upload docs from webcenter spaces

    I have configured webcetner spaces and UCM succesfuly, i can able to list out the all the docs at webcenter spaces screen which are uploaded into ucm.
    but i am not able to upload any docment from webcetner spaces.
    It is giving the followig error
    Unable to upload the document.
    An unknown error occurred in the Oracle Content Server.
    Please help me on this

    here are the UCM_server-diagnostic logs......
    [2011-03-02T14:44:00.632+05:30] [UCM_server1] [ERROR] [UCM-CS-060003] [oracle.ucm.idccs] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [ecid: 0000Itpq6c9CWrHqys7i6G1DRUiV00007W,0] [APP: Oracle Universal Content Management - Content Server] [dcid: 62ea75e77dc6bf7e:1b0c4bf3:12e75609289:-7ffd-00000000000008c7] [arg: 'olduser1'] [arg: 'CIS'] Event generated by user 'olduser1' at host 'CIS'.
    [2011-03-02T14:44:00.632+05:30] [UCM_server1] [ERROR] [UCM-CS-000001] [oracle.ucm.idccs] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [ecid: 0000Itpq6c9CWrHqys7i6G1DRUiV00007W,0] [APP: Oracle Universal Content Management - Content Server] [dcid: 62ea75e77dc6bf7e:1b0c4bf3:12e75609289:-7ffd-00000000000008c7] general exception[[
    intradoc.common.ServiceException: !csUnableToCheckIn,(null)!csCheckinIDNotDefined
    at intradoc.server.ServiceRequestImplementor.buildServiceException(ServiceRequestImplementor.java:2071)
    at intradoc.server.Service.buildServiceException(Service.java:2207)
    at intradoc.server.Service.createServiceExceptionEx(Service.java:2201)
    at intradoc.server.Service.createServiceException(Service.java:2196)
    at intradoc.server.DocServiceHandler.checkOrGenerateDocName(DocServiceHandler.java:5512)
    at intradoc.server.DocServiceHandler.makeNewRevClass(DocServiceHandler.java:569)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at intradoc.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:86)
    at intradoc.common.ClassHelperUtils.executeMethodReportStatus(ClassHelperUtils.java:324)
    at intradoc.server.ServiceHandler.executeAction(ServiceHandler.java:79)
    at intradoc.server.Service.doCodeEx(Service.java:532)
    at intradoc.server.Service.doCode(Service.java:504)
    at intradoc.server.ServiceRequestImplementor.doAction(ServiceRequestImplementor.java:1622)
    at intradoc.server.Service.doAction(Service.java:476)
    at intradoc.server.ServiceRequestImplementor.doActions(ServiceRequestImplementor.java:1439)
    at intradoc.server.Service.doActions(Service.java:471)
    at intradoc.server.ServiceRequestImplementor.executeSubServiceCode(ServiceRequestImplementor.java:1305)
    at intradoc.server.Service.executeSubServiceCode(Service.java:3813)
    at intradoc.server.ServiceRequestImplementor.executeServiceEx(ServiceRequestImplementor.java:1185)
    at intradoc.server.Service.executeServiceEx(Service.java:3808)
    at intradoc.server.Service.executeService(Service.java:3792)
    at intradoc.server.Service.doSubService(Service.java:3707)
    at sun.reflect.GeneratedMethodAccessor167.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at intradoc.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:86)
    at intradoc.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:310)
    at intradoc.common.ClassHelperUtils.executeMethod(ClassHelperUtils.java:295)
    at intradoc.server.Service.doCodeEx(Service.java:549)
    at intradoc.server.Service.doCode(Service.java:504)
    at intradoc.server.ServiceRequestImplementor.doAction(ServiceRequestImplementor.java:1622)
    at intradoc.server.Service.doAction(Service.java:476)
    at intradoc.server.Service.doScriptableAction(Service.java:3754)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at intradoc.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:86)
    at intradoc.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:310)
    at intradoc.common.ClassHelperUtils.executeMethod(ClassHelperUtils.java:295)
    at intradoc.server.Service.doCodeEx(Service.java:549)
    at intradoc.server.Service.doCode(Service.java:504)
    at intradoc.server.ServiceRequestImplementor.doAction(ServiceRequestImplementor.java:1622)
    at intradoc.server.Service.doAction(Service.java:476)
    at intradoc.server.ServiceRequestImplementor.doActions(ServiceRequestImplementor.java:1439)
    at intradoc.server.Service.doActions(Service.java:471)
    at collections.HelperHandler.executeCommand(HelperHandler.java:657)
    at collections.HelperHandler.doService(HelperHandler.java:804)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at intradoc.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:86)
    at intradoc.common.ClassHelperUtils.executeMethodReportStatus(ClassHelperUtils.java:324)
    at intradoc.server.ServiceHandler.executeAction(ServiceHandler.java:79)
    at intradoc.server.Service.doCodeEx(Service.java:532)
    at intradoc.server.Service.doCode(Service.java:504)
    at intradoc.server.ServiceRequestImplementor.doAction(ServiceRequestImplementor.java:1622)
    at intradoc.server.Service.doAction(Service.java:476)
    at intradoc.server.ServiceRequestImplementor.doActions(ServiceRequestImplementor.java:1439)
    at intradoc.server.Service.doActions(Service.java:471)
    at intradoc.server.ServiceRequestImplementor.executeActions(ServiceRequestImplementor.java:1371)
    at intradoc.server.Service.executeActions(Service.java:457)
    at intradoc.server.ServiceRequestImplementor.doRequest(ServiceRequestImplementor.java:723)
    at intradoc.server.Service.doRequest(Service.java:1865)
    at intradoc.server.ServiceManager.processCommand(ServiceManager.java:435)
    at intradoc.server.IdcServerThread.processRequest(IdcServerThread.java:265)
    at intradoc.server.IdcServerThread.run(IdcServerThread.java:160)
    at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:528)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Pls suggest me to reslove this....

  • How to Programmatically Get Preferences from WebCenter Spaces

    Hi,
    I'm developing a custom task flow to be added to WebCenter Spaces 11.1.1.4.0 (PS3).
    Spaces provides a Preferences link where a logged in user can change his/her preferences such as language, time format, date format, and time zone. I would like my custom task flow code to honor these settings.
    Can someone point me to the right API or tutorial that explains this?
    Thanks.
    Edited by: user706279 on May 6, 2011 1:15 PM

    you can refer the white paper of spaces taskflow customizaton -
    http://www.oracle.com/technetwork/middleware/webcenter/owcs-r11-custom-taskflow-wp-129672.pdf
    http://www.oracle.com/technetwork/middleware/webcenter/owcs-ps1-custom-taskflow-wp-129410.pdf
    for good resources you can use the following links-
    1)http://redstack.wordpress.com/2010/01/15/oracle-webcenter-task-flow-customization-on-your-custom-applications/
    2)http://www.cancerview.ca/webcenterhelp/faces/helppages/main.jspx;jsessionid=dJKmNLpSpnbwh2s1pkCFR1hHH91JzMxRLYSqD67mKg6hNlS8vTy1!1400254721!-365746640?vtTopicFile=wcadm%2Fwcadm_imp_exp066.htm&config=OHW+Servlet&_adf.ctrl-state=7gjirjp0b_4
    3)http://download.oracle.com/docs/cd/E17904_01/webcenter.1111/e10148/jpsdg_taskflows.htm#BACJEFCE
    4)http://download.oracle.com/docs/cd/E17904_01/webcenter.1111/e10148/jpsdg_app_tf_guidelines.htm#CHDIABAJ
    already another thread is created at -
    Webcenter spaces task flow customization

  • Content not displayed on webcenter spaces page tiIl I login to UCM server.

    Hi Yannick,
    I have created an html file which loads the flash file and checked in to the UCM server. I have added a content presenter on the page runtime and selected the html file as the content.
    Now when I load the page, I couldnot see the content. The content gets displayed on the page once I login to the UCM server and refresh the webcenter page.
    Please suggest the solution. I am working with Avitek Demo VM. I have stored the file in the public_images folder.
    Thanks,
    SK

    You need to assign application (spaces) role "Administrator" to your user for Admin link to see (by default weblogic user is assigned to this role)
    To add it
    Login to Fusion Middleware Control -> WebCenter -> WebCenter Spaces -> Right Click on WebCenter -> Security -> Application Role
    Add your user to role “Administrator”
    Atul Kumar
    http://onlineAppsDBA.com

  • Customising Webcenter Spaces Page Templates - "Import Portal Resource" N/A

    Hi,
    I am attempting to customise a Page Template for Webcenter Spaces, and I am trying to do so in JDeveloper.
    I have successfully opened the WebCenterSpacesResources project in JDeveloper, and also successfully downloaded the page template resource (.ear file).
    I am now trying to import this webcenter spaces resource (page template) into the project, as described in this step:
    http://download.oracle.com/docs/cd/E21764_01/webcenter.1111/e10148/jpsdg_wcsres.htm#CIHJFGJI
    The problem is, the "*Import Portal Resource*" option does not appear in the menu when I right-click on WebCenterSpacesResources project.
    I am using JDeveloper version 11.1.1.5.0.
    I have also downloaded and installed WebCenter Framework and Services Design Time extension.
    Any reason why I cannot see this option?
    Amanda.

    Hi,
    I have installed both of the extensions, but I went to:
    http://www.oracle.com/ocom/groups/public/@otn/documents/webcontent/156082.xml#oracle.webcenter.cust
    and dowloaded both (latest):
    WebCenter Framework and Services Design Time
    WebCenter Customization Framework Design Time
    and then installed them manually in my JDeveloper.
    I have restarted and the option still does not appear:
    http://oi52.tinypic.com/13yo02b.jpg
    How do I know that the extensions are installed? They seem to be when I look at the Help > About > Extensions
    http://oi51.tinypic.com/244xylh.jpg
    I have tried this with versions 11.1.1.5 and 11.1.1.4.
    Amanda.

Maybe you are looking for

  • Field catalog in alv with classes(OOPS)

    please refer the code below of field catalog prepared. this code is for preparing field catalog using ALV and OOPS.In the below field catalog, do_sum is not working.it is going to dump. FORM prepare_field_catalog CHANGING pt_fieldcat TYPE lvc_t_fcat.

  • Need to persist data in JVM...

    Hi, I have a requirement in my project where once the user logs in, the database is queried and some information related to the user is retrieved and stored in JVM.So the number of hits to the database is decreased. The requirement in detail : This i

  • Approve link not working in ESS/MSS UWL portal

    Hi experts, we are using portal 7.3 with ess/mss. in mss when user is approving a leave request, he is not ale to proceed after few steps as one link "pprove another request" is not working. this i a standrd portal scren in UWL. please suggest. Thank

  • Thinking of buying Satellite C855-226 - need more info

    Hi all, This is my 1st msg here :) I am thinking of buying C855-226 for 529 and then Saturn offers C855-2EV for 477, which very cheap and ticks most of the boxes for me which are : price, processor, hd capacity, max ram, the thing that I dont liek is

  • Upload picture from database, transform picture in FLash

    Hi, all. I just want to do a test: I made an swf file that is to be embedded in an html web page. Inside swf I want a picture to be upload from database ( for customized purpose ), say ASP, or XML. And new picture will replace that old one inside swf