ErrorURL sends status code 302 - needs to be 404

In configuration.properties we are able to assign errorURL to redirect to a specific relative url. The response code sent to the users browser is 302 (temporary redirect). How can I make this a 404?

FoundYourKeys wrote:
Not exactly sure where to put this (never visited this area).
... any help would be appreciated as I only have 4 days left to physically be here to fix this for my family ....
Welcome to Apple Discussions, FoundYourKeys
Start here for help with your kernel panic: http://support.apple.com/kb/HT1392
For another view, this kernel panic page: http://www.thexlab.com/faqs/kernelpanics.html
Message was edited by: EZ Jim
Mac Pro Quad Core (Early 2009) 2.93Ghz Mac OS X (10.6.5); MacBook Pro (13 inch, Mid 2009) 2.26GHz (10.6.5)
LED Cinema Display; G4 PowerBook 1.67GHz (10.4.11); iBookSE 366MHz (10.3.9); External iSight; iPod4touch4.2.1

Similar Messages

  • Is someone Hijacking my webserver? I see Scrape: HTTP status code: 302

    Hi,
    I was recently looking at my console log, and noticed that I am getting many of these identical lines a day in the log file.
    Scrape: HTTP status code: 302
    Scrape: redirected URL: 218.5.72.126:8085
    The IP address is nothing to do with me.. I don't know who it is.
    I have found some information saying that someone has Hijacked my website.
    Does anyone know how I can stop this, or what I can do, or what I should do, or what it really means ?
    I don't really know what's going on, but it does not sound like something I should ignore.
    Thanks for your help,
    Keith.
    iMac 20" Intel, MacBook Pro C2D, MacMini Intel   Mac OS X (10.4.9)  
      Mac OS X (10.4.9)  

    Do you use a DNS forwarding or web forwarding service? Are you using 'proper' DNS at your end?
    Do any of your FTP or SSH logs indicate that someone has logged in using your details? Do you have any .htaccess files in your directory tree? If so, can you copy their contents here.
    A 302 error comes about during the last transaction on your server during a page delivery request. It would make sense that someone has gained entry to your server (somehow) and deposited a .htaccess file which is now doing the redirection. Some (unscrupulous) "Directories" do this to get themselves ranked higher up in search engines so you may want to check any code that they have asked you to place on your site to "help" you.
    StuG

  • Multiple row selection & Send Email Code ? Need littel Help

    Dear All,
    I managed to insert a code which will enable me to select multiple rows (Artikel from the great Yann Duran),
    i also have a code which enables me to send a mail for each selected row (only one row).
    But now since I was able to select more rows, I need to to customize my "Send mail" code to send mail to all selected rows. I guess I will need a loop here but I am not sure.
    My code for multiy row selection :
    private const string _CONTROL = "vw_CustLedgerEntry" // This is my Data Grid;
    private DataGrid _ItemsList = null;
    private int _SelectedRowsCount = 0;
    partial void Part_2_CustomerItemDetail_InitializeDataWorkspace(List<IDataService> saveChangesTo)
    // Write your code here.
    this.FindControl(_CONTROL).ControlAvailable += Orders_ControlAvailable;
    private void Orders_ControlAvailable(object sender, ControlAvailableEventArgs e)
    _ItemsList = e.Control as DataGrid;
    //if the cast failed, just leave, there's nothing more we can do here
    if (_ItemsList == null)
    return;
    //set the property on the grid that allows multiple selection
    _ItemsList.SelectionMode = DataGridSelectionMode.Extended;
    _ItemsList.SelectionChanged += new SelectionChangedEventHandler(_ItemsList_SelectionChanged);
    private void _ItemsList_SelectionChanged(object sender, SelectionChangedEventArgs e)
    switch (_ItemsList == null)
    case true:
    _SelectedRowsCount = 0;
    break;
    case false:
    _SelectedRowsCount = _ItemsList.SelectedItems.Count;
    break;
    This is my code for sending a mail for one selected row:
    partial void EMail_Execute() // EMAIL BUTTON FOR OPEN ENTRIES
    if (vw_CustLedgerEntry.SelectedItem.Report_Type == null)
    // throw new ArgumentNullException();
    this.ShowMessageBox("EMail Can't be sent,PDF generation is not possible for this Entry");
    this.Application.ShowPart_2_CustomerItemDetail(this.vw_CustomerItem.Costomer_No_, this.vw_CustomerItem.Company);
    else// if (vw_CustLedgerEntry.SelectedItem.Send_Mail== true)
    //do
    vw_CustLedgerEntryItem1 entryItem = this.vw_CustLedgerEntry.SelectedItem;
    InvSendbyMailRequestBody reqBody = new InvSendbyMailRequestBody(
    entryItem.Document_No_
    , entryItem.Report_Type
    , "DynNavHRS"
    , this.Application.User.Name.Replace(@"HRS\", "") + "@hrs.com" // HRS001
    , "Document"
    , false
    , false
    , this.vw_CustomerItem.ISO_Code // Change 7.8.2014 Bug in Email body text sprache
    , this.vw_CustomerItem.Salesperson_E_mail // Change 7.8.2014 Bug in Send E-mail
    , entryItem.Customer_No_.ToString()
    , false
    , "XYZ"
    , false);
    InvSendbyMailRequest req = new InvSendbyMailRequest(reqBody);
    HRSReportServiceSoapClient wsHRS = new HRSReportServiceSoapClient();
    // wsHRS.InvSendbyMailCompleted += new EventHandler<InvSendbyMailCompletedEventArgs>(wsHRS_InvGetPDFCompleted);
    wsHRS.InvSendbyMailAsync(req);
    this.ShowMessageBox("Your email was successfully sent");
    // while (vw_CustLedgerEntry.SelectedItem.Send_Mail == true);
    Thaks a lot for your help.
    Zayed

    I tried the following but I donot know if its correct and Iam facing a problem with the "Foreach" function.
    private const string _CONTROL = "vw_CustLedgerEntry" // This is my Data Grid;
    private DataGrid _ItemsList = null;
    private int _SelectedRowsCount = 0;
    partial void Part_2_CustomerItemDetail_InitializeDataWorkspace(List<IDataService> saveChangesTo)
    // Write your code here.
    this.FindControl(_CONTROL).ControlAvailable += Orders_ControlAvailable;
    private void Orders_ControlAvailable(object sender, ControlAvailableEventArgs e)
    _ItemsList = e.Control as DataGrid;
    //if the cast failed, just leave, there's nothing more we can do here
    if (_ItemsList == null)
    return;
    //set the property on the grid that allows multiple selection
    _ItemsList.SelectionMode = DataGridSelectionMode.Extended;
    _ItemsList.SelectionChanged += new SelectionChangedEventHandler(_ItemsList_SelectionChanged);
    private void _ItemsList_SelectionChanged(object sender, SelectionChangedEventArgs e)
    switch (_ItemsList == null)
    case true:
    _SelectedRowsCount = 0;
    break;
    case false:
    _SelectedRowsCount = _ItemsList.SelectedItems.Count;
    break;
    partial void Send_Multiple_Mail_CanExecute(ref bool result)
    //only enable rows have actually been selected
    result = (_SelectedRowsCount > 0);
    partial void Send_Multiple_Mail_Execute()
    if (_ItemsList == null) { return; }
    //StringBuilder names = new StringBuilder();
    //loop through the selected rows
    //we're casting each selected row as a DemoItem
    //so we get access to all the properties of the entity that the row represents
    foreach (_ItemsList.SelectedItems)
    vw_CustLedgerEntryItem1 entryItem = this.vw_CustLedgerEntry.SelectedItem;
    InvSendbyMailRequestBody reqBody = new InvSendbyMailRequestBody(
    entryItem.Document_No_
    , entryItem.Report_Type
    , "DynNavXYZ"
    , this.Application.User.Name.Replace(@"HRS\", "") + "@hrs.com" // HRS001
    , "Document"
    , false
    , false
    , this.vw_CustomerItem.ISO_Code // Change 7.8.2014 Bug in Email body text sprache
    , this.vw_CustomerItem.Salesperson_E_mail // Change 7.8.2014 Bug in Send E-mail
    , entryItem.Customer_No_.ToString()
    , false
    , "XYZ"
    , false);
    InvSendbyMailRequest req = new InvSendbyMailRequest(reqBody);
    XYZReportServiceSoapClient wsHRS = new HRSReportServiceSoapClient();
    // wsHRS.InvSendbyMailCompleted += new EventHandler<InvSendbyMailCompletedEventArgs>(wsHRS_InvGetPDFCompleted);
    wsHRS.InvSendbyMailAsync(req);
    this.ShowMessageBox("Your email was successfully sent");

  • Outbound IDoc Error: Status Code 37  'Sender Port' is invalid

    Hi
    I have an Error when the Outbound IDoc is triggered.
    It shows that 'Sender Port in Control Record is invalid'.
    Status Code: 37.
    I know that there are some issues with the Sender Port Definition.
    Please help me out to solve this problem using some checkpoints at each and every step.
    Reward Points Assured.
    Regards,
    Baburaj

    Hi Baburaj Manickam
    Good
    Follow this simple procedure
    1) Send an outbound IDOC data(MATMAS) to a flat file on client1(SENDER).
    -  Create File Port (WE21) for outbound file.
    -  Maintain Distribution Model (BD64) for sender ->receiver system.
    -  Create Partner Profile (WE20) for logical system.
    -  You can use this program RBDSEMAT (t/code BD10) to generate IDoc MATMAS file(s). 
    _  Then you can FTP the file(s) to receiver system.
    2) Upload the flat file as an IDOC on the inbound sytem
    which is Client2(RECIEVER).
    -  Create File Port (WE21) for inbound file.
    -  Maintain Distribution Model (BD64) for receiver -> sender system.
    -  Create Partner Profile (WE20) for logical system.
    -  You can use this program RSEINB00 to upload IDoc MATMAS file(s). 
    INBOUND IDOC PROCESSING:
    Firstly attach your idoc to a process code.
    In the process cod you can tell the system that the specified program should be triggered whenever an idoc of that type comes to the system.
    Then you want to have a Z-function module for your idoc processing, if I understand correctly.The steps should be:
    1. Create a z function module for idoc inbound posting (copy from a function module idoc_input_*).
    2. Set Function Modules as Inbound: - Transaction BD51
    3. Assign Function Modules to Logical Messages and Idoc types:- Transaction WE57
    4. Create process codes : Transaction WE42, and link the z-function module.
    5. Create partner profile: transaction WE20 and attach the message type and process code.
    6. In the Z- function module, extract data from the idoc segments, do whatever processing you want to do, and then call BAPI_CREATE_SALES_ORDER_FROMDAT2.
    Try the Trasaction WE19 for testing your inbound and outbound IDOCs
    Good Luck and Reward me for the same
    Thanks
    Ashok.N

  • Question  i wish to share pictures in Elements but need a sender verification code

    I wish to share pictures in Elements but cannot as I don't have a Sender Verification code for the HTML Email which I never received.

    You can apply again by going to:
    Edit >> Preferences >> Sharing
    Now change the Email Client to Adobe Email as shown in this picture:
    You also need to fill your name and your email address just below this picture.  You will see it anyway.
    After that, just go back to PSE Organizer, slect the picture you want to send and follow the online instructions step by step and you will get a step where you can request an email with your verification code. See this picture:

  • HTTP send returned with status code(100,101)

    Hi Experts,
    I am facing an error in ADS at se38 --> FP_PDF_TEST_00
    Test Program: Version Information (for Analysis Only)
    SYSTEM ERROR
    ERROR CODE    :    100,101
    ERROR MESSAGE : SOAP Runtime Exception: CSoapExceptionTransport : HTTP send returned with status code
    SOAP Framework error: SOAP Runtime Exception: CSoapExceptionTransport : HTTP send returned with status code(100,101).
    Please let me know how to resolve this issue
    Thanks & Regards,
    Arun

    Hi,
    Thanks For your reply..
    I tryied but no use
    Actually Here i am tryping to do configuration between ECC6 and Bi (ABAP+JAVA) system
    Here my Bi  system no id different from ECC6 system no.
    The steps i did is
    1.created ADS HTTP RFC Connection  in ECC6 sytem
    2. System no. given as BI system no.
    3. If i give prefix:  /AdobeDocumentServices/Config?style=rpc  it is not allowing me to save  But i give /AdobeDocumentServices/Config it allows me to save
    4.And other settings i followed as document "Configuring ADS for Guided Procedures ''
    I am facing same error
    Test Program: Version Information (for Analysis Only)
    SYSTEM ERROR
    ERROR CODE    :    100,101
    ERROR MESSAGE : SOAP Runtime Exception: CSoapExceptionTransport : HTTP send returned with status code
    SOAP Framework error: SOAP Runtime Exception: CSoapExceptionTransport : HTTP send returned with status code(100,101).
    Please any body know me the solution
    Thanks & Regards,
    Arun

  • Need sender verification code

    HTML Email- unable to send photos because I need a sender verification code??

    It's amazing how many recent posters seem to be under the misconception that there are clairvoyants and mind readers among the forum contributors.
    Here's my one-click boilerplate reply:
    If you give complete and detailed information about your setup and the issue at hand, such as your platform (Mac or Win), exact versions of your OS, of Photoshop and of Bridge, machine specs, what troubleshooting steps you have taken so far, what error message(s) you receive, if having issues opening raw files also the exact camera make and model that generated them, etc., someone may be able to help you.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • ESW: Status Codes for ECC_QUALITYISSUENOTPEQR  needed

    Hi,
    I am trying to find the status codes for "ECC_QUALITYISSUENOTPEQR" (QualityIssueNotificationProductByElementsQueryResponse_In). There are two fields that are mandatory - "ReleaseStatusCode" and "ClosureStatusCode" where I have no idea what the values are. I know they have a max length of 2 but I can't find any indication of what they are. I've looked in the ESWorkpace (Transaction QM3 and QM11)  but I am not any better off.
    Unfortunately, the <a href="http://erp.esworkplace.sap.com/socoview(bD1kZSZjPTgwMCZkPW1pbg==)/smdisplay.asp?id=665EFEC3172948B0A6246B92B7DA3227&fragID=&packageid=DBBB6D8AA3B382F191E0000F20F64781&iv=">documentation</a> and the <a href="https://wiki.sdn.sap.com/wiki/display/ESpackages/FindQualityIssueNotificationProductbyElements">wiki</a> have no additional information.
    Can anyone help me?
    Thanks.
    Dick

    good idea to blog about, I somehow became tired of raising the issue over and over again here and elswhere.
    in this context you could also, ask why SAP doesn't support enumerations. in case you don't know what that is, have a short look at <a href="http://de.wikipedia.org/wiki/XML_Schema">wikipedia</a> and search for enumaration. you might quickly see that his could automatically solve your (and others) problems. finally one could ask why they don't support annotations. an example can be found <a href="http://www.xmlschemareference.com/annotationElement.html">here</a>.
    given the possibilities of enumerations and annotations one would never face the issue you stumbled upon, one could avoid wrong inputs already on the consumer side and so on...I think I do not have to elaborate it further, it is no rocket science.
    regards,
    anton

  • 37 Status code in  IDoc to File Scenario

    Hi Experts,
    I developed Idoc to file scenario, in the PI side all the design time and configuration objects are good .
    while I am testing from SAP backend system (All required configuration steps are also good).
    I was send the Vendor information details (CREMAS05) by using the Transaction code WE19 , after that I was test with IDoc list by using Transaction code WE05(IDoc list) I am getting status code 37 . what might be the problem.
    please help me.
    Thanks in advance,
    Regards,
    Sudeepth.

    Dear All,
    For file to idoc scenario is there any possibility to get line items details or xml details i.e the segments and its related field details using reference id, transaction id or interface name or message id in SAP PI 7.0. I know we need to click each and every message in sxi_monitor and look for details.
    For SAP(R3 System) I can create a report and set the job for specific time period so automatically it throws the details(like reference no, document date, invoice no from) in ftp path as .csv file. The same ftp path is maintained in program.
    I wanted to check FTP--->PI postings and I have set the job at r3 system it is working fine and Im monitoring it too.
    Now the end to end scenario is FTP--->PI--->ECC(R3 system). Please help.Many Thanks.

  • Receiver XI adapter error :HTTP Status Code 200 during Reponse Parsing

    Hi Exeprts,
    My Scenario is mail to ABAP proxy , I have got the bellow error in moni  while testing my secnario .
    Please help me reslove this .
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!--  Call Adapter
      -->
    - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="">
      <SAP:Category>XIServer</SAP:Category>
      <SAP:Code area="INTERNAL">OK_BUT_NO_XI_MESSAGE</SAP:Code>
      <SAP:P1 />
      <SAP:P2 />
      <SAP:P3>(See attachment HTMLError for details)</SAP:P3>
      <SAP:P4 />
      <SAP:AdditionalText />
      <SAP:Stack>HTTP Status Code 200 Received But Error During Response Parsing: No XI Response Received XML element Envelope missing in SOAP message header (SAP XI Extension)</SAP:Stack>
      <SAP:Retry>M</SAP:Retry>
    Regards
    Upendra

    Hi Mark ,
    No error message in attachement . only it daisplay the following information
    SAP Library
    SAP Library contains the complete documentation for SAP NetWeaver Application Server Java. You can access it by choosing SAP NetWeaver.
          SAP NetWeaver Administrator
    A powerful administration, configuration and monitoring tool, which bundles key administrative tasks to keep your SAP NetWeaver system landscape running. SAP NetWeaver Administrator can be used in a central or local scenario. Here you access the local NetWeaver Administrator.
        System Information
    System information provides administrators with an overview of the system configuration and its state. It shows all of the system's instances and processes, their current state and important parameters (such as ports) that may be required for support cases, as well as the versions of the components installed.
          Services Registry
    The Services Registry is a UDDI based registry that contains definitions of enterprise services and references to their metadata.
       User Management
    The user management administration console provides administrators with the functions they need to manage users, groups, roles, and user-related data in the User Management Engine (UME). Users without administrator permissions can use it to change their user profile.
          UDDI Client
    The UDDI client provides query and publishing functions for UDDI entities to any UDDI compliant registry.
       Web Services Navigator
    Web Services Navigator is a tool that gives you a short overview of a specific Web service based on its WSDL, and enables you to test your Web service by creating and sending a client request to the real end point.
          Web Dynpro
    Web Dynpro is a User Interface technology available within the SAP NetWeaver Developer Studio.
    Various Web Dynpro tools provide administrators and application developers with performance measurement and application administration capabilities. The Web Dynpro runtime is already deployed.  
    Regards
    Upendra

  • HTTP response contains status code 415 with the description Unsupported

    Hi All,
    While transferring the data from SRM to CCM , We are getting following error,
    HTTP response contains status code 415 with the description Unsupported Media Type Error while sending by HTTP (error code: 415, error text: Unsupported Media Type
    Where need to check on this?
    Thanks ,
    NR

    415 Unsupported Media Type
    The server is refusing to service the request because the entity of the request is in a format not supported by the requested resource for the requested method.

  • Error in MAIL notifications in AIA PIP 11g Status Code DELIVERY_TO_GATEWAY

    Hi,
    I am getting the following error while sending the mail notifications :
    Operation     Send
    Overall Status     Failed
    Status Code     DELIVERY_TO_GATEWAY_FAILURE
    Status Message     javax.mail.AuthenticationFailedException
    Timestamp     Sep 1, 2011 1:56:14 AM CDT
    In <AIAHome>/AIAMetaData/config/AIAConfiguration properties file , below properties are set <Property name="EH.INVOKE.NOTIFY">true</Property>
    <Property name="FROM.EMAIL.ID">Email:[email protected]</Property>
    <Property name="EH.DEFAULT.ACTOR.ROLE">AIAIntegrationAdmin</Property>
    2) In em console, under UserMessagingService section , configured the below mentioned Email Driver properties
    Sender Addresses : EMail:[email protected]
    Default Sender Address :[email protected]
    OutGoingMailServer :smtp.company.com
    OutGoingMailServerPort :25
    OutGoingDefaultFromAddress :[email protected]
    3)And in http://<host>:<port>/sdpmessaging/userprefs-ui console added emails Id to user AIAIntegrationAdmin([email protected]) the user is already present in weblogic console Users list
    the password for weblogic user and AIAIntegrationAdmin user are different as i have resetted the AIAIntegrationAdmin user password. will this cause any problem.
    I am able to see the Sender Mail Id as '[email protected]' and Recepient Mail Id as '[email protected]' in the usermessanging server-->message status-->message details.
    do i need to set any password for my smtp mail server in the server..if so please can you let me know in where to set the password for my mail id '[email protected]'
    I have added the password for my mail id '[email protected]' in the OutgoingPassword -->Type of Password -- Use Cleartext Password --> 'entered my mail id password' under the UserMessagingService section Email Driver properties.
    Thanks.

    Hey thanks for ur Response.. The email driver configuration which i did was correct. I figured out the issue and the issue is with my userid which is not in LDAP so it is able to connect to SMTP server when trying to authenticate it is failing and throwing this error.

  • HTTP status code returned by site-wide error handler is 200 OK?

    I'm using a developer install of ColdFusion 11. I set up the following page at http://localhost:8500/test/index.cfm:
    <cfthrow type="application" message="This is an error">
    When I visit that page, the HTTP status code returned is 500, as expected.
    I then created the following page at http://localhost:8500/error.cfm:
    <p>Sorry! That was an error.</p>
    If I set the site-wide error handler in the CF Admin to /error.cfm and visit /test/index.cfm, the HTTP status code returned is 200 OK.
    This seems weird to me. It looks like I can include the following in the error.cfm file to send an error code instead:
    <cfheader statuscode="500" statustext="Server Error">
    Does anyone see that as problematic? Is there a reason why the site-wide error handler should return 200 OK?

    Error Codes are the responsibility of the developer, to define and broadcast. Ultimately, the ColdFusion server has acted appropriately and fulfilled the request (hence the 202). Only the code would know what error was truly thrown, and how to appropriately handle that message to the user, hence the need for you to change the header in the response, if you want that broadcast to the browser in anything of than a "successful request" type of status.

  • WLS support for SC_NOT_MOFIDIED (304) status code

    Hi all,
    We are using WLS 7.0 and noticed that it does not support the conditional retrieval
    of URL for static content (ie html pages and gif files etc). This is true at least
    for web application deployed with either a war file or "exploded" directory structure.
    For those of you who not familiar with this status code, it basically enables
    browser to send IF-MODIFIED-SINCE header with a http request. The server is supposed
    to check if a new version exisits and if not, returns status code 304. This would
    speed up things for an application with large number of static images, css or
    html files. We are quite surprised that a leading product like WLS would omit
    somthing so basic. So we are not sure if there is a place to turn it on or off?
    If there is simply no support for this feature, can someone provide some explaination
    as to the rationale behind it? We have some idea, but would rather hear it directly
    from BEA. Thanks.

    No, we have consolidated on the Apache XML/XSL stuff. You are free to use
    whatever other parser you would like however. The Sun XML pkg should work
    fine.
    Thanks,
    Michael
    Michael Girdley
    BEA Systems Inc
    "Boris Tabenkin" <[email protected]> wrote in message
    news:[email protected]..
    Are you still including the sun XML package, and if so which version?
    "Toby Allsopp" <[email protected]> wrote in message
    news:[email protected]..
    Hi, Craig.
    Craig Macha wrote:
    Our company typically does NOT use Open Source products. We can't
    risk
    not having support.
    I think you're a little confused about what "Open Source" means. Itdoesn't mean "unsupported." If you want support then you need to pay forit,
    just like any software. One of the advantages of open source software is
    that you aren't tied to a single vendor for your support - anyone with the
    appropriate skills can take the source code and
    provide support, as BEA have chosen to do in this case.
    Regards,
    Toby Allsopp.

  • Status code value after calling the method cl_http_client= receive

    Hi,
    I am sending a query string to 3rd party via outbound http. Now one of the methods needed in this case is CL_HTTP_CLIENT=>RECEIVE . This method has got 3 exceptions such as  communication failure etc. If this method has sy-subrc 0 what does this indicate. If  a sy-subrc value of 0 indicates success then why are we again quering the status code value between 200 and 299 . Can it happen that the value of  sy-subrc = 0 but the status code value is not between 200 and 299 .
    In which cases this situation will occur?
    Can anyone elaborate on this.....

    Hi i could not solve the problem with abap. We developed another application by using another programming language for this issue.
    But i think you should create an instance for authantication. After authantication you should get the cookies .
    Then create a new instance for other link and before send and receive methods set cookies ( which you got from authantication session ) for other link in ABAP.
    We did not have enough time to solve this in ABAP. Hope you will solve. If you solve please let me know how you have solved.
    Here is the code(another programming language), may be it will help you.
    req = (HttpWebRequest)WebRequest.Create(@"https://login.xxx.com/authenticate.aspx?userid=xxx&password=xxx");
          req.CookieContainer = cc;
          HttpWebResponse httpResponse = (HttpWebResponse)req.GetResponse();
          HttpWebRequest httpRequest = (HttpWebRequest)WebRequest.Create(@"https://yyy.com/postxml.aspx");
          httpRequest.CookieContainer = cc;
          httpRequest.Method = "POST";
          httpRequest.ContentType = "text/xml";
    Edited by: MusaCEBE on Sep 23, 2010 4:34 PM

