Questions tagged [session-state-provider]
37 questions
1
vote
0 answers
OcLazyLoader path is not working controller is not loading
I am trying to load js and css when corresponding state has reached
i am isunf OcLazyLoader and
i have mentioned controller name and i am trying to load controller defintion using ocloader but i am getting controller undefined
My config file is
…

nithin prasad
- 168
- 1
- 9
1
vote
1 answer
angularsjs state provider multi params
I am trying to build state provider that catch multi params but the issue is that i dont know how many params
is it possible to catch them as object or array?
or the only solution is to catch it as string and separate them?
for example this is my…

Erez
- 574
- 1
- 6
- 23
1
vote
1 answer
AngularJS + load multiple pages
I am new in angularjs.
I tried to load multiple page because login page is different design(without left menu, header,footer, nav bar) but other pages are have inculde header, footer, navbar like this.
For example, I have index.html:

RSKMR
- 1,812
- 5
- 32
- 73
1
vote
1 answer
Microsoft.Owin.Security.AuthenticationTicket SerializationException when using RedisSessionStateProvider
I'm using the Owin OpenIdConnectAuthentication module in my app, and am trying to move my session state to Redis. I'm using Microsoft.Web.Redis.RedisSessionStateProvider for this. When I update my web.config to add the RedisSessionStateProvider I…

BenV
- 12,052
- 13
- 64
- 92
1
vote
1 answer
Angularjs URL parmeters gets passed as Query Parameters
I have a $state configured as below:
.state('app.subjects.current', {
abstract: true,
url: "/:subjectId",
template: "",
ncyBreadcrumb: {
skip: true
}
})
.state('app.subjects.current.home', {
url:…

Antriksh Patel
- 23
- 5
1
vote
1 answer
C# SessionState custom. Session never expires
I have a problem with an MVC3 application and MySQL persistent DB session.
The problem is that session never expires.
ResetItemTimeout method is callign before GetItemExclusive
GetItemExclusive method checks if expire field is less than now. …

Juan Ramón
- 31
- 3
0
votes
1 answer
Timeouts occurring with little load
We have recently started using aspnet-redis-providers for an ASP.NET web application using framework V4.7.2. We are getting timeouts that we cannot explain. We have been working with enterprise redis and there does not yet appear to be anything to…

chriswatts
- 31
- 7
0
votes
0 answers
Getting error "state" is undefined in stateprovider and reducer using context API react, here is my code
index.js file- where I have passed initial state and reducer
import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
import App from './App';
import reducer, { initialState } from './components/reducer';
import {…

Wasi Sharief
- 159
- 1
- 5
0
votes
1 answer
SessionStateStoreProvider implementation using Ignite thin client
We are attempting to use Apache Ignite as a distributed storage for session variables in a web farm environment. I know that Apache Ignite already has a thick client session state provider in nuget but it is too heavy and too complex for our current…

Kaizer69
- 373
- 4
- 18
0
votes
1 answer
Sample Ext Js state provide?
Can anyone tell me sample of Ext JS provider, a specially if it intends to use any HTML 5
storage mechanism.
Thanks.

Alexandr
- 1,452
- 2
- 20
- 42
0
votes
1 answer
Angular: Insert first child into parent (ui-view)
I am trying to put the first child component into parent one, e.g. test1.html should be inside test.html. Here's the html code:
test.html:
test1.html:
First
// This should render…
Sam
- 900
- 10
- 18
0
votes
1 answer
Angularjs ui-router: Uncaught Error: [$injector:modulerr] Failed to instantiate module app due to:Error: State 'frameworks'' is already defined
My application is failing with the error in the title. This error is occurring when I define too many states for my ui-router. Previously when I posted this problem I was told that this is the same as the error discussed by the posting, “Angular…

j-terranova
- 539
- 1
- 10
- 23
0
votes
3 answers
How to setup my url route in my case?
I am trying to capture a route to be something like
www.mysite.com/#name=ted&location=ca
I am using stateprovider and I setup as follow:
$stateProvider
.state('home', {
url: '/#name',
controller: function () {
…

Jwqq
- 997
- 4
- 14
- 22
0
votes
0 answers
Disabling state provider behavior for certain anchor tags in Angular
I have an Angular SPA that is working fine when using $stateProvider however I am having issues with some anchor tags which are causing view to be changed to default behavior $urlRouterProvider.otherwise("home");
For example I want following anchor…

programmerboy
- 341
- 5
- 15
0
votes
1 answer
Work flow of angularJS with stateprovider
Below is my project structure:
-modules
--> mymodule
-->controllers
-->services
-->views
-->mymod.js
-app-route.js
-index.html
where
mymod.js:
'use strict';
angular.module('mymodule',[
'myController.controllers',
…

MonsterJava
- 423
- 7
- 23