Re: [google-appengine] Re: 00 Server Error after deploy endpoint and change so SQL tables names ,why?

2021-05-13 Thread Guy Dviri
>>> should still give you the tools to help debug your application, and logging >>>> is the most important, perhaps even more important than the code itself, >>>> esp. if it was working before and you haven't changed anything other than >>>> the JDK version and

Re: [google-appengine] Re: 00 Server Error after deploy endpoint and change so SQL tables names ,why?

2021-05-13 Thread Guy Dviri
orked with Compute Engine VMs, at least from our >> documentation >> page <https://cloud.google.com/architecture/cloud-foundry-on-gcp> on it. >> I mean, they're kind-of competitors where Cloud Foundry "stitches" cloud >> resources (VMs) together to form a

Re: [google-appengine] Re: 00 Server Error after deploy endpoint and change so SQL tables names ,why?

2021-05-11 Thread Guy Dviri
The code is the same code , what I did is just move my SRC files without the gradles build files ,from the app & the appengine to an old copy of the project that I have.. then I asked if I want to upgrade the JDK ,or keep the 11 version. I choose to keep the 11 jdk version of the old project and

Re: [google-appengine] Re: 00 Server Error after deploy endpoint and change so SQL tables names ,why?

2021-05-11 Thread Guy Dviri
ambiguous or not this was the only error I've got , so what can I do to figure this out? anyway solve it after almost 3 days,, the problem was probably using jdk 16.1 instead of 11. if the log can give me clues about it , that would save me some time ,and maybe save time for others. thanks. On

[google-appengine] 00 Server Error after deploy endpoint and change so SQL tables names ,why?

2021-05-05 Thread Guy Dviri
500 Server Error Error: Server Error The server encountered an error and could not complete your request.Please try again in 30 seconds. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop

[google-appengine] Re: I have one backed endpoint that don't hit why ?

2020-05-21 Thread Guy Dviri
I open an issue , I also think that after few hours the app-engine endpoints.. just shutdown ,, in a way that some endpoints don't get hits. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving

[google-appengine] Re: I have one backed endpoint that don't hit why ?

2020-05-18 Thread Guy Dviri
i think it's happens more often when I try to call it from the emulator.. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to

[google-appengine] Re: I have one backed endpoint that don't hit why ?

2020-05-18 Thread Guy Dviri
it's sometime get hit , sometime don't , it's really weird ,try to change the name of the function , try to stop all instances , stop the app engine ,restart the app engine.. sometime it's hits and sometime it's don't. it was happened once when they change some script on the server.. I

[google-appengine] I have one backed endpoint that don't hit why ?

