Dear Team,
I am Published the site in the HRBack it is working fine, but after I create Application and the site call "DataSharing" in IIS give me error as attached file he can't load API swagger. Please I need from your side to check what i miss from the configuration to allow the swagger working under the Site name "DataSharing" and Application.
41 Answer(s)
-
0
Dear Team,
I sent eMail.
Thanks
-
0
hi
Your logs level still Info instad of Debug.
Can you use the Zoom client app to join a meeting and share your screen?
https://us05web.zoom.us/j/84753270199?pwd=TOgWscguZl2oIO3wYRwMyV8NqE4bIZ.1
-
0
Dear Team,
I already join the meeting.
Thanks
-
0
Please use zoom windows app to join the meeting https://zoom.us/download?os=win
https://us05web.zoom.us/j/86442867737?pwd=Ioq7oIc71V1AugwY0w3sMU4QcQro4d.1 Thanks
-
0
hi
Please join again
https://us05web.zoom.us/j/85322787279?pwd=X9wxa4ilbn4ekFtIJpnPkKTfuHa1jU.1
Thanks.
-
0
hi
Can you try to change
TokenCookie.PathofAbpAntiForgeryOptionsto/?public override void ConfigureServices(ServiceConfigurationContext context) { //... Configure<AbpAntiForgeryOptions>(options => { options.TokenCookie.Path = "/"; }); //... } -
0
-
0
hi
https://us05web.zoom.us/j/85934722266?pwd=XJfv2RgTHITFKVzCoBwK2PhJhQuxiv.1
-
0
hi
I will check it again.
Thanks.
-
0
Hi
Can you share your Angular app source code? maybe you disabled the
withNoXsrfProtectionThanks.
-
0
hi
Can you try adding a custom functional interceptor that reads the XSRF-TOKEN cookie and adds the RequestVerificationToken header to mutating requests? Then register it in app.config.ts?
This ensures that the RequestVerificationToken header is always included in POST/PUT/DELETE requests, regardless of whether the URL is absolute or relative.
// src/app/shared/xsrf-absolute-url.interceptor.ts import { HttpInterceptorFn } from '@angular/common/http'; import { inject } from '@angular/core'; import { DOCUMENT } from '@angular/common'; export const xsrfAbsoluteUrlInterceptor: HttpInterceptorFn = (req, next) => { if (req.method === 'GET' || req.method === 'HEAD') { return next(req); } if (req.headers.has('RequestVerificationToken')) { return next(req); } const doc = inject(DOCUMENT); const cookie = doc.cookie .split(';') .map(c => c.trim()) .find(c => c.startsWith('XSRF-TOKEN=')); const token = cookie ? decodeURIComponent(cookie.substring('XSRF-TOKEN='.length)) : null; if (token) { req = req.clone({ headers: req.headers.set('RequestVerificationToken', token) }); } return next(req); };import { provideHttpClient, withInterceptors } from '@angular/common/http'; import { xsrfAbsoluteUrlInterceptor } from './shared/xsrf-absolute-url.interceptor'; // inside providers array: provideHttpClient(withInterceptors([xsrfAbsoluteUrlInterceptor])),Thanks.
-
0
-
0
-
0
-
0
hi
Yes, the error no longer exists.
Thanks.
-
0
Dear Team,
**Thanks for your Support **







