Please unsubscribe me.

2002-04-12 Thread Sujit Gokhale

 
 

__
Do You Yahoo!?
Yahoo! Tax Center - online filing with TurboTax
http://taxes.yahoo.com/



RE: SOAP COLDFUSION ERROR NEED HELP??

2002-04-12 Thread Vaibhav Joshi

Hi,
 Thanks a Lot. Is it, that Apache doed not recognise these kind of SOAP type
's. ie one generated from Cold Fusion..

-Original Message-
From: Scott Nichol [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 11, 2002 6:11 PM
To: [EMAIL PROTECTED]
Subject: Re: SOAP COLDFUSION ERROR NEED HELP??


It looks fine.  As with Microsoft, the parameters do not have the xsi:type
attribute, but because you do not get a "cannot find a deserializer..."
error, I
assume you have added the appropriate mappings to your deployment
descriptor.

Scott

- Original Message -
From: "Vaibhav Joshi" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, April 11, 2002 5:11 PM
Subject: RE: SOAP COLDFUSION ERROR NEED HELP??


> Hi,
>  Is there any problem with the way ColdFusion generates the XML ie SOAP
> Envelope shown below??
> Thanking you
> V
>
> -Original Message-
> From: Scott Nichol [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, April 11, 2002 4:51 PM
> To: [EMAIL PROTECTED]
> Subject: Re: SOAP COLDFUSION ERROR NEED HELP??
>
>
> This does not seem like an Apache SOAP issue per se.  Your
> EntryPoint#getInstances method is being invoked, but it is throwing an
> exception.
>
> Scott
>
> - Original Message -
> From: "Vaibhav Joshi" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Thursday, April 11, 2002 4:27 PM
> Subject: RE: SOAP COLDFUSION ERROR NEED HELP??
>
>
> > Yeah, ColdFusion is Generating this ::
> >  > > 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";>
> > >  
> > >  
> > >  11
> > >  testuser
> > >  1234
> > >  MultiChat
> > >  
> > > 
> > > 
> > >
> > The Over All Error is::
> >
> >  > 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";>
> >  
> >  
> >  11
> >  testuser
> >  1234
> >  MultiChat
> >  
> > 
> > 
> >
> > The SOAPClientExample Multicity provided throws an couple of errors:
> >
> > Generated fault:
> >Fault Code   = SOAP-ENV:Server
> >Fault String = [SOAPException: faultCode=SOAP-ENV:Server; msg=null]
> >
> > Generated fault:
> >Fault Code   = SOAP-ENV:Server
> >Fault String = [SOAPException: faultCode=SOAP-ENV:Server; msg=null]
> >Fault element?g = [Attributes={}] [faultCode=SOAP-ENV:Server]
> > [faultString=[SOAPException: faultCode=SOAP-ENV:Server; msg=null]]
> > [faultActorURI=/soap/servlet/rpcrouter]
> > [DetailEntries=[(0)=[SOAPException:
faultCode=SOAP-ENV:Server;
> > msg=null]
> >  at
> > com.multicity.partners.soap.EntryPoint.throwServerException(Unknown
> Source)
> >  at com.multicity.partners.soap.EntryPoint.processError(Unknown
> > Source)
> >  at com.multicity.partners.soap.EntryPoint.getInstances(Unknown
> > Source)
> >  at java.lang.reflect.Method.invoke(Native Method)
> >  at org.apache.soap.server.RPCRouter.invoke(RPCRouter.java:146)
> >  at
> >
org.apache.soap.providers.RPCJavaProvider.invoke(RPCJavaProvider.java:129)
> >  at
> >
>
org.apache.soap.server.http.RPCRouterServlet.doPost(RPCRouterServlet.java:28
> > 7)
> >  at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
> >  at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
> >  at
> >
>
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Application
> > FilterChain.java:247)
> >  at
> >
>
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterCh
> > ain.java:193)
> >  at
> >
>
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.ja
> > va:243)
> >  at
> >
>
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
> > 66)
> >  at
> >
>
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
> >  at
> > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
> >
> >  at
> >
>
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.ja
> > va:190)
> >  at
> >
>
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
> > 66)
> >  at
> >
>
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
> >  at
> > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
> >
> >  at
> >
org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2343)
> >  at
> >
>
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180
> > )
> >  at
> >
>
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
> > 66)
> >  at
> >
>
org.apache.

