Thanks for the response.

This is what I tried.

In my sitemap I had:

<map:match pattern="xplanner-getProjects">
        <map:generate type="serverpages"
src="xsp/xplanner-getProjects.xsp"/>
        <map:serialize type="xml"/>
</map:match>


my xsp looks like this:

<?xml version="1.0" encoding="UTF-8"?>

<xsp:page language="java"
 xmlns:xsp="http://apache.org/xsp";
 xmlns:soap="http://apache.org/xsp/soap/3.0";>
 
 <results>
  <soap:call  url="http://uid:[EMAIL PROTECTED]:8080/xplanner/soap/XPlanner"
        xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance";
        xmlns:xsd="http://www.w3.org/1999/XMLSchema";>
   
   <soap:body>
   <ns1:getProjects xmlns:ns1="http://xplanner.org/soap";>
   </ns1:getProjects>
   </soap:body>
  </soap:call>
 </results>
   <!-- ns1:getProjects xmlns:ns1="http://xplanner.org/soap";>
    <id xsi:type="xsd:int">1652</id>
   </ns1:getProject -->
</xsp:page>

this is what I see in tomcat

WARN [http-8080-Processor5] (HttpMethodBase.java:2569) - No credentials
availab
le for the 'XPlanner' authentication realm at url


Regards,
Ken

-----Original Message-----
From: Jason Johnston [mailto:[EMAIL PROTECTED] 
Sent: Thursday, July 27, 2006 10:26 AM
To: [email protected]
Subject: Re: SOAP and Basic Authentication

Sayers Ken, NY wrote:
> Hello,
> 
> 
> Can someone point me in the right direction on this one? 
> 
> I need to access a SOAP service that requires Basic Authentication.
> 


Not sure, but I think you can include the username and password in the 
service's URL, something like:

http://username:[EMAIL PROTECTED]/path/to/soap/service

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to