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
0
votes
1 answer

Connecting to a webservice that requires a username, password and a .cer file using Axis2/C

--First a little background:-- I have already managed to connect to a Microsoft web service using C#. To use this web service, I have to supply a username and a password in the C# code. I also have to install a certificate (in .cer format) into the…
Enchilada
  • 3,859
  • 1
  • 36
  • 69
0
votes
1 answer

axis2c_http_server can't find axis2.xml

I am trying to use Axis2/c on OS X but when I launch axis2c_http_server, I get the following errors: [Fri Mar 16 12:26:19 2012] [info] Starting Axis2 HTTP server.... [Fri Mar 16 12:26:19 2012] [info] Apache Axis2/C version in use : 1.6.0 [Fri Mar…
Antoine
  • 1,782
  • 1
  • 14
  • 32
0
votes
0 answers

EJB module can't use war classes

I have an EJB module that needs to use classes from a WAR. The code compile succesfully, but I have a NotClassDefFoundError exception in runtime. The reason cause I need this behaviour is because EJB has to execute the code from an axis2 client. And…
Senses
  • 19
  • 3
0
votes
0 answers

Getting error "No element type is defined for message NewOperationRequest"

i'm reating WSDL file in eclipse from new -> other -> wsdl. I want to use "type" instead of "elements". but when i creating stub of the wsdl getting below error: 2023-04-18 11:11:24,325 main DEBUG LoggerContext\[name=45ee12a7,…
0
votes
1 answer

How to build axis2c Unofficial source code

I have to create SOAP services in C using axis2C. But since axis2C is kind of not maintained properly as per this question, I have to use axis2C unofficial source code. But I could not see configure file to build the sources. How should I build…
Bill Goldberg
  • 1,699
  • 5
  • 26
  • 50
0
votes
0 answers

AXIS2C: Invalid Transport Protocol, HTTPS transport not enabled

I'm trying to use AXIS2/C and a .wsdl file to talk to a server and request some functions. But I do get the following error message. I can't seem to find any relevant information about whats going wrong. It seem to me that AXIS2 needs some more…
datosh
  • 498
  • 7
  • 20
0
votes
2 answers

AXIS2/C: wrong element type or null node (om_element.c)

Have been searching on google/various other sites for some time now... Synopsis: Unable to serialize/deserialize object, wrong element type or null node (om_element.c). Generated code: xsi_type_attri = axiom_attribute_create (env, "type",…
user1798810
  • 61
  • 13
0
votes
1 answer

Can Axis2 SOAP clients consume non-Axis services?

Considering the below piece of code : ret_node = axis2_svc_client_send_receive(svc_client, env, payload); //Send request to an Axis2 Server from an Axis2C Client which consumes the service. This requires that the server is Axis as the return value…
sjsam
  • 21,411
  • 5
  • 55
  • 102
0
votes
1 answer

Axis2C : Sending data with Custom content type

The client (Browser) expects to receive a JSON string in response. I have the JSON string to send at the service side. However the calling function (axis2_invoke) expects axiom_node_t which make it return XML. Is there a way to send my response in a…
arpit772
  • 1
  • 3
0
votes
1 answer

Axis2C Staff REST login service

I'm using Axis2/C unofficial with the Staff project to simply expone a set of methods to return a dataset with the REST paradigm. Now I need to authenticate users and I want to use the "staff.Login" built in service of Staff, always in REST…
AndreaGrnd
  • 88
  • 2
  • 8
0
votes
1 answer

Staff-WSF Axis2C SOAP load service component on startup

*Impl.h file of a service component has these functions: virtual void OnCreate(); virtual void OnDestroy(); OnCreate is called only when the client makes a call to the service. I'd like to have it when the server axis2_http_server is launched.…
Velkan
  • 7,067
  • 6
  • 43
  • 87
0
votes
0 answers

Memory leakage after process terminates

I am returning to C++ after spending a few years in Java, so I have forgotten basics of memory management. I have to use AXIS2/C for writing a web service client. I read on a lot of forums that AXIS2/C has problems of memory leakage. But, I would…
Vikas
  • 626
  • 1
  • 10
  • 22
0
votes
1 answer

Why does C# Web Client display ? for French Characters?

My web service client is returning a ? for French characters. My client is calling an axis2/c web service on Apache. I usedwsdl.exe to generate a c# proxy class. When I look at the return in TCPMON, I can see the French characters correctly but…
0
votes
1 answer

How to set client timeout in an axis2c client

I had a WSDL file then I used AXIS2C WSDL2C tool to create the client project. I modified the axis2.xml file. added this line in the beginning after : 8000 I can now set the…
Sarah Aziziyan
  • 498
  • 9
  • 22
0
votes
1 answer

Sending Large Responses using Staff Webservice

I have been using Staff Webservices library for implementing webservices with much success in my current application. However, I have run into a problem. I am returning image data as a byte64 encoded std::string in one of my services. Whenever the…
balajeerc
  • 3,998
  • 7
  • 35
  • 51