You are viewing a plain text version of this content. The canonical link for it is here.
Posted to c-dev@axis.apache.org by "Chaib F (JIRA)" <ax...@ws.apache.org> on 2004/12/04 19:07:20 UTC

[jira] Created: (AXISCPP-308) Axis C++ 1.3 integration with apache server 2.0.52

Axis C++ 1.3 integration with apache server 2.0.52
--------------------------------------------------

         Key: AXISCPP-308
         URL: http://nagoya.apache.org/jira/browse/AXISCPP-308
     Project: Axis-C++
        Type: Bug
  Components: Configuration  
    Versions: 1.3 Final    
 Environment: Windows XP
    Reporter: Chaib F


I installed the apache server 2.0.52 and tested it successfully. Now I'm trying to integrate Axis C++ 1.3 final with it, I followed all the instructions within the Axis C++ Windows installation guide in the AXIS_FOLDER/docs. However I could not run the server successfully using: apache -k start. I got a strange error:

Syntax error on line 965 of C:/Program Files/Apache Group/Apache2/conf/httpd.conf:
Cannot load C:/Program Files/Apache Group/Apache2/modules/mod_axis2.dll into server: Le module sp\xe9cifi\xe9 est introuvable.

Can anyone tell me what's wrong?

I appreciate any help and thank you.



-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://nagoya.apache.org/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


Re: [jira] Commented: (AXISCPP-308) Axis C++ 1.3 integration with apache server 2.0.52

Posted by Samisa Abeysinghe <sa...@yahoo.com>.
--- Steve Hardy <st...@connectux.com> wrote:

> 
> 
> On Tue, 7 Dec 2004, Samisa Abeysinghe wrote:
> 
> > Having a setting in http.conf is additional trouble I guess, because one will have to edit
> both
> > the httpd.conf and axiscpp.conf in case of a change.
> > 
> > I think it is far more easy to handle an env. var than this.
> 
> In Windows, setting an environment variable for a service is a pain, and
> would require a reboot with some solutions (like edit'ing autoexec.bat),
> creating a simple installer containing apache, axis and the application
> which runs off-the-shelf becomes rather ugly with .bat files setting the
> AXISCPP_DEPLOY env. var. before starting apache, etc.
> 
> Setting the variable in httpd.conf is of course, just as much work to
> change as a variable in a startup script of apache.

I always think biased to Linux ;-) Yes I agree on the gravity of the problems on Windows. 

> 
> > It is a very nice idea to have multiple clients use different axiscpp.conf files
> simultaneously.
> > (This was on my my wish list)
> > 
> > However, the question is, how do we handle the default value. In other words, if no
> axiscpp.conf
> > is specified explicitly, how do we locate it?
> > 
> > The best solution would be to have both the options, the env var as well as a way to pass it
> as a
> > param to engine init method. This way env var will point to the default, whatever parameters
> to
> > init would override it.
> 
> I'll get to work on this soon.

Great!!!

Thanks,
Samisa...


		
__________________________________ 
Do you Yahoo!? 
All your favorites on one personal page � Try My Yahoo!
http://my.yahoo.com 

Re: [jira] Commented: (AXISCPP-308) Axis C++ 1.3 integration with apache server 2.0.52

Posted by Steve Hardy <st...@connectux.com>.

On Tue, 7 Dec 2004, Samisa Abeysinghe wrote:

> Having a setting in http.conf is additional trouble I guess, because one will have to edit both
> the httpd.conf and axiscpp.conf in case of a change.
> 
> I think it is far more easy to handle an env. var than this.

