POST data without navigating to page

Hi,
I need to POST some data collected in a form to an ASP page
hosted by another person.
How do I do this without navigating to that ASP page, so I
can remain within my own website ?
Thanks for the help,
M

You could have some code like:
Set objXML = Server.CreateObject("MSXML2.ServerXMLHTTP")
objXML.open "POST", "mysite.com/foo.asp", False
objXML.SetRequestHeader "Content-Type",
"application/x-www-form-urlencoded"
objXML.send(Request.Form)
Resp = objXML.responsetext
Set objXML = Nothing
Jules
http://www.charon.co.uk/charoncart
Charon Cart 3
Shopping Cart Extension for Dreamweaver MX/MX 2004

Similar Messages

  • How can I POST data within the same page if I have a A HREF -tag as input?

    How can I POST data within the same page if I have a <A HREF>-tag as input? I want the user to click on a line of text (from a database) and then some data should be posted.

    you can use like this or call javascript fuction and submit the form
    <form method=post action="/mypage">
    cnmsdesign.doc     
    </form>

  • Possible to send POST data WITHOUT a submit button?

    Is it possible to send POST data without a submit button, but
    instead, using PHP redirect or PHP header?
    I need to process a form's POST values before sending some
    selected values to a third party web
    site. So I'd like to be able to send processed POST values to
    that site, without asking the user to
    click on a submit button again.
    how?...
    seb ( [email protected])
    http://webtrans1.com | high-end web
    design
    Downloads: Slide Show, Directory Browser, Mailing List

    You can't send client-side data with server-side scripting, I
    think. You
    can do it with javascript, but then your form is dependent on
    js being
    enabled....
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "(_seb_)" <[email protected]> wrote in message
    news:eosqf2$p0n$[email protected]..
    > Is it possible to send POST data without a submit
    button, but instead,
    > using PHP redirect or PHP header?
    > I need to process a form's POST values before sending
    some selected values
    > to a third party web site. So I'd like to be able to
    send processed POST
    > values to that site, without asking the user to click on
    a submit button
    > again.
    > how?...
    >
    >
    > --
    > seb ( [email protected])
    >
    http://webtrans1.com | high-end web
    design
    > Downloads: Slide Show, Directory Browser, Mailing List

  • How to increment the date without loading the page?

    i have a table which contain fields 'No_of_days','fdate' and 'tdate'
    my requirement is add the value of 'No_of_days' and 'fdate' and put it in field 'tdate'
    No_of_days
    2
    fdate
    12-02-2011
    i want the output from 'tdate' as 14-02-2011 without loading the page....
    what i have to do....?
    i was use when-validate-item in forms to perform this.... but i dont know in apex...im new to apex..so pls help...
    help me guys....
    Edited by: 794244 on Feb 11, 2011 11:54 PM
    Edited by: 794244 on Feb 12, 2011 12:05 AM

    Is this what you're after ?
    http://apex.oracle.com/pls/apex/f?p=18507:12 ?
    This can be accomplished with little effort. Let me know and I'll write it up.
    Jeff

  • Passing data while navigating across pages

    I have a registration page across more than 6 pages.
    which is splited as personal details, contact details etc...
    I have to store the data as user enter details each page.
    But should save the data to database after completion of last page.
    How to do we maintain data enterred across pages?
    Hope this clarifies. Waiting for earliest reply.
    thanks
    Regards
    priyaps

    That answer has to be one of the worst I have seen.
    All the data in the request object at the end? What dreamworld do you live in?
    The request parameters only last for one request. Every time you submit a page, you send a new request.
    In order to retain state over multiple requests you need to use the Session.
    Best way to do it is to create a java bean that will encapsulate all the data you need to enter across all the forms. Making it a session bean means that all its values will be retained on the server.
    One by one, as you submit the pages, put the values entered on the form, into the bean. If you need to go back a step, you can retrieve the data from the bean to repopulate the form.
    At the end, all of the data is stored in your session bean.
    Then you can write a method which saves the values in your bean to the database

  • Current Month, Current Year Variable on Posting Date

    Hi,
    I need to construct a BEx variable that will return the Current Month of the Current Year based on Posting Date. I want to be able to compare Current Month of the Current Year with Current Month of the Prior Year. I know SAP delivers variables for this based on 0CALMONTH. Is there any way to create the variable off Posting Date without having to write a customer exit?
    Thanks,
    C

    I guess you could use replacement path variables for the same. No need to write customer exits.
    Create 2 variables, one on calmonth and the other on calyear.
    Variable on Calmonth -
    type - replacement path.
    Replacement path tab - repace with variable, give variable name into which user enters the posting date, replace with key, offset start 2 and offset length 2.
    Variable on calyear -
    type - replacement path.
    Replacement path tab - repace with variable, give variable name into which user enters the posting date, replace with key, offset start 4 and offset length 4.
    to get key figures for current month and previous year, restrict the key figure with calmonth variable created above and use offset on the calyear variable created above, like zcalyear - 1.

  • Encrypyt POST data

    Hi i had a question with the following scenario.
    I had a textbox in the browser,the textbox is in a form, i use post action to post data from the current page to the server or any other page.
    And i had a button also.
    whenever i click the button the data will be posted to the sepcified url in the action element of form,and it is normal.
    My question is, whenever i click the button, the data in the textbox has to be encrypted (i had my own algorthim) and that encrypted data had to be posted, not the originial data in the textbox.
    How to achive this.
    If any one has solution, please post it here or send a mail to me at [email protected]
    Please,
    I want the solution.

    You have your own algorithm and you don't know how to work it? and you expect us to know?

  • Post Data to ASP page

    Hi,
    I'm trying without success to write an AS3 script to post data to a server ASP page (which is scripted in ASP to insert the data into a DB. The ASP script does not return any data to Flash.). It is set up so that it only receives data and does not send any data back.
    I've written a script which follows, but I get back a trace of "error" (see script), and when I independently check the DB, no new data that I am trying to send, is received. So, not working.
    storeBtn.addEventListener(MouseEvent.CLICK,dbStore,false,0,true);
    function dbStore(event:MouseEvent):void{
    var g2:String;
    if (selectGm == true){
    g2 = "abc";
    if (selectGf == true){
    g2 = "xyz";
    var scriptPage6:String ="https://mysite.com/ASPpage.asp";
    var request6:URLRequest = new URLRequest(scriptPage6);
    request6.method = URLRequestMethod.POST;
    var variables6:URLVariables = new URLVariables();
    variables6.aaa = data88;
    variables6.bbb = data99;
    variables6.name = name6;//carried over in the script from text input in an earlier frame: var name6:String = username_txt.text;
    variables6.ggg = g2;
    var loader6:URLLoader = new URLLoader();
    loader6.dataFormat = URLLoaderDataFormat.VARIABLES;
    loader6.addEventListener(Event.COMPLETE, handleComplete6);
    loader6.load(request6);
    //request6.data = variables6;
    var msg:String;
    function handleComplete6 (event:Event):void{
    var msg = event.target.data;
    if(msg=="true"){
    trace("Done!");
    } else{
    trace("Error: "+msg);
    I must be doing something wrong and would appreciate any help. I'm not sure how to send data when no return data is needed or requested?
    The goal is simply to send 4 items to the ASP page (aaa, bbb, name and ggg) which can process and insert these into a DB.
    Regards,

    Hi esdebon,
    Thank you. The script executes OK. No error, traces OK.
    But, I am still not geting any new data into the DB.
    This is most likely a mistake I am still making with the variables I am sending. I've used this ASP page before and it works. So, I will check what I am sending.
    Hi kglad,
    I am trying to adapt another script that I am using in the same FLA, but that script does get a return of data. So, I renamed it from variables to variables6, to give it a unique (non-conflicting name), and in my experimenting to try tofind what would work, I probably commented it out.
    Is it needed?
    One other way to deal with the data, if the DB will not work:
    SMTP Mail from the SWF/APK, using ASP, that sends the data to me.

  • To display posting date in alv top of page area for transaction KOB1

    I want to display posting date given on selection screen of transaction KOB1 to the alv top of page area on final alv output .
    what are the possible solutions ?

    I want to display posting date given on selection screen of transaction KOB1 to the alv top of page area on final alv output .
    what are the possible solutions ?

  • How can we update the date&time without refreshing the page

    Hi friends,
    I have a jsp page. In that there is Date and Time. The date and time should be updated for every one minute without refresh the page(dynamically).
    Its urgent for me
    Thanks
    Mallik

    hello friend ru looking at date and time @ client side frm the server side if it is all about the client side date i don't think there is use of AJAX triggers and rendering the view by modifying the dom...
    here is an example for you..
    <%@ page language="java"%>
    <HTML>
    <HEAD>
    <SCRIPT language="JavaScript">
    function startclock()
    var thetime=new Date();
    var nhours=thetime.getHours();
    var nmins=thetime.getMinutes();
    var nsecn=thetime.getSeconds();
    var nday=thetime.getDay();
    var nmonth=thetime.getMonth();
    var ntoday=thetime.getDate();
    var nyear=thetime.getYear();
    var AorP=" ";
    if (nhours>=12)
        AorP="P.M.";
    else
        AorP="A.M.";
    if (nhours>=13)
        nhours-=12;
    if (nhours==0)
       nhours=12;
    if (nsecn<10)
    nsecn="0"+nsecn;
    if (nmins<10)
    nmins="0"+nmins;
    if (nday==0)
      nday="Sunday";
    if (nday==1)
      nday="Monday";
    if (nday==2)
      nday="Tuesday";
    if (nday==3)
      nday="Wednesday";
    if (nday==4)
      nday="Thursday";
    if (nday==5)
      nday="Friday";
    if (nday==6)
      nday="Saturday";
    nmonth+=1;
    if (nyear<=99)
      nyear= "19"+nyear;
    if ((nyear>99) && (nyear<2000))
    nyear+=1900;
    this.document.getElementById("clockspot").innerHTML = "<b>"+nhours+": "+nmins+": "+nsecn+" "+AorP+" "+nday+", "+nmonth+"/"+ntoday+"/"+nyear+"</b>";
    setTimeout('startclock()',1000);
    </SCRIPT>
    </HEAD>
    <BODY>
    <div id="clockspot"></div>
    <SCRIPT language="JavaScript">
    startclock();
    </SCRIPT>
    </BODY>
    </HTML>hope this might help :)
    REGARDS,
    RaHuL

  • Update cheque encashment date without posting

    Dear Expert,
    i am looking for a solution, whereby the check encashment date can be
    updated without any posting done. this need to be done on a weekly basis
    i have explored program;RFEBCK00 & txn code; FCHR but it generated posting,
    if there any other standard program that does that
    only FCH6 can do that. is there any standard program for mass cheque
    encashment date update?
    currently exploring FFB4
    regard

    Hello
    Where you able to get any program that will load the encashement date without generating posting?

  • My computer broke and I got it fixed. It doesn't say that the hard-drive was replaced, but I can tell my data is gone, including Pages that I bought. Is there any way of getting that without paying for it again?

    My computer broke and I got it fixed. It doesn't say that the hard-drive was replaced, but I can tell my data is gone, including Pages that I bought. Is there any way of getting that without paying for it again?

    Or if you purchased Pages as part of iWork on a disk, reinstall from the same disk.
    Best of luck.

  • Why can't Max Size of Post Data be increased?

    We need to do a CFFILE upload of 1 – 3 GB videos and are having troubles.
    (I know this is crazy, but FTP, network mapped drives, etc. aren’t going to leave an audit trail like an HTML form will for when people have to upload/update/delete bus incident videos.)
    I can't increase the Max size of post data to even 2048MB without people getting "500" errors who are trying to upload small gifs or pdfs.  If I move it above 2047MB, no one can upload anything.
    Our setup:
    CF Enterprise 8.0.1 with Hot Fix 2
    2 - Win Servers 2003 R2 Enterprise x64 using replication, load balancing, and MS virtual machine.
    CF is clustered so the Java class paths begin with
    C:/JRun4/servers/HSWSD0C1O/cfusion.ear/cfusion.war/WEB-INF/...
    CF Admin settings:
    Max size of post data = 2047MB
    Request throttle threshold = 4MB
    Request Throttle Memory = 3072MB
    Setting of 10 simultaneous requests.
    Restarted CF services after Hotfix 2 install.
    On the Application.cfm page I put
      applicationtimeout="#CreateTimeSpan(0,4,0,0)#"
    Basic code for uploading:
    <!--- upload file and get results --->
       <cffile action="upload"
          filefield="file"
          destination="#fileDirectory#"
          nameconflict="error"
          result="uploadResult">
    This code works for small files IF I don't raise the max size of post data above 2047MB, which means we'll never get those videos up.
    I've been fighting with this for weeks.  Any ideas?
    Thanks!

    First thought is that Web Servers can impose their own upload throttles.  You should check the documentation of your web server as well.
    Secondly
    I know this is crazy, but FTP, network mapped drives, etc. aren’t going
    to leave an audit trail like an HTML form will for when people have to
    upload/update/delete bus incident videos
    What wouldn't FTP leave an audit trail?  FTP communication can leave just as much, if not more, of an audit trail as HTTP communications.
    Network mapped drives, I'm not so sure about, but I imagine there are ways to audit these as well.  But then if you can use network mapped drives, you must be working with a well defined set of users all of which belong to a well defined network domain.
    P.S.  Also make sure that the max post size limits fit inside the overall limits of jvm memory.  Trying to upload a file larger then the memory it can fit in sounds like a likely source of problems.

  • How to submit POST data to a JSP in iFrame

    Hi,
    We are accessing a JSP from the iFrame from a web collaborator product ( TIBCO PortalBuilder) .
    I have an iFrame where I display the application whose startup page is a JSP. I pass the userid using get method in the iFrame URL but there is a security risk as the userid is visible in the URL. In my situation I don't have any such form that I can submit when I click on the link. I want to parameters using POST method to the JSP.
    Is it possible to build a request on the client side that sends the post data to JSP without using form? Kind of manually building the request.
    How does the http header look like when I send request using POST method ?
    Any other suggetions/ ideas
    Regards,
    Sunil Parmar
    http://sunilparmar.com

    You may find the apache commons httpclient PostMethod useful.
    If it was me, I'd dropped the frames. They are a headache to develop and maintain and last, but not least, can cause bad user experience.

  • Problem in POST data preserve in Policy Agent 2.2 for SJSWS 7.0

    Hi
    Appreciate your help.
    I am using SJSWS 7.0 U1 and the PA for the same.
    I have a requirement to preserve the POST data when during the following situation.
    Consider a situation where in the user has logged in to our webapp and the user remains in a page which has a form with Post method .
    Mean while the session (of AM) times out and now the user enters the data in the data and submits the form.
    The user will be redirected to the login page and then the requested service should be performed, which is not happening in this case(POST). Suppose in if the form used a GET method this works fine.
    I get 500 internal server in the browser.
    I have set the following property to true in AMAgent.properties to true.
    com.sun.am.policy.agents.config.postdata.preserve.enable
    My obj.conf has the following entry.
    <Object ppath="*/dummypost/sunpostpreserve*">
    Service type=text/* method=(GET|HEAD|POST) fn=append_post_data
    (note It had only GET originally)
    </Object>
    <Object ppath="*/UpdateAgentCacheServlet*">
    Service type=text/* method=(POST) fn=process_notification
    </Object>
    The amAgent Logfile has the following errors
    2007-10-03 07:03:05.735 Error 22984:92e14d8 PolicyAgent: Error Registering POST content body
    2007-10-03 07:03:05.735MaxDebug 22984:92e14d8 PolicyAgent: Register POST content body : (null)
    2007-10-03 07:03:05.735 Debug 22984:92e14d8 PolicyAgent: Register POST data key :2007-10-0307:03:05.735
    2007-10-03 07:03:05.735 Error 22984:92e14d8 PolicyAgent: am_web_postcache_insert(): Unknown exception encountered.
    2007-10-03 07:03:05.735 Warning 22984:92e14d8 PolicyAgent: Register POST data insert into hash table failed:2007-10-0307:03:05.735
    2007-10-03 07:03:09.093MaxDebug 22984:92e14d8 PolicyAgent: validate_session_policy(): Completed handling request with status: success.
    2007-10-03 07:03:09.093 Debug 22984:92e14d8 PolicyAgent: POST Magic Query Value : 2007-10-0307:03:05.735
    2007-10-03 07:03:09.093 Debug 22984:92e14d8 PolicyAgent: Found magic URI but entry not in POST Hash table :2007-10-0307:03:05.735
    And the errors log in the SJSWS.
    [03/Oct/2007:06:50:39] finest (22984): for host 27.63.254.1 trying to POST /dummypost/sunpostpreserve2007-10-0306:50:35.348, func_exec reports: fn="uri-clean" Directive="PathCheck" returned 0 (REQ_PROCEED)
    [03/Oct/2007:06:50:39] finest (22984): for host 27.63.254.1 trying to POST /dummypost/sunpostpreserve2007-10-0306:50:35.348, func_exec reports: executing fn="find-pathinfo" Directive="PathCheck"
    [03/Oct/2007:06:50:39] finest (22984): for host 27.63.254.1 trying to POST /dummypost/sunpostpreserve2007-10-0306:50:35.348, func_exec reports: fn="find-pathinfo" Directive="PathCheck" returned -2 (REQ_NOACTION)
    [03/Oct/2007:06:50:39] finest (22984): for host 27.63.254.1 trying to POST /dummypost/sunpostpreserve2007-10-0306:50:35.348, func_exec reports: executing fn="find-index-j2ee" Directive="PathCheck"
    [03/Oct/2007:06:50:39] finest (22984): for host 27.63.254.1 trying to POST /dummypost/sunpostpreserve2007-10-0306:50:35.348, func_exec reports: fn="find-index-j2ee" Directive="PathCheck" returned -2 (REQ_NOACTION)
    [03/Oct/2007:06:50:39] finest (22984): for host 27.63.254.1 trying to POST /dummypost/sunpostpreserve2007-10-0306:50:35.348, func_exec reports: executing fn="find-index" index-names="index.html,home.html,index.jsp" Directive="PathCheck"
    [03/Oct/2007:06:50:39] finest (22984): for host 27.63.254.1 trying to POST /dummypost/sunpostpreserve2007-10-0306:50:35.348, func_exec reports: fn="find-index" index-names="index.html,home.html,index.jsp" Directive="PathCheck" returned -2 (REQ_NOACTION)
    [03/Oct/2007:06:50:39] finest (22984): for host 27.63.254.1 trying to POST /dummypost/sunpostpreserve2007-10-0306:50:35.348, func_exec reports: executing fn="validate_session_policy" Directive="PathCheck"
    [03/Oct/2007:06:50:39] finest (22984): for host 27.63.254.1 trying to POST /dummypost/sunpostpreserve2007-10-0306:50:35.348, func_exec reports: fn="validate_session_policy" Directive="PathCheck" returned 0 (REQ_PROCEED)
    [03/Oct/2007:06:50:39] finest (22984): for host 27.63.254.1 trying to POST /dummypost/sunpostpreserve2007-10-0306:50:35.348, func_exec reports: executing fn="type-j2ee" Directive="ObjectType"
    [03/Oct/2007:06:50:39] finest (22984): for host 27.63.254.1 trying to POST /dummypost/sunpostpreserve2007-10-0306:50:35.348, func_exec reports: fn="type-j2ee" Directive="ObjectType" returned 0 (REQ_PROCEED)
    [03/Oct/2007:06:50:39] finest (22984): for host 27.63.254.1 trying to POST /dummypost/sunpostpreserve2007-10-0306:50:35.348, func_exec reports: executing fn="type-by-extension" Directive="ObjectType"
    [03/Oct/2007:06:50:39] finest (22984): for host 27.63.254.1 trying to POST /dummypost/sunpostpreserve2007-10-0306:50:35.348, func_exec reports: fn="type-by-extension" Directive="ObjectType" returned 0 (REQ_PROCEED)
    [03/Oct/2007:06:50:39] finest (22984): for host 27.63.254.1 trying to POST /dummypost/sunpostpreserve2007-10-0306:50:35.348, func_exec reports: executing fn="force-type" type="text/plain" Directive="ObjectType"
    [03/Oct/2007:06:50:39] finest (22984): for host 27.63.254.1 trying to POST /dummypost/sunpostpreserve2007-10-0306:50:35.348, func_exec reports: fn="force-type" type="text/plain" Directive="ObjectType" returned 0 (REQ_PROCEED)
    [03/Oct/2007:06:50:39] finest (22984): for host 27.63.254.1 trying to POST /dummypost/sunpostpreserve2007-10-0306:50:35.348, func_exec reports: executing type="text/*" method="(GET|HEAD|POST)" fn="append_post_data" Directive="Service"
    [03/Oct/2007:06:50:39] failure (22984): for host 27.63.254.1 trying to POST /dummypost/sunpostpreserve2007-10-0306:50:35.348, func_exec reports: HTTP2302: Function append_post_data aborted the request without setting the status code
    [03/Oct/2007:06:50:39] finest (22984): for host 27.63.254.1 trying to POST /dummypost/sunpostpreserve2007-10-0306:50:35.348, func_exec reports: type="text/*" method="(GET|HEAD|POST)" fn="append_post_data" Directive="Service" returned -1 (REQ_ABORTED)
    [03/Oct/2007:06:50:39] finest (22984): for host 27.63.254.1 trying to POST /dummypost/sunpostpreserve2007-10-0306:50:35.348, func_exec reports: executing fn="error-j2ee" Directive="Error"
    [03/Oct/2007:06:50:39] finest (22984): for host 27.63.254.1 trying to POST /dummypost/sunpostpreserve2007-10-0306:50:35.348, func_exec reports: fn="error-j2ee" Directive="Error" returned -2 (REQ_NOACTION)
    [03/Oct/2007:06:50:39] finest (22984): for host 27.63.254.1 trying to POST /dummypost/sunpostpreserve2007-10-0306:50:35.348, func_exec reports: executing fn="flex-log" Directive="AddLog"
    [03/Oct/2007:06:50:39] finest (22984): for host 27.63.254.1 trying to POST /dummypost/sunpostpreserve2007-10-0306:50:35.348, func_exec reports: fn="flex-log" Directive="AddLog" returned 0 (REQ_PROCEED)
    [03/Oct/2007:06:50:40] fine (22984): Updating accelerator cache
    regards
    Madhu M

    Hi
    Appreciate your help.
    I am using SJSWS 7.0 U1 and the PA for the same.
    I have a requirement to preserve the POST data when during the following situation.
    Consider a situation where in the user has logged in to our webapp and the user remains in a page which has a form with Post method .
    Mean while the session (of AM) times out and now the user enters the data in the data and submits the form.
    The user will be redirected to the login page and then the requested service should be performed, which is not happening in this case(POST). Suppose in if the form used a GET method this works fine.
    I get 500 internal server in the browser.
    I have set the following property to true in AMAgent.properties to true.
    com.sun.am.policy.agents.config.postdata.preserve.enable
    My obj.conf has the following entry.
    <Object ppath="*/dummypost/sunpostpreserve*">
    Service type=text/* method=(GET|HEAD|POST) fn=append_post_data
    (note It had only GET originally)
    </Object>
    <Object ppath="*/UpdateAgentCacheServlet*">
    Service type=text/* method=(POST) fn=process_notification
    </Object>
    The amAgent Logfile has the following errors
    2007-10-03 07:03:05.735 Error 22984:92e14d8 PolicyAgent: Error Registering POST content body
    2007-10-03 07:03:05.735MaxDebug 22984:92e14d8 PolicyAgent: Register POST content body : (null)
    2007-10-03 07:03:05.735 Debug 22984:92e14d8 PolicyAgent: Register POST data key :2007-10-0307:03:05.735
    2007-10-03 07:03:05.735 Error 22984:92e14d8 PolicyAgent: am_web_postcache_insert(): Unknown exception encountered.
    2007-10-03 07:03:05.735 Warning 22984:92e14d8 PolicyAgent: Register POST data insert into hash table failed:2007-10-0307:03:05.735
    2007-10-03 07:03:09.093MaxDebug 22984:92e14d8 PolicyAgent: validate_session_policy(): Completed handling request with status: success.
    2007-10-03 07:03:09.093 Debug 22984:92e14d8 PolicyAgent: POST Magic Query Value : 2007-10-0307:03:05.735
    2007-10-03 07:03:09.093 Debug 22984:92e14d8 PolicyAgent: Found magic URI but entry not in POST Hash table :2007-10-0307:03:05.735
    And the errors log in the SJSWS.
    [03/Oct/2007:06:50:39] finest (22984): for host 27.63.254.1 trying to POST /dummypost/sunpostpreserve2007-10-0306:50:35.348, func_exec reports: fn="uri-clean" Directive="PathCheck" returned 0 (REQ_PROCEED)
    [03/Oct/2007:06:50:39] finest (22984): for host 27.63.254.1 trying to POST /dummypost/sunpostpreserve2007-10-0306:50:35.348, func_exec reports: executing fn="find-pathinfo" Directive="PathCheck"
    [03/Oct/2007:06:50:39] finest (22984): for host 27.63.254.1 trying to POST /dummypost/sunpostpreserve2007-10-0306:50:35.348, func_exec reports: fn="find-pathinfo" Directive="PathCheck" returned -2 (REQ_NOACTION)
    [03/Oct/2007:06:50:39] finest (22984): for host 27.63.254.1 trying to POST /dummypost/sunpostpreserve2007-10-0306:50:35.348, func_exec reports: executing fn="find-index-j2ee" Directive="PathCheck"
    [03/Oct/2007:06:50:39] finest (22984): for host 27.63.254.1 trying to POST /dummypost/sunpostpreserve2007-10-0306:50:35.348, func_exec reports: fn="find-index-j2ee" Directive="PathCheck" returned -2 (REQ_NOACTION)
    [03/Oct/2007:06:50:39] finest (22984): for host 27.63.254.1 trying to POST /dummypost/sunpostpreserve2007-10-0306:50:35.348, func_exec reports: executing fn="find-index" index-names="index.html,home.html,index.jsp" Directive="PathCheck"
    [03/Oct/2007:06:50:39] finest (22984): for host 27.63.254.1 trying to POST /dummypost/sunpostpreserve2007-10-0306:50:35.348, func_exec reports: fn="find-index" index-names="index.html,home.html,index.jsp" Directive="PathCheck" returned -2 (REQ_NOACTION)
    [03/Oct/2007:06:50:39] finest (22984): for host 27.63.254.1 trying to POST /dummypost/sunpostpreserve2007-10-0306:50:35.348, func_exec reports: executing fn="validate_session_policy" Directive="PathCheck"
    [03/Oct/2007:06:50:39] finest (22984): for host 27.63.254.1 trying to POST /dummypost/sunpostpreserve2007-10-0306:50:35.348, func_exec reports: fn="validate_session_policy" Directive="PathCheck" returned 0 (REQ_PROCEED)
    [03/Oct/2007:06:50:39] finest (22984): for host 27.63.254.1 trying to POST /dummypost/sunpostpreserve2007-10-0306:50:35.348, func_exec reports: executing fn="type-j2ee" Directive="ObjectType"
    [03/Oct/2007:06:50:39] finest (22984): for host 27.63.254.1 trying to POST /dummypost/sunpostpreserve2007-10-0306:50:35.348, func_exec reports: fn="type-j2ee" Directive="ObjectType" returned 0 (REQ_PROCEED)
    [03/Oct/2007:06:50:39] finest (22984): for host 27.63.254.1 trying to POST /dummypost/sunpostpreserve2007-10-0306:50:35.348, func_exec reports: executing fn="type-by-extension" Directive="ObjectType"
    [03/Oct/2007:06:50:39] finest (22984): for host 27.63.254.1 trying to POST /dummypost/sunpostpreserve2007-10-0306:50:35.348, func_exec reports: fn="type-by-extension" Directive="ObjectType" returned 0 (REQ_PROCEED)
    [03/Oct/2007:06:50:39] finest (22984): for host 27.63.254.1 trying to POST /dummypost/sunpostpreserve2007-10-0306:50:35.348, func_exec reports: executing fn="force-type" type="text/plain" Directive="ObjectType"
    [03/Oct/2007:06:50:39] finest (22984): for host 27.63.254.1 trying to POST /dummypost/sunpostpreserve2007-10-0306:50:35.348, func_exec reports: fn="force-type" type="text/plain" Directive="ObjectType" returned 0 (REQ_PROCEED)
    [03/Oct/2007:06:50:39] finest (22984): for host 27.63.254.1 trying to POST /dummypost/sunpostpreserve2007-10-0306:50:35.348, func_exec reports: executing type="text/*" method="(GET|HEAD|POST)" fn="append_post_data" Directive="Service"
    [03/Oct/2007:06:50:39] failure (22984): for host 27.63.254.1 trying to POST /dummypost/sunpostpreserve2007-10-0306:50:35.348, func_exec reports: HTTP2302: Function append_post_data aborted the request without setting the status code
    [03/Oct/2007:06:50:39] finest (22984): for host 27.63.254.1 trying to POST /dummypost/sunpostpreserve2007-10-0306:50:35.348, func_exec reports: type="text/*" method="(GET|HEAD|POST)" fn="append_post_data" Directive="Service" returned -1 (REQ_ABORTED)
    [03/Oct/2007:06:50:39] finest (22984): for host 27.63.254.1 trying to POST /dummypost/sunpostpreserve2007-10-0306:50:35.348, func_exec reports: executing fn="error-j2ee" Directive="Error"
    [03/Oct/2007:06:50:39] finest (22984): for host 27.63.254.1 trying to POST /dummypost/sunpostpreserve2007-10-0306:50:35.348, func_exec reports: fn="error-j2ee" Directive="Error" returned -2 (REQ_NOACTION)
    [03/Oct/2007:06:50:39] finest (22984): for host 27.63.254.1 trying to POST /dummypost/sunpostpreserve2007-10-0306:50:35.348, func_exec reports: executing fn="flex-log" Directive="AddLog"
    [03/Oct/2007:06:50:39] finest (22984): for host 27.63.254.1 trying to POST /dummypost/sunpostpreserve2007-10-0306:50:35.348, func_exec reports: fn="flex-log" Directive="AddLog" returned 0 (REQ_PROCEED)
    [03/Oct/2007:06:50:40] fine (22984): Updating accelerator cache
    regards
    Madhu M

Maybe you are looking for

  • Rescue and Recovery (RnR) Error 25025-Win XP

    As suggested, I cannot clean out the help files in \preboot\helps\  using rrutil.exe.  I need to free up space in order to update from 3.1 to RnR4.  I created the list using rrutil -l1 and tried to:   rrutil.exe -d c:\dirlist \preboot\helps\*.*  and

  • Mac Mini + External Superdrive DVD Player Crashing

    Hi, I have a brand new Mac Mini on OSX Mountain Lion and a brand new external superdrive. If a DVD movie is inserted in to the superdrive, DVD Player attempts to load, and then promptly crashes. Anyone else having this problem?

  • HT5787 My computer password is not working...how can I access?!?!

    I have locked my computer out and can't remember the password or should I say it is not responding to the password that it should be responding to.  Any help?

  • Power Adaptor Noise?

    I was under my desk today searching for a lost screw to my glasses... While searching around my power adaptor, I noted a little bit of a buzz from it. It's low pitched, but audible 2-3 feet (quiet, but audible). When unplugged from my mac, the buzz d

  • When I try to save in Flash Professional CC it crashes.

    Just as the title suggests. I can only save/import/export at certain points meaning I lose a majority of my work if I don't save at the right time.