Hi, I am looking for a solution to download a file from attachments by ID for users who have disabled the attachment panel (they can't see all attachments) or for those who do not have permission to access attachments. However, I need to allow them to download a specific attachment from a document. I know I can use this URL(for those who have only disabled attachments panel) <SITE ADDRESS>/api/nav/db/1/attachments/<ATTACHMENT ID>/download, but I would prefer a solution based on the SDK. Co (...)
Hi, I have another case. Custom SDK can be run in standard mode, pending in transaction, and pending after transaction. How can I set one of these modes manually?
Hi, after updating to 2025 on one server there is some problem with the "help" plugin: See the picture attached. I did not find any configuration regarding this.
Could you share how I can embed a videoplayer in WEBCON application ? Can I get player's status (video-playing is finished)?
Hi, can you share some example code for those types of plugins?
Is there a way to show a message box for the user using the SDK that will not be saved in the document history? Only pop up in a document. Or is there a way to modify a specific attribute in the document history (something like the WEBCON GDPR action does)?
Hello, as descriped on the developer documentation 'Package overview' page, I've tried to include different DLLs (in particular 'System.Data.Odbc') for service and protal taken from seperate projects' output (targeting .NET Framwork / .NET 8). But the DLLs are never packed within the generated plugin package zip-file. -> https://developer.webcon.com/docs/package-overview -> https://developer.webcon.com/docs/package-manifest#servicedependencies-and-portaldependencies -> https://developer.we (...)
Hello, yesterday, after installing the current Visual Studio 2022 Update v17.12.x (from v17.11.x), the WEBCON BPS SDK Tools no longer started when trying to open them via 'View -> Other Windows -> WEBCON BPS SDK Tools'. I've got an error message (I don't have a screenshot from this message) with a reference to the ActivityLog.xml file within the VS main program folder. On the ActivityLog.xml file I've found a System.Reflection.TargetInvocationException, followed by a System.IO.FileLoadE (...)
HI, How to monitor the moment of typing characters into an attribute using the SDK. I would like to, for example, call an API after typing 3 characters and save the retrieved values to another attribute.
I am trying to create Webcon SDK Plugin that will update multiple instances( update fields of different instances ) but I have not figured out how to get instance by a number. I have list of instance ids. RunCustomActionParams args, args.Context.CurrentDocument contains GetFieldValue method but does not contain any method GetInstanceById
Hi, I tried to work with Webcon API on the trial but only what I retrieve is empty list of tasks. I successfully authenticate by app client context and receive token which I used to read tasks. I cannot register by user context and I cannot read other data from Webcon. Is it a standard behavior for trial or is there something I missed?
I have created a simple SDK Plugin that includes one input field. In the database, the field's value is saved in the format "24#24 Months$$de-DE$$24 Monate", and it is displayed in the report exactly as "24#24 Months$$de-DE$$24 Monate". My goal is to display this value in the report as "24 Months" when the user's language is English, and as "24 Monate" when the user's language is German. How can I achieve this multilanguage display in the report?
Czy jest mozliwosc integracji Webcona ze Slackiem? Dodatkowo, czy planujecie wdrozyc powiadomienia push na przegladarkach? Dziekuje :)
Hi, Do someone know how can to create an attachment instances with content and filegroup for send in specific instances? I need for version sdk 2023 I attached the cod fromversion 2022. NewAttachmentData newAttachmentData = new NewAttachmentData(args.Context,Configuration.informationNecessary.FileName, fileMerge_Necorupt); newAttachmentData.FileGroup = new AttachmentsGroup(Configuration.informationNecessary.GropuName.Split('#')[0], Configuration.informationNecessary.GropuName.Spli (...)
Hi, so there is a new version of Autenti plugin, also working with Webcon 2023. There are new configuration fields/options: Signature Type (Required) SMS authentication Unlock document by SMS Is there ANY documentation regarding options for those fields? Experimenting, I discover that Signature Type must be numeric, and: 0 means Autenti signature 1 means qualified electronic signature SMS authentication and Unlock document by SMS are impossible for me to configure, what e (...)
Hi, does someone of you use a FormFieldExtensionJS for a multiline text field? We used this one to store a JSON as a string and in 2023.1.3 the plugin no longer works. I haven't checked the WEBCON BPS JS code in 2023.1.2 but in the new version: 1. the change function in the plugin triggers controller.change 2. this calls validateCCValueModel 3. Since the hasCustomModel is undefined 4. The default validation is applied and this validation fails. In the "past" I returned a string an (...)
Hey, we are looking to introduce possibility of Digital signature in WEBCON. I have found information that Certificate X.509 and DocuSign are support. However our business wants to use PandaDoc, do you know if it is supported? I cannot find any information about it. Kind regards, Jan
Hello Everyone I have to change sdk Custom Action class (not my code) from version 2019 to 2021. In old CustomAction was used HostingEnvironment.Impersonate() and I have also used this in 2021 version, but it generates error: Method not found: 'WebCon.WorkFlow.SDK.Documents.Model.Base.ReadOnlyEntitiesCollection`1 WebCon.WorkFlow.SDK.Documents.Model.NewDocumentData.get_TextFields()'. System.MissingMethodException at WebCon.SRC.CustomActions.ADEmployeeSID.Run(RunCustomActionParams args) (...)
Hello, I am in the process of standardizing our plugin packages. I would like to put all plugins on a common basis in order to be able to reuse functions such as custom logging methods in each plugin package without copying source code. I have often used nested plugin and configuration classes within a plugin package project. This works without any problems. Example: *** shared project / solution *** Base plugin class: public abstract class MyCustomActionBase<TConfig> : CustomA (...)
Hello Community, We have problems with the different runtime environments of the WBCON Workflow Service (under .NET Framework) and the WEBCON BPS Portal (under .NET Core) and System.Data.ODBC. I have developed an SDK plugin that integrates the NuGet package System.Data.ODBC to access ODBC data sources. The target runtime environment of the plugin package is .NET Standard 2.0, so that the plugins can be executed both in the service and portal. Without the integration of System.Data.ODBC (...)