In Windows, setting an environment variable for a service is a pain, and
would require a reboot with some solutions (like edit'ing autoexec.bat),
creating a simple installer containing apache, axis and the application
which runs off-the-shelf becomes rather ugly with .bat files setting the
AXISCPP_DEPLOY env. var. before starting apache, etc.

Setting the variable in httpd.conf is of course, just as much work to
change as a variable in a startup script of apache.

> It is a very nice idea to have multiple clients use different axiscpp.conf files simultaneously.
> (This was on my my wish list)
> 
> However, the question is, how do we handle the default value. In other words, if no axiscpp.conf
> is specified explicitly, how do we locate it?
> 
> The best solution would be to have both the options, the env var as well as a way to pass it as a
> param to engine init method. This way env var will point to the default, whatever parameters to
> init would override it.

I'll get to work on this soon.


Re: [jira] Commented: (AXISCPP-308) Axis C++ 1.3 integration with apache server 2.0.52

Posted by Samisa Abeysinghe <sa...@yahoo.com>.
--- Steve Hardy <st...@connectux.com> wrote:

> Thinking about this again, it's not very nice to have the information in
> the registry, as this would have to be in a fixed place, and you may want
> to have multiple axiscpp.conf files (especially on clients).
> 
> What I think would be nicest, is to have the server-size
> initialize_module(1) get the settings from the apache httpd.conf file. We
> could have an 
> 
> AxisCPPConf "/usr/local/axis/axiscpp.conf"
> 
> configuration directive in the Apache httpd.conf. We could have this
> fallback to the environment variable when it's not found to preserve
> backward compatibility.

Having a setting in http.conf is additional trouble I guess, because one will have to edit both
the httpd.conf and axiscpp.conf in case of a change.

I think it is far more easy to handle an env. var than this.

> 
> For the client side, I think it would be easiest for the client to specify
> its own configuration file at run-time, and have the Call::Call()
> constructor specify the filename at runtime; this makes it possible to
> have different clients using different axiscpp.conf files, and have their
> own configuration systems decide which file to use - a must for most
> commercial applications going to be running axis as a client.

It is a very nice idea to have multiple clients use different axiscpp.conf files simultaneously.
(This was on my my wish list)

However, the question is, how do we handle the default value. In other words, if no axiscpp.conf
is specified explicitly, how do we locate it?

The best solution would be to have both the options, the env var as well as a way to pass it as a
param to engine init method. This way env var will point to the default, whatever parameters to
init would override it.

Samisa...


> 
> I'll be working on a patch for this anyway, and I will submit it this
> week, you can see what you want to do with it.
> 
> On Mon, 6 Dec 2004, Samisa Abeysinghe wrote:
> 
> > We use AXISCPP_DEPLOY to locate the location of the axiscpp.conf file. (That is the only
> purpose I
> > guess and there is no other use of this env var)
> > 
> > Given above, we can easily make is platform specific - may be using our platform abstraction
> API.
> > Then we can use registry (or anything elase) on Windows and env var on Linux to locate
> > axiscpp.conf.
> > 
> > Shall we make this a TODO and include it in Jira?
> > 
> > Thanks,
> > Samisa...
> > 
> > 
> > --- Steve Hardy <st...@connectux.com> wrote:
> > 
> > > Yeah I was surprised by this; the reason it does not work is due to the
> > > fact that apache -k start starts the apache *service* as installed in
> > > windows (so it can never work unless you put it in your autoexec.bat or
> > > somesuch). Unfortunately, this service does not contain the correct paths
> > > and AXISCPP_DEPLOY environment variables.
> > > 
> > > I haven't yet found an easy way to fix this.
> > > 
> > > By the way, the use of environment variables in windows is pretty
> > > irritating as it is, I'd like to see the AXISCPP_DEPLOY variable removed
> > > in a future version, as rolling out applications with specific environment
> > > variables is not a nice thing to do in windows. I have hacked the source
> > > to get the correct AXISCPP_DEPLOY path now but maybe a registry setting or
> > > somesuch would be better (and an env. variable in linux is fine of
> > > course!)
> > > 
> > > (it is also a pain with debugging on various stations ...)
> > > 
> > > greetings,
> > >   Steve
> > > 
> > > On Sun, 5 Dec 2004, Samisa Abeysinghe (JIRA) wrote:
> > > 
> > > >      [ http://nagoya.apache.org/jira/browse/AXISCPP-308?page=comments#action_56232 ]
> > > >      
> > > > Samisa Abeysinghe commented on AXISCPP-308:
> > > > -------------------------------------------
> > > > 
> > > > I ran into the same problem with Win XP.
> > > > I could run Apache only in debug mode with -X.
> > > > 
> > > > > Axis C++ 1.3 integration with apache server 2.0.52
> > > > > --------------------------------------------------
> > > > >
> > > > >          Key: AXISCPP-308
> > > > >          URL: http://nagoya.apache.org/jira/browse/AXISCPP-308
> > > > >      Project: Axis-C++
> > > > >         Type: Bug
> > > > >   Components: Configuration
> > > > >     Versions: 1.3 Final
> > > > >  Environment: Windows XP
> > > > >     Reporter: Chaib F
> > > > 
> > > > >
> > > > > I installed the apache server 2.0.52 and tested it successfully. Now I'm trying to
> integrate
> > > Axis C++ 1.3 final with it, I followed all the instructions within the Axis C++ Windows
> > > installation guide in the AXIS_FOLDER/docs. However I could not run the server successfully
> > > using: apache -k start. I got a strange error:
> > > > > Syntax error on line 965 of C:/Program Files/Apache Group/Apache2/conf/httpd.conf:
> > > > > Cannot load C:/Program Files/Apache Group/Apache2/modules/mod_axis2.dll into server: Le
> > > module sp\xe9cifi\xe9 est introuvable.
> > > > > Can anyone tell me what's wrong?
> > > > > I appreciate any help and thank you.
> > > > 
> > > > -- 
> > > > This message is automatically generated by JIRA.
> > > > -
> > > > If you think it was sent incorrectly contact one of the administrators:
> > > >    http://nagoya.apache.org/jira/secure/Administrators.jspa
> > > > -
> > > > If you want more information on JIRA, or have a bug to report see:
> > > >    http://www.atlassian.com/software/jira
> > > > 
> > > > 
> > > 
> > > 
> > 
> > 
> > 
> > 		
> > __________________________________ 
> > Do you Yahoo!? 
> > Yahoo! Mail - now with 250MB free storage. Learn more.
> > http://info.mail.yahoo.com/mail_250
> > 
> 
> 



		
__________________________________ 
Do you Yahoo!? 
Yahoo! Mail - Find what you need with new enhanced search.
http://info.mail.yahoo.com/mail_250

Re: [jira] Commented: (AXISCPP-308) Axis C++ 1.3 integration with apache server 2.0.52

Posted by Steve Hardy <st...@connectux.com>.
Thinking about this again, it's not very nice to have the information in
the registry, as this would have to be in a fixed place, and you may want
to have multiple axiscpp.conf files (especially on clients).

What I think would be nicest, is to have the server-size
initialize_module(1) get the settings from the apache httpd.conf file. We
could have an 

AxisCPPConf "/usr/local/axis/axiscpp.conf"

configuration directive in the Apache httpd.conf. We could have this
fallback to the environment variable when it's not found to preserve
backward compatibility.

For the client side, I think it would be easiest for the client to specify
its own configuration file at run-time, and have the Call::Call()
constructor specify the filename at runtime; this makes it possible to
have different clients using different axiscpp.conf files, and have their
own configuration systems decide which file to use - a must for most
commercial applications going to be running axis as a client.

I'll be working on a patch for this anyway, and I will submit it this
week, you can see what you want to do with it.

On Mon, 6 Dec 2004, Samisa Abeysinghe wrote:

> We use AXISCPP_DEPLOY to locate the location of the axiscpp.conf file. (That is the only purpose I
> guess and there is no other use of this env var)
> 
> Given above, we can easily make is platform specific - may be using our platform abstraction API.
> Then we can use registry (or anything elase) on Windows and env var on Linux to locate
> axiscpp.conf.
> 
> Shall we make this a TODO and include it in Jira?
> 
> Thanks,
> Samisa...
> 
> 
> --- Steve Hardy <st...@connectux.com> wrote:
> 
> > Yeah I was surprised by this; the reason it does not work is due to the
> > fact that apache -k start starts the apache *service* as installed in
> > windows (so it can never work unless you put it in your autoexec.bat or
> > somesuch). Unfortunately, this service does not contain the correct paths
> > and AXISCPP_DEPLOY environment variables.
> > 
> > I haven't yet found an easy way to fix this.
> > 
> > By the way, the use of environment variables in windows is pretty
> > irritating as it is, I'd like to see the AXISCPP_DEPLOY variable removed
> > in a future version, as rolling out applications with specific environment
> > variables is not a nice thing to do in windows. I have hacked the source
> > to get the correct AXISCPP_DEPLOY path now but maybe a registry setting or
> > somesuch would be better (and an env. variable in linux is fine of
> > course!)
> > 
> > (it is also a pain with debugging on various stations ...)
> > 
> > greetings,
> >   Steve
> > 
> > On Sun, 5 Dec 2004, Samisa Abeysinghe (JIRA) wrote:
> > 
> > >      [ http://nagoya.apache.org/jira/browse/AXISCPP-308?page=comments#action_56232 ]
> > >      
> > > Samisa Abeysinghe commented on AXISCPP-308:
> > > -------------------------------------------
> > > 
> > > I ran into the same problem with Win XP.
> > > I could run Apache only in debug mode with -X.
> > > 
> > > > Axis C++ 1.3 integration with apache server 2.0.52
> > > > --------------------------------------------------
> > > >
> > > >          Key: AXISCPP-308
> > > >          URL: http://nagoya.apache.org/jira/browse/AXISCPP-308
> > > >      Project: Axis-C++
> > > >         Type: Bug
> > > >   Components: Configuration
> > > >     Versions: 1.3 Final
> > > >  Environment: Windows XP
> > > >     Reporter: Chaib F
> > > 
> > > >
> > > > I installed the apache server 2.0.52 and tested it successfully. Now I'm trying to integrate
> > Axis C++ 1.3 final with it, I followed all the instructions within the Axis C++ Windows
> > installation guide in the AXIS_FOLDER/docs. However I could not run the server successfully
> > using: apache -k start. I got a strange error:
> > > > Syntax error on line 965 of C:/Program Files/Apache Group/Apache2/conf/httpd.conf:
> > > > Cannot load C:/Program Files/Apache Group/Apache2/modules/mod_axis2.dll into server: Le
> > module sp\xe9cifi\xe9 est introuvable.
> > > > Can anyone tell me what's wrong?
> > > > I appreciate any help and thank you.
> > > 
> > > -- 
> > > This message is automatically generated by JIRA.
> > > -
> > > If you think it was sent incorrectly contact one of the administrators:
> > >    http://nagoya.apache.org/jira/secure/Administrators.jspa
> > > -
> > > If you want more information on JIRA, or have a bug to report see:
> > >    http://www.atlassian.com/software/jira
> > > 
> > > 
> > 
> > 
> 
> 
> 
> 		
> __________________________________ 
> Do you Yahoo!? 
> Yahoo! Mail - now with 250MB free storage. Learn more.
> http://info.mail.yahoo.com/mail_250
> 


Re: [jira] Commented: (AXISCPP-308) Axis C++ 1.3 integration with apache server 2.0.52

Posted by Samisa Abeysinghe <sa...@yahoo.com>.
We use AXISCPP_DEPLOY to locate the location of the axiscpp.conf file. (That is the only purpose I
guess and there is no other use of this env var)

Given above, we can easily make is platform specific - may be using our platform abstraction API.
Then we can use registry (or anything elase) on Windows and env var on Linux to locate
axiscpp.conf.

Shall we make this a TODO and include it in Jira?

Thanks,
Samisa...


--- Steve Hardy <st...@connectux.com> wrote:

> Yeah I was surprised by this; the reason it does not work is due to the
> fact that apache -k start starts the apache *service* as installed in
> windows (so it can never work unless you put it in your autoexec.bat or
> somesuch). Unfortunately, this service does not contain the correct paths
> and AXISCPP_DEPLOY environment variables.
> 
> I haven't yet found an easy way to fix this.
> 
> By the way, the use of environment variables in windows is pretty
> irritating as it is, I'd like to see the AXISCPP_DEPLOY variable removed
> in a future version, as rolling out applications with specific environment
> variables is not a nice thing to do in windows. I have hacked the source
> to get the correct AXISCPP_DEPLOY path now but maybe a registry setting or
> somesuch would be better (and an env. variable in linux is fine of
> course!)
> 
> (it is also a pain with debugging on various stations ...)
> 
> greetings,
>   Steve
> 
> On Sun, 5 Dec 2004, Samisa Abeysinghe (JIRA) wrote:
> 
> >      [ http://nagoya.apache.org/jira/browse/AXISCPP-308?page=comments#action_56232 ]
> >      
> > Samisa Abeysinghe commented on AXISCPP-308:
> > -------------------------------------------
> > 
> > I ran into the same problem with Win XP.
> > I could run Apache only in debug mode with -X.
> > 
> > > Axis C++ 1.3 integration with apache server 2.0.52
> > > --------------------------------------------------
> > >
> > >          Key: AXISCPP-308
> > >          URL: http://nagoya.apache.org/jira/browse/AXISCPP-308
> > >      Project: Axis-C++
> > >         Type: Bug
> > >   Components: Configuration
> > >     Versions: 1.3 Final
> > >  Environment: Windows XP
> > >     Reporter: Chaib F
> > 
> > >
> > > I installed the apache server 2.0.52 and tested it successfully. Now I'm trying to integrate
> Axis C++ 1.3 final with it, I followed all the instructions within the Axis C++ Windows
> installation guide in the AXIS_FOLDER/docs. However I could not run the server successfully
> using: apache -k start. I got a strange error:
> > > Syntax error on line 965 of C:/Program Files/Apache Group/Apache2/conf/httpd.conf:
> > > Cannot load C:/Program Files/Apache Group/Apache2/modules/mod_axis2.dll into server: Le
> module sp\xe9cifi\xe9 est introuvable.
> > > Can anyone tell me what's wrong?
> > > I appreciate any help and thank you.
> > 
> > -- 
> > This message is automatically generated by JIRA.
> > -
> > If you think it was sent incorrectly contact one of the administrators:
> >    http://nagoya.apache.org/jira/secure/Administrators.jspa
> > -
> > If you want more information on JIRA, or have a bug to report see:
> >    http://www.atlassian.com/software/jira
> > 
> > 
> 
> 



		
__________________________________ 
Do you Yahoo!? 
Yahoo! Mail - now with 250MB free storage. Learn more.
http://info.mail.yahoo.com/mail_250

Re: [jira] Commented: (AXISCPP-308) Axis C++ 1.3 integration with apache server 2.0.52

Posted by Steve Hardy <st...@connectux.com>.
Yeah I was surprised by this; the reason it does not work is due to the
fact that apache -k start starts the apache *service* as installed in
windows (so it can never work unless you put it in your autoexec.bat or
somesuch). Unfortunately, this service does not contain the correct paths
and AXISCPP_DEPLOY environment variables.

I haven't yet found an easy way to fix this.

By the way, the use of environment variables in windows is pretty
irritating as it is, I'd like to see the AXISCPP_DEPLOY variable removed
in a future version, as rolling out applications with specific environment
variables is not a nice thing to do in windows. I have hacked the source
to get the correct AXISCPP_DEPLOY path now but maybe a registry setting or
somesuch would be better (and an env. variable in linux is fine of
course!)

(it is also a pain with debugging on various stations ...)

greetings,
  Steve

On Sun, 5 Dec 2004, Samisa Abeysinghe (JIRA) wrote:

>      [ http://nagoya.apache.org/jira/browse/AXISCPP-308?page=comments#action_56232 ]
>      
> Samisa Abeysinghe commented on AXISCPP-308:
> -------------------------------------------
> 
> I ran into the same problem with Win XP.
> I could run Apache only in debug mode with -X.
> 
> > Axis C++ 1.3 integration with apache server 2.0.52
> > --------------------------------------------------
> >
> >          Key: AXISCPP-308
> >          URL: http://nagoya.apache.org/jira/browse/AXISCPP-308
> >      Project: Axis-C++
> >         Type: Bug
> >   Components: Configuration
> >     Versions: 1.3 Final
> >  Environment: Windows XP
> >     Reporter: Chaib F
> 
> >
> > I installed the apache server 2.0.52 and tested it successfully. Now I'm trying to integrate Axis C++ 1.3 final with it, I followed all the instructions within the Axis C++ Windows installation guide in the AXIS_FOLDER/docs. However I could not run the server successfully using: apache -k start. I got a strange error:
> > Syntax error on line 965 of C:/Program Files/Apache Group/Apache2/conf/httpd.conf:
> > Cannot load C:/Program Files/Apache Group/Apache2/modules/mod_axis2.dll into server: Le module sp\xe9cifi\xe9 est introuvable.
> > Can anyone tell me what's wrong?
> > I appreciate any help and thank you.
> 
> -- 
> This message is automatically generated by JIRA.
> -
> If you think it was sent incorrectly contact one of the administrators:
>    http://nagoya.apache.org/jira/secure/Administrators.jspa
> -
> If you want more information on JIRA, or have a bug to report see:
>    http://www.atlassian.com/software/jira
> 
> 


[jira] Commented: (AXISCPP-308) Axis C++ 1.3 integration with apache server 2.0.52

Posted by "Samisa Abeysinghe (JIRA)" <ax...@ws.apache.org>.
     [ http://nagoya.apache.org/jira/browse/AXISCPP-308?page=comments#action_56232 ]
     
Samisa Abeysinghe commented on AXISCPP-308:
-------------------------------------------

I ran into the same problem with Win XP.
I could run Apache only in debug mode with -X.

> Axis C++ 1.3 integration with apache server 2.0.52
> --------------------------------------------------
>
>          Key: AXISCPP-308
>          URL: http://nagoya.apache.org/jira/browse/AXISCPP-308
>      Project: Axis-C++
>         Type: Bug
>   Components: Configuration
>     Versions: 1.3 Final
>  Environment: Windows XP
>     Reporter: Chaib F

>
> I installed the apache server 2.0.52 and tested it successfully. Now I'm trying to integrate Axis C++ 1.3 final with it, I followed all the instructions within the Axis C++ Windows installation guide in the AXIS_FOLDER/docs. However I could not run the server successfully using: apache -k start. I got a strange error:
> Syntax error on line 965 of C:/Program Files/Apache Group/Apache2/conf/httpd.conf:
> Cannot load C:/Program Files/Apache Group/Apache2/modules/mod_axis2.dll into server: Le module sp\xe9cifi\xe9 est introuvable.
> Can anyone tell me what's wrong?
> I appreciate any help and thank you.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://nagoya.apache.org/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


[jira] Commented: (AXISCPP-308) Axis C++ 1.3 integration with apache server 2.0.52

Posted by "Samisa Abeysinghe (JIRA)" <ax...@ws.apache.org>.
     [ http://issues.apache.org/jira/browse/AXISCPP-308?page=comments#action_58498 ]
     
Samisa Abeysinghe commented on AXISCPP-308:
-------------------------------------------

I have made a mistake in the above comment.
The problem happens when the server module could not find Xerces parser DLL.
Please make sure that Xerces DLL is on your path.

> Axis C++ 1.3 integration with apache server 2.0.52
> --------------------------------------------------
>
>          Key: AXISCPP-308
>          URL: http://issues.apache.org/jira/browse/AXISCPP-308
>      Project: Axis-C++
>         Type: Bug
>   Components: Configuration
>     Versions: 1.3 Final
>  Environment: Windows XP
>     Reporter: Chaib F

>
> I installed the apache server 2.0.52 and tested it successfully. Now I'm trying to integrate Axis C++ 1.3 final with it, I followed all the instructions within the Axis C++ Windows installation guide in the AXIS_FOLDER/docs. However I could not run the server successfully using: apache -k start. I got a strange error:
> Syntax error on line 965 of C:/Program Files/Apache Group/Apache2/conf/httpd.conf:
> Cannot load C:/Program Files/Apache Group/Apache2/modules/mod_axis2.dll into server: Le module sp\xe9cifi\xe9 est introuvable.
> Can anyone tell me what's wrong?
> I appreciate any help and thank you.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


[jira] Commented: (AXISCPP-308) Axis C++ 1.3 integration with apache server 2.0.52

Posted by "Samisa Abeysinghe (JIRA)" <ax...@ws.apache.org>.
     [ http://issues.apache.org/jira/browse/AXISCPP-308?page=comments#action_58496 ]
     
Samisa Abeysinghe commented on AXISCPP-308:
-------------------------------------------

OK I figure out the problem.
You are trying to run Apache 1.3 with libaxiscpp_mod2.so (that is Apache2 module)
Rather should use libaxiscpp_mod.so for Apache 1.3

> Axis C++ 1.3 integration with apache server 2.0.52
> --------------------------------------------------
>
>          Key: AXISCPP-308
>          URL: http://issues.apache.org/jira/browse/AXISCPP-308
>      Project: Axis-C++
>         Type: Bug
>   Components: Configuration
>     Versions: 1.3 Final
>  Environment: Windows XP
>     Reporter: Chaib F

>
> I installed the apache server 2.0.52 and tested it successfully. Now I'm trying to integrate Axis C++ 1.3 final with it, I followed all the instructions within the Axis C++ Windows installation guide in the AXIS_FOLDER/docs. However I could not run the server successfully using: apache -k start. I got a strange error:
> Syntax error on line 965 of C:/Program Files/Apache Group/Apache2/conf/httpd.conf:
> Cannot load C:/Program Files/Apache Group/Apache2/modules/mod_axis2.dll into server: Le module sp\xe9cifi\xe9 est introuvable.
> Can anyone tell me what's wrong?
> I appreciate any help and thank you.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


[jira] Updated: (AXISCPP-308) Axis C++ 1.3 integration with apache server 2.0.52

Posted by "Samisa Abeysinghe (JIRA)" <ax...@ws.apache.org>.
     [ http://issues.apache.org/jira/browse/AXISCPP-308?page=history ]

Samisa Abeysinghe updated AXISCPP-308:
--------------------------------------

    Comment: was deleted

> Axis C++ 1.3 integration with apache server 2.0.52
> --------------------------------------------------
>
>          Key: AXISCPP-308
>          URL: http://issues.apache.org/jira/browse/AXISCPP-308
>      Project: Axis-C++
>         Type: Bug
>   Components: Configuration
>     Versions: 1.3 Final
>  Environment: Windows XP
>     Reporter: Chaib F

>
> I installed the apache server 2.0.52 and tested it successfully. Now I'm trying to integrate Axis C++ 1.3 final with it, I followed all the instructions within the Axis C++ Windows installation guide in the AXIS_FOLDER/docs. However I could not run the server successfully using: apache -k start. I got a strange error:
> Syntax error on line 965 of C:/Program Files/Apache Group/Apache2/conf/httpd.conf:
> Cannot load C:/Program Files/Apache Group/Apache2/modules/mod_axis2.dll into server: Le module sp\xe9cifi\xe9 est introuvable.
> Can anyone tell me what's wrong?
> I appreciate any help and thank you.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


[jira] Closed: (AXISCPP-308) Axis C++ 1.3 integration with apache server 2.0.52

Posted by "Samisa Abeysinghe (JIRA)" <ax...@ws.apache.org>.
     [ http://issues.apache.org/jira/browse/AXISCPP-308?page=history ]
     
Samisa Abeysinghe closed AXISCPP-308:
-------------------------------------

    Resolution: Fixed

This is not really a bug rather a config problem.
Please look into the solution provided in the comment

> Axis C++ 1.3 integration with apache server 2.0.52
> --------------------------------------------------
>
>          Key: AXISCPP-308
>          URL: http://issues.apache.org/jira/browse/AXISCPP-308
>      Project: Axis-C++
>         Type: Bug
>   Components: Configuration
>     Versions: 1.3 Final
>  Environment: Windows XP
>     Reporter: Chaib F

>
> I installed the apache server 2.0.52 and tested it successfully. Now I'm trying to integrate Axis C++ 1.3 final with it, I followed all the instructions within the Axis C++ Windows installation guide in the AXIS_FOLDER/docs. However I could not run the server successfully using: apache -k start. I got a strange error:
> Syntax error on line 965 of C:/Program Files/Apache Group/Apache2/conf/httpd.conf:
> Cannot load C:/Program Files/Apache Group/Apache2/modules/mod_axis2.dll into server: Le module sp\xe9cifi\xe9 est introuvable.
> Can anyone tell me what's wrong?
> I appreciate any help and thank you.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira