Quantcast
Channel: Mendix Forum Questions
Viewing all 83469 articles
Browse latest View live

Build a Powerful Wokflow: Unable to import Mendix SSO and Workflow Commons (Medix Studio Pro 9.1.1)

$
0
0
I am trying to complete the learning path “Build a Powerful Workflow”. I created a new App using Blank Web Template and when I imported Mendix SSO, I got 24 errors. I guess, I would have to go to Studio Pro 9.05, since 9.1.1 is not even available as an option in this forum to select. Nevertheless, since as part of the same problem, it was suggested by Jef Hellemans that if one creates the application in Develope portal and then opens in Studio Pro, it will work. This answer was tried by Samarpita Trivedi and looks like it worked for her. I have tried the same solution, but it doesn’t work for me. So, I am inviting suggestions/solutions/advice. Else, as suggested by Manishkumar Sahu, in the same question, I am going back to 9.05  

Pluggable widget not updating value from props

$
0
0
Hi All, I am creating a pluggable widget, and I am struggling to get the display value to update based on the input attribute provided to the widget. If any one could help me out it would be much appreciated. See full widget code below : Main Component import { React,Component ,createElement} from "react"; import CircularProgress from "./components/CircleComponent"; export class CircularProgressBar extends Component {          constructor(props){         super(props);         const {progress} = this.props;         console.log('constructor triggered');     }       render() {         const {progress} = this.props;         console.log('render triggered');         return (                     )     } }     Child Component   import React, { useRef, useEffect, createElement } from "react"; import styled from 'styled-components/native'; import {Animated} from 'react-native'; const EmptyColour = '#a0a0a1';  const ProgressColour = '#0085ff';   const CircleBase = styled(Animated.View)` width: ${props => props.size}px; height: ${props => props.size}px; border-radius: ${props => props.size / 2}px; border-width: ${props => props.size / 10}px; `; const EmptyCircle = styled(CircleBase)`     border-color: ${EmptyColour};     justify-content:center;     align-items: center;     transform: rotate(-45deg); `; const Indicator = styled(CircleBase)`     position: absolute;     border-left-color:${ProgressColour};     border-top-color:${ProgressColour};     border-bottom-color:transparent;     border-right-color:transparent; `; const CoverIndicator = styled(CircleBase)`     position: absolute;     border-left-color:${EmptyColour};     border-top-color:${EmptyColour};     border-bottom-color:transparent;     border-right-color:transparent; `; export default function CircularProgress(props) { //added input props     const {progress, size} = this.props //destructured the props     console.log (styled)     const animatedProgress = useRef(new Animated.Value(0)).current;        const animateProgress = useRef(toValue => {       Animated.spring(animatedProgress, {         toValue,         useNativeDriver: true,       }).start();     }).current;        useEffect(() => {       animateProgress(progress);     }, [animateProgress,progress]);        const firstIndicatorRotate = animatedProgress.interpolate({       inputRange: [0, 50],       outputRange: ['0deg', '180deg'],       extrapolate: 'clamp',     });        const secondIndicatorRotate = animatedProgress.interpolate({       inputRange: [0, 100],       outputRange: ['0deg', '360deg'],       extrapolate: 'clamp',     });        const secondIndictorVisibility = animatedProgress.interpolate({       inputRange: [0, 49, 50, 100],       outputRange: [0, 0, 1, 1],       extrapolate: 'clamp',     });        return (                                            );   }   Widget XML       Circular Progress Bar    Animated Circle Progress widget            iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAMAAACdt4HsAAABp1BMVEUAAABV//9mzP9LtP9Ms/9Jtv9NsvdJsfpLtPpJsfdJsfhJsvhJsvdKsvdJsPhKsPhJsfdJsPhJsfdIsfhJsfdIsPdJsfhJsfhJsPhJsPhIsfhIsPdJsPdKsPdKsfdNsvdOsvdPs/dQs/dRtPdStPdTtPdUtfdWtvdXtvdauPdcuPdeufdeufhguvhiu/hju/hkvPhmvfhnvfhpvvhrv/huwPhvwfhxwfhywvhzwvh4xfl5xfl6xfl8xvl9xvl9x/mByPmCyfmFyvmGyvmJzPmKzPmLzfmNzvqPzvqQz/qT0PqU0PqU0fqX0vqY0vqa0/qe1fqg1vqj1/uk1/un2fup2vut2/uv3Puw3Puw3fuz3vu13/u23/u34Pu44Pu64fu64fy84vy94vy+4/y/4/zD5fzE5fzG5vzH5vzI5/zK6PzL6PzR6/zT7P3U7P3V7f3W7f3Y7v3Z7v3c8P3e8f3f8f3g8f3i8v3l8/3l9P3n9P3r9v7t9/7u9/7v+P7w+P7x+f7y+f70+v71+v74/P75/P76/f77/f78/f78/v79/v7+/v7////6dMsRAAAAG3RSTlMAAwURGxwhMTNic3SEh4iVp7XBzejt7vH5/f6PsMNWAAABsklEQVR4AWIYfGAUjIJRMAqYuYREJKWJAqLCPGwY+jnFpEkBEryMqPr5pEkFgkwo9kuTDviR/S9GhgFSHAgDuKXJAQIIA4TIMkAcEY4i0mQBVrgBkuQZwA43QJo8wIFhQEhEOIBQOutHJozDOP5Crp4e1RhkJ0tKGJFd6oNEdtmJyEIzpaZl5nrRZgaHM/2Pf5/vwXXfyagXgG93bwSAlEolowLMm9w83gibhXH2gKKVdD67gTnWjwCk+VVjMQS4suSnnjMLRVFc9sAHvAX2A9fySaXNBMbEZVUWscaHIMRuqwBgD8hDEbnsRmfjUKJkAQZGCTlO/xWBwIADQLIZBlY441MvfoF1xlFS/4fy+bzXKh4dgNJE7L3eh3tmtuWa+AMcMIY3dgUvZQpGEYmMw2kD7HC+R29UqyoXLaBd0QZxzgXgikLLDSqJTKU5HOcS0MsbA9jPqtwCRvXm2eorBbNIJBw3KJ9O4Yl+AAXdnyaLt7PWN3jRWLvzmAVp94zO5+n41/onfo/UpExxZqI0O7NQr0DhIq9Io7hQpbRYp7hiobRqo6ByFcNWuY6CUTAKRgEAo8X0lBD3V30AAAAASUVORK5CYII=                                             Progress Indicator                The attribute that contains the circularprogressbar value, should be an integer between 0 and 100                                                                             

how do I make a get request to msonline azure public keys api - https://login.microsoftonline.com/{tenantid}/discovery/v2.0/keys?appid={appid}

$
0
0
I am doing JWT token authentication from an Azure platform generated token for an applications exposed Rest API.  I am able to get a response using a browser to the posted url, but cannot get a response in code.  I have tried both Post and GET but it is meant to be a Get from the documentation I have read. Has anyone else done Token authentication against Azure and encountered/resolved this situation.  

Mqtt Subscriber not working

$
0
0
Hi Everyone, I am trying to connect the MQTT subscriber in Mendix app to an cloud broker but for some reason it doesn’t connect. I have tried the same with Mosquito subscriber (see image) and it works instantly. I am attaching the images of the project. Please help me out here.        

Retrieve the list of logged in users

$
0
0
Hi ,   I have been trying to create the overview page that shows the list of logged in users to the application. I found two ways to implement it, but I’m struck in both ways.   First way: I was trying to follow the approach of Call REST service to admin handler as mentioned in following URL. https://docs.mendix.com/refguide/monitoring-mendix-runtime#6-logged-in-users.   What will be the URL endpoint ? for example if application is hosted in URL https://www.abctest.com then endpoint for this request should be https://www.abctest.com:8090 How to find the value of X-M2EE-Authentication: ? as per documentation it is mentioned as password can be fetched from enviroinment variables, which I’m not sure how to find it.   Second approach: Get the list of users via java action, I was trying to implement following code but lot of error was throwing during compilation , can you please help on complete  Java action code, because i’m new to both java and mendix.   {         // BEGIN USER CODE         ArrayList userNameList = new ArrayList();         for (ISession session: Core.getActiveSessions()) {             String userName = session.getUser().getName();             userNameList.add(userName);         }         return userNameList;         // END USER CODE     }   Thanks , Balaji S

Call external app from mendix (POST request)

$
0
0
Is there a way to send a POST request from a mendix application directly to another application that is not a mendix (as it is possible using POSTMAN to send the request directly)?    

How to select Boolean value in a dropdown?

$
0
0
I want to change boolean attribute using a dropdown with 2 options (yes/no). How can I implement it (bool attribute by default works only with a checkbox and radio button widgets)?

I want to find the total number of objects in a list ,how is it possible?

$
0
0
i want to find at a time number of object on list 

JSON Structure

$
0
0
HI Team,  can You suggest how to  call the json object to the postgres database.

how to convert current date time in dd-MM-yyyy format

$
0
0
I am retrieving the current date and time in microflow , and using that time to retrieve other data, but i need current date n time in dd-MM-yyyy format . How to convert it. 

Drop down filter

$
0
0
hi I have a scenario where I’m using drop down filter widget when I select an attribute from the drop down filter is not applied  It is displaying the whole list  Any suggestions on this

Reset a learning path / module

$
0
0
Hi there, is there a way to reset a learning path or a module in Mendix Academy? I started the “Become a Rapid Developer” learning path a few months ago.  Well, life got in the way and I am not 100% sure if I still remember everything I discovered at that time. Is there a way to start “anew” and also “delete” what I have developed so far?

Uploading a file on a Native app

$
0
0
I'm currently trying to build functionality where a user is able to upload a video on a native app. The basic idea is that a user records a task which is then sent to a manager for approval. I'm running into a bit of trouble with the uploading of the file however. There is nothing similar to the Hybrid phone camera widget and native pages don't even have a file upload widget. Has anyone had any experience with making something similar? Something with camera integration would be amazing but I would settle for simply being able to select a file from storage and upload it. Any help would be much appreciated!

Learning Path Importing and Exporting Your Data

$
0
0
Hi everyone, I’m currently doing the Importing and Exporting Your Data Learning Path. When I download Excel Importer and Mx Model Reflection Apps (4.1) and configure it as the security requirments and learning path says, the application shows these errors. It seems that there are pages which haven’t been created when the modules were imported. I added a screenshot below. Regards, Javier.  

StepWizard Mendix vertically

$
0
0
Hi guys, I'm using the Steps wizard (https://atlas2.mendix.com/p/bb_stepswizard/7318349394477559) in my application but it is sorted horizontally. Is there a way to show it vertically?  When i change the class from ‘wizard’ to ‘wizard-vertically’ the items are showed vertically but the icons and there connection (the lines) are lost.     

Unable to Run Locally Native App Project

$
0
0
I have a native app project which was working fine in Mendix 8.9.0. I opened it with Mendix 8.11.0 and upgraded the project. When I run locally the web part of app starts and I can view web application but native app does not start and and error message is displayed which is mentioned at end. In view mendix app it says “application must be running before connection specific info can be displayed” Native packager failed to start. Native packager logs: C:\Program Files\Mendix\8.11.0.1311\modeler\tools\node\node.exe "C:\Program Files\Mendix\8.11.0.1311\modeler\tools\node\node_modules\react-native\local-cli\cli.js" start --port "8083" --config "C:\Users\ushabbir\Documents\Mendix\App-main\deployment\native\metro.config.json" warn Failed to chmod xsel: EPERM: operation not permitted, chmod 'C:\Program Files\Mendix\8.11.0.1311\modeler\tools\node\node_modules\react-native\node_modules\@react-native-community\cli\build\commands\server\external\xsel' ┌──────────────────────────────────────────────────────────────────────────────┐ │ │ │ Running Metro Bundler on port 8083. │ │ │ │ Keep Metro running while developing on any JS projects. Feel free to │ │ close this tab and run your own Metro instance if you prefer. │ │ │ │ https://github.com/facebook/react-native │ │ │ └──────────────────────────────────────────────────────────────────────────────┘ Looking for JS files in C:\Users\ushabbir\Documents\Mendix\App-main\deployment\native C:/Users/ushabbir/Documents/Mendix/App-main/theme C:/Users/ushabbir/Documents/Mendix/App-main/javascriptsource C:/Program Files/Mendix/8.11.0.1311/modeler/tools/node/node_modules 2020-07-21T12:52:25,221: [cli] unable to talk to your watchman on \\.\pipe\watchman-ushabbir! (No such file or directory) Watchman: watchman --no-pretty get-sockname returned with exit code=1, signal=null, stderr= 2020-07-21T12:52:25,221: [cli] unable to talk to your watchman on \\.\pipe\watchman-ushabbir! (No such file or directory) tc tc  

Native App doesn't run locally (Native Packager failed to start)

$
0
0
I am developing a native app and I run it locally to test it on Make it Native App, however I keep getting this error. Please tell me how to fix this. I am using Mendix Version 8.17.0.   C:\Program Files\Mendix\8.17.0.11170\modeler\tools\node\node.exe "C:\Program Files\Mendix\8.17.0.11170\modeler\tools\node\node_modules\react-native\local-cli\cli.js" start --port "8083" --config "C:\Users\ebs1\Documents\Mendix\TestPQC-branch\deployment\native\metro.config.json"  warn Failed to chmod xsel: EPERM: operation not permitted, chmod 'C:\Program Files\Mendix\8.17.0.11170\modeler\tools\node\node_modules\react-native\node_modules\@react-native-community\cli\build\commands\server\external\xsel' ┌──────────────────────────────────────────────────────────────────────────────┐ │                                                                              â”‚ │  Running Metro Bundler on port 8083.                                         │ │                                                                              â”‚ │  Keep Metro running while developing on any JS projects. Feel free to        â”‚ │  close this tab and run your own Metro instance if you prefer.               │ │                                                                              â”‚ │  https://github.com/facebook/react-native                                    â”‚ │                                                                              â”‚ └──────────────────────────────────────────────────────────────────────────────┘ Looking for JS files in    C:\Users\ebs1\Documents\Mendix\TestPQC-branch\deployment\native    C:/Users/ebs1/Documents/Mendix/TestPQC-branch/theme    C:/Users/ebs1/Documents/Mendix/TestPQC-branch/javascriptsource    C:/Program Files/Mendix/8.17.0.11170/modeler/tools/node/node_modules  2020-12-31T18:24:29,214: [cli] unable to talk to your watchman on \\.\pipe\watchman-ebs1! (No such file or directory) Watchman:  watchman --no-pretty get-sockname returned with exit code=1, signal=null, stderr= 2020-12-31T18:24:29,214: [cli] unable to talk to your watchman on \\.\pipe\watchman-ebs1! (No such file or directory)  

Failed to build MDA file

$
0
0
Hello everybody,  I tried to publish my application via the publish-button in Mendix Studio Pro. After a while it says “Failed to build MDA file. Please view the lastest log file in the deployment package”: The log files says the following: [rtlauncher:container$] INFO Container start took 6479. Ready to accept admin requests. May 10, 2021 2:58:55 PM org.hsqldb.persist.Logger logInfoEvent INFO: Database closed I am not able to view the lastest build output. 

RandomStrongPassword Java action breaks after upgrading to Mendix 8

$
0
0
Hi Forum,   When saving user accounts, I use the RandomStrongPassword Java action from the CommunityCommons. However, since I upgraded my project from Mendix 7 to Mendix 8, it throws the following error:   Error in execution of monitored action 'RegularClientAction' (execution id: 1602654812701-39, execution type: CLIENT) -------- java.lang.NoSuchMethodError: org.apache.commons.lang3.RandomStringUtils.randomAlphanumeric(II)Ljava/lang/String;     at communitycommons.StringUtils.generateCommonLangPassword(StringUtils.java:313)     at communitycommons.StringUtils.randomStrongPassword(StringUtils.java:303)     at communitycommons.actions.RandomStrongPassword.executeAction(RandomStrongPassword.java:43)     at communitycommons.actions.RandomStrongPassword.executeAction(RandomStrongPassword.java:21)     at com.mendix.systemwideinterfaces.core.UserAction.execute(UserAction.java:46)     at com.mendix.basis.actionmanagement.CoreActionHandlerImpl.doCall(CoreActionHandlerImpl.scala:71)     at com.mendix.basis.actionmanagement.CoreActionHandlerImpl.call(CoreActionHandlerImpl.scala:49)     at com.mendix.core.actionmanagement.CoreAction.call(CoreAction.java:54)     at com.mendix.basis.actionmanagement.ActionManagerBase$1.execute(ActionManagerBase.java:147)     at com.mendix.util.classloading.Runner.doRunUsingClassLoaderOf(Runner.java:32)     at com.mendix.basis.actionmanagement.ActionManagerBase.executeSync(ActionManagerBase.java:152)     at com.mendix.basis.actionmanagement.UserActionCallBuilderImpl.execute(UserActionCallBuilderImpl.scala:30)     at com.mendix.modules.microflowengine.actions.actioncall.JavaAction.execute(JavaAction.scala:56)     at com.mendix.modules.microflowengine.microflow.impl.MicroflowObject.execute(MicroflowObject.java:47)     at com.mendix.modules.microflowengine.microflow.impl.MicroflowImpl.executeAfterBreakingIfNecessary(MicroflowImpl.java:215)     at com.mendix.modules.microflowengine.microflow.impl.MicroflowImpl.executeAction(MicroflowImpl.java:165)     at com.mendix.systemwideinterfaces.core.UserAction.execute(UserAction.java:46)     at com.mendix.basis.actionmanagement.CoreActionHandlerImpl.doCall(CoreActionHandlerImpl.scala:71)     at com.mendix.basis.actionmanagement.CoreActionHandlerImpl.call(CoreActionHandlerImpl.scala:49)     at com.mendix.core.actionmanagement.CoreAction.call(CoreAction.java:54)     at com.mendix.basis.actionmanagement.ActionManagerBase$1.execute(ActionManagerBase.java:147)     at com.mendix.util.classloading.Runner.doRunUsingClassLoaderOf(Runner.java:32)     at com.mendix.basis.actionmanagement.ActionManagerBase.executeSync(ActionManagerBase.java:152)     at com.mendix.basis.actionmanagement.MicroflowCallBuilderImpl.execute(MicroflowCallBuilderImpl.scala:40)     at com.mendix.webui.actions.client.ExecuteMicroflowAction.runMicroflow(ExecuteMicroflowAction.scala:76)     at com.mendix.webui.actions.client.ExecuteMicroflowAction.$anonfun$apply$3(ExecuteMicroflowAction.scala:42)     at com.mendix.webui.actions.client.RegularClientAction$Helpers$.$anonfun$liftEither$1(RegularClientAction.scala:29)     at com.mendix.webui.actions.client.RegularClientAction$Helpers$StateHandler.$anonfun$apply$4(RegularClientAction.scala:55)     at com.mendix.webui.requesthandling.helpers.StateHandling.withState(StateHandling.scala:35)     at com.mendix.webui.requesthandling.helpers.StateHandling.withState$(StateHandling.scala:32)     at com.mendix.webui.actions.client.RegularClientAction$Helpers$StateHandler.withState(RegularClientAction.scala:45)     at com.mendix.webui.actions.client.RegularClientAction$Helpers$StateHandler.apply(RegularClientAction.scala:53)     at com.mendix.webui.actions.client.RegularClientAction$Helpers$StateHandler.apply(RegularClientAction.scala:45)     at com.mendix.webui.actions.client.ExecuteMicroflowAction.apply(ExecuteMicroflowAction.scala:43)     at com.mendix.webui.actions.client.ExecuteMicroflowAction.apply(ExecuteMicroflowAction.scala:22)     at com.mendix.webui.actions.client.RegularClientAction.$anonfun$execute$3(RegularClientAction.scala:109)     at scala.util.Try$.apply(Try.scala:213)     at com.mendix.webui.actions.client.RegularClientAction.$anonfun$execute$2(RegularClientAction.scala:109)     at com.mendix.webui.actions.client.RegularClientAction.$anonfun$execute$2$adapted(RegularClientAction.scala:107)     at com.mendix.webui.requesthandling.helpers.ContextHandling.$anonfun$inContext$5(ContextHandling.scala:47)     at scala.runtime.java8.JFunction0$mcV$sp.apply(JFunction0$mcV$sp.java:23)     at com.mendix.basis.actionmanagement.IMonitoredAction$$anon$1.execute(IMonitoredAction.scala:47)     at com.mendix.util.classloading.Runner.doRunUsingClassLoaderOf(Runner.java:32)     at com.mendix.basis.actionmanagement.IMonitoredAction.monitor(IMonitoredAction.scala:49)     at com.mendix.basis.actionmanagement.IMonitoredAction.monitor$(IMonitoredAction.scala:25)     at com.mendix.webui.requesthandling.helpers.ContextHandling$ClientMonitoredAction.monitor(ContextHandling.scala:59)     at com.mendix.webui.requesthandling.helpers.ContextHandling.inContext(ContextHandling.scala:47)     at com.mendix.webui.requesthandling.helpers.ContextHandling.inContext$(ContextHandling.scala:27)     at com.mendix.webui.actions.client.RegularClientAction.inContext(RegularClientAction.scala:86)     at com.mendix.webui.requesthandling.helpers.ContextHandling.inContext(ContextHandling.scala:24)     at com.mendix.webui.requesthandling.helpers.ContextHandling.inContext$(ContextHandling.scala:19)     at com.mendix.webui.actions.client.RegularClientAction.inContext(RegularClientAction.scala:86)     at com.mendix.webui.actions.client.RegularClientAction.$anonfun$execute$1(RegularClientAction.scala:107)     at scala.runtime.java8.JFunction0$mcV$sp.apply(JFunction0$mcV$sp.java:23)     at com.mendix.webui.requesthandling.helpers.ProfileHandling.profileRequest(ProfileHandling.scala:14)     at com.mendix.webui.requesthandling.helpers.ProfileHandling.profileRequest$(ProfileHandling.scala:10)     at com.mendix.webui.actions.client.RegularClientAction.profileRequest(RegularClientAction.scala:86)     at com.mendix.webui.actions.client.RegularClientAction.execute(RegularClientAction.scala:104)     at com.mendix.webui.requesthandling.ClientRequestHandler.handleAction(ClientRequestHandler.scala:104)     at com.mendix.webui.requesthandling.ClientRequestHandler.processRequest(ClientRequestHandler.scala:81)     at com.mendix.externalinterface.connector.RequestHandler.doProcessRequest(RequestHandler.java:40)     at com.mendix.external.connector.MxRuntimeConnector$1.execute(MxRuntimeConnector.java:76)     at com.mendix.external.connector.MxRuntimeConnector$1.execute(MxRuntimeConnector.java:73)     at com.mendix.util.classloading.Runner.doRunUsingClassLoaderOf(Runner.java:32)     at com.mendix.external.connector.MxRuntimeConnector.processRequest(MxRuntimeConnector.java:79)     at com.mendix.basis.impl.MxRuntimeImpl.processRequest(MxRuntimeImpl.java:988)     at com.mendix.m2ee.appcontainer.server.handler.RuntimeHandler.service(RuntimeHandler.java:42)     at javax.servlet.http.HttpServlet.service(HttpServlet.java:790)     at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:755)     at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:547)     at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:233)     at org.eclipse.jetty.server.session.SessionHandler.doHandle(SessionHandler.java:1610)     at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:233)     at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1300)     at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:188)     at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:485)     at org.eclipse.jetty.server.session.SessionHandler.doScope(SessionHandler.java:1580)     at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:186)     at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1215)     at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141)     at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127)     at org.eclipse.jetty.server.Server.handle(Server.java:500)     at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:383)     at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:547)     at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:375)     at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:273)     at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311)     at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103)     at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:117)     at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336)     at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313)     at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171)     at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:129)     at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:375)     at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:806)     at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:938)     at java.base/java.lang.Thread.run(Thread.java:834)     I thought this would be solved by excluding the org.apache.commons.lang3.jar lib in favor of the newer commons-lang3.jar lib, but the error persists. I have also already updated CommunityCommons to the last version (8.2), and deleted and readded the RandomStrongPassword action.     These are all the libs in my project that have “lang3” in them:   Any help would be much appreciated!   Thanks,   Ruben

How can we check remaining storage size in environment?

$
0
0
Hi Team, I am trying to check total environment size as well as remaining size in my Acceptance and Production environment. Where and how can I check this? Thanks and Regards, Samarth Jadhav  
Viewing all 83469 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>