java - Soap client cannot connect to web service after bea weblogic deployment -


i wrote below method call soap client connects web service. below code work fine in test class after deploy war bea weblogic9 got http/1.1 500 error. , can not wrong in code works fine locally.`

public boolean isserviceready(string msisdn) throws exception {   logger.info("check if service ready or not " + msisdn);   if("".equals(msisdn))     {       throw new illegalargumentexception("no active msisdn logged user");     }   servicereadyclient nfcclient = servicereadyclient.getinstance(true);   servicereadyservices services = nfcclient.getservices();    if(services == null)     {       throw new servicereadyclientexception("nfc client not ready yet");     }   isservicereadyresponse result = services.isserviceready("tel:" + msisdn, css_client);   return (result != null && result.getreadinessstatus() != null) ?             "yes".equals(result.getreadinessstatus().getvalue()) : false; } 

servicereadyservices , servicereadyclient custom api's? try passing web service url above api classes.


Comments

Popular posts from this blog

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

html - How to style widget with post count different than without post count -

url rewriting - How to redirect a http POST with urlrewritefilter -