Questions tagged [hllapi]
12 questions
8
votes
5 answers
How to 3270 screen-scrape from a Linux-based web app
I have a LAMP (PHP) web app which need to interface with programs on an IBM 3270 mainframe (via Microsoft SNA Server). One solution I'm looking at is screen-scraping via 3270. (I'm integrating the present with the past!)
Many years ago, I wrote C…

Peter Howe
- 1,403
- 2
- 16
- 30
2
votes
1 answer
Getting string from IBM's Personal Communications iSeries using EHLLAPI in C# gets me the string followed by garbage
I'm trying to automate a process in an as400 emulator (IBM's Personal Communications iSeries) and in order to do so, I'm using some code (that I totally did not steal from CodeProject) which uses EHLLAPI to connect to the emulator.
I created a…

ArminAH
- 113
- 10
2
votes
0 answers
HLLAPI Function 99 not working as expected
I have been trying to screen scrape from IBM's mainframe and I got stuck trying to convert the Row and Col into a position (Function 99). I have tried my best to debug this simple error but I just cannot find what's wrong with it.
Debug.Print…

Sebastian
- 23
- 3
1
vote
1 answer
Can I merge sketches present in 2 different columns in Google BigQuery
If i have 2 columns with sketches made on the same datatype, can i merge the sketches in both columns to get a final sketch corresponding to each row in the dataset in Google BigQuery?
col1 | col2 | sketchA|sketchB
_______________________________
c1…

Chhavi Bansal
- 57
- 5
1
vote
0 answers
HLLAPI Search Presentation Space (Function 6)
have someone an Exemple for the HLLAPI Function „Search Presentation Space“?

Pkwekk
- 11
- 1
1
vote
1 answer
Call dll - pcshll32.dll using delphi
I need to call hllapi function of pcshll32.dll using delphi. It's works with personal communications of ibm. How can i change the code bellow to delphi ? Thanks !!!
The EHLLAPI entry point (hllapi) is always called with the following four…

Davis
- 11
- 2
0
votes
1 answer
How To Read 16 bits integer with ffi and ref-struct
I am able to load a certain DLL and call a certain function in that DLL using some basic Win32 C/C++ code.
The function I call wants the address of a buffer allocated by the caller, which will be filled by the call, at a given offset, with a 16 bits…

manuell
- 7,528
- 5
- 31
- 58
0
votes
0 answers
EHLLAPI function Query sessions status (22) partially does not work
I try to use ehllapi Query session status (22) but receive unexpected result.
Here is my code in C#:
public class EhllapiFunc
{
[DllImport("PCSHLL32.dll")]
public static extern UInt32 hllapi(out UInt32 Func, StringBuilder Data, out UInt32…

Leo Bonhart
- 1
- 1
0
votes
1 answer
Read Thai characters from IBM Emulator AS400 5250
I am trying to read thai characters from AS400 5250 IBM emulator using hllapi c# but code is unable to read thai characters. It can read english characters properly but thai characters are appearing blank in variable. Has anyone faced the similar…

kishlay singh
- 3
- 4
0
votes
0 answers
EHLLAPI IBM communicator c# Web Api not working on IIS
I am trying to connect IBM communicator EHLLAPI (PCSHLL32.dll).
I have created webAPI to connect IBM PCOMM windows communicator. In visual studio I am able to establish connection with communicator and working all good. However when I deployed on…

Mahtabr
- 1
- 1
0
votes
0 answers
Is there a way to connect to BZWhll.WhllObj without ActiveX
At the moment I use:
//--- BlueZone Connection -----
function bzConnect( session_id ){
host = new ActiveXObject( "BZWhll.WhllObj" );
//--- Session ID ---
bzConnected = host.Connect( session_id );
}
To connect my page to run commands from…

Lucas Shanley
- 406
- 2
- 8
0
votes
2 answers
Why am I getting an "unresolved external symbol" message?
I am attempting to use IBM's EHLLAPI to interface with their Personal Communicator Terminal Emulator. I have copied their sample code from this page, but it's giving me an error when I try to build it.
1>------ Build started: Project: PCOMAPI,…

SaintWacko
- 854
- 3
- 14
- 35