Base solution for your next web application
Starts in:
01 DAYS
01 HRS
01 MIN
01 SEC

Activities of "sampath"

Hi,

Excellent..Thanks a lot friend :D

Hi,

Thanks a lot.It's working now. Can you tell me is there any method/tool to document this dynamic web api's methods which I have written ?

Hi,

I need to expose my app's application layer as WebApi. App is being hosted on Azure.According to the doc,I don't have to do anything.B'cos configuration is already there as like this:

//Automatically creates Web API controllers for all application services of the application
            DynamicApiControllerBuilder.ForAll<IApplicationService>(typeof(IPApplicationModule).Assembly, "app").Build();

Q 1 : I have tried to accsess web api as shown below.But it doesn't work.Hope I have done some fundamental thing wrong.Can you tell me how to sortout this issue ?

http://MyApp.azurewebsites.net/api/services/app/getAllStatusesAsync

It gives this message :

{
message: "No HTTP resource was found that matches the request URI 'http://MyApp.azurewebsites.net/api/services/app/getAllStatusesAsync'."
}

Q 2 : If I change the above web api's app name to island then do I need to do any changes on Angular side or any other place ?

Q 3 : Can you tell me how to secure the web api service ?

This is the doc which I went through : [http://aspnetboilerplate.com/Pages/Documents/Dynamic-Web-API])

Hi,

Thanks for the feedback.I have put that as an issue.please see that.

<a class="postlink" href="https://github.com/aspnetzero/aspnet-zero/issues/302">https://github.com/aspnetzero/aspnet-zero/issues/302</a>

Can't we do this ?

Hi,

When I call a 3rd party web api where it shows below mentioned Abp sweet alert error.Can you tell me how to stop that ? I need to give toaster notification when there is any error on that call.Thanks.

Note : I need to do this customisation only for this request.Not a global one.

Hi,

Sure,I'll contact again if I'll have any issues.Thanks a lot :)

Hi,

Thanks a lot for the info.One question though, Why you have said like this "It's always better to update all packages if you have time for it" ? B'cos if I use the below mentioned command, all the packages should be updated no ? Am I right ?

get-project -all | get-package | ?{ $_.Id -like 'Abp*' } | update-package

Hi,

I haven't upgraded my project to latest version recently. So If I'll use

get-project -all | get-package | ?{ $_.Id -like 'Abp*' } | update-package

to upgrade my app,will it give issues for my project ? I saw the latest version is V 0.10.0 and saw the number of AspNetCore packages also.Is there any braking changes ? If so please let me know and any if you have any reference please share it too.Thanks.

My Packages.config

<packages>
  <package id="Abp" version="0.9.3.0" targetFramework="net461" />
  <package id="Abp.AutoMapper" version="0.9.3.0" targetFramework="net461" />
  <package id="Abp.EntityFramework" version="0.9.3.0" targetFramework="net461" />
  <package id="Abp.Zero" version="0.9.2.0" targetFramework="net461" />
  <package id="Abp.Zero.EntityFramework" version="0.9.2.0" targetFramework="net461" />
  <package id="Abp.Zero.Ldap" version="0.9.2.0" targetFramework="net461" />
  <package id="AutoMapper" version="4.2.0" targetFramework="net461" />
  <package id="Castle.Core" version="3.3.3" targetFramework="net451" />
  <package id="Castle.LoggingFacility" version="3.3.0" targetFramework="net451" />
  <package id="Castle.Windsor" version="3.3.0" targetFramework="net451" />
  <package id="EntityFramework" version="6.1.3" targetFramework="net451" />
  <package id="EntityFramework.DynamicFilters" version="1.4.10.2" targetFramework="net461" />
  <package id="EPPlus" version="4.0.5" targetFramework="net452" />
  <package id="Microsoft.AspNet.Identity.Core" version="2.2.1" targetFramework="net451" />
  <package id="Newtonsoft.Json" version="8.0.3" targetFramework="net461" />
  <package id="Nito.AsyncEx" version="3.0.1" targetFramework="net451" />
  <package id="SharpZipLib" version="0.86.0" targetFramework="net461" />
  <package id="System.Collections.Immutable" version="1.1.36" targetFramework="net461" />
  <package id="System.Linq.Dynamic" version="1.0.6" targetFramework="net452" />
</packages>

Hi, Actually I'm not adding new .ts files to my app.I need to convert existing .js file to .ts file.When we do so, I need to declare above mentioned global variables.I don't know which place, I should put those declarations.

Showing 71 to 80 of 187 entries