WSN implementation in C++ in Axis?

2006-10-24 Thread Nilesh Gujarathi
Hi Would I get the WSN implementation in C++ from Apache? Is it present in Axus or should work with Axis. I looked at Pubscribe but it seems to available only in Java, is it? Thanks in advance -Nilesh _ Sexy, sultry, sensuous. -

RE: [Axis2]MessageContext

2006-10-24 Thread Smirnova, Natalya
Hi, I know I can not set Message Context directly on the client side. My issue is: I wrote on the client side: /** * Proxy setting in runtime */ HttpTransportProperties.ProxyProperties proxyproperties = new HttpTransportProperties().new ProxyProperties();

[Axis2]Header in soap envelope

2006-10-24 Thread Smirnova, Natalya
Hi, How I can set some information (username and password, for example) in header of soap message envelope on client side and get this information on service side (in handler) Would you be so kind to share some pieces of code, please? Best regards,Natalya Smirnova. MERA NN

Re: unsubscribe

2006-10-24 Thread Kees de Kooter
unsubscribe - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

[Axis2] Axis2 transaction support, suggestion needed

2006-10-24 Thread falom falom
Hi,I'mdrafting a WS system requirement, which will require high transaction abilities: distributed, atomic, nested transactions, etc, since a lot of operations will perform against multiple database servers on different networks. Also different web services will probably be located in

Use of Axis 1.1 and JWSDP 1.6: generated Java-Classes

2006-10-24 Thread thomas . schmitz
Hello, I've got some problems with generated Java Classes using WSDL2Java. I use the APIs mentioned in the mail-topic. But the generated stub-classes have errors, because there are import-statements for org.apache.axis.constants. Axis 1.1 doesn't have this package, but the same classes are

Re: [Axis2]Header in soap envelope

2006-10-24 Thread Eran Chinthaka
Smirnova, Natalya wrote: Hi, How I can set some information (username and password, for example) in header of soap message envelope on client side and get this information on service side (in handler) Would you be so kind to share some pieces of code, please? Create your SOAP

AXIS 1.4: invoke request after web service sent response to client

2006-10-24 Thread Kestonas JoJo
Hi all,I am curious is it possible to configure AXIS server to invoke another web service as client after response is send to client.for example Transaction like:1. Client No. 1 invokes method of Axis service No. 12. Axis service No 1 responses to Client No. 13. Axis service No 1 invokes web

Re: Invoking java classes with a Perl client

2006-10-24 Thread Anne Thomas Manes
We need the WSDL to help you. On 10/23/06, D. Kreft [EMAIL PROTECTED] wrote: I'm stuck and endless googling is leading me to no success. I'm trying to use Perl's SOAP::Lite to talk to an Axis web service. I've got a new method that I want to add to my service implementation that accepts an

Re: AXIS 1.4: invoke request after web service sent response to client

2006-10-24 Thread Martin Gainty
would be helpful if you looked at the definition ofatomic transactions and the principle of atomicityredesigning a web service that itself is a client to another web servicemay possiblyinvite a race condition AxisClient1 calls AxisService1 and expects output from AxisService1 AxisService1

Re: JMS Transport not starting

2006-10-24 Thread Asankha C. Perera
Terry Place geronimo-spec-jms-1.1-rc4.jar or an equivalent as well on the Tomcat lib - seems like a difference in standalone and war dists - and I will update the docs to include this as well. Once you do this you will get through the initial error you have mentioned. However you will need

AW: AXIS 1.4: invoke request after web service sent response to client

