Caused by: java.lang.NumberFormatException: For input string: “?” for cron job
My cron job expression is as follows :
gift.award.cron= 0 0/5 * * * ?
it is to fire every 5 minutes. But im getting a following exception.
org.apache.axis.AxisFault: ; nested exception is:
org.xml.sax.SAXException: For input string: "?"
java.lang.NumberFormatException: For input string: "?"
at org.apache.axis.AxisFault.makeFault(AxisFault.java:101)
at org.apache.axis.client.Call.invoke(Call.java:2470)
at org.apache.axis.client.Call.invoke(Call.java:2366)
at org.apache.axis.client.Call.invoke(Call.java:1812)
at hms.quiz.operation.reload.etisalat.client.WsMrechargeHsenidmobileSoapBindingStub.doBillPayment(WsMrechargeHsenidmobileSoapBindingStub.java:251)
at hms.quiz.operation.reload.etisalat.EtisalatReloadService.processBillPayment(EtisalatReloadService.java:108)
at hms.quiz.operation.reload.etisalat.EtisalatReloadService.reloadUser(EtisalatReloadService.java:87)
at hms.quiz.scheduler.GiftAwardJob.executeInternal(GiftAwardJob.java:65)
at org.springframework.scheduling.quartz.QuartzJobBean.execute(QuartzJobBean.java:113)
at org.quartz.core.JobRunShell.run(JobRunShell.java:223)
at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:549)
Caused by: org.xml.sax.SAXException: For input string: "?"
at org.apache.axis.encoding.ser.SimpleDeserializer.onEndElement(SimpleDeserializer.java:180)
at org.apache.axis.encoding.DeserializerImpl.endElement(DeserializerImpl.java:502)
at org.apache.axis.encoding.DeserializationContext.endElement(DeserializationContext.java:1087)
at org.apache.axis.message.SAX2EventRecorder.replay(SAX2EventRecorder.java:171)
at org.apache.axis.message.MessageElement.publishToHandler(MessageElement.java:1141)
at org.apache.axis.message.RPCElement.deserialize(RPCElement.java:236)
at org.apache.axis.message.RPCElement.getParams(RPCElement.java:384)
at org.apache.axis.client.Call.invoke(Call.java:2467)
... 9 common frames omitted
What could have been gone wrong here?
java cron
add a comment |
My cron job expression is as follows :
gift.award.cron= 0 0/5 * * * ?
it is to fire every 5 minutes. But im getting a following exception.
org.apache.axis.AxisFault: ; nested exception is:
org.xml.sax.SAXException: For input string: "?"
java.lang.NumberFormatException: For input string: "?"
at org.apache.axis.AxisFault.makeFault(AxisFault.java:101)
at org.apache.axis.client.Call.invoke(Call.java:2470)
at org.apache.axis.client.Call.invoke(Call.java:2366)
at org.apache.axis.client.Call.invoke(Call.java:1812)
at hms.quiz.operation.reload.etisalat.client.WsMrechargeHsenidmobileSoapBindingStub.doBillPayment(WsMrechargeHsenidmobileSoapBindingStub.java:251)
at hms.quiz.operation.reload.etisalat.EtisalatReloadService.processBillPayment(EtisalatReloadService.java:108)
at hms.quiz.operation.reload.etisalat.EtisalatReloadService.reloadUser(EtisalatReloadService.java:87)
at hms.quiz.scheduler.GiftAwardJob.executeInternal(GiftAwardJob.java:65)
at org.springframework.scheduling.quartz.QuartzJobBean.execute(QuartzJobBean.java:113)
at org.quartz.core.JobRunShell.run(JobRunShell.java:223)
at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:549)
Caused by: org.xml.sax.SAXException: For input string: "?"
at org.apache.axis.encoding.ser.SimpleDeserializer.onEndElement(SimpleDeserializer.java:180)
at org.apache.axis.encoding.DeserializerImpl.endElement(DeserializerImpl.java:502)
at org.apache.axis.encoding.DeserializationContext.endElement(DeserializationContext.java:1087)
at org.apache.axis.message.SAX2EventRecorder.replay(SAX2EventRecorder.java:171)
at org.apache.axis.message.MessageElement.publishToHandler(MessageElement.java:1141)
at org.apache.axis.message.RPCElement.deserialize(RPCElement.java:236)
at org.apache.axis.message.RPCElement.getParams(RPCElement.java:384)
at org.apache.axis.client.Call.invoke(Call.java:2467)
... 9 common frames omitted
What could have been gone wrong here?
java cron
try0 0/5 0 ? * * *
– Kartik
Nov 14 '18 at 5:09
can you check are there any white spaces before and after expression
– Deadpool
Nov 14 '18 at 5:26
yes there is one at the begining
– JohnDoe921
Nov 14 '18 at 5:48
try removing it @JohnDoe921
– Deadpool
Nov 14 '18 at 6:10
add a comment |
My cron job expression is as follows :
gift.award.cron= 0 0/5 * * * ?
it is to fire every 5 minutes. But im getting a following exception.
org.apache.axis.AxisFault: ; nested exception is:
org.xml.sax.SAXException: For input string: "?"
java.lang.NumberFormatException: For input string: "?"
at org.apache.axis.AxisFault.makeFault(AxisFault.java:101)
at org.apache.axis.client.Call.invoke(Call.java:2470)
at org.apache.axis.client.Call.invoke(Call.java:2366)
at org.apache.axis.client.Call.invoke(Call.java:1812)
at hms.quiz.operation.reload.etisalat.client.WsMrechargeHsenidmobileSoapBindingStub.doBillPayment(WsMrechargeHsenidmobileSoapBindingStub.java:251)
at hms.quiz.operation.reload.etisalat.EtisalatReloadService.processBillPayment(EtisalatReloadService.java:108)
at hms.quiz.operation.reload.etisalat.EtisalatReloadService.reloadUser(EtisalatReloadService.java:87)
at hms.quiz.scheduler.GiftAwardJob.executeInternal(GiftAwardJob.java:65)
at org.springframework.scheduling.quartz.QuartzJobBean.execute(QuartzJobBean.java:113)
at org.quartz.core.JobRunShell.run(JobRunShell.java:223)
at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:549)
Caused by: org.xml.sax.SAXException: For input string: "?"
at org.apache.axis.encoding.ser.SimpleDeserializer.onEndElement(SimpleDeserializer.java:180)
at org.apache.axis.encoding.DeserializerImpl.endElement(DeserializerImpl.java:502)
at org.apache.axis.encoding.DeserializationContext.endElement(DeserializationContext.java:1087)
at org.apache.axis.message.SAX2EventRecorder.replay(SAX2EventRecorder.java:171)
at org.apache.axis.message.MessageElement.publishToHandler(MessageElement.java:1141)
at org.apache.axis.message.RPCElement.deserialize(RPCElement.java:236)
at org.apache.axis.message.RPCElement.getParams(RPCElement.java:384)
at org.apache.axis.client.Call.invoke(Call.java:2467)
... 9 common frames omitted
What could have been gone wrong here?
java cron
My cron job expression is as follows :
gift.award.cron= 0 0/5 * * * ?
it is to fire every 5 minutes. But im getting a following exception.
org.apache.axis.AxisFault: ; nested exception is:
org.xml.sax.SAXException: For input string: "?"
java.lang.NumberFormatException: For input string: "?"
at org.apache.axis.AxisFault.makeFault(AxisFault.java:101)
at org.apache.axis.client.Call.invoke(Call.java:2470)
at org.apache.axis.client.Call.invoke(Call.java:2366)
at org.apache.axis.client.Call.invoke(Call.java:1812)
at hms.quiz.operation.reload.etisalat.client.WsMrechargeHsenidmobileSoapBindingStub.doBillPayment(WsMrechargeHsenidmobileSoapBindingStub.java:251)
at hms.quiz.operation.reload.etisalat.EtisalatReloadService.processBillPayment(EtisalatReloadService.java:108)
at hms.quiz.operation.reload.etisalat.EtisalatReloadService.reloadUser(EtisalatReloadService.java:87)
at hms.quiz.scheduler.GiftAwardJob.executeInternal(GiftAwardJob.java:65)
at org.springframework.scheduling.quartz.QuartzJobBean.execute(QuartzJobBean.java:113)
at org.quartz.core.JobRunShell.run(JobRunShell.java:223)
at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:549)
Caused by: org.xml.sax.SAXException: For input string: "?"
at org.apache.axis.encoding.ser.SimpleDeserializer.onEndElement(SimpleDeserializer.java:180)
at org.apache.axis.encoding.DeserializerImpl.endElement(DeserializerImpl.java:502)
at org.apache.axis.encoding.DeserializationContext.endElement(DeserializationContext.java:1087)
at org.apache.axis.message.SAX2EventRecorder.replay(SAX2EventRecorder.java:171)
at org.apache.axis.message.MessageElement.publishToHandler(MessageElement.java:1141)
at org.apache.axis.message.RPCElement.deserialize(RPCElement.java:236)
at org.apache.axis.message.RPCElement.getParams(RPCElement.java:384)
at org.apache.axis.client.Call.invoke(Call.java:2467)
... 9 common frames omitted
What could have been gone wrong here?
java cron
java cron
asked Nov 14 '18 at 5:04
JohnDoe921JohnDoe921
7110
7110
try0 0/5 0 ? * * *
– Kartik
Nov 14 '18 at 5:09
can you check are there any white spaces before and after expression
– Deadpool
Nov 14 '18 at 5:26
yes there is one at the begining
– JohnDoe921
Nov 14 '18 at 5:48
try removing it @JohnDoe921
– Deadpool
Nov 14 '18 at 6:10
add a comment |
try0 0/5 0 ? * * *
– Kartik
Nov 14 '18 at 5:09
can you check are there any white spaces before and after expression
– Deadpool
Nov 14 '18 at 5:26
yes there is one at the begining
– JohnDoe921
Nov 14 '18 at 5:48
try removing it @JohnDoe921
– Deadpool
Nov 14 '18 at 6:10
try
0 0/5 0 ? * * *
– Kartik
Nov 14 '18 at 5:09
try
0 0/5 0 ? * * *
– Kartik
Nov 14 '18 at 5:09
can you check are there any white spaces before and after expression
– Deadpool
Nov 14 '18 at 5:26
can you check are there any white spaces before and after expression
– Deadpool
Nov 14 '18 at 5:26
yes there is one at the begining
– JohnDoe921
Nov 14 '18 at 5:48
yes there is one at the begining
– JohnDoe921
Nov 14 '18 at 5:48
try removing it @JohnDoe921
– Deadpool
Nov 14 '18 at 6:10
try removing it @JohnDoe921
– Deadpool
Nov 14 '18 at 6:10
add a comment |
1 Answer
1
active
oldest
votes
Change your expression from 0 0/5 * * * ?
to 0 0/5 * * * ? *
i.e. just try to make your expression 7 parameters long.
Though I am aware that last parameter Year is optional.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53293489%2fcaused-by-java-lang-numberformatexception-for-input-string-for-cron-job%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Change your expression from 0 0/5 * * * ?
to 0 0/5 * * * ? *
i.e. just try to make your expression 7 parameters long.
Though I am aware that last parameter Year is optional.
add a comment |
Change your expression from 0 0/5 * * * ?
to 0 0/5 * * * ? *
i.e. just try to make your expression 7 parameters long.
Though I am aware that last parameter Year is optional.
add a comment |
Change your expression from 0 0/5 * * * ?
to 0 0/5 * * * ? *
i.e. just try to make your expression 7 parameters long.
Though I am aware that last parameter Year is optional.
Change your expression from 0 0/5 * * * ?
to 0 0/5 * * * ? *
i.e. just try to make your expression 7 parameters long.
Though I am aware that last parameter Year is optional.
edited Nov 14 '18 at 6:06
answered Nov 14 '18 at 5:38
Amit BhatiAmit Bhati
4,24111334
4,24111334
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53293489%2fcaused-by-java-lang-numberformatexception-for-input-string-for-cron-job%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
try
0 0/5 0 ? * * *
– Kartik
Nov 14 '18 at 5:09
can you check are there any white spaces before and after expression
– Deadpool
Nov 14 '18 at 5:26
yes there is one at the begining
– JohnDoe921
Nov 14 '18 at 5:48
try removing it @JohnDoe921
– Deadpool
Nov 14 '18 at 6:10