Maybe you are looking for

  • How to hide 'catalog','open',home' link from dashboard page in obiee11g ?

    Hi, how to hide 'catalog','open',home' link from dashboard page in obiee11g based one users/groups. http://imageshare.web.id/images/e7tosu6qtsa9zdl1a8w8.jpg i.e: some users shold not able to see 'open','catalog',home link from dashboard but some powe

  • Link open new tab that is blank. Same linki works OK in IE

    On different sites, I click on an link such as a date for a monthly bank statement. Then a new tab opens but remains blank. I open Internet Explorer, go to the same site and click on the link and it opens the monthly bank statement in a new tab OK. I

  • Extra notes folder size limit?

    i tried to put some notes on the notes folder, no problems with the transfer, but not all my notes were there...actually it doesn't look like a note, it look more like a book, although it's a note, but i think the size overcame the specified limit wh

  • Time Formatting in SAPUI5

    Hi All, I have an attribute 'Time' which holds the time in 'PT12H39M42S' format. I want to retrieve it as '12:39:42' in a variable. Can you please help? Regards, Seshu

  • JDeveloper 11.1.1.1.0 hangs while debugging a simple application

    Hello all... I use Jdeveloper 11g in my Fedora linux ( version 9 ) machine. Jdev works fine normally, but when I try to debug a sample application it simply hangs and does not allow me to do anything besides going to console mode and killing off all