IBM Sash WDE and SOAP services

2001-08-27 Thread Laurent Perez

Hi

I'm trying to build a simple app using IBM's Sash devlopment environment. I 
need a WSDL file to describe my Service, so I wrote one from a fairly 
simple Java class, using wsdlgen.bat, bundled with IBM's Web Services 
Development Toolkit : it wrote two files, a .wsdl file, and an interface 
file, both look correct.

However when trying to load them through Sash, I keep getting the error 
"Failed to get child import node". Same error when trying to load WSDL 
files bundled with IBM's WSDTK.

Is anyone here using Sash and / or the WSDTK ? I need some help

thanks

laurent




ServiceManger as a service - Unable to resolve..HELP!!!

2001-08-27 Thread Ralf Bierig

Hi,

I try to access the class
org.apache.soap.server.ServiceManager as a SOAP
service. So far so good. 

I cannot access this service. I got the following
error message (SOAP Fault):

faultCode=SOAP-ENV:Server.BadTargetObjectURI
faultString=Unable to resolve target object:
org.apache.soap.server.ServiceManager
faultActorURI=/soap/servlet/rpcrouter
DetailEntries=(0)=java.lang.InstantiationException:
org.apache.soap.server.ServiceManager
at java.lang.Class.newInstance0(Native Method)
at java.lang.Class.newInstance(Class.java:237)
... and so on 

I have deployed the class as service on the client
side! So whats the problem?

This worked fine in SOAP 2.0. Is the reason because
the class ServerManager SOAP 2.2 has no standard
constructor? In SOAP 2.0 there was an standard
constructor...

Please help!

Ralf






__
Do You Yahoo!?
Make international calls for as low as $.04/minute with Yahoo! Messenger
http://phonecard.yahoo.com/



weblogic 5.1 and https

2001-08-27 Thread Archana . Chaphekar

I am new to java security.

My current installation is as follows,

I have Windows 2000, with weblogic server5.1, which serves my SOAP requests
,
They are then serviced by my Apache  Soap 2.2 Service.

What is required for Apache SOAP to service the SOAP requests, that will be
received using https?

I want to write a client which will access the following URL

https://localhost:7002/soap/servlet/rpcrouter

Any information will be helpful!

Thanx and Regards,

Archana





how to use custom fault-messages

2001-08-27 Thread Frederik Fromm

Hi!

I'm working on a SOAP-project which requires session-management. If the
session exprires I want the service to send a SOAP-Fault message. How
can I invoke such message? I created the correct message and it goes
through the DOMFaultListener (see debugoutput):

 ERROR: [Attributes=3D{}] [faultCode=3DSOAP-ENV:Server]
