Re: [codenameone-discussions] Re: Native interfaces in Intellij

2021-06-30 Thread Dennis Rogers
The files appear to be here: src/main/objectivec/com_symdesign_shoppinggenie_MyNativeImpl.h src/main/objectivec/com_symdesign_shoppinggenie_MyNativeImpl.m On Wednesday, June 30, 2021 at 10:05:05 PM UTC-4 Shai Almog wrote: > In iOS it generates >

Re: [codenameone-discussions] Re: Native interfaces in Intellij

2021-06-30 Thread Shai Almog
In iOS it generates native_com_symdesign_shoppinggenie_MyNativeImplCodenameOne.m and native_com_symdesign_shoppinggenie_MyNativeImplCodenameOne.h Which you need to edit. For some reason it seems native_com_symdesign_shoppinggenie_MyNativeImplCodenameOne.h is missing. Do you have any idea why?

Re: [codenameone-discussions] Re: Problems submitting an image using MultipartRequest

2021-06-30 Thread Shai Almog
Hi, multipart is a multipart file upload. Which isn't "form-data" it's "x-www-form-urlencode" which is a very different thing. If you don't need that you shouldn't use multipart and should use a regular connection request. Just submit the file as a byte[]. If an argument is passed as get just

Re: [codenameone-discussions] Re: Problems submitting an image using MultipartRequest

2021-06-30 Thread rdvg...@gmail.com
Hi, Uff, at some point delete the line "addToQueue (mp);". Also note that although in Postman I use the "POST" method it is necessary for the parameters to be detected in PHP with $ _GET ['variable'], however when it is executed from a client it is necessary to use $ _POST ['variable'].

Re: [codenameone-discussions] Re: Problems submitting an image using MultipartRequest

2021-06-30 Thread rdvg...@gmail.com
Hi, Thank you mr Shai and mr Javier for your reply I thought it worked, but I was wrong. *I'm going to name everything I've done. As I mentioned in postman it works fine and this is the configuration:* [image: Postman.png] *The code in PHP is small and although it is not the topic of this forum