2020-05-17 Thread Guy Dviri
@ApiMethod(name = "onUpdateQuestion") public UserDataCloud onUpdateQuestion (UserDataCloud userDataSender) throws SQLException { have no problem with my others endpoints. so my main question is what could be the causes to one of the endpoints ,to don't hit from app , but

[google-appengine] Re: org.eclipse.jetty.servlet.ServletHolder : java.lang.RuntimeException: Cannot access service class:? endpoint deploy ,why?

2019-10-03 Thread Guy Dviri
ok solve , my constructor need to be public and AS suggest me to turn it private . -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to

[google-appengine] Re: org.eclipse.jetty.servlet.ServletHolder : java.lang.RuntimeException: Cannot access service class:? endpoint deploy ,why?

2019-10-03 Thread Guy Dviri
[image: No photo description available.] -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-appengine+unsubscr...@googlegroups.com. To view this

[google-appengine] Re: org.eclipse.jetty.servlet.ServletHolder : java.lang.RuntimeException: Cannot access service class:? endpoint deploy ,why?

2019-10-01 Thread Guy Dviri
No , not from eclipse , it's just the error message from the GAE log. On Tuesday, October 1, 2019 at 6:59:38 PM UTC+3, George (Cloud Platform Support) wrote: > > Hello Guy, > > You seem to want to deploy an App Engine application or a Cloud Endpoint > from Eclipse. How did you deploy? What

[google-appengine] org.eclipse.jetty.servlet.ServletHolder : java.lang.RuntimeException: Cannot access service class:? endpoint deploy ,why?

2019-10-01 Thread Guy Dviri
org.eclipse.jetty.servlet.ServletHandler doHandle: (ServletHandler.java:624 ) org.eclipse.jetty.servlet.ServletHolder$1:

Re: [google-appengine] Re: Hey after two days I get a message the I cannot deploy my appengine becuase I already got too many version.

2018-06-30 Thread Guy Dviri
cloud or in the Web UI: > >- The deployment was accidental: just delete the accidentally created >version (typically the newest one) >- The deployment was intentional: migrate traffic to the new version >or make it the new default version > > You can occasionally

Re: [google-appengine] Re: Hey after two days I get a message the I cannot deploy my appengine becuase I already got too many version.

2018-06-29 Thread Guy Dviri
> > I reply thanks you 2 hours ago , but I don't see the reply in the thread , > google groups UI must change their layout in my opinion , > any way I like to ask @Ani one more thing , is it possible to block version from updating , let's say that it will be update only with special key,, or

[google-appengine] Re: Hey after two days I get a message the I cannot deploy my appengine becuase I already got too many version.

2018-06-28 Thread Guy Dviri
no it's just a small app ,not even up to the air , i don't know why i have 200 version i only need one.. what could i doing wrong.. i using endpoint + sql + bigstore . i deploy my module using : console : appenginedeploy what do you think could trigger this behavior ? -- You received this

[google-appengine] Hey after two days I get a message the I cannot deploy my appengine becuase I already got too many version.

2018-06-27 Thread Guy Dviri
so i go to the console and delete 200+ version. what I want to ask is , I work on the google cloud more then 3 years and deploy countless of time... and never had this message , what change? -- You received this message because you are subscribed to the Google Groups "Google App Engine"

[google-appengine] Re: what the best way to connect my endpoints to SQL 2gen

2018-03-28 Thread Guy Dviri
Thanks Katayoon so I don't need the configuration in the appengine-web.xml and the web.xml because all my connection with the SQL is in the server side. now one more thing , I like to now if my connection to SQL is open or close via the Cloud Console is there's a way to check it out? -- You

[google-appengine] Re: what the best way to connect my endpoints to SQL 2gen

2018-03-27 Thread Guy Dviri
> > Thanks Katayoon , I hope you can clear something to me. > Client code -> Endpoints code -> { Cloud SQL Instance ,does the ( user ,pass ) need to hold in the client code attach somehow with the webAPI or they store in the server side? ) what confuses me is the appengine-web.xml

[google-appengine] what the best way to connect my endpoints to SQL 2gen

2018-03-23 Thread Guy Dviri
I using java on android studio ,also I used JDBC DriverManager on the server side to connect to the cloud SQL, I read somewhere that I don't need to use DriveManager in the server side anymore when upgrading to 2gen , and the connection should be from the app , does any one have any code

Re: [google-appengine] Re: access denied when deploy why?

2018-03-20 Thread Guy Dviri
's a Java app and > you don't have the `app.yaml` file. > - Provide the list of files in your app's root directory (just the file > names) > - Are you following any tutorials? Which one? > > On Tuesday, March 20, 2018 at 12:49:09 PM UTC+2, Guy Dviri wrote: >> >> access

Re: [google-appengine] Re: access denied when deploy why?

2018-03-20 Thread Guy Dviri
gt; On Tuesday, March 20, 2018 at 11:42:29 AM UTC+2, Guy Dviri wrote: >> >> >> <https://lh3.googleusercontent.com/-wPSAOQuFDtQ/WrDXS_nzVWI/Y6E/BMIknuy9j78aSbycMmaIesAJg7w-yL7lACLcBGAs/s1600/TRY1.jpg> >> >> >> to this : >> >> >> &

[google-appengine] access denied when deploy why?

2018-03-20 Thread Guy Dviri
to this : why? -- You received

[google-appengine] Hey Guys just upgrade from Endpoint V1 to V2 and works

2018-03-10 Thread Guy Dviri
I read all a lots of users guides but something dones't work , I'm wasted 1 month on that issue , is there's any one that can teamview my problem? ( it's was a solid on V1 ). -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe

[google-appengine] Hey Guys can't deploy app engine after update to endpoints V2.

2018-03-06 Thread Guy Dviri
if there's any expert that can help me overcome this issue. much appreciated. Guy. -- You received this message because you are subscribed to the Google Groups

[google-appengine] Hello Guys, GAE cost me too much using the endpoints instance 24/7 , so i need to close it

2017-06-08 Thread Guy Dviri
every time I've get off the PC ( because i'm on developing stage ). is there's any way to reduce the cost so i don't have to pay so much every month. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and