Re: Axis C++ client for SAPBC

2005-10-03 Thread Pico Florin
Hello! I've tried to execute my client AXIS C++for SAP BC from VC6.0 and I've received the same execption: Exception : DLOPEN FAILED in loading parser library even I've set up the AXISCPP_HOME enviroment variable to the path ofaxiscpp.conf. Can somebody help me to pass this error? Thank you!

Re: Axis C++ client for SAPBC

2005-10-03 Thread John Hawkins
OK, What version of xerces are you running (it needs to be 2.2.0)? - and can you cut and paste your config file her pls. thanks, John. Pico Florin [EMAIL PROTECTED] 03/10/2005 08:01 Please respond to Apache AXIS C User List To Apache AXIS C User List axis-c-user@ws.apache.org

Re: Newbie question: How to view debug messages in web service?

2005-10-03 Thread John Hawkins
You should be able to use trace and then output appears in the trace file. If you compile with trace on then entry and exit trace will be put into the code automatically for you. In addition to that you can also add your own statements and relevant points. Alok Mathur [EMAIL PROTECTED]

Re: Axis C++ client for SAPBC

2005-10-03 Thread Fred Preston
Hi Florin, AXISCPP_HOME is used to find the axiscpp.conf file that contains information on explicitly where to find the associated DLLs. The problem is that these DLLs use other DLLs and the location of these DLLs needs to be on your path. For example, AxisXMLParserXerces.dll relies on

Re: Axis C++ client for SAPBC

2005-10-03 Thread John Hawkins
if you wanted to you could write a handler to look at the message and do what you want with it - but why is tcpmon an issue for you? Pico Florin [EMAIL PROTECTED] 03/10/2005 11:27 Please respond to Apache AXIS C User List To Apache AXIS C User List axis-c-user@ws.apache.org cc

Re: Axis C++ client for SAPBC

2005-10-03 Thread Pico Florin
Regarding the tpcmon: I have the SAP BC serveron port . If I want to listen this port on tpcmon I receive this message: Address already in use JVM_Bind. So, what port should I listen inorder to see the request message? Thank you, Florin Yahoo! Messenger NEW - crystal clear PC to PC

Re: Axis C++ client for SAPBC

2005-10-03 Thread John Hawkins
You should listen on any other port (9081?) and then forward to . You then need to change the url of your service to e.g. http://myservice:9081/service Pico Florin [EMAIL PROTECTED] 03/10/2005 12:53 Please respond to Apache AXIS C User List To Apache AXIS C User List

RE: After Axis install Apache fails to start

2005-10-03 Thread Cooper_JohnD
Interesting enough apache -K start works like a charm, but trying to start the service EVEN AFTER REBOOT, fails with the same error messages listed originally. So now we have a working test bed on windows, and are preparing to move this over to Suse SLES9. Unfortunately, this is proving even more

RE: After Axis install Apache fails to start

2005-10-03 Thread John Hawkins
can you run simpleaxisserver first - outside of the apache runtime? [EMAIL PROTECTED] 03/10/2005 15:18 Please respond to Apache AXIS C User List To [EMAIL PROTECTED], [EMAIL PROTECTED] cc axis-c-user@ws.apache.org Subject RE: After Axis install Apache fails to start

Re: AXIS-C++ Build problems

2005-10-03 Thread Parthipan
Try this setting in your build.common.properties. Line 17 in my file. # Apache versions to be used server.apache13 = false server.apache20 = false On 10/3/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Yes, and no matter what I set in the properties file, it always tries to

WSSE4j - verifying signature problem

2005-10-03 Thread Anna Krajewska
Hi I have a problem with configuring axis web-service client so that it can get and verify the soap-envelope signature. All I found on wsse pages is the example client-deploy.wsdd file. Part that is responsible for the signature things looks like that: handler

RE: Wsdl2java generated code

2005-10-03 Thread Grossberger, Guenter
Title: Wsdl2java generated code Hi! You can define the complex type starting after element name="Request" as a global type with e.g. complexType name="RequestType" and reuse it in both element definitions with element name="Request" type="RequestType". If you have additonale elements in

[Deb] Call and HttpsUrlConnection

2005-10-03 Thread moi oziris
hi, I'm new on this ML so I begin to introduce myself. I'm french (sorry for my poor english), 23 years old and I'm work in an informatic service company as development ingenior. I'm sorry to begin this story with a request. I hope continue in a more active way. Here the deal. I've

WSDL2java error

2005-10-03 Thread Andras Balogh
Hello all, I want to use Axis to generate the java classes from a WSDL. I have tried both older Axis 1.1 and Axis 1.2.1 and i get this exception: -- D:\axis-1_2_1java org.apache.axis.wsdl.WSDL2Java --verbose

Re: class-cast exception while writing the client for the webservice

2005-10-03 Thread karusala kiranbabu
Hi krthekeyan, I have transformed files into datasources which further into datahandlers and send them to the webservice .The service directly takes the datahandlers as parameters. In this process i am getting the exception mentioned below. So give me the process how to follow ? Thanks in

Regarding SOAP Header Information in WSDL

2005-10-03 Thread anshuk pal chaudhuri
Hi, I am using Axis 1.2.1 When I am deploying a web service,the WSDL file is being generated. But I want to incorporate inside the WSDL ,that when the client is sending the SOAP Request, he/she must send the SOAP header with some elements inside the header too. This I want to convey inside the

Re: [axis2 v0.92] wsdl file

2005-10-03 Thread Deepal Jayasinghe
Hi Gordon; It should work , but you need to do some modifications 1. You need to have services.xml instead of service.xml 2. There should be a service element in side services.xml similar to service element in WSDL file as an example , say you have a wsdl with following service element

Re: [axis2 v0.92] wsdl file

2005-10-03 Thread Deepal Jayasinghe
hi ; small correction; services service name=MySerevice .. .. /service /services sorry abt that Thanks, Deepal ~Future is Open~ - Original Message

RE: Wsdl2java generated code

2005-10-03 Thread Coyne, Jimmy
Title: Message Hi there ,Im afraid I have no control over the schema and will not be allowed to change it :( -Original Message-From: Grossberger, Guenter [mailto:[EMAIL PROTECTED] Sent: 03 October 2005 09:19To: axis-user@ws.apache.orgSubject: RE: Wsdl2java generated

Fw: WSDL2JAVA error: java.lang.NullPointerException in getNewQName

2005-10-03 Thread Ivan Vignola
Hi, I developed a simple service, document style,with attachedfiles in input message. Creating stubs, wsdl2java throws exception listed below: java.lang.NullPointerException at org.apache.axis.wsdl.toJava.Utils.getNewQName(Utils.java:704) at

RE: [Deb] Call and HttpsUrlConnection

2005-10-03 Thread John Rasmussen \(Exchange\)
Doesn't the saaj connection.call() method support https url? I think so... John Rasmussen DataPower Technology, Inc. One Alewife Center Cambridge, MA 02140, US Office: US +1 617.864.0455 x359 Fax: US +1 617.864.0458 -Original Message- From: moi oziris [mailto:[EMAIL PROTECTED]

Response of SOAP message wtih Attachment

2005-10-03 Thread Gabsaga Tata
I am using Apache Axis 1.2 / Tomcat 4 Is it possible for a client application to get back data as MIME attachment from a web service?From the example code snippets below, the service successfully attaches a file to a SOAP messagebut when the client application tries to get the attachment count, it

xmlns disappears

2005-10-03 Thread Michael
Hello, I have a Doc-Lit service with an operation can accept a type containing xsd:any. This is intended to allow the service to receive any document (from any namespace). e.g. soapenv:Envelope xmlns:soapenv=http://schemas.xmlsoap.org/soap/envelope/; xmlns:xsd=http://www.w3.org/2001/XMLSchema;

Problem with WSDL2Ws generated code

2005-10-03 Thread Alok Mathur
Hello everyone, I am using Axis 1.5 final and am having problems with the code generation tool. This is an excerpt from my WSDL file .. .. .. xs:simpleType name=NonNegativeDurationType xs:restriction base=xs:duration xs:minInclusive value=P0Y0M0DT0H0M0S / /xs:restriction

Uncaught Exception Traces - how to get Axis to tell me what they are

2005-10-03 Thread Paul Grillo
I currently am getting the following fault returned from my Server when communicating.   soapenv:Envelope xmlns:soapenv=http://schemas.xmlsoap.org/soap/envelope/; xmlns:xsd=http://www.w3.org/2001/XMLSchema; xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;     soapenv:Body  

Re: Uncaught Exception Traces - how to get Axis to tell me what they are

2005-10-03 Thread Ron Reynolds
turn on debug for this log4j cateogory only - org.apache.axis.EXCEPTIONS - it is the category used for all faults thrown on the server-side. I currently am getting the following fault returned from my Server when communicating.   soapenv:Envelope

Forwarding to the appropriate port

2005-10-03 Thread Mayur Shetye
Hello all I have some webservices deployed using axis in the oracle 10G application server. I actually wanted to some advice from the group. 1. If it advisable to run webservices in oracle 10g Application server as opposed to Tomcat? (They do run, but I want to know if anyone thinks that this

Re: Getting Server's certificate form an axis client

2005-10-03 Thread Christopher S. Johnson
Bill - I'm not sure about doing this is C but for java see the following thread.. http://marc.theaimsgroup.com/?l=axis-userm=112497369029586w=2 Same idea for C, grab the request then the certificate. Regards ..Chris On Mon, 3 Oct 2005, Bill Kuker wrote: I am writing a SOAP client using

RE: Getting Server's certificate form an axis client

2005-10-03 Thread Bill Kuker
Thanks, I can use that on the server end of things, but I am confised as to how I'd use this in a client. Isn't the HTTPServletRequest something I'd be getting from my servlet container on the server side? I am the client, I am connecting to a server, and I need to see the cert the server sent to

newbiew question on WSDD and WSDL

2005-10-03 Thread Developer Developer
What is the different between WSDD and WSDL. My understanding is WSDD - is used to deploy a webservice on the webserver WSDL- Is used to publish the web service in the UDDI. Is that right ? What is the best way to create a WSDD for a webservice defined in the java ( have access to the source

How do I use WSDL2JAVA over a firewall to generate stubs

2005-10-03 Thread Shaun Farrugia
Wondering how I use WSDL2Java over a proxy firewall to generate stub classes. I'm trying to consume a WS that is outside the firewall. I have been attempting to pass -Dhttp right inside the .BAT file but that's not working out. Am I missing something. The WSDL is consumed via HTTPS so i'm not

Re: Fault - makeTypeElement()

2005-10-03 Thread Vishist Mandapaka
Hi Anil, At last, I could get my webservices to work. I had to tweak in the auto-generated code to get it to work. Please send me your wsdl, xsd and build.xml to test. I could take a look and let you know. As for me, there are symbols that are generated in the queue names. I removed them from

Re: Uncaught Exception Traces - how to get Axis to tell me what they are

2005-10-03 Thread Vishist Mandapaka
Hi Paul, If the debugger doesn't help you, try to debug over TCP connection. You can enable debugging in the server. Let me know what server you are using and I can let you know how to enable debugging. Once you enable debugging, a TCP Port will open up and the server will print the port number

Re: newbiew question on WSDD and WSDL

2005-10-03 Thread Ron Reynolds
WSDL is the universal standard XML for describing a (web) service interface (web is misleading here - WSDL works GREAT for describing ANY service interface) including message structure and types (using XSD), protocols, and locations (host urls). (note, this is WSDL combined with SOAP-Bindings

Re: newbiew question on WSDD and WSDL

2005-10-03 Thread Vishist Mandapaka
Ron, If I may add my understanding UDDI is synchronous to DNS in one way. The difference between DNS and UDDI is DNS works at network layer where as UDDI works at Application layer. Presuming a client is unaware where a particular service is running, he might lookup in the UDDI, fetch the

Re: Forwarding to the appropriate port

2005-10-03 Thread Tom Oinn
Mayur Shetye wrote: I want to know Why it goes directly to port 7780, I am sure some of you have faced this problem in apache-tomcat configuration too. Currently I am not able to see the WSDL file itself. Let me know what can be done so that wsdl file appears on port 80. Also interestingly if

Axis2 v0.92 Error deploying in Tomcat

2005-10-03 Thread Tushar Inamdar
Hi,Please note that this error refers to Axis 2 v0.92. I dropped the axis2.war in my Tomcat webapps directory. Validation passed, but when I try to list the services, it generates the following StackTrace. I tried this under two independent environments to get the same result. Environment:J2SE 5.0

Re: Forwarding to the appropriate port

2005-10-03 Thread Jim Azeltine
I think your problem may be due to the fact that oracle 10G applicationserver can process web service transactions by itself, without axis. The port it listens on is configurable. When you speak of the apache webserver, it is actually the Oracle HTTP server, which is processing and redirecting the

Re: Axis2 v0.92 Error deploying in Tomcat

2005-10-03 Thread Ruchith Fernando
Hi, We have only tested Axis2 with JDK 1.4 and the same problem has been reported with JDK 1.5. Therefore the best option is for you to try Axis2-0.92 with JDK1.4 and everything should work. We have to fix this. Will add a jira. Thanks, Ruchith On 10/4/05, Tushar Inamdar [EMAIL PROTECTED]

[Axis2] Method name changes in OM

2005-10-03 Thread Eran Chinthaka
Hi, All the devs and users please remember that the meaning of serialize has now changed completely. Now its the other way round. When we serialize that means we serialize with cache. So be careful serialize() -- serializeAndConsume() serializeWithCache() -- serialize(). So please

2-D array of Strings

2005-10-03 Thread Jyotishman Pathak
Hi all, I have a simple question to ask: how can I declare a complexType in my WSDL file depicting a 2-dimensional array of strings? I know, I can specify a 1-dimensional array type as follows: xsd:complexType name=StringArray xsd:sequence xsd:element name=element type=xsd:string minOccurs=0