• 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
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

how to write soap sending message with java?

 
Ranch Hand
Posts: 112
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
i have a soap format:
POST /FinanceService/FinanceService.asmx HTTP/1.1
Host: wang.bp.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://www.abc.com/finance/getQuote"
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<QuoteRequest xmlns="http://www.abc.com/Finance/Request">
<symbol>string</symbol>
</QuoteRequest>
</soap:Body>
</soap:Envelope>
how to use soap api to send message?
 
Ranch Hand
Posts: 194
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi shivan,
If you are using Apache SOAP, the following steps you can follow to write full code.

Regards,
Ganapathy,S
[ December 30, 2003: Message edited by: S. Ganapathy ]
 
reply
    Bookmark Topic Watch Topic
  • New Topic