Question : How do I send an XML request to a 3rd party from a webpage and recieve the response?

Experts
            I've been at this problem for weeks please help!

I'm developing a small site for a recruitment company that has their data on a third parties server. I need to send an xml string to http://ww1.caliber.ie/cram/api and receive the XML response. I believe I need a proxy but I'm not sure. I've been reading and reading e-books/forums and articles on this AJAX but get nowhere. I thought http://www.codeproject.com/KB/ajax/ajaxproxy.aspx was the solution but I can't fully understand/get the RegularProxy to work with the xmlhttp.open('POST', 'RegularProxy.ashx?url=' + url, true); I have.

Can anyone please help. I'm at my wits end.
Thanks
Denis

Answer : How do I send an XML request to a 3rd party from a webpage and recieve the response?

I got some help on the ASP.Net forums. The working code is below. Thanks experts for your input
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
Default.aspx:
 
<%@ Page Language="C#" AutoEventWireup="true"  CodeFile="Default.aspx.cs" Inherits="_Default" %>
 
"-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 

"server">
    Untitled Page
 
    "form1" runat="server">
    
"Button1" runat="server" Text="Run" onclick="Button1_Click" />
"TextBox1" runat="server" Height="400px" Width="600px">
 
    
Default.aspx.cs:
 
using System;
using System.Net;
using System.IO;
 
public partial class _Default : System.Web.UI.Page 
{
    protected void Page_Load(object sender, EventArgs e)
    {
 
    }
    protected void Button1_Click(object sender, EventArgs e)
    {
        string xml = "<?xml version='1.0' encoding='UTF-8'?>
*GUESTguest
searchJobs100Open
"; string url = "http://ww1.caliber.ie/cram/api"; HttpWebRequest req = (HttpWebRequest)WebRequest.Create(url); //string s = "id="+Server.UrlEncode(xml); byte[] requestBytes = System.Text.Encoding.ASCII.GetBytes(xml); req.Method = "POST"; req.ContentType = "text/xml;charset=utf-8"; req.ContentLength = requestBytes.Length; Stream requestStream = req.GetRequestStream(); requestStream.Write(requestBytes, 0, requestBytes.Length); requestStream.Close(); HttpWebResponse res = (HttpWebResponse)req.GetResponse(); StreamReader sr = new StreamReader(res.GetResponseStream(), System.Text.Encoding.Default); string backstr = sr.ReadToEnd(); TextBox1.Text = backstr; sr.Close(); res.Close(); } }
Open in New Window Select All
Random Solutions  
 
programming4us programming4us