Browse all forums dedicated to the Rocket MultiValue product family.
Recently active
I found these files in our web server that use UniObjects for JAVA: uojlog_0.log.0, uojlog_0.log.0.lck, uojlog_1.log.0, uojlog_1.log.0.lck and on and on. Since I am using UOJ version 5.111.2 if that helps. BTW the files are always empty.------------------------------Doug Averch (Owner)U2logic, Inc.daverch@u2logic.com303-946-5226 (cell & text)------------------------------
I have two users who's internet connection seems to be causing issues. They're losing their connection constantly disrupting their work and leaving orphaned processes that use up their Universe Licenses. The problem is, they're planning on migrating off their Universe based system in February and don't want to spend the money to upgrade everyone. Is it possible to have only a few people connecting with AccuTerm 8 and the ReZume function while leaving everyone else on AccuTerm 7? Any idea on what the costs would be? Is ReZume priced separately?
Hi all I'm trying to create an HTTP request following this: POST /quiter/qae/... HTTP/1.1 Host: ...:8000 Content-Length: 592 Content-Type: multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW ------WebKitFormBoundary7MA4YWxkTrZu0gW Content-Disposition: form-data; name="attachmentMetadata" {"referenciaDms" : "...","ficheroDms" : "...","usuario" : "quiter","descripcion" : "prueba","workspace" : "quiter"} ------WebKitFormBoundary7MA4YWxkTrZu0gW Content-Disposition: form-data; name="file"; filename="/u2/quiter/DATOS/qsac_quiter.png" Content-Type: image/png (data) ------WebKitFormBoundary7MA4YWxkTrZu0gW-- -- My BASIC code is like this NOM.SUB='RU2' URL.SERVICIO='http://...:8000/quiter/qae/...' TIPO.LLAMADA='POST:multipart/form-data' RESPUESTA=setHTTPDefault('VERSION','1.1') RESPUESTA=createRequest(URL.SERVICIO,TIPO.LLAMADA,HTTP.HANDLE) ADDPARAM='{"referenciaDms" : "85818","ficheroDms" : "FMVEHPT","usuario" : "quiter","descripcion" : "prueba","workspace" : "quiter
Hi All, We've been acquainted with the setup.ini [Defaults] header, and how insert the product key therein. This worked during our POC phase, and it prevented the "Evaluation License ?" box from coming up, when we did manual installs onto a new desktop. When our End User Support team however, attempted a mass rollout using Marimba, the desktop support tool, the user is now getting the Eval Lic question box. Is there some secret sauce we have to use for this method of rollout? Thanks - Baker ====================== for Reference, From Robert ========================= [Defaults] ;MAINDIR=Program Files\\Atwin80 ;HOMEDIR=My Documents ;DESKTOPSHORTCUT=Y ALLUSERS=Y AUTOACTIVATE=Y AUTOUPGRADE=Y ;CUSTOMFEATURECODE=xxxx LICENSEKEY=put-your-key-here-xxxx-xxxx KEYTYPE=1 ;EMAIL=you@company.com Notice I have uncommented the ALLUSERS, AUTOACTIVATE, LICENSEKEY and KEYTYPE. Keytype 1 is device licensing so you would not use an email, leave EMAIL commented. ------------------------------Baker HughesS
Not sure what this means. My staff attempted to install 1.3.4 on a Server that previously had 1.3.1. He got this error???? Now what?
Last time long long ago, during vb6 and asp classic time, we are using UVDK/UniObjects to call UV routines for our front end.. What are the options now ? is there any newer version of UniObjects for the latest .NET ? thank you.------------------------------Koon MIng FongMrP & O Global Technologies SDN. BHD.KUALA LUMPUR MY------------------------------
Hi, In Visual Studio Code we have option to work on remote server with SSH, docker, WSL or Tunnel. For my purposes, the way to work via SSH is ideal. This functionality allows to work with the remote server as with a local computer (ref. https://code.visualstudio.com/docs/remote/ssh). I encountered an problem when I try to use the "Go to Definition" option. The extension tries to open the file by appending the project path to the absolute file path to the file: PROJECT_ROOT = '/myBigDisc/UV/REMACC'FILE_PATH = '/myBigDisc/UV/REMACC/helloWorld.B' The path that the extension tries to open when I navigate to the definition of this variable: /myBigDisc/UV/REMACC/myBigDisc/UV/REMACC/helloWorld.B PROGRAM helloWorld.B myFirstVariable = '' return end I also noticed some problems with "Map cataloged programs" and "includeMapping"Functionality of debugging, compilation and connections to the U2 server work properly Could you please advise how I can get this to work with remote-ssh? Thank y
The latest release of MVIS v1.3.4 is available today. Some of 1.3.4 highlights are: Support for Azure application insights 2.4 to make MVIS more resilient and compatible with Java 8 and 11. UI enhancements to simplify configuration of OAuth 2.0 identity providers. MVIS supports any provider that implements OAuth 2.0 since v1.3.1. However, the UI limited the selection to a couple of providers and required a work-around to configure. In 1.3.4 the UI is updated to accept any standard provider. Improved documentation of timeout and other time related runtime parameters. MVIS 1.3.4 product lifecycle dates: 12 Dec 2023 GA 12 Dec 2026 EOM 12 Dec 2027 EOS 12 Dec 2028 EOLS ------------------------------Hernando BordaProduct Manager, MultiValue ToolsRocket Softwarehborda@rocketsoftware.com------------------------------
MultiValue Integration Server version 1.3.4 has been released on December 12 2023 for the below platforms/versions:AIX POWER 7.1, 7.2AlmaLinux 8Amazon Linux 2CentOS 7, 8Oracle Enterprise Linux x86 7, 8RedHat Enterprise Linux Intel 7, 8Rocky Linux 8SuSE Linux Enterprise Server Intel 11.0, 12.0, 15.0Windows Windows 10, Windows 11, 2016, 2019, 2022This product is available to order immediately via your Rocket software provider or by logging into your RBC account at https://rbc.rocketsoftware.com or https://rbcint.rocketsoftware.com.Additional Product Information is available on the Product Availability Matrix at https://rbc.rocketsoftware.com/matrix.asp or https://rbcint.rocketsoftware.com/matrix.aspFor any questions on product availability, pl
I need to create a dictionary that takes the multivalue data from a field in FILE, field<1> Say: Field<1> is 123a1]456b2]789c9 I want a dictionary item, say called TEST2 to show only (a1,b2,c9) Currently i have the Dictionary item TEST2 as I-type with MATCHFIELD(@RECORD<1>,"0N0X",2) in field 2 I want LIST FILE F1 TEST2 to show: FILE F1……… TEST2……… 1 123a1 a12 456b2 b23 789c9 c9 But what I'm getting is:LIST FILE F1 TEST2 FILE F1……… TEST2………1 123S1 S12 456S2 456S23 789L9 789L9 I've tried a number of options in the TEST2 dictionary item but no joy. Can anyone help with this. I had done something similar decades ago, but cannot remember how. I want to avoid using a subroutine if I can. Any advice would be greatly appreciated. Tek.------------------------------Tek IleriRocket Forum Shared Account-----------
Hello, I have an Universe 11.3.1.6017 on a Windows Server 2019 installed from April 2023. All was ok. Since November 2023, uvsh.exe or uv.exe no longer works. Maybe after the last KB from Windows Update, but Im not sure. But uvapi (rest server) still works. When I try to connect in telnet, or trying to execute uvsh.exe / uv.exe in cmd, there is an error (see attachment) : "The Universe start up process has not yet completed. The use of Universe is currently disabled" I've checked : Universe log files : no information Eventvwr Universe traces : no informations UAC is totaly disabled Approbation mode is disabled I've tried the following solutions, without success : Re-register licenses Reboot server Relaunch Universe services With another local admin account (with very complex and very simple password) With another domain admin I'm out of ideas :( It's a production server, and it's not easy to reinstall Universe. Can you help me ? Thanks, Corentin
Hi allI'm trying to use the PyCallFunction to run some Python code but I'm having trouble decoding Universe strings in the Python side. This is a snippet of the Python code: COD_DEF_SYS = 'cp1252' SEP_MUL_DEF = chr(253) SEP_FLD_DEF = chr(254) def python_compression(operation: str, files: str, extra_params: str) -> str: if operation == 'c': file_as_bytes = bytes(file, COD_DEF_SYS, errors='backslashreplace') bytes_separador = bytes(SEP_FLD_DEF, COD_DEF_SYS) bytes_multivalorado = bytes(SEP_MUL_DEF, COD_DEF_SYS) xresultado = file_as_bytes.split(bytes_separador) print(file_as_bytes) print(bytes_separador) print(bytes_multivalorado) print(xresultado) And this is the BASIC call: LISTA_F='' LISTA_F<1>='hola' LISTA_F<2>='que' LISTA_F<3>='tal' LISTA_F<4,1>='multi' LISTA_F<4,2>='valorado' RESPUESTA=PyCallFunction(NOMBRE.MODULO.PY, NOMBRE.FUNCION.PY,'c', LISTA_F, 'test') T
I am sure their are some people on here who worked on R83 Pick systems way back . My first taste of MV was helping port a PRIME based system to Pick R83 on a small ICL CLAN mini computer. I was fresh out of college where we worked on huge mainframe machines and when I first saw the ICL CLAN machine I thought it was an air-conditioning unit. I was just reminiscing a bit on how efficient R83 was in terms of memory. If I recall correctly each Pick port needed about 500k . This led me to ask myself how many D3/Linux ports I could comfortably run on my desktop PC which has 32 GB of RAM? BTW I got into the Pick Multivalue arena, quite by accident and I'm still Picking away many years later. :) ------------------------------Neil PrattSystems Analyst / ProgrammerDaily Express IncUS------------------------------
Hi, I'm trying to download from the Trials page UniVerse. The web form will not accept @gmail.com email address's. As I'm between jobs I don't have a business email address. Is there another way to get to download a copy of the personal edition?
Morning All (South African Time!), I have a server upgrade coming up for a 65 user customer currently on D3 Linux 10.2. The plan is to go bleeding edge to 10.4 so have started the research and busy playing on a dev server. First off I see FSI and a totally new installation procedure. Last time I used FSI was 20 yrs back when a customer had D3/Windows on WindowsNT - still have nightmares about WindowsNT :) So the point of my post is to ask for any hints and gotchas from those who have already done a similar migration, as I see there are a number of difference so it's not going to be a filesave & restore kind of migration. We use MVSP and we shell out to Linux occasionally to kick off Bash & PHP scripts. We also use the spooler to kick off Python scripts to create PDFs and/or email reports. Any pointers will be gratefully accepted! Have a great weekend! Thanks Tom------------------------------Tom PowerOwnerPower Business SystemsBenoni ZA------------------------------
Hi, I am using UODOTNET, Version=3.171.0.8100 in my Asp.net web API project to connect to Infolease. do we required "Microsoft SQL Server, ODBC and OLE DB Driver" to function properly. I would like to know if we uninstall the "Microsoft SQL Server, ODBC and OLE DB Driver" from the server, still UODOTNET works as before?
We are testing out AWS Cloud server. Small environment with Universe running on Windows. The question is: How to setup a Windows printer on that AWS server and direct the output to a local printer in our office network? The printer could be a HP PCL enabled printer, or a Zebra label printer using ZPL.------------------------------Suresh AnbilDeveloperOHM Systems IncCincinnati OH US------------------------------
I've had a problem with Universe that I haven't been able to figure out. When I log onto an account I get a message with some verbiage: >uv UniVerse Command Language 11.3 Copyright Rocket Software, Inc. or its affiliates, All Rights Reserved 1985-2016 BARS.DWHS logged on: Mon Nov 27 19:17:38 2023 ESC[?1hESC=ESC[HESC[2JESC[1;30HDry Storage Main Menus When I have my terminal type set to xterm I get this annoying ESC[?1h string that puts the terminal into application mode. That changes what the arrow keys send and messes up some of my input routines. Where the %#$^ is that coming from? I don't even know what that UV logon message is called which is probably why I haven't found any documentation for it in any of the manuals. I'd look for some banner file but it's not just text. It's under UV program control because it knows the term type and changed what is sent based on that. Can anyone clue me in to where to look? Thanks!------------------------------Joe GoldthwaiteConsultantPhoeni
I am hoping someone can explain how Universe determines when, and from where, to load object code. What does Universe do when it has to call a subroutine. My experiments point to using a globally catalog subroutine as being faster than a locally catalog routine but I don't see why. I understand that with a local catalog the system must read the VOC to find the object location then load the object code, but once it is loaded it remains in memory for the duration of the program. Why would this be faster than a global catalog which must effectively do a similar thing. And regardless of how it is found and loaded, thereafter, the object remains in memory and there should be no difference in the cost of each subsequent call. Yet my testing shows a significant performance gain using a globally catalog subroutine. I believe a globally cataloged subroutine loaded to shared memory so multiple processes execute the same object code but each with there own memory space. Is that correct? What is t
I'm happy to share the news of the release of AccuTerm 8.1.1.0. The latest version of AccuTerm is available for download from Rocket Business Connect (RBC). Version 8.1.1 removes the requirement to have a live connection to Rocket software to authorize and activate AccuTerm. Instead, starting with 8.1.1 you will need to enter a license key to activate your product. After you activate AccuTerm you don't need to be able to connect to the internet or rely on Rocket's back-office systems to use or authorize your product. You can obtain your AccuTerm license keys through RBC. For more details on this and other AccuTerm information, you can read the AccuTerm FAQ. Please reach out to your account executive, Rocket support or Rocket product management if you have any questions. AccuTerm 8.1.1 PLC dates: 31 Oct 2023 GA 31 Oct 2026 EOM 31 Oct 2027 EOS 31 Oct 2028 EOLS ------------------------------Hernando BordaProduct Manager, MultiValue ToolsRocket Softwarehborda@rocketsoftware.com-----------
I have a challenge to automate the creation of a backup file for an existing data file. The data file being backed up will vary and they can be hashed or dynamic files. It has been reasonably straight forward until I came to the effort to support an existing dynamic file. All my previous posts about dynamic files are in an attempt to better understand how I can assess the existing file such that I can create the backup file using well-optimised specifications so the item copy process is as quick/efficient as possible. I was first thinking that ANALYZE.FILE might help determine both the Minimum modulo needed as well as the group size needed to properly cater for the data, but now I'm unsure if that is the best approach. My alternative method is to simply count the number of items in the existing file and generate an average item size, then set the MINIMUM.MODULO to the item count and set the RECORD.SIZE to the average item size and let UV's Dynamic file magic do it's work. I have come u
I'm looking for some information regarding the use of CALLC. Particularly if my source code will need to include the jsystem.h and where I should store the .so / source code on the system (or setup a path so a jbase program can call it). The old zumasys docs aren't quite enough and I couldn't find anything in the Rocket documentation. If anyone has experience using CALLC I'd appreciate the assistance.------------------------------Derek BandouveresProgrammer------------------------------
hello everybody, I post this question, do you have results ANALYZE.SHM -s on uv/windows 11.3... ? we checked on different servers and found that the values are always 0. do we have a configuration or rights problem? any help is welcome! with kind regards ------------------------------Manu Fernandes------------------------------
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.