Re: SOAP COLDFUSION ERROR NEED HELP??

2002-04-12 Thread Scott Nichol

The Apache SOAP server is receiving the message, parsing it, and correctly
calling the getInstances method on your EntryPoint class.  The code in your
EntryPoint class is calling the processError method of EntryPoint, which in turn
in calling the throwServerException method of EntryPoint.  The Apache SOAP
server is then correctly returning a SOAP fault to the Cold Fusion client.  In
other words, Apache SOAP is doing everything as expected.  If you do not
understand why Cold Fusion is receiving the SOAP fault, you should look at your
EntryPoint class.

Scott Nichol

- Original Message -
From: "Vaibhav Joshi" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, April 12, 2002 9:10 AM
Subject: RE: SOAP COLDFUSION ERROR NEED HELP??


> Hi,
>  Thanks a Lot. Is it, that Apache doed not recognise these kind of SOAP type
> 's. ie one generated from Cold Fusion..
>
> -Original Message-
> From: Scott Nichol [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, April 11, 2002 6:11 PM
> To: [EMAIL PROTECTED]
> Subject: Re: SOAP COLDFUSION ERROR NEED HELP??
>
>
> It looks fine.  As with Microsoft, the parameters do not have the xsi:type
> attribute, but because you do not get a "cannot find a deserializer..."
> error, I
> assume you have added the appropriate mappings to your deployment
> descriptor.
>
> Scott
>
> - Original Message -
> From: "Vaibhav Joshi" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Thursday, April 11, 2002 5:11 PM
> Subject: RE: SOAP COLDFUSION ERROR NEED HELP??
>
>
> > Hi,
> >  Is there any problem with the way ColdFusion generates the XML ie SOAP
> > Envelope shown below??
> > Thanking you
> > V
> >
> > -Original Message-
> > From: Scott Nichol [mailto:[EMAIL PROTECTED]]
> > Sent: Thursday, April 11, 2002 4:51 PM
> > To: [EMAIL PROTECTED]
> > Subject: Re: SOAP COLDFUSION ERROR NEED HELP??
> >
> >
> > This does not seem like an Apache SOAP issue per se.  Your
> > EntryPoint#getInstances method is being invoked, but it is throwing an
> > exception.
> >
> > Scott
> >
> > - Original Message -
> > From: "Vaibhav Joshi" <[EMAIL PROTECTED]>
> > To: <[EMAIL PROTECTED]>
> > Sent: Thursday, April 11, 2002 4:27 PM
> > Subject: RE: SOAP COLDFUSION ERROR NEED HELP??
> >
> >
> > > Yeah, ColdFusion is Generating this ::
> > >  > > > 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";>
> > > >  
> > > >  
> > > >  11
> > > >  testuser
> > > >  1234
> > > >  MultiChat
> > > >  
> > > > 
> > > > 
> > > >
> > > The Over All Error is::
> > >
> > >  > > 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";>
> > >  
> > >  
> > >  11
> > >  testuser
> > >  1234
> > >  MultiChat
> > >  
> > > 
> > > 
> > >
> > > The SOAPClientExample Multicity provided throws an couple of errors:
> > >
> > > Generated fault:
> > >Fault Code   = SOAP-ENV:Server
> > >Fault String = [SOAPException: faultCode=SOAP-ENV:Server; msg=null]
> > >
> > > Generated fault:
> > >Fault Code   = SOAP-ENV:Server
> > >Fault String = [SOAPException: faultCode=SOAP-ENV:Server; msg=null]
> > >Fault element?g = [Attributes={}] [faultCode=SOAP-ENV:Server]
> > > [faultString=[SOAPException: faultCode=SOAP-ENV:Server; msg=null]]
> > > [faultActorURI=/soap/servlet/rpcrouter]
> > > [DetailEntries=[(0)=[SOAPException:
> faultCode=SOAP-ENV:Server;
> > > msg=null]
> > >  at
> > > com.multicity.partners.soap.EntryPoint.throwServerException(Unknown
> > Source)
> > >  at com.multicity.partners.soap.EntryPoint.processError(Unknown
> > > Source)
> > >  at com.multicity.partners.soap.EntryPoint.getInstances(Unknown
> > > Source)
> > >  at java.lang.reflect.Method.invoke(Native Method)
> > >  at org.apache.soap.server.RPCRouter.invoke(RPCRouter.java:146)
> > >  at
> > >
> org.apache.soap.providers.RPCJavaProvider.invoke(RPCJavaProvider.java:129)
> > >  at
> > >
> >
> org.apache.soap.server.http.RPCRouterServlet.doPost(RPCRouterServlet.java:28
> > > 7)
> > >  at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
> > >  at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
> > >  at
> > >
> >
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Application
> > > FilterChain.java:247)
> > >  at
> > >
> >
> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterCh
> > > ain.java:193)
> > >  at
> > >
> >
> org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.ja
> > > va:243)
> > >  at
> > >
> >
> org.apach

error connecting in EJB

2002-04-12 Thread pop m




I am using Orion 1.5.4 and 
SOAP 2.2 . I have written a simple stateless EJB and I want to call a 
method
via SOAP but always I am 
getting the next error from client:
 
  Fault 
Code   = SOAP-ENV:Server  Fault String = Error in connecting 
to EJB
and my Orion app. server 
writes this:
 
Exception caught: 
javax.naming.NamingException: Error instantiating web-app JNDI-context: No 
location specified and no suitable instance of the type 
'hu.regens.ejb.graph' found for the ejb-ref graph
 
However, I have tried to 
configure the "classpaths" to see my own EJB classes but it didn't 
work.
 
Can somebody help me ? If 
you'll get me an answer please specify what/where should I do/configure/try 
!
 
Thanks 
!


Re: Error opening socket: Connection refused: no further information.

2002-04-12 Thread Scott Nichol

Generally, the samples accept a command line parameter specifying the endpoint
URL for the SOAP server.  The test scripts use
http://localhost:8080/soap/servlet/rpcrouter.  You will get an error like the
one you report if there is no processing listening on the server port.  When
running the tests, be certain that you specify the correct URL for your server,
and, of course, be certain the server is running.

If you are not certain about whether you installed Apache SOAP properly, and
especially if you are using it with Tomcat, you can check
http://mywebpages.comcast.net/scottnichol/apachesoapinstall.htm.

Scott Nichol

- Original Message -
From: "dinakar" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, April 12, 2002 10:15 AM
Subject: Error opening socket: Connection refused: no further information.


hi all,


   When i run any sample code for apache soap iam getting the following errors.

   Error opening socket: Connection refused: no further information

   i guess i have placed all the jars and parsers in the right place , but still
iam getting this error

   any help  would be kindly appreciated.

   Thanks & Regards
   dinakar



_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com




Re: Call SOAP Web Service only over HTTP

2002-04-12 Thread Scott Nichol

You cannot call a SOAP service using a regular POST from an HTML page.  Such a post 
will send the
values of fields on the form in url-encoded format.

Of course, with IE you can have JavaScript that is fired for the post that will create 
the SOAP
message as XML and send it, but this is basically having a JavaScript client, not HTML.

Scott Nichol
- Original Message -
From: <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, March 18, 2002 04:56
Subject: Call SOAP Web Service only over HTTP


> Hi,
>
> I've written an Apache SOAP Service and a Java client which calls this
> service successfully. I'm now looking for HTML examples (clients) that
> could use this service. Is it possible to call a SOAP Web Service over POST
> request?
>
> I'd be much obliged if someone could send me some example files.
>
> Thanks for your help.
>
> Chris
>
>
>
> **
> This email and any files transmitted with it are confidential and
> intended solely for the use of the individual or entity to whom they
> are addressed. If you have received this email in error please notify
> the system manager.
>
> This footnote also confirms that this email message has been swept by
> MIMEsweeper for the presence of computer viruses.
>
>
> **


_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com