redirect by $ajax

redirect by $ajax

hello...am using .net with jquery and I am trying to redirect from a wcf restful service ,but I am having a problem that the status code is returned 200 while it shall be 301 or 302 so it's not redirecting , plus...on IE9 it's working but mozilla , chrome , safari are giving me parser error , here is my code :
 

function Activate(e) {


           

debugger;


            e.preventDefault();


           

var activationCode = $("[id$='_inputTxtActivationCode']").val();


           

if (activationCode == 'undefined' || activationCode == '') {


               

return false;


            }


            $.ajax({


                url:

'../MemberService/ActivateMemberByActivationCode/' + activationCode,


                dataType:

'xml',


                type :

'GET',


                success: ActivationServiceSuccess,


                error : Failure


            });};
 
 
 
 
here is the service
 

  [

OperationContract]


        [

WebGet(ResponseFormat = WebMessageFormat.Xml, UriTemplate = "ActivateMemberByActivationCode/{ActivationCode}",BodyStyle = WebMessageBodyStyle.WrappedResponse)]


        [

FaultContract(typeof(string))]


       

public string ActivateMemberByActivationCode(string ActivationCode)


        {


           

//// Add your operation implementation here


           


           

WebOperationContext.Current.OutgoingResponse.StatusCode = System.Net.HttpStatusCode.Redirect;


           

WebOperationContext.Current.OutgoingResponse.Location = "http://localhost:6268/Profile/2";


           

return null ;

 

}