2006-10-24 Thread Stadelmann Josef
Are you saying that the architectural concept of having a CLIENTgoing to anAGENTpassing on to aSERVER is bad? :-/ In my mind an AGENT is two-fold as described by .-1 what all about is the then CORBA? :-) Josef Stadelmann -Ursprüngliche Nachricht-Von: Martin Gainty [mailto:[EMAIL

Re: AXIS 1.4: invoke request after web service sent response to client

2006-10-24 Thread Jesús Daniel Blázquez Carazo
Have you think about the possibility of describe this web services chain as a BPEL? - Original Message - From: Stadelmann Josef To: axis-user@ws.apache.org ; Martin Gainty Sent: Tuesday, October 24, 2006 2:04 PM Subject: AW: AXIS 1.4: invoke request after web

Problems sending composite data structures

2006-10-24 Thread Daniel Goodman
HI, I'm using axis 1.4 and the latest download of tomcat, and am trying to send a tree structure as soap. This has been causing me lots of problems, so I tried doing a simplified version of the idea, to see if I could locate the problem, however I can't get this to work either. If I send

Re: AXIS 1.4: invoke request after web service sent response to client

2006-10-24 Thread Martin Gainty
Josef- Having been involved with individuals who inadvertently introduce race conditions on either the DB or Webapp layerscauses meto be careful aroundjunior engineers who are coding SoapServices which are in fact not SOAPServices but instead are dumbProxies assembling data points fromn

memory leak in my web service

2006-10-24 Thread xu cai
hi all, I got a memory leak issue. The web services is deployed over Axis1.4/Tomcat, the services is used to query database. If the client send request in a while loop, the server will run out of memory in 2 or 3 hours. I use jprofiler to monitor the memory,and cant' find something wired. I

AW: AXIS 1.4: invoke request after web service sent response to client

2006-10-24 Thread Stadelmann Josef
Can you please explain me what a BPEL is (Business Process Engineering Language)? What is it in your terms? Josef -Ursprüngliche Nachricht-Von: Jesús Daniel Blázquez Carazo [mailto:[EMAIL PROTECTED]Gesendet: Dienstag, 24. Oktober 2006 14:37An: axis-user@ws.apache.orgBetreff:

RE: memory leak in my web service

2006-10-24 Thread Willem Liu
Hi, When programming in Java for Linux like environments I've came accros the same thing. The same program would run perfectly under Windows, but would give a memory problem under Linux. I've eventually solved this by calling the Garbage Collector manually and periodically. It seems that

Re: memory leak in my web service

2006-10-24 Thread Martin Gainty
hard to make an intelligentcall without seeing your client codeMartin -- This e-mail communication and any attachments may contain confidential and privileged information for the use of the designated recipients named above. If you are not the intended recipient, you are hereby notified that

Re: memory leak in my web service

2006-10-24 Thread xu cai
thanks your reply, I can have a try, not it's not recommended in our product. :-) -jeff On 10/24/06, Willem Liu [EMAIL PROTECTED] wrote: Hi, When programming in Java for Linux like environments I've came accros the same thing. The same program would run perfectly under Windows, but would give

Re: memory leak in my web service

2006-10-24 Thread xu cai
I can paste client side code tomorrow, but client side is simple, just send the same request in a endless while loop. So each time, server should do the same job, but memory growp fast. -jeffrey. On 10/24/06, Martin Gainty [EMAIL PROTECTED] wrote: hard to make an intelligentcall without

Re: AXIS 1.4: invoke request after web service sent response to client

2006-10-24 Thread Jesús Daniel Blázquez Carazo
A BPEL is a web service workflow. You can design a BPEL to invoke a web service chain, deploy it in a BPEL engine to execute the process. In this way the first web service pass its result to the second web service ... - Original Message - From: Stadelmann Josef To:

[Axis1.4] MinOccurs is ignored with string types?

2006-10-24 Thread Axel Bock
Hi all, I have a WSDL file with a schema definition like this: xs:complexType name=Professionalxs:sequencexs:element name=name type=Name /xs:element name=contact type=ContactData minOccurs=0 / xs:element name=qualification type=Qualification /xs:element name=additionalQualification

Re: memory leak in my web service

2006-10-24 Thread Martin Gainty
in your jvm.cfg I would turn on the GC logger via -Xloggc:file name then read the log and find out exactly when the GC is occuring.. M- This e-mail communication and any attachments may contain confidential and privileged information for the use of the designated recipients named above. If

AW: AXIS 1.4: invoke request after web service sent response to client

2006-10-24 Thread Stadelmann Josef
Martin you are right in many aspect. I am a newby to SOAP WS, but have some years with OO and CORBA too. the architectural conceptforMYagent, for shure, itrequires constraints. i.e. a client needs to know the service an agent can provide without knowing the details how the

Re: [Axis1.4] MinOccurs is ignored with string types?

2006-10-24 Thread Martin Gainty
Axel- what happens if you set the minOccurs and maxOccurs attributes e.g. elemfield.setMinOccurs(SomeLowNumberLessThanHigherNumber); elemfield.setMaxOccurs(SomeHigherThanLowNumber); M- This e-mail communication and any attachments may contain confidential and privileged information for the

WAS and AXIS : Running Adminclient

2006-10-24 Thread Srinivas Nannapaneni
Hi All, Im facing problem running every time admin client manually in Websphere server. Does anybody know how to run the Adminclient on WAS server automatically when the ear is deployed. Thanks in advance, Srinivas N

[Axis2] Axis2 web site down?

2006-10-24 Thread Michele Mazzucco
Hi all, I'm unable to get the latest nightly builds at http://ws.apache.org/axis2/download.cgi. Is there any reason for this? Thanks in advance, Michele - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

Re: [Axis1.4] MinOccurs is ignored with string types?

2006-10-24 Thread Axel Bock
Hi Martin, I did that, and it worked. But that's not a very good solution for us- we rely on auto-code-generation here ;-) . Still it worked just fine for the time being. greetings thanks, Axel. On 10/24/06, Martin Gainty [EMAIL PROTECTED] wrote: Axel- what happens if you set the

Re: WAS and AXIS : Running Adminclient

2006-10-24 Thread Martin Gainty
canyou nslookup the AxisServer? M- This e-mail communication and any attachments may contain confidential and privileged information for the use of the designated recipients named above. If you are not the intended recipient, you are hereby notified that you have receivedthis communication

RE: WAS and AXIS : Running Adminclient

2006-10-24 Thread Srinivas Nannapaneni
Martin , I didnt get you. Im using websphere Thanks, Srinivas N From: Martin Gainty [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 24, 2006 8:32 PM To: axis-user@ws.apache.org Subject: Re: WAS and AXIS : Running Adminclient canyou nslookup the AxisServer? M-

Re: [Axis2] Service interface question

2006-10-24 Thread Michele Mazzucco
Deepal, I'm sorry, but maybe there's a misunderstanding. Which version should I use, 1.1RC* or 1-snapshot? In what do they differ? Why I don't see the getCurrentContext() method in the MessageContext class? Thanks, Michele Deepal Jayasinghe wrote: Hi Michele; yes , we removed that

Re: [Axis2] Axis2 web site down?

2006-10-24 Thread Davanum Srinivas
Yep. Apache Infra is moving to a new colo on Oregon. -- dims On 10/24/06, Michele Mazzucco [EMAIL PROTECTED] wrote: Hi all, I'm unable to get the latest nightly builds at http://ws.apache.org/axis2/download.cgi. Is there any reason for this? Thanks in advance, Michele

Re: [Axis2] Axis2 web site down?

2006-10-24 Thread Eran Chinthaka
Michele Mazzucco wrote: Hi all, I'm unable to get the latest nightly builds at http://ws.apache.org/axis2/download.cgi. Is there any reason for this? There is some on-going transition happening in Apache. They are shifting servers from CA to Oregon. But I just checked and found it working

No Object Found for java.util.Calendar

2006-10-24 Thread Alexander Hachmann
Hello, I have a strange problem with deserializing the XML-Data reveived from a Webservice. I Know that there has been a question about this yet on the 30th of august. But I could not find any answer to that thread, so I am posting this issue again. My WebService returns an ComplexType being

Re: [Axis2] Axis2 web site down?

2006-10-24 Thread Michele Mazzucco
Hmmm, no, it's not working. Any idea about how long will it take? Thanks, Michele Eran Chinthaka wrote: Michele Mazzucco wrote: Hi all, I'm unable to get the latest nightly builds at http://ws.apache.org/axis2/download.cgi. Is there any reason for this? There is some on-going

How to debug?

2006-10-24 Thread Hoskins, Stephen
Hi all My apologies if this is a naive question. Basically, my Axis2 service is not working and I would like to know how I determine what the problem is. I am using Axis2 1.0 and Tomcat 5.0. My service classes log that they instantiated okay and the Axis admin screens for the service all look

Re: How to debug?

2006-10-24 Thread David Illsley
Off the top of my head I think the problem is that the server cannot send the response message to the ReplyTo EPR for some reason. If you're setting the ReplyTo explicitly please check that you are getting it right ;-) and if not then check that the server can open a connection to the port that

Re: Help! Where can I get maven-itest-plugin-1.0.jar

2006-10-24 Thread Stephen Milne
Chinthaka, http://ws.zones.apache.org/~dims/maven/maven-itest-plugin/plugins/maven-itest-plugin-1.0.jar . doesn't seem to work. Are there any other links I can get this jar from. thanks Stephen Stephen Milne

Re: Help! Where can I get maven-itest-plugin-1.0.jar

2006-10-24 Thread David Illsley
Significant portions of the Apache infrastructure were physically relocated over the weekend. Sorry, but it loooks like ws.zones... isn't back up yet. David On 24/10/06, Stephen Milne [EMAIL PROTECTED] wrote: Chinthaka,

Re: Help! Where can I get maven-itest-plugin-1.0.jar

2006-10-24 Thread Eran Chinthaka
Hi Stephen, Since we have problems with Apache, I just emailed you, personally, the maven-itest-plugin. Once the infra work is done, you should be able to get it from Dims' zones account. -- Chinthaka Stephen Milne wrote: Chinthaka,

RE: WS Addressing :: Axis2 :: JMS Webs ervice lookup issues

2006-10-24 Thread Brian De Pradine
Hello Vaibhav, I would have responded earlier, but I was out last week. Anyway, I recall from one of your earlier emails that you were using WebSphere to host your JMS web service. If this is the case, then you may be able to use the new client here [1] to access it. This client runs in a J2SE

RE: WS Addressing :: Axis2 :: JMS Webs ervice lookup issues

2006-10-24 Thread Spies, Brennan
Axis 2.0 currently supports the JNDI lookup model, with the client invocation looking something like: jms:/Topic?transport.jms.ConnectionFactoryJNDIName=TopicConnectionFactoryjava.naming.factory.initial=org.apache.activemq.jndi.ActiveMQInitialContextFactoryjava.naming.provider.url="">

Infra (Re: Help! Where can I get maven-itest-plugin-1.0.jar)

2006-10-24 Thread Davanum Srinivas
Folks, http://ws.zones.apache.org/~dims/ is back up again. Nightly URL is still down. we are working on it. -- dims On 10/24/06, Eran Chinthaka [EMAIL PROTECTED] wrote: Hi Stephen, Since we have problems with Apache, I just emailed you, personally, the maven-itest-plugin. Once the infra

Re: How to debug?

2006-10-24 Thread Martin Gainty
1)you might have a static entry in your routing table which is sending it to wrong series of addresses find out by typing route print * 2)axis2.xml has a transportReceiver class= the class specification indicates the exact class which needs to be on the CLASSPATH the port specified in the

Dynamic Invocation Problem (Axis works, but .NET...)

2006-10-24 Thread Andrew P.
Hello! I'm trying to invoke a service dynamically using DII - without previsouly generating any proxy. With Axis (which is rpc/encoded style) is working fine, but with a .NET (document/literal) is not working. Anybody has worked with something similar, and have any idea? I have attached the

Compilation errors with the generated code

2006-10-24 Thread Kang, Kamaljeet K.
Hi, Can somebody help me with the following compilation errors. I am using Axis2 and have included all the axis2\lib\jarfiles in the classpath. compile.src: [javac] Compiling 216 source files to D:\mtosi\test\wsdl2java\build\classes [javac]

Re: Compilation errors with the generated code

2006-10-24 Thread Davanum Srinivas
Kamal, please create a new bug report: https://issues.apache.org/jira/browse/AXIS2 thanks, dims On 10/24/06, Kang, Kamaljeet K. [EMAIL PROTECTED] wrote: Hi, Can somebody help me with the following compilation errors. I am using Axis2 and have included all the axis2\lib\jarfiles in the

Re: Dynamic Invocation Problem (Axis works, but .NET...)

2006-10-24 Thread Martin Gainty
Andrew- Look at code C of this page http://mail-archives.apache.org/mod_mbox/ws-soap-dev/200202.mbox/[EMAIL PROTECTED] the most important statement is to set the call style to doc literal as in this example call.setEncodingStyleURI (org.apache.axis2.Constants.SOAP_STYLE_LITERAL_WRAPPED);

Re: Invoking java classes with a Perl client

2006-10-24 Thread D . Kreft
On 10/24/06, Anne Thomas Manes [EMAIL PROTECTED] wrote: We need the WSDL to help you. Thanks, Anne. Please find he WSDL attached. -dan ?xml version=1.0 encoding=UTF-8? wsdl:definitions targetNamespace=http://pkgbuild.company.com/PBQS; xmlns=http://schemas.xmlsoap.org/wsdl/;

rahas question

2006-10-24 Thread George Stanchev
Hi, When is rahas officially going to be released? Is it targeted for the 1.1 release? Thanks! George Stanchev ** This email and any files transmitted with it are confidential and intended solely for the use of the

[ANN][axis2] training course on axis2?

2006-10-24 Thread Sanjiva Weerawarana
A couple of us are traveling to New York City in two weeks and are wondering whether anyone would be interested in joining a 1-2 day course on Axis2 and related parts. We could also do a 1/2 tutorial on Synapse. This would be on Tuesday Nov 7th and 8th (or just 7th if its one day). Please drop

[Axis2] Nightly builds for 1.1 branch

2006-10-24 Thread Davanum Srinivas
Team, Please get the nightly builds from here: http://ws.zones.apache.org/dist/axis2/nightly/ Please note that the repo that was under my id is now here: http://ws.zones.apache.org/repository/ FYI, We had to dump a box (minotaur) that got corrupted in the colo move. thanks, dims -- Davanum

Re: [Axis2] Service interface question

2006-10-24 Thread Deepal Jayasinghe
Hi Michele ; You need to use Nightly build , we didnt have that in 1.1 RC* Thanks Deepal Deepal, I'm sorry, but maybe there's a misunderstanding. Which version should I use, 1.1RC* or 1-snapshot? In what do they differ? Why I don't see the getCurrentContext() method in the MessageContext

When will Axis2 support C++? Now Axis2C is not very convenient.

2006-10-24 Thread Song Haojie-a23023

Avoiding Running ADminClient

2006-10-24 Thread Srinivas Nannapaneni
Hi All, Is there any way of avoiding running the AdminClinet , because it is continuously bugging me running it every time when I deployed the .ear file on the websphere server, as ofcourse I can run remotely even though I want to avoid that by some other means, any body have choice?