• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

org.apache.axis2.description.ClientUtils inferOutTransport

 
Ranch Hand
Posts: 34
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
while hitting a webService i get the error:
E org.apache.axis2.description.ClientUtil inferOutTransport The system cannot infer the transport information from the URL

but the URL i am using is correct.
Any Ideas what the reason could be.

Thanks.
 
Ranch Hand
Posts: 577
Tomcat Server Notepad Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Srinivasan,
Are you using SOAP1.2?

Can you post detailed problem description to understand your problem?

Go through this link to get better responses.
 
K Srinivasan
Ranch Hand
Posts: 34
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Naren,
Yes, i am using SOAP 1.2 and Axis2 1.5.1
The call doesn't go out from the client . After i call the stub , i get this error.

What are the details, that you need , that could be of help ?

Thanks
 
Naren Chivukula
Ranch Hand
Posts: 577
Tomcat Server Notepad Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
1. Post detailed stack trace of the exception.
2. If possible, post your WSDL.
3. Have you tested your web service on the service side? Is it working for any other requests?
4. Have you tried testing your web service from SOAPUI?
5. Are you using same Axis2 API for your service and client?
 
K Srinivasan
Ranch Hand
Posts: 34
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Naren Chivukula wrote:1. Post detailed stack trace of the exception.
2. If possible, post your WSDL.
3. Have you tested your web service on the service side? Is it working for any other requests?
4. Have you tried testing your web service from SOAPUI?
5. Are you using same Axis2 API for your service and client?



Hi,
THanks for your reply,
1. Theres nothing else in my logs (not sure if nothing is being logged into Axis2.log or there are not being made properly, i am looking into it as well)
2. Will not be able to post the wsdl
3. Ya, the web service works with SOAP UI and other applications.
5. Yes, the API is same.

 
K Srinivasan
Ranch Hand
Posts: 34
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
i added some system outs in the clientUtils class in axis2-kernel-1.5.jar
which shows that
the ac.getTransportOut(transport) returns null

ac.getTransportOut(transport) is in axis2-kernel-1.5.jar too
 
K Srinivasan
Ranch Hand
Posts: 34
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
a null pointer exception is being thrown at


in my stub
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic