i am using fiddler to test my request..
I used below reuest to call my web api method ..it is working fine .
http://localhost:50079/Import/Test/abc
Type :Get
web api method:
[ActionName("Test")]
public bool getconnection(string id)
{
return true;
}
If i pass multi parameters i am getting error :HTTP/1.1 404 Not Found
I used like :
http://localhost:50079/Import/Test/abc/cde
Type :Get
web api method:
[ActionName("Test")]
public bool getconnection(string id,string value)
{
return true;
}
I don't want to use any routes...Let me know why if i pass multi parameters why it is not recognized..