Make certain the user ID and password are limited to 8 characters. If they are shorter than 8, Portal/J right pads with spaces.
",NOLENGTH " is meaningless.
Not positive about this:
"?????UOB" is the user in ASCII after encryption
"???O`UOB" is the pass in ASCII after encryption
Pretty certain about this:
If Asset Suite is running on a EBCDIC machine, IBM mainframe, the user and pass were converted from ASCII to EBCDIC.
The user and pass were encrypted either from their ASCII or EBCDIC values.
I'm on thin ice here, but given the above, it would appear to be a Java Socket problem. Portal/J is attempting to write to a Socket most likely created via "Socket new_socket = new Socket(host,port)". The writing to the socket is done by sending a byte array to the Socket's OutputStream.
The error message looks pretty reasonable, so it's a guess that the Socket isn't working. Check the host and port.
Java Socket problem perhaps
Make certain the user ID and password are limited to 8 characters. If they are shorter than 8, Portal/J right pads with spaces.
",NOLENGTH " is meaningless.
Not positive about this:
"?????UOB" is the user in ASCII after encryption
"???O`UOB" is the pass in ASCII after encryption
Pretty certain about this:
If Asset Suite is running on a EBCDIC machine, IBM mainframe, the user and pass were converted from ASCII to EBCDIC.
The user and pass were encrypted either from their ASCII or EBCDIC values.
I'm on thin ice here, but given the above, it would appear to be a Java Socket problem. Portal/J is attempting to write to a Socket most likely created via "Socket new_socket = new Socket(host,port)". The writing to the socket is done by sending a byte array to the Socket's OutputStream.
The error message looks pretty reasonable, so it's a guess that the Socket isn't working. Check the host and port.
Hope this helps.