• 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

ORA-29532: Java call terminated by uncaught Java exception:

 
Greenhorn
Posts: 11
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I need to consume a secure web service from PL/SQL, either using utl_http or utl_dbws. I created the outbound SOAP request and have tested the same both using SOAP UI and SAAJ. I am using the same XML to send it through pl/sql and I am encountering the following error.

ORA-29532: Java call terminated by uncaught Java exception: port: {http://records.txdps.state.tx.us/cch/}BasicHttpBinding_ISearchService does not contain operation: validateCredentials



Appreciate all help in fixing the issue.

Thanks in advance
 
Ranch Hand
Posts: 859
IBM DB2 Chrome Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I wouldn't be posting real http addresses on a public forum.

As for your problem, it doesn't look like validateCredentials is available at the endpoint.

WP

 
Vishnu Austin
Greenhorn
Posts: 11
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks for the quick reply

Corrected line to
l_operation_qname := UTL_DBWS.to_qname(l_namespace, 'ValidateCredentials');

I am now getting the below

ORA-29532: Java call terminated by uncaught Java exception: port: {http://records.txdps.state.tx.us/cch/}BasicHttpBinding_ISearchService does not contain operation: Envelope
 
Vishnu Austin
Greenhorn
Posts: 11
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks for the quick reply

Corrected line to
l_operation_qname := UTL_DBWS.to_qname(l_namespace, 'ValidateCredentials');

I am now getting the below

ORA-29532: Java call terminated by uncaught Java exception: port: {http://records.txdps.state.tx.us/cch/}BasicHttpBinding_ISearchService does not contain operation: Envelope
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic