soap service and properties file in weblogic

2002-03-08 Thread Gus Delgado
I've deployed a web service in weblogic6.1 using soap2.2, I'm trying to make my underlying object to read as an input stream an .rc file this is how I'm doing it. InputStream is = getClass().getResourceAsStream("soap.rc"); The object lives in a jar file which is part of a war that looks like thi

Re: weblogic6.1 and soap2.2

2002-03-06 Thread Gus Delgado
in sp2. > > Ruben > > > > >

Re: weblogic6.1 and soap2.2

2002-03-06 Thread Gus Delgado
, just place it > before weblogic.jar in server's classpath.(See attached file: > patchCR058220.jar) > > regards, > Ruben > > > > >

weblogic6.1 and soap2.2

2002-03-06 Thread Gus Delgado
e run into the problem, and it seems that they have, but I was not able to find a resolution. Is there one? and if there is what is it? -thanks Gus -- Gus Delgado Consultant NetQuotient Consulting Group e-mail: [EMAIL PROTECTED] cell: 512-587-6986

.Net to Apache SOAP

2002-02-21 Thread Gus Delgado
are there any interop examples for a .Net client to an Apache SOAP server? -Gus

RE: WSDL question

2002-02-21 Thread Gus Delgado
hengzp" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, February 19, 2002 8:17 PM Subject: Re: WSDL question > JBuilder's web service kit for java can create WSDL > - Original Message - > From: "Gus Delgado" <[EMAIL PROTECTED]> >

axis

2002-02-20 Thread Gus Delgado
where can I get the deploy.xml for the samples on the axis package?

RE: WSDL question

2002-02-20 Thread Gus Delgado
read this tutorial on SOAP interoperability: http://www.theserverside.com/resources/article.jsp?l=Systinet-web-services-p art-5 Best regards, Anne > -Original Message----- > From: Gus Delgado [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, February 19, 2002 2:16 PM > To: [EMAIL PROTECTE

RE: WSDL question

2002-02-19 Thread Gus Delgado
your services without affecting your clients that don't use WSDL. Anne > -Original Message----- > From: Gus Delgado [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, February 19, 2002 12:35 PM > To: [EMAIL PROTECTED] > Subject: WSDL question > > > I have a web service cur

WSDL question

2002-02-19 Thread Gus Delgado
I have a web service currently on production using jakarta-soap running on tomcat. "some" of my clients want to use the new .Net implementation to send soap-envelopes (requests) to the jakarta-soap implementation, .Net uses WSDL, can I implement a WSDL for "some" of my clients to use without hurti

RE: no signature match

2001-11-13 Thread Gus Delgado
] Subject: RE: no signature match Does your class exist in multiple spots on your box, and are both referenced in your cp? "Gus Delgado" tient.com> cc: Subjec

RE: no signature match

2001-11-12 Thread Gus Delgado
Well, I'm moving from 3.2.1 to 4.0, but I did not get them with 3.2.1 -Original Message- From: Gus Delgado [mailto:[EMAIL PROTECTED]] Sent: Monday, November 12, 2001 1:53 PM To: [EMAIL PROTECTED] Subject: RE: no signature match no! -Original Message- From: Brian Abbott [m

RE: no signature match

2001-11-12 Thread Gus Delgado
no! -Original Message- From: Brian Abbott [mailto:[EMAIL PROTECTED]] Sent: Monday, November 12, 2001 12:33 PM To: '[EMAIL PROTECTED]' Subject: RE: no signature match Do you receive similar errors on Tomcat 3.3? -Brian -Original Message----- From: Gus Delgado [mai

no signature match

2001-11-12 Thread Gus Delgado
I upgraded to tomcat 4.0 and when I deploy my soap service I get a SOAP-ENV:Server error saying "no signature match" on the method I'm calling. Here is the signature public request(Element root) I can see in the source that the signature is right! Has anyone run into this problem before? is tom

RE: COM Example

2001-08-27 Thread Gus Delgado
Can someone send the MSVCP60D.dll as an attachment on the list. I'm trying to get the COMProvider example to work. Thanks. Gus -Original Message- From: Gus Delgado [mailto:[EMAIL PROTECTED]] Sent: Monday, August 27, 2001 7:58 AM To: [EMAIL PROTECTED] Subject: COM Example Good Mo

COM Example

2001-08-27 Thread Gus Delgado
Good Morning everyone, I'm trying to run the COM Example from the Apache SOAP. It deployed just fine but when I run the Addit class I get an Error that's does not make much sense to me, but I'm sure some of you have gotten it before. Fault Code = SOAP-ENV:Server.Exception: Fault String = initlo

RE: sending base64 encoding

2001-08-07 Thread Gus Delgado
sending base64 encoding I guess you have to encode it in base 64 and insert the resulting string into the "text" part of the XML tag. It's just an understanding between the client and server and I am not aware of anyway to specify that at a contractual level. vishu -----Original Message-

sending base64 encoding

2001-08-07 Thread Gus Delgado
I'm sending an XML file back from the server to the client. How can I send an encodingType of base64 on one of the Elements of the XML file I send back? example of what I'm trying to do: hello ??? I'm really struggling with this? thanks gus

RE: Working with Xerces

2001-08-04 Thread Gus Delgado
Title: Working with Xerces Document doc = parser.getDocument();   Element  e  = null;NodeList nl = doc.getElementsByTagName("tagName");e = (Element) nl.item(0);   e.normalize();NodeList nl = e.getChildNodes();Node textNode = nl.item(0);String value = textNode.getNodeValue() ;   -

RE: encodingStyles

2001-08-03 Thread Gus Delgado
the answer to my question I would appreciated it very much. Thanks. Gus -Original Message- From: Gus Delgado [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 01, 2001 9:03 AM To: [EMAIL PROTECTED] Subject: RE: encodingStyles more than one for the result -Original Message- From

RE: encodingStyles

2001-08-01 Thread Gus Delgado
more than one for the result -Original Message- From: Tom Myers [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 01, 2001 8:51 AM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: encodingStyles At 07:54 AM 8/1/2001 -0500, Gus Delgado wrote: >Can I use two differ

RE: encodingStyles

2001-08-01 Thread Gus Delgado
r each param to be a different encoding style. params.addElement(new Parameter("channel", String.class, "NB",Constants.NS_URI_SOAP_ENC )); Let me know if this works for you. > -Original Message- > From: Gus Delgado [SMTP:[EM

encodingStyles

2001-08-01 Thread Gus Delgado
mple I see that it uses the NS_URI_SOAP_ENC so I was wondering, Could I use both and if I could, how? and if I could not, then what would my options be? Thanks a lot for your help in advanced. Gus Delgado

SOAP and...

2001-07-25 Thread Gus Delgado
attachments, is this even possible to send a SOAP envelope with a PDF attachment? Gus -Original Message- From: Gus Delgado [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 25, 2001 2:24 PM To: [EMAIL PROTECTED] Subject: SOAP and Attachments where can I find an example of sending a

SOAP and Attachments

2001-07-25 Thread Gus Delgado
where can I find an example of sending a response on a soap envelope together with a pdf attachment? Thanks in advanced. Gus

RE: rpcrouter

2001-07-23 Thread Gus Delgado
It is the servlet org.apache.soap.server.http.RPCRouterServlet. Sri -Original Message----- From: Gus Delgado [mailto:[EMAIL PROTECTED]] Sent: Monday, July 23, 2001 11:53 AM To: [EMAIL PROTECTED] Subject: rpcrouter where can I find the rpcrouter jsp?

rpcrouter

2001-07-23 Thread Gus Delgado
where can I find the rpcrouter jsp?

RE: test

2001-07-17 Thread Gus Delgado
I'm getting this error when trying to run an example that is already deployed, anyone has any idea? Thanks in advanced. SOAP-ENV:Server.BadTargetObjectURI Unable to resolve target object: null /soap/servlet/rpcrouter -Original Message- From: Goerg, Marko [mailto:[EMAIL PROTECTED]] Sen

BizTalk

2001-07-13 Thread Gus Delgado
is WebLogic or tomcat a BizTalk Framework Compliant server?