-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
input stream was truncated while reading a word #113
Comments
Can you send me the code you're using to call jfreesane?
…On Fri, Mar 15, 2024, 7:53 AM jurivrljicak ***@***.***> wrote:
Hello, from
SaneSession.java
private void initSane() throws IOException {
// RPC code
outputStream.write(SaneRpcCode.SANE_NET_INIT);
// version number
outputStream.write(SaneWord.forSaneVersion(1, 0, 3));
// username
outputStream.write(System.getProperty("user.name"));
outputStream.flush();
**inputStream.readWord();**
inputStream.readWord();
}
I am getting 'input stream was truncated while reading a word' in the
highlighted line.
I don't know why this happens, any idea?
Very often I have to plug/unplug the device for it to establish a
communication but this time I can't pass through this error. Got stuck in
there.
Using Ubuntu 16.04 LTS and the latest from jfreesane (1.0)
thanks
—
Reply to this email directly, view it on GitHub
<#113>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABDNGA5ORM2O3APVED7KODTYYMDN5AVCNFSM6AAAAABEYEVW6KVHI2DSMVQWIX3LMV43ASLTON2WKOZSGE4DQNZTGI4DQMA>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
It's where I am trying to establish the connection.
using Oracle OpenJDK 17.0.2 |
could this be a hardware issue? I was tending to think that |
Do you have a SANE daemon listening on the appropriate port? You can try
the regular sane frontend, scanimage, to obtain an image:
scanimage -d net:localhost:<deviceName>
If that works, then something is up with jfreesane.
…On Fri, Mar 15, 2024 at 8:59 AM jurivrljicak ***@***.***> wrote:
could this be a hardware issue? I was tending to think that
—
Reply to this email directly, view it on GitHub
<#113 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABDNGA5DXPESPN4F7SRFQ7LYYMLF7AVCNFSM6AAAAABEYEVW6KVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTSOJZHE3DQNBSGU>
.
You are receiving this because you commented.Message ID:
***@***.***>
|
hmmm, the port is the default one yes, scanimage -d kds_i900:i900 > output.pnm does work |
On Fri, Mar 15, 2024 at 9:20 AM jurivrljicak ***@***.***> wrote:
hmmm, the port is the default one
yes, scanimage -d kds_i900:i900 > output.pnm does work
That's not using the sane daemon though, that command is talking to the
scanner directly.
Try something like:
scanimage -d net:localhost:kds_i900:i900
… —
Reply to this email directly, view it on GitHub
<#113 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABDNGA6ZKOX3D5A62L2BC5TYYMNTBAVCNFSM6AAAAABEYEVW6KVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDAMBQGAYDINZZGQ>
.
You are receiving this because you commented.Message ID:
***@***.***>
|
oh, sorry, then I get $ scanimage -d net:localhost:kds_i900:i900 |
You'll have to set up the sane daemon. Something like
https://help.ubuntu.com/community/SaneDaemonTutorial
…On Fri, Mar 15, 2024 at 9:40 AM jurivrljicak ***@***.***> wrote:
oh, sorry, then I get
$ scanimage -d net:localhost:kds_i900:i900
scanimage: open of device net:localhost:kds_i900:i900 failed: Error during
device I/O
—
Reply to this email directly, view it on GitHub
<#113 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABDNGA5KJ2D3DZMYYOIIP7DYYMQARAVCNFSM6AAAAABEYEVW6KVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDAMBQGA2DGMBSG4>
.
You are receiving this because you commented.Message ID:
***@***.***>
|
yes I don't know, I restarted the sane daemon and started working again,
looks that process dies at anytime and I am unaware.
Sorry for this and thx again
…On Fri, Mar 15, 2024 at 1:54 PM James Ring ***@***.***> wrote:
You'll have to set up the sane daemon. Something like
https://help.ubuntu.com/community/SaneDaemonTutorial
On Fri, Mar 15, 2024 at 9:40 AM jurivrljicak ***@***.***>
wrote:
> oh, sorry, then I get
>
> $ scanimage -d net:localhost:kds_i900:i900
> scanimage: open of device net:localhost:kds_i900:i900 failed: Error
during
> device I/O
>
> —
> Reply to this email directly, view it on GitHub
> <#113 (comment)>,
> or unsubscribe
> <
https://github.com/notifications/unsubscribe-auth/ABDNGA5KJ2D3DZMYYOIIP7DYYMQARAVCNFSM6AAAAABEYEVW6KVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDAMBQGA2DGMBSG4>
> .
> You are receiving this because you commented.Message ID:
> ***@***.***>
>
—
Reply to this email directly, view it on GitHub
<#113 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AEJXK4EOSSEAYWR645RN4PDYYMRSXAVCNFSM6AAAAABEYEVW6KVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDAMBQGA3DKNZRGA>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello, from
I am getting 'input stream was truncated while reading a word' in the highlighted line.
I don't know why this happens, any idea?
Very often I have to plug/unplug the device for it to establish a communication but this time I can't pass through this error. Got stuck in there.
Using Ubuntu 16.04 LTS and the latest from jfreesane (1.0)
thanks
The text was updated successfully, but these errors were encountered: