Re: dll description has invalid state

2007-03-06 Thread Milinda Pathirage
hi, Please try to compile the source after replacing AXIS2_EXTERN int AXIS2_CALL axis2_get_instance(struct axis2_svc_skeleton **inst, const axis2_env_t *env) { ... } AXIS2_EXTERN int AXIS2_CALL axis2_remove_instance(axis2_svc_skeleton_t *inst,

Re: dll description has invalid state

2007-03-06 Thread Nandika Jayawardana
Hi Zoli, AXIS2_EXTERN means whether the function is exported or not from the dll and AXIS2_CALL is the calling convention of the function. On windows AXIS2_CALL is expanded as __stdcall and AXIS2_EXTERN as __declspec(dllexport).You can find more on this by looking at the header file

Re: dll description has invalid state

2007-03-06 Thread Supun Kamburugamuva
Hi, error C2491: 'axis2_get_instance' : definition of dllimport function not allowed error C2491: 'axis2_remove_instance' : definition of dllimport function not allowed These errors are cuased by not declaring the AXIS2_DECLARE_EXPORT as a preprocessor derective. If this preprocessor derective

[Axis2] IIS support for IIS 6

2007-03-06 Thread Dave Meier
Hi Supun, Thanks for creating the IIS filter for Axis2C. I had 2 questions: 1. Will the filter work with IIS 6 when running in full IIS 6 mode (not IIS 5 compatibility mode)? 2. Will it work with SSL (e.g. a url like https://localhost/...)? Thanks, -Dave Meier.

Axis Debug Build in VC++6

2007-03-06 Thread David Miller
Hello, Sorry for the double post. I incorrectly sent this to the non-c++ list earlier without realizing that I was on the wrong list. I am trying to make a debug build of Axis 1.6b on VC6 (WinXP SP2). I have run VCVARS32.BAT at the command prompt, and when I run ant against the build.xml

Manohar K Chintala/India/IBM is out of the office.

2007-03-06 Thread Manohar K Chintala
I will be out of the office starting 07/03/2007 and will not return until 12/03/2007. I will be out of the office starting 7th March 2007 and will not return until 12th March 2007. I will respond to your message when I return. In my absence please contact Rajni M Satpute for any urgent issues.

Re: Received content is fault

2007-03-06 Thread Nadir Amra
Scott, I would try builiding the latest from SVN and see if problem occurs. There have been many, many problems fixed since 1.6b Nadir K. Amra Scott McFadden [EMAIL PROTECTED] wrote on 03/06/2007 05:49:17 PM: I have written a webservice in C# / .NET 1.1. I can use Axis C++ client

Re: [Axis2] IIS support for IIS 6

2007-03-06 Thread Supun Kamburugamuva
Hi, 1. No, It won't work. The reason is that with IIS 6 Worker Process Isolationa mode (the default) there is no guarantee that filters are going to be single instansiated. But in the current implementation I assume that filters are single instansiated. Still I couldn't setup a Windows Server