Questions tagged [axis2c]

Apache Axis2/C is a Web services engine implemented in the C programming language. It is based on the extensible and flexible Axis2 architecture.

Apache Axis2/C can be used to provide and consume WebServices. It has been implemented with portability and ability to embed in mind, hence could be used as a Web services enabler in other software.

Reference

62 questions
16
votes
3 answers

Relative WSDL soap:address location

Can I have the soap:address location in a WSDL relative to the WSDL location, or at least relative to the server? For instance I want to write: as:
Mihai
  • 161
  • 1
  • 1
  • 3
9
votes
0 answers

How do I deserialize a SAML assertion in Rampart/C (Axis2/C)?

I have SAML 1.1 and SAML 1.0 responses in utf-8 char * buffers, and I would like to transform them into Rampart/C saml_response_t * objects. My question is this: What is the correct method for creating a saml_response_t from a string? Ideally I'd…
Chris R
  • 17,546
  • 23
  • 105
  • 172
6
votes
2 answers

AXIS2/C and ONVIF

I'm trying to create the stub of the wsdl http://www.onvif.org/onvif/ver10/device/wsdl/devicemgmt.wsdl using AXIS2/C (c++), using the following command: ./WSDL2CPP.sh -uri http://www.onvif.org/onvif/ver10/device/wsdl/devicemgmt.wsdl and I get the…
hugo
  • 61
  • 3
5
votes
3 answers

org.apache.axis2.AxisFault connection refused

I'm getting the following error while tryng to suscribe to a service from client app. Can somebody tell me the reason for this exception? Thanks in advance org.apache.axis2.AxisFault: Conexión rehusada at…
Flacid_Snake
  • 391
  • 2
  • 5
  • 16
3
votes
1 answer

namespaces in SOAPpy not working as expected

I'm having an issue correctly interfacing with a SOAP API running on Axis2: What happens is I should call the login method with two arguments (loginName and password) and it returns an authentication token that I will use for subsequent…
Tyler D
  • 584
  • 1
  • 5
  • 16
3
votes
1 answer

Are Restful web services created in axis2/c truly RESTful?

I'm a newbie to RESTful webservices and I'm trying to create a RESTful webservice in one of our previous SOAP based webservice hosted in axis2c which by it's documentation says that one can host both RESTful webservices and SOAP based ones at the…
Sivakumar Kailasam
  • 452
  • 3
  • 6
  • 20
3
votes
0 answers

Apache Axis2/C Installation

i have tried installing Apache Axis2/C on Linux but no success.. with libxml2 Here are my efforts 1) libxml2 was installed successfully Flags : LIBXML2_CFLAGS = -I/usr/local/include/libxml2 LIBXML2_LIBS='-L/usr/local/lib/hpux32 -lxml2…
Hilesh
  • 61
  • 4
2
votes
0 answers

How do I define how much HTTP connections an Axis2c client should use?

I have a server and client, which communicate with Soap requests. The client is a C++ application, using Axis2c 1.6.0. In the axis options the default HTTP timeout is 30 sec. However, I need to send request every 3 seconds and this generates too…
m_pGladiator
  • 8,462
  • 7
  • 43
  • 61
2
votes
2 answers

Web Service using Axis 2: Complex type or simple type parameters?

The question is a specialization of: OO style parameters vs type parameters What if you want to define a Web Service operation? To have parameters beeing passed as complex types like this public String insertPerson(Person person); seems pretty…
ferdy
  • 7,366
  • 3
  • 35
  • 46
2
votes
1 answer

Should I stick to axis2c or move to apache wink?

We have a webservice built in Axis2/c in which the methods in turn calls an in-house application on the server. Since Axis2/c was widely accepted to be good as far as performance and stability was concerned, we were sticking to it. But now we're…
Sivakumar Kailasam
  • 452
  • 3
  • 6
  • 20
2
votes
3 answers

Axis2C with OpenSSL - no OPENSSL_APPLINK error

I'm using Axis2C with OpenSSL in VC++ 2008 to access an https webservice. Whenever the actual communication is taking place I get a runtime fatal exception : OPENSSL_UPLINK: no OPENSSL_APPLINK. I read that there are several things you should do,…
Roey
  • 99
  • 5
  • 12
2
votes
1 answer

Why does 'WSF Staff' web service library explicitly mention "stateful" services?

I am using the Staff Library built on top of the Apache Axis2c library to implement a service, which I intend to be stateless. As I understand it, whether a service is stateful or not (i.e. "whether the interaction of client and server involves the…
balajeerc
  • 3,998
  • 7
  • 35
  • 51
2
votes
0 answers

How to port WCF RESTful web service to Axis 2/C (or WSO C++)

We are looking at redoing some web service applications (currently in prototype phase) from WCF/C# to a C++ cross platform web service framework. So, I'm looking at Axis2/C or WSO2 WSF/C++ as possible frameworks. I'd really like to port the…
Daver
  • 483
  • 4
  • 8
2
votes
2 answers

Axis2C unofficial vs. Axis2C Staff

I´m going to be developing an application that will be using some framework for SOAP based web services. I did some research and I kind of like Axis2C framework but here in some topics I found out that original Axis2C implementation suffered from…
JeFf
  • 346
  • 5
  • 16
2
votes
1 answer

axis2_http_server fails to load service library

I am trying to get a simple hello world web service working. I used WSDL2CPP to generate the service code from my wsdl file. This builds and shows up in service list at localhost:8080/axis2/services Now, I have created a simple client to access…
kalden
  • 273
  • 1
  • 3
  • 5
1
2 3 4 5