B4J Tutorial [Server] Upload files from your B4A app to your B4J server over the internet

Status
Not open for further replies.

upsis

Member
Licensed User
Longtime User
What changes should I make to the FileServer-B4j example can be published on my internet service provider? Thanks
 

driesvp

Member
Licensed User
Longtime User
When selecting a photo to upload, quite often the photo isn't uploaded. Sometimes after retrying several times, it works.
I notice in debugger mode that when this happens the screen "Waiting for IDE-debugger to connect" appears. When the photo succesfull uploads, this screen does not appear.

Any idea what causes this?
 

granmaestro

Member
Licensed User
Longtime User
@billzhan layout files created with v3.20 will not work with previous versions.

@derez sure. Create a new Download handler. Open an InputStream and use File.Copy2 to copy it to the response OutputStream.
please,

can you explain this : Create a new Download handler. Open an InputStream and use File.Copy2 to copy it to the response OutputStream.

thank you
 

Erel

B4X founder
Staff member
Licensed User
Longtime User
Files stored under the www folder are served automatically. If you want to allow other files to be downloaded then you should use a custom handler.

For example you can use this code to create a handler that sends a file from c:\temp to the client. The file name is passed in the query (www.example.com?file=test1.jpg)
B4X:
Sub Handle(req As ServletRequest, resp As ServletResponse)
   Dim FileName As String = req.GetParameter("file")
   Dim In As InputStream = File.OpenInput("c:\temp", FileName)
   File.Copy2(In, resp.OutputStream)
End Sub
 

granthierry

Member
Licensed User
Longtime User
Thank you Erel,

If i understand : the server send the file. ( i usually use ftp connection )
And before the client send a request.

I don't know if i can make the request.

Thank you
 

Fabrice La

Active Member
Licensed User
Longtime User
How to use this example in ssl (https://) ? to avoid :

Error: javax.net.ssl.SSLPeerUnverifiedException: No peer certificate
 

Fabrice La

Active Member
Licensed User
Longtime User
I know this tutorial for Server.
This error
Error: javax.net.ssl.SSLPeerUnverifiedException: No peer certificate
is from B4A on device try to upload file to ssl server. I am using example "FileClient-B4A" and try to upload to ssl Server.
 

Fabrice La

Active Member
Licensed User
Longtime User
I did add :
B4X:
Dim su As StringUtils
        Dim j As HttpJob
        Dim hc As HttpClient
        hc.InitializeAcceptAll("hclient")
        j.Initialize("file", Me)
        link = link & spbox.SelectedItem & "/"
        j.PostBytes(link & "?type=file&name=" & su.EncodeUrl(FileName, "UTF8"), _
            out.ToBytesArray)

No success
 

LucaMs

Expert
Licensed User
Longtime User

I tried calling 127.0.0.1:54021/test and it seems to work ("Your ip address: 127.0.0.1").

Then (my router's ip): xxx.xxx.xxx.xxx:54021/test - failed.

I have 1 active port forwarding:

Private IP: <MyPC IP - it is fixed>
Protocol Type: TCP
Public Start Port: 54021
Public End Port: 54021
Connection: PVC0

I also tried disabling both the firewalls (router & pc)

In the client code (I get a "connection timeout") i have:
Private link As String = "http://xxx.xxx.xxx.xxx:54021/upload" (xxx... is my router's ip)

Note that ping (from client) responds.
 
Last edited:
Status
Not open for further replies.
Cookies are required to use this site. You must accept them to continue using the site. Learn more…