[faultString=3Dwrong login or password!]
[faultActorURI=3D/soap/servlet/rpcrouter] [Deta
ilEntries=3D...

but no fault-message arrives at my client. Any suggestions?=20

Thanx,

Frederik Fromm.







RE: IBM Sash WDE and SOAP services

2001-08-27 Thread Mike Oliver


I use the Microsoft SOAP Toolkit and its WSDL generator and that works fine
with Sash.

Michael Oliver
Chief Technology Officer
Morningstar Systems Inc.
7391 S. Bullrider Ave.
Tucson, AZ 85747
520.574.1150 Voice
520.447.2736 eFax
520.891.1213 Voicestream

Click here
to chat. hotComm Link 
If I'm not immediately available, please try later
or check my ezPeer home page at
www.ollie.ezpeer.net 


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Monday, August 27, 2001 1:49 AM
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Subject: IBM Sash WDE and SOAP services
Importance: Low


Hi

I'm trying to build a simple app using IBM's Sash devlopment environment.
I
need a WSDL file to describe my Service, so I wrote one from a fairly
simple Java class, using wsdlgen.bat, bundled with IBM's Web Services
Development Toolkit : it wrote two files, a .wsdl file, and an interface
file, both look correct.

However when trying to load them through Sash, I keep getting the error
"Failed to get child import node". Same error when trying to load WSDL
files bundled with IBM's WSDTK.

Is anyone here using Sash and / or the WSDTK ? I need some help

thanks

laurent



BEGIN:VCARD
VERSION:2.1
N:Oliver;Mike
FN:Mike Oliver
EMAIL;PREF;INTERNET:[EMAIL PROTECTED]
REV:20010730T152339Z
END:VCARD



Wrong encodingStyle being sent for boolean encoding.

2001-08-27 Thread Marc Tremblay

Hello all,

I have a really simple SOAP server that I've been using to debug some
incompatilibity problems between SOAP::Lite for PERL and Apache SOAP.  What
appears to be happening is Apache SOAP is creating a SOAP document that it
claims is encoded using SOAP 1.1, when in fact it's encoded using SOAP 1.2.
The request and response are shown below:

REQUEST (SOAP::Lite):
- encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"; aka SOAP 1.1
- boolean encoded as 0 a la SOAP 1.1


http://schemas.xmlsoap.org/soap/encoding/";
SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/";
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/";
xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance";
xmlns:xsd="http://www.w3.org/1999/XMLSchema";>

0




RESPONSE (Apache SOAP):
- encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"; aka SOAP 1.1
- boolean encoded as 'false' a la SOAP 1.2

 http://schemas.xmlsoap.org/soap/envelope/";
xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance";
xmlns:xsd="http://www.w3.org/1999/XMLSchema";>

http://schemas.xmlsoap.org/soap/encoding/";>
false




I'm using the Aug 24, nightly build of Apache SOAP.

-- Marc





Re:IBM Sash WDE and SOAP services

2001-08-27 Thread santosh patankar

Hi,

   I think the inteface file either you place into your class path of web
server, or you can replace import statements in wsdl file by content in
inteface file. Copy from message upto end of binding and paste it in wsdl
file instead of import. 

 Hope this will work.
Santosh Patankar





___
Send a cool gift with your E-Card
http://www.bluemountain.com/giftcenter/





RE: Wrong encodingStyle being sent for boolean encoding.

2001-08-27 Thread Marc Tremblay

Actually, I'm starting to wonder if this is more of a misconception on my
part as well as that of the SOAP::Lite developer as I can't find what it was
that I was reading that led me to believe that in SOAP 1.1 booleans were to
be encoded as 0 or 1 only (even though mustUnderstand was restricted in that
manner for 1.1).

-- Marc

-Original Message-
From: Marc Tremblay [mailto:[EMAIL PROTECTED]]
Sent: Monday, August 27, 2001 10:38 AM
To: Soap-Dev
Subject: Wrong encodingStyle being sent for boolean encoding.


Hello all,

I have a really simple SOAP server that I've been using to debug some
incompatilibity problems between SOAP::Lite for PERL and Apache SOAP.  What
appears to be happening is Apache SOAP is creating a SOAP document that it
claims is encoded using SOAP 1.1, when in fact it's encoded using SOAP 1.2.
The request and response are shown below:

REQUEST (SOAP::Lite):
- encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"; aka SOAP 1.1
- boolean encoded as 0 a la SOAP 1.1


http://schemas.xmlsoap.org/soap/encoding/";
SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/";
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/";
xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance";
xmlns:xsd="http://www.w3.org/1999/XMLSchema";>

0




RESPONSE (Apache SOAP):
- encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"; aka SOAP 1.1
- boolean encoded as 'false' a la SOAP 1.2

 http://schemas.xmlsoap.org/soap/envelope/";
xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance";
xmlns:xsd="http://www.w3.org/1999/XMLSchema";>

http://schemas.xmlsoap.org/soap/encoding/";>
false




I'm using the Aug 24, nightly build of Apache SOAP.

-- Marc







Check Out the Best Prices for Your Toner Cartridges

2001-08-27 Thread lacachatare897743







D & J Printing Corporation
2564 Cochise Drive
Acworth, GA 30102
770-974-8228
[EMAIL PROTECTED]



 --LASER, FAX AND COPIER PRINTER TONER CARTRIDGES--

*WE ACCEPT GOVERNMENT, SCHOOL AND UNIVERSITY PURCHASE ORDERS*


***FREE SHIPPING WITH ANY ORDER OF $200 OR MORE!!!***

APPLE

  LASER WRITER SELECT 300/310/360   $60  
  LASER WRITER PRO 600/630 OR 16/600$60 
  LASER WRITER 300/320 OR 4/600 $45   
  LASER WRITER LS/NT/NTR/SC $50
  LASER WRITER 2NT/2NTX/2SC/2F/2G   $50
  LASER WRITER 12/640$60
   
HEWLETT PACKARD

  LASERJET SERIES 1100/1100A (92A)  $40
  LASERJET SERIES 2100/SE/XI/M/TN (96A) $70
  LASERJET SERIES 2/2D/3/3D (95A)   $43
  LASERJET SERIES 2P/2P+/3P (75A)   $55 
  LASERJET SERIES 3SI/4SI   (91A)   $75  
  LASERJET SERIES 4/4M/4+/4M+/5/5M/5N (98A) $55  
  LASERJET SERIES 4L/4ML/4P/4MP (74A)   $40  
  LASERJET SERIES 4000/T/N/TN  (27X-HIGH YIELD) $70
  LASERJET SERIES 4V/4MV   $80 
 
  LASERJET SERIES 5000 (29X)   $95 
 
  LASERJET SERIES 5L/6L $39
  LASERJET SERIES 5P/5MP/6P/6MP $50
  LASERJET SERIES 5SI/5SI MX/5SI MOPIER/8000$80
  LASERJET SERIES 8100/N/DN (82X)   $100

HEWLETT PACKARD LASERFAX

  LASERFAX 500/700, FX1 $50  
  LASERFAX 5000/7000, FX2   $65
  LASERFAX FX3  $60 
  LASERFAX FX4  $65 

LEXMARK

  OPTRA 4019, 4029 HIGH YIELD   $130   
  OPTRA R, 4039, 4049 HIGH YIELD$125   
  OPTRA S, 4059 HIGH YIELD  $135   
  
  OPTRA N   $100   


EPSON LASER TONER

  EPL-7000/7500/8000$95
   
  EPL-1000/1500 $95

EPSON INK JET

  STYLUS COLOR 440/640/740/760/860 (COLOR)   $20

  STYLUS COLOR 740/760/860  (BLACK)  $20


CANON
  LBP-430   $45  
  LBP-460/465 $55   
  LBP-8 II  $50 
  LBP-LX$54 
  LBP-NX$90 
  LBP-AX$49 
  LBP-EX$59 
  LBP-SX$49 
  LBP-BX$90 
  LBP-PX$49 
  LBP-WX$90 
  LBP-VX$59 


  CANON FAX L700 THRU L790 (FX1)$55 
  CANON FAX L5000 THRU L7500 (FX2)  $65 
  CANON LASERCLASS 4000/4500/300 (FX3)  $60
  CANON LASERCLASS 8500 THRU 9800 (FX4) $65

CANON COPIERS

  PC 1/2/3/6/6RE/7/8/11/12/65 (A30) $69 
  PC 210 THRU 780 (E40/E31)  $80   
 
  PC 300/400 (E20/E16)  $80

NEC

  SERIES 2 LASER MODEL 90/95$100
  SUPERSCRIPT 860   $115


PLEASE NOTE:
***FREE SHIPPING WITH ANY ORDER OF $200 OR MORE!!!***
 * ALL OF OUR PRICES ARE IN US DOLLARS
 * WE SHIP UPS GROUND.  ADD $6.50 FOR SHIPPING AND HANDLING
 * WE ACCEPT ALL MAJOR CREDIT CARDS OR "COD" ORDERS.
 * COD CHECK ORDERS ADD $3.50 TO YOUR SHIPPING COST.   
 * OUR STANDARD MERCHANDISE REPLACEMENT POLICY IS NET 90 DAYS.
 * WE DO NOT SELL TO RESELLERS OR BUY FROM DISTRIBUTERS.
 * WE DO NOT CARRY: BROTHER, MINOLTA, KYOSERA, PANASONIC, XEROX, 
FUJITSU, OKIDATA OR SHARP PRODUCTS. 
 * WE ALSO DO NOT CARRY:  DESKJET OR BUBBLEJET SUPPLIES.
 * WE DO NOT BUY FROM OR SELL TO RECYCLERS OR REMANUFACTURERS.

   -PLACE YOUR ORDER AS FOLLOWS-

1) BY PHONE (770) 974-8228
2) BY MAIL:  D AND J PRINTING CORPORATION
 2564 COCHISE DR
 ACWORTH, GA 30102
3) BY INTERNET: [EMAIL PROTECTED]

 INCLUDE THE FOLLOWING INFORMATION WHEN YOU PLACE YOUR ORDER:

1) YOUR PHONE NUMBER
2) COMPANY NAME
3) SHIPPING ADDRESS
4) CONTACT NAME
5) ITEMS NEEDED WITH QUANTITIES
6) METHOD OF PAYMENT (CO