REQUEST within f?p =

Hi,
I've got a report which prints out a list of links on a page. Each link is a f?p url with values from the query and a request to branch it to a page which runs pl/sql processing when the requests are equal.
Basically, the link looks like this:
f?p=110:36:1031772745358888:EXISTING_SETUP:NO::P36_SITE_ID:822:
which will brach to 36 and there is a pl/sql process which runs conditionally if the request is EXISTING_SETUP.
I did double check the sytax of my url which looks fine to me, it does branch to the right page, but for some reason this pl/sql process doesn't run at all.
Am i doing something wrong??
Thanks in advance
Merry X'mas everyone.
Venus

If it is branching ok and then the URL on the new page has the request in it; then it sounds like the problem is with the process or the condition. Does the process run without the condition?
Can you provide details of the process and condition?
Cheers
Simon

Similar Messages

  • Holding Request within OSB 10gR3

    I have a requirement where OSB 10gR3 needs to hold on to the soap request (from the consumer) under certain conditions and send to the target service (via Business Service) only when the conditions matche. I am just wondering what is the best/optimal way to achieve this within OSB 10gR3 - JMS, DB, File, any other.. but all will require some degree of coding (Java callouts).
    Appreciate any inputs or experience people have encountered in the field.
    Thx.

    Hisaak,
    You are correct. This is more of a BPEL use-case rather than OSB. I am trying to use the JMS persistence for storing the request and when an external event arrives in another JMS Queue, I have a Proxy (JMS) listens for the event and read all the request from the JMS queue and send to the target service.
    Eduardo,
    Thanks for mentioning this. The consumers will be calling this service asynchronously (as they can't wait (and block) for the condition to be true to receive the response). Once OSB received the request from the consumers it is OSB's resposnsibility to send it successfully to target service or send notifications (emails) in case of failure. Since OSB is stateless and as I mentioned this use-case is more on the stateful side, some persistence needs to happen on the OSB as Hisaak mentioned in this earlier post.
    Thanks for your input, feedback and ideas. Lets see how the design for this use-case using OSB evolve at my organization.
    Thx

  • Firefox aborts its http request silently within 60 seconds

    duplicate of [/questions/1047223]
    *Summary
    Firefox aborts its http request within almost 60 seconds(period till
    timeout varies) and tells nothing to users. This happened with both of
    Nginx and Apache.
    *Environment
    Client browser: Firefox 35.0.1
    Client OS: Windows 7 Enterprise 32bit SP1
    Web Server: Apache 2.2.3-91 & Nginx 1.6.2-1
    Server OS: CentOS 5.11
    PHP: 5.3.3
    FastCGI: spawn-fcgi-1.6.3-1
    *Description of the issue
    I have noticed that nginx logs http response code 499 so often.
    We use nginx almost only for two web applications, the one based on PHP
    and others on ruby. We experiences this problem in both apps. The server and client PC belong to the same subnet.
    Since last month, nginx logged 624 errors for Firefox and 16 for other
    browsers(almost IE).
    So for test, I wrote the simple PHP (see the bottom of this article) and tried to access it
    through both of Apache & Nginx with Firefox 35.0.1 and IE 11. IE11
    waited 120 seconds and returned html successfully through both of nginx
    and Apache, but Firefox failed either.
    Let me describe Firefox's behaviour.
    1. Enter the test php url at location bar and press enter.
    2. The message 'waiting server response' appears at status bar for a while.
    3. Watching network conversation through Wireshark, 'Keep Alive' signals
    are repeated some times between server and client, and after that,
    4. The message dissappears. 'FIN' signal is sent to the server from the client just after that. Firebug logs 'Aborted' at the almost the same time.
    5. The server responses 'FIN ACK.'
    There is a bit difference with nginx and Apache in behaviour after 'FIN
    ACK'.
    A.Nginx
    Nginx logs '499' error and finish conversation immediately.
    B.Apache doesn't log anthying at this step. After 120 seconds(sleep timer
    in PHP) from request it returns expected html. Of course Firefox don't render it but I could confirm both of request and response from Wireshark's 'Follow TCP Stream' function. Finally it is logged with http status code 200 at httpd log file.
    I repeated this test several times. Actual timeout period varies from 22
    to 70 seconds but results are same.
    With my understanding, the browser is expected to show 'time out error'
    after such situation but it doesn't show anything. So end user can't
    know what happend.
    *What I tried to solve the problem
    *disabled all extentions other than firebug.
    *set 'network.tcp.keepalive.enabled' to false at about:config.
    *set 'network.http.spdy.enabled' to false, too.
    *set 'network.http.response.timeout' to 0.
    *disabled IPV6 and DNS prefetch seeing the following help.
    https://support.mozilla.org/en-US/kb/websites-dont-load-troubleshoot-and-fix-errors
    *changed Timeout to 0 at apche's http.conf.
    My purpose is make our web apps to work properly in our working environment. I've recommended Firefox to our collegues because it was very cool application. Changing the default brawser is nightmare to me. Any suggestions are welcome.
    <test php>
    <?php sleep(120); ?>
    <?php echo time(); ?>

    duplicate of [/questions/1047223]
    *Summary
    Firefox aborts its http request within almost 60 seconds(period till
    timeout varies) and tells nothing to users. This happened with both of
    Nginx and Apache.
    *Environment
    Client browser: Firefox 35.0.1
    Client OS: Windows 7 Enterprise 32bit SP1
    Web Server: Apache 2.2.3-91 & Nginx 1.6.2-1
    Server OS: CentOS 5.11
    PHP: 5.3.3
    FastCGI: spawn-fcgi-1.6.3-1
    *Description of the issue
    I have noticed that nginx logs http response code 499 so often.
    We use nginx almost only for two web applications, the one based on PHP
    and others on ruby. We experiences this problem in both apps. The server and client PC belong to the same subnet.
    Since last month, nginx logged 624 errors for Firefox and 16 for other
    browsers(almost IE).
    So for test, I wrote the simple PHP (see the bottom of this article) and tried to access it
    through both of Apache & Nginx with Firefox 35.0.1 and IE 11. IE11
    waited 120 seconds and returned html successfully through both of nginx
    and Apache, but Firefox failed either.
    Let me describe Firefox's behaviour.
    1. Enter the test php url at location bar and press enter.
    2. The message 'waiting server response' appears at status bar for a while.
    3. Watching network conversation through Wireshark, 'Keep Alive' signals
    are repeated some times between server and client, and after that,
    4. The message dissappears. 'FIN' signal is sent to the server from the client just after that. Firebug logs 'Aborted' at the almost the same time.
    5. The server responses 'FIN ACK.'
    There is a bit difference with nginx and Apache in behaviour after 'FIN
    ACK'.
    A.Nginx
    Nginx logs '499' error and finish conversation immediately.
    B.Apache doesn't log anthying at this step. After 120 seconds(sleep timer
    in PHP) from request it returns expected html. Of course Firefox don't render it but I could confirm both of request and response from Wireshark's 'Follow TCP Stream' function. Finally it is logged with http status code 200 at httpd log file.
    I repeated this test several times. Actual timeout period varies from 22
    to 70 seconds but results are same.
    With my understanding, the browser is expected to show 'time out error'
    after such situation but it doesn't show anything. So end user can't
    know what happend.
    *What I tried to solve the problem
    *disabled all extentions other than firebug.
    *set 'network.tcp.keepalive.enabled' to false at about:config.
    *set 'network.http.spdy.enabled' to false, too.
    *set 'network.http.response.timeout' to 0.
    *disabled IPV6 and DNS prefetch seeing the following help.
    https://support.mozilla.org/en-US/kb/websites-dont-load-troubleshoot-and-fix-errors
    *changed Timeout to 0 at apche's http.conf.
    My purpose is make our web apps to work properly in our working environment. I've recommended Firefox to our collegues because it was very cool application. Changing the default brawser is nightmare to me. Any suggestions are welcome.
    <test php>
    <?php sleep(120); ?>
    <?php echo time(); ?>

  • Help with getting values from request. Very Strange!!

    Hello,
    My very strange problem is the following.
    I have created three dynamic list boxes. When the user select
    the first list box, the second becomes populated with stuff
    from a database. The third becomes populated when the second
    is selected. Now, I have used hidden values in order for
    me to get the selected value from the first listbox. The
    following code is my first listbox:
    <SELECT NAME="resources" onChange="document.hiddenform.hiddenObject.value = this.option [this.selectedIndex].value; document.hiddenform.submit();">
    <OPTION VALUE =""> Resource</OPTION>
    <OPTION VALUE ="soil"> Soil </OPTION>
    <OPTION VALUE ="water"> Water </OPTION>
    <OPTION VALUE ="air"> Air </OPTION>
    <OPTION VALUE ="plants"> Plants </OPTION>
    <OPTION VALUE ="animals"> Animals </OPTION>
    </SELECT>
    I use the getRequest method to get the value of hiddenObject.
    At this time I am able to get the value of hiddenObject to populate
    the second list box.
    But, when the user selects an item from the second list box
    and the second form is also submitted,
    I lose the value of hiddenObject. Why is this??
    The code to populate my second listbox is the following:
    <SELECT NAME ="res_categories" onChange="document.hiddenform2.hiddenObject2.value = this.options[this.selectedIndex].value; document.hiddenform2.submit(); ">
    <OPTION VALUE ="" SELECTED> Category</OPTION>
    Here I access a result set to populate the list box.
    Please help!!

    Form parameters are request-scoped, hence the request.getParameter("hiddenObject"); call after the submission of the second form returns a null value because the hiddenObject parameter does not exist within the second request.
    A solution would be to add a hiddenObject field to your second form and alter the onChange event for res_categories to read
    document.hiddenform2.hiddenObject.value=document.1stvisibleformname.resources.option[document.1stvisibleformname.resources.selectedIndex].value;
    document.hiddenform2.hiddenObject2.value = this.options[this.selectedIndex].value;
    document.hiddenform2.submit();You will then come across a similar problem with your third drop-down if indeed you need to resubmit the form...
    A far better approach would be to create a session scoped bean, and a servlet to handle these requests. Then when the servlet is called, it would set the value of the bean property, thus making it available for this request, and all subsequent requests within the current session. This approach would eliminate the need for the clunky javascript, making your application far more stable.

  • Reporting In Service Manager 2012 - How To Get A List Of All Service Requests Regardless of Status

    Within the Custom Reporting Options available to users of Ssystem Center Service Manager 2012, which would one use to create reports that do not contain any agregated data but are instead detail level info such as a list of all Service Requests reardless
    of status?  I want to include within the report the same data you see on the main page of a Service Request when you double-click a Service Request within Service Manager and it pops opne the details of the Service Request.
    I'm trying to get the following info for each Service Requests
    SR ID (i.e. SR1234)
    Affected User
    Title
    Description
    Priority
    Source
    Area
    Support Group
    Assigned To
    Created By and Created On
    I know the cubes w/Excel offer a great way to get data for a **piece meal report or for getting agregated data (I.E. counts, sums, avergares, Max's & Mins) but I need a report that has zero totals and no agregations. 
    Thanks
    ** A piece meal report is a report that has to be manually pieced together by combining data from others reports and other sources because no single report can be constructed to bring all the data togethere into a single report.  If you've ever
    worked with an accountant taht uses Excel for everything but who has no idea how SQL or databases in general are deisgned then chances are you've either been asked to create a piece meal report for them and or seen them do one them selves when they open a
    spreadshet and dump into it disperate data from a variety of sources and then ask you why you can't automate that same report for them.

    the following thread covers some good SQL queries to get details about the Incident Request, just amend them to cover the Service Request
    http://social.technet.microsoft.com/Forums/systemcenter/en-US/e703641d-3e05-4df4-be2b-bf9bd62534f8/how-to-generate-incident-report-with-incident-description-field-in-scsm-2012-sp1

  • Creating a new request in a servlet and proxy it to the next service

    Hello all.
    My scenario is the following:
    - I have a service that when I receive a message request from a user it creates another request and then I want to proxy this new request to the next service.
    - Is this possible to do? I'm not talking about using the request.send() method since it tries to send the new request outside the OCMS, I was thinking more of the proxy.proxyTo() method...

    Hi Lucas and thanks for the reply.
    I think my problem is DNS related. I don't know why but the following code stop to work properly when I installed a new OCMS instance with a diferent realm (I was using example.com and now I'm using the same domain as my company, novabase.pt). I put "172.18.88.21 novabase.pt" in the hosts.config file and the only thing that stopped working is the creation of new requests within the SipServlet.
    The code:
    SipApplicationSession applicationSession =
    req.getApplicationSession();
    Address to = req.getTo();
    Address from =
    getSipFactory().createAddress(convertMobile2Address(req.getFrom()));
    SipServletRequest request =
    getSipFactory().createRequest(applicationSession, "MESSAGE",
    from, to);
    Object content = req.getContent();
    String contentType = req.getContentType();
    request.setContent(content, contentType);
    from.setDisplayName(req.getFrom().getDisplayName());
    request.setHeader("P-Asserted-Identity",
    req.getTo().getURI().toString());
    System.out.println(request);
    request.send();
    SipServletResponse response =
    req.createResponse(200, "Enderecos trocados!");
    response.send();

  • SSL Cert. Request with multiple CNs?

    Greetings to all of the Gurus out there!
    Is it possible to generate a Certificate Request within iMS (version 5.2) that will handle multiple CNs? In other words, we could request a certificate that would work for mail.foo.com, pop.foo.com, imap.foo.com, etc., etc. Or, failing that, is it possible to somehow create and register multiple certs to accomplish this?
    I know how to do this by using OpenSSL, but if I do that, then iPlanet doesn't know about the private OpenSSL key that I used to generate the certificate.
    Any help is appreciated.

    Hi,
    If the installation is stand-alone I
    don't know of a way to specify more then one
    certificate for each service. So if I recall prperly, based on iMS 5.2 experience,
    I can insert 1 Cert in the msg-serv and this is used
    by all services: smtp,imap,http. Correct - for a stand-alone installation.
    What I am not sure
    of, and this is where someone who has taken this
    further, is if I am obligated to use the hostname
    that the msg-serv is running on as my cert's cn?No you aren't obligated to use the hostname. You can use any name you want - you specify the name to be presented to clients during the certificate request stage.
    In my case the msg-serv instance is running on the
    host: kady-amd.education.ucsb.edu and i would prefer
    to have 1 cert that was listed as from
    mail.education.ucsb.eduYep sounds like a plan to me. This way your users only have to remember one address. Also if you decide to expand later (e.g. add in a MMP proxy and multiple backend hosts) you can just copy the certificate database files to the MMP, repoint the mail.education.ucsb.edu IP address and away you go.
    I am wondering if this will require at the OS level,
    a virtual hostname set up or can I do this with
    msg-serv ?All you need is the DNS record for mail.education.ucsb.edu to point at the IP address of the standalone system.
    Regards,
    Shane.

  • Load balancing HTTP requests for an OC4J instance w/multiple JVMs

    Hello everyone,
    I am using OAS 10.1.3.1 and wish to load balance HTTP requests across an OC4J group of one or more OC4J instances, where each like named OC4J instance may have multiple JVMs or it may just have one JVM.
    My mod_oc4j.conf file would contain the following directives :
    Oc4jSelectMethod roundrobin:local
    Oc4jRoutingMode Static
    Oc4JMount /xyz/* xyz
    In the degenerate case, I would like to have an OC4J group with a cluster size of one, and have that one OC4J instance have two or more JVMs. I would like to be able to receive a request within my web application, determine that the JVM that has been sent the request is the wrong JVM to process the request, and then call HttpServletResponse.sendRedirect("/xyz"). Then, when the browser receives the HTTP 302 response and issues the subsequent HTTP request, have that request sent to a different JVM than the previous JVM that issued the sendRedirect().
    What I have seen is that the subsequent request is sent back to the same JVM that issued the sendRedirect(). I also call invalidate() against the HttpSession prior to calling sendRedirect(), but that does not seem to affect the behavior that I see.
    In the full blown case, I would have an OC4J group with a cluster size > 1, and each of those OC4J instances would have at least one JVM. In that case, I wish the sendRedirect() call to allow the subsequent request to be sent to any one of the OC4J instances in the group, and any one of those JVMs within all of those OC4J instances.
    Can anyone verify that my mod_oc4j mount directive is appropriate given the select method and routing mode? What else might I need to do to have a chance to have a different JVM respond to the request that results from a sendRedirect()?
    Thank you,
    Doug

    I should clarify that in the full blown environment, the OC4J instances that form a group will each be housed within a separate OAS instance that resides on its own machine.
    So ideally, a request could be inbound to say OAS instance 1 on machine A, OC4J instance AA, JVM 2, and I need to force a redirect so that the request can actually be serviced by OAS instance 3 on machine C, OC4J instance AA, JVM 1, and I need to be able to call sendRedirect() against an HttpServletResponse from within a JVM until the subsequent request from the browser, Internet Explorer in my case, is serviced by that JVM.
    Thanks,
    Doug

  • How RAC hadling users requests

    Hi
    please advice how RAC handel users request within nodes is there wait come behind?
    is this affect system performance due to data synchronization.

    Hi
    please advice how RAC handel users request within
    nodes is there wait come behind?
    is this affect system performance due to data
    synchronization.Do you have any experience or example case to argue on, your question is not clear.
    Of course RAC has its own alternative costs, I think these two presentations can give an idea;
    http://juliandyke.com/Presentations/Presentations.html#ARoughGuideToRAC
    http://juliandyke.com/Presentations/Presentations.html#RACInternals
    ps: Julian's presentations are designed to be followed on slide show mode.

  • Family purchase request

    My family purchase requests come to my iPad instead of my iPhone. How do I change this?

    Hello Wunderboy,
    If the organizer of the family group doesn't address the Ask to Buy request within 24 hours it is automatically deleted, and will need to be requested again.
    If the organizer doesn't make the purchase or decline the request, it will be deleted after 24 hours, and the child will need to make the request again.
    Request and make purchases with Ask to Buy
    http://support.apple.com/en-us/HT201089
    Cheers,
    Allen

  • Request handling in web service

    Hi guys,
    is there a way to "handle" the request within a web service (like HTTPrequest obj in servlets)? i.e. for retrieving the context and so on .. ?
    thanks to anybody who will answer me
    J.

    Hi guys,
    is there a way to "handle" the request within a web
    service (like HTTPrequest obj in servlets)? i.e. for
    retrieving the context and so on .. ?
    thanks to anybody who will answer me
    J.See if this works for you. Have your service impl class also
    implement javax.xml.rpc.server.ServiceLifecycle. Then you'll
    have to add an init() and destroy() method (see the javadocs).
    If you declare a ServletEndpointContext field, then in
    init you can do
    public void init(Object context) {
    myServletEndpointContext = (ServletEndpointContext) context;
    and in subsequent methods do
    myHttpSession = servletEndpointContext.getHttpSession()
    (don't do this part in init, do it during business method calls)
    Cheers,
    Bobby

  • CSS SLB within same VLAN

    Hi -
    We have a need to load-balance requests within the same VLAN, but need to make sure it only happens then. We have multiple web servers all members of the same subnet, these servers are grouped differently in 5 different VIPS whose IPs are also part of the same subnet.
    Example: We need server A, who is a member of VIP Z, to talk to VIP Y and be load-balanced. These servers and VIPs are all part of the same subnet. however, when that same server A talks to host C somewhere else we don't want it to be translated.
    We'll obviously need to use groups and ACLs, but would we be using 'add service XX' in the group command or the 'add destination service XX' command? Should we NAT these connections as a new IP address, or just fake out the dest VIP so that it thinks the sender's MAC is the CSS?
    Anyone have a sample config from doing this before?
    Thanks!
    chad

    Thanks for the info, Steve. I have looked at a couple of online references including that one, but they all seem to be just a percentage of what I'm looking to do. It's probably a combination of them all put together, but because these VIPs are production websites I want to make sure I don't have to try this a second time. To make it make more sense I'll paste in what I'm trying to do below.
    First, I have these 2 content VIPs:
    content www-LT-80
    vip address 10.28.128.30
    protocol tcp
    port 80
    url "/*"
    advanced-balance arrowpoint-cookie
    arrowpoint-cookie browser-expire
    add service lt-bw02-80
    add service lt-bw04-80
    add service lt-bw06-80
    add service lt-bw08-80
    add service lt-bw10-80
    add service lt-bw12-80
    add service lt-bw14-80
    add service lt-bw16-80
    add service lt-bw18-80
    add service lt-bw20-80
    add service lt-bw22-80
    add service lt-bw24-80
    add service lt-bw26-80
    add service lt-bw28-80
    add service lt-bw30-80
    add service lt-bw32-80
    balance leastconn
    active
    content rc-LT-80
    vip address 10.28.128.38
    protocol tcp
    port 80
    url "/*"
    advanced-balance arrowpoint-cookie
    arrowpoint-cookie browser-expire
    balance leastconn
    add service rc-pub08-80
    add service rc-pub06-80
    add service rc-pub04-80
    add service rc-pub02-80
    active
    Second, these are the services in each VIP respectively. I'll only paste 1 service from each VIP, all the others are the same just with incrementing IPs:
    service lt-bw02-80
    ip address 10.28.128.51
    protocol tcp
    port 80
    string wwwltbw2
    keepalive type script ap-kal-httptag "10.28.128.51 /keepalive.asp www.lendingtree.com"
    keepalive frequency 15
    active
    service rc-pub02-80
    ip address 10.28.128.171
    protocol tcp
    port 80
    string rcpub02
    keepalive type script ap-kal-httptag "10.28.128.171 /keepalive.asp rc.lendingtree.com"
    keepalive frequency 15
    active
    Goal to achieve:
    I need the lt-bwXX-80 services that are members of the first VIP to be able to talk to the second (RC) VIP and be load-balanced. The caveat is that when these lt-bwXX-80 services talk to other hosts through the CSS I do not want them being NATted at all, for reporting reasons their IPs need to stay the same. To touch on your earlier comment, all of these VIPs are also load-balanced to the Internet for web browsing. Basically, I need some form of address translation, whether it be IP or MAC, but only on specific to/from relationships.
    Does that help make it more clear? Thanks in advance for any assistance.
    Chad

  • RMI concurrent processing of requests

    I have an RMI application which takes say 5 minutes to process a request from a client. Now if five clients concurrently access the server, the server process all the five requests within 5 minutes. This is perfectly fine. I'm using Sun jdk on my laptop.
    But when I use IBM jdk (because I've to run the server ulitmately on an AS400 system with IBM jdk) - in the case of one client, it is taking 5 minutes. But when I have five clients, each one is taking around 25 minutes.
    Is this becuase of any limitation with the IBM implementation? Is there any parameter I can set to overcome this issue?
    Thanks in advance.

    You'd have to ask IBM. Their implementation has a different threading model.

  • Transporting a request in single system landscape

    Hi,
    I our single system landscape, we are using the scc1 t-code to transport a request from dev client to prd client,then it showing a message like target client is productive and protected against client copy for this reason every time we are changing the production client settings. please give me suggestions how to transport a request in single system landscape  with out using scc1 t-code.
    Regards,
    Reddy

    Olivier,
    Are you sure SCC1 is just for client copy? I dont think so.
    Client Copy transaction is SCCL for a local copy and SCC9 for remote client copy.
    SCC1 allows to transport local requests within different clients, of course depending of what the transport request contains you can copy something simple or a lot of data (yes, I know, the title says something, but see the functionality).
    I'm agree is not a good practice to have DEV and PRD in one server, but maybe he is using it for testing purposes? I saw different cases in the past and sometimes they had DEV and QA in one server, maybe this is the case.
    Anyways, lets help him on his question.
    Reddy, if you have any question, just post it.
    Good luck,

  • What is Change Request?

    what is Change Request?

    Hi,
    Change request are always created whever you made some change.
    Tcode Se09,se01,se10 etc are used for transporting elements or obj from one place to another.
    check the links.
    http://help.sap.com/saphelp_sm32/helpdata/en/42/157408dd674a9cbc099f634e9bd069/content.htm
    Transport Request within same Server Different Clients
    http://www.sap-img.com/basis/transport-request-within-same-server-different-clients.htm
    Please reward points.

Maybe you are looking for

  • Deletion of duplicated table entry (SAP DB)

    Hi! I am facing with the following error after the system copy of SAP ERP 2005 on Windows migrated from MS SQL to SAP DB. By entering into the db-relevant tcodes (DB13, dbacockpit, etc.) the following error appears: Runtime Errors ITAB_DUPLICATE_KEY

  • Wacky wifi problem. Completely broken.  Anyone help? Please?

    My macbook(10.5) suddenly dropped my wifi connection last night. I clicked the airport tab in the menu bar and noticed all the available networks (mine and neighbors) are all there, but they are spelled wrong. For instance, my network is called "iRiz

  • Safari is running slow on my mac

    I am having problems with safari it just seems to have started to run very slow and sometimes freezes does anyone have a solution Thank you

  • Naive question - Where is my Safari?

    Hello everyone: I bet anyone could answer this. I recently purchased the software for OS X version 10.4.7 and uprgraded from version 10.1.5 (embarassingly old and outdated). Needless to say, I did not have Safari software for my old running system. P

  • Sample Panel examples?

    Hi guys. Can you please tell me where are the actual html source of example in Sample HTML Panel are? I found similar topic http://forums.adobe.com/message/5119030 but the link in comemnts is dead. Since Sample HTML Panel installs from Adobe Exchange