TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Pinku
1.4k
292
44.7k
How to pass an URL as a response in WEB API
Oct 16 2019 11:04 PM
Below is the service i need to call
public class JobDraftService : BaseAPIService, IJobDraftService
{
public JobDraftService() : base() { }
public JobDraftService(SerializationInfo Info, StreamingContext Context) : base(Info, Context) { }
[TargetPool(PoolType.CBSvc, UseFormElements = false, UseNeoData = false, UseSession = false)]
public virtual JPResponse<string> GetJobDraft(INeo neo, string jobDraftDid)
{
var response = new JPResponse<string>();
JobDraftRepository jobDraftRepo = new JobDraftRepository();
var jobDraft = jobDraftRepo.LoadSingleJobDraft(neo as Neo, jobDraftDid);
response.Results.Add(jobDraft.JobDetails);
response.Results.Add(jobDraftDid);
response.Results.Add(jobDraft.JobDesc ?? "");
response.Results.Add(jobDraft.JobReq ?? "");
return response;
}
now by using that service i should create a api,which is like the below one..
[JWTAuthorizationFilter("/corporate/jobposterapi")]
public class JobDraftsController : BaseAuthorizationController
{
public string Get(string id)
{
try
{
var jobDraftService = RemoteCallRunner.MakeRemoteProxy<JobDraftService>();
return JsonConvert.SerializeObject(jobDraftService.GetJobDraft(MyCBNeo, id));
}
catch
{
Response.StatusCode = 500;
return JsonConvert.SerializeObject("An unknown error occurred while attempting to make your request.");
}
}
here i want to pass an URL as response.. so how can i pass an URL in API..
Reply
Answers (
1
)
IIs Hosted Website
difference between a thread and a computer process