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 "Chris Darroch (JIRA)" <ji...@apache.org> on 2006/11/18 07:01:37 UTC

[jira] Created: (AXIS2C-410) custom URL prefixes not allowed

custom URL prefixes not allowed
-------------------------------

                 Key: AXIS2C-410
                 URL: http://issues.apache.org/jira/browse/AXIS2C-410
             Project: Axis2-C
          Issue Type: Bug
          Components: core/context, core/engine, util
    Affects Versions: 0.95
            Reporter: Chris Darroch


In AXIS2C-380 I mentioned that although Apache httpd and mod_axis2 allow you to
customize the URL location where Web Services will be provided, in Axis2/C itself
this URL prefix is hard-coded.  For example, with mod_axis2 you might do, in httpd.conf:

    <Location /my/services/here>
        SetHandler axis2_module
    </Location>

There are several problems here.  The main one is that several files in modules/core/engine
call the single function in util/src/utils.c and to "parse" the request's URL.  However, this
function just scans for the hard-coded string "/services" -- so it's going to fail in this case
because the "/services" in httpd's <Location> will match "too early".  If the <Location> is
something like /foo, it won't match at all.

Also, even if the <Location> is for /axis2/services, if the incoming request is for the URL
/axis2//services//foo//bar, the extra slashes mean it won't match.

The attached patch attempts to take care of all these issues by centralizing a lot of the
parse code into modules/core/context/msg_ctx.c and by rewriting util/src/utils.c to use
the axis2_uri_t functions.  A new parameter in axis2.xml is introduced, "requestURLPrefix",
which the administrator should set to whatever matches their httpd <Location>.

This still isn't ideal because really we should match against only what is in the
<Location> directive, and if multiple <Location>s were defined with the axis2_module
handler, they should all work.  Having just a single matching parameter in axis2.xml
won't fix this.  But, it's a start, I think, and if someone can improve it, go for it!  Thanks!

-- 
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
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


[jira] Updated: (AXIS2C-410) custom URL prefixes not allowed

Posted by "Chris Darroch (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/AXIS2C-410?page=all ]

Chris Darroch updated AXIS2C-410:
---------------------------------

    Attachment: axis2c-410.patch

> custom URL prefixes not allowed
> -------------------------------
>
>                 Key: AXIS2C-410
>                 URL: http://issues.apache.org/jira/browse/AXIS2C-410
>             Project: Axis2-C
>          Issue Type: Bug
>          Components: core/context, core/engine, util
>    Affects Versions: 0.95
>            Reporter: Chris Darroch
>         Attachments: axis2c-410.patch
>
>
> In AXIS2C-380 I mentioned that although Apache httpd and mod_axis2 allow you to
> customize the URL location where Web Services will be provided, in Axis2/C itself
> this URL prefix is hard-coded.  For example, with mod_axis2 you might do, in httpd.conf:
>     <Location /my/services/here>
>         SetHandler axis2_module
>     </Location>
> There are several problems here.  The main one is that several files in modules/core/engine
> call the single function in util/src/utils.c and to "parse" the request's URL.  However, this
> function just scans for the hard-coded string "/services" -- so it's going to fail in this case
> because the "/services" in httpd's <Location> will match "too early".  If the <Location> is
> something like /foo, it won't match at all.
> Also, even if the <Location> is for /axis2/services, if the incoming request is for the URL
> /axis2//services//foo//bar, the extra slashes mean it won't match.
> The attached patch attempts to take care of all these issues by centralizing a lot of the
> parse code into modules/core/context/msg_ctx.c and by rewriting util/src/utils.c to use
> the axis2_uri_t functions.  A new parameter in axis2.xml is introduced, "requestURLPrefix",
> which the administrator should set to whatever matches their httpd <Location>.
> This still isn't ideal because really we should match against only what is in the
> <Location> directive, and if multiple <Location>s were defined with the axis2_module
> handler, they should all work.  Having just a single matching parameter in axis2.xml
> won't fix this.  But, it's a start, I think, and if someone can improve it, go for it!  Thanks!

-- 
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
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


[jira] Updated: (AXIS2C-410) custom URL prefixes not allowed

Posted by "Samisa Abeysinghe (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/AXIS2C-410?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Samisa Abeysinghe updated AXIS2C-410:
-------------------------------------

    Fix Version/s:     (was: 1.0.0)

This needs more work to fix as we have failed to apply the patch early enough before the svn head regressed so much. Should re-visit in post 1.0 era

> custom URL prefixes not allowed
> -------------------------------
>
>                 Key: AXIS2C-410
>                 URL: https://issues.apache.org/jira/browse/AXIS2C-410
>             Project: Axis2-C
>          Issue Type: Bug
>          Components: core/context, core/engine, util
>    Affects Versions: 0.95
>            Reporter: Chris Darroch
>         Assigned To: Dinesh Premalal
>         Attachments: axis2c-410.patch
>
>
> In AXIS2C-380 I mentioned that although Apache httpd and mod_axis2 allow you to
> customize the URL location where Web Services will be provided, in Axis2/C itself
> this URL prefix is hard-coded.  For example, with mod_axis2 you might do, in httpd.conf:
>     <Location /my/services/here>
>         SetHandler axis2_module
>     </Location>
> There are several problems here.  The main one is that several files in modules/core/engine
> call the single function in util/src/utils.c and to "parse" the request's URL.  However, this
> function just scans for the hard-coded string "/services" -- so it's going to fail in this case
> because the "/services" in httpd's <Location> will match "too early".  If the <Location> is
> something like /foo, it won't match at all.
> Also, even if the <Location> is for /axis2/services, if the incoming request is for the URL
> /axis2//services//foo//bar, the extra slashes mean it won't match.
> The attached patch attempts to take care of all these issues by centralizing a lot of the
> parse code into modules/core/context/msg_ctx.c and by rewriting util/src/utils.c to use
> the axis2_uri_t functions.  A new parameter in axis2.xml is introduced, "requestURLPrefix",
> which the administrator should set to whatever matches their httpd <Location>.
> This still isn't ideal because really we should match against only what is in the
> <Location> directive, and if multiple <Location>s were defined with the axis2_module
> handler, they should all work.  Having just a single matching parameter in axis2.xml
> won't fix this.  But, it's a start, I think, and if someone can improve it, go for it!  Thanks!

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


[jira] Updated: (AXIS2C-410) custom URL prefixes not allowed

Posted by "Samisa Abeysinghe (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/AXIS2C-410?page=all ]

Samisa Abeysinghe updated AXIS2C-410:
-------------------------------------

    Fix Version/s: 1.0.0
                       (was: 0.96)

I too tried applying the patch and it does not work because the code has regressed so much.
Needs time to fix this

> custom URL prefixes not allowed
> -------------------------------
>
>                 Key: AXIS2C-410
>                 URL: http://issues.apache.org/jira/browse/AXIS2C-410
>             Project: Axis2-C
>          Issue Type: Bug
>          Components: util, core/context, core/engine
>    Affects Versions: 0.95
>            Reporter: Chris Darroch
>         Assigned To: Dinesh Premalal
>             Fix For: 1.0.0
>
>         Attachments: axis2c-410.patch
>
>
> In AXIS2C-380 I mentioned that although Apache httpd and mod_axis2 allow you to
> customize the URL location where Web Services will be provided, in Axis2/C itself
> this URL prefix is hard-coded.  For example, with mod_axis2 you might do, in httpd.conf:
>     <Location /my/services/here>
>         SetHandler axis2_module
>     </Location>
> There are several problems here.  The main one is that several files in modules/core/engine
> call the single function in util/src/utils.c and to "parse" the request's URL.  However, this
> function just scans for the hard-coded string "/services" -- so it's going to fail in this case
> because the "/services" in httpd's <Location> will match "too early".  If the <Location> is
> something like /foo, it won't match at all.
> Also, even if the <Location> is for /axis2/services, if the incoming request is for the URL
> /axis2//services//foo//bar, the extra slashes mean it won't match.
> The attached patch attempts to take care of all these issues by centralizing a lot of the
> parse code into modules/core/context/msg_ctx.c and by rewriting util/src/utils.c to use
> the axis2_uri_t functions.  A new parameter in axis2.xml is introduced, "requestURLPrefix",
> which the administrator should set to whatever matches their httpd <Location>.
> This still isn't ideal because really we should match against only what is in the
> <Location> directive, and if multiple <Location>s were defined with the axis2_module
> handler, they should all work.  Having just a single matching parameter in axis2.xml
> won't fix this.  But, it's a start, I think, and if someone can improve it, go for it!  Thanks!

-- 
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
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


[jira] Commented: (AXIS2C-410) custom URL prefixes not allowed

Posted by "Dinesh Premalal (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/AXIS2C-410?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12483874 ] 

Dinesh Premalal commented on AXIS2C-410:
----------------------------------------

I think this patch is far away from current code base. I don't think we will be able to commit this patch to svn head, Unless Chis commit it himself. 

Chris, If time permits you , could you please give a try to apply this patch to svn head.

> custom URL prefixes not allowed
> -------------------------------
>
>                 Key: AXIS2C-410
>                 URL: https://issues.apache.org/jira/browse/AXIS2C-410
>             Project: Axis2-C
>          Issue Type: Bug
>          Components: core/context, core/engine, util
>    Affects Versions: 0.95
>            Reporter: Chris Darroch
>         Assigned To: Dinesh Premalal
>             Fix For: 1.0.0
>
>         Attachments: axis2c-410.patch
>
>
> In AXIS2C-380 I mentioned that although Apache httpd and mod_axis2 allow you to
> customize the URL location where Web Services will be provided, in Axis2/C itself
> this URL prefix is hard-coded.  For example, with mod_axis2 you might do, in httpd.conf:
>     <Location /my/services/here>
>         SetHandler axis2_module
>     </Location>
> There are several problems here.  The main one is that several files in modules/core/engine
> call the single function in util/src/utils.c and to "parse" the request's URL.  However, this
> function just scans for the hard-coded string "/services" -- so it's going to fail in this case
> because the "/services" in httpd's <Location> will match "too early".  If the <Location> is
> something like /foo, it won't match at all.
> Also, even if the <Location> is for /axis2/services, if the incoming request is for the URL
> /axis2//services//foo//bar, the extra slashes mean it won't match.
> The attached patch attempts to take care of all these issues by centralizing a lot of the
> parse code into modules/core/context/msg_ctx.c and by rewriting util/src/utils.c to use
> the axis2_uri_t functions.  A new parameter in axis2.xml is introduced, "requestURLPrefix",
> which the administrator should set to whatever matches their httpd <Location>.
> This still isn't ideal because really we should match against only what is in the
> <Location> directive, and if multiple <Location>s were defined with the axis2_module
> handler, they should all work.  Having just a single matching parameter in axis2.xml
> won't fix this.  But, it's a start, I think, and if someone can improve it, go for it!  Thanks!

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


[Axis2] Cod freeze for 1.0

Posted by Samisa Abeysinghe <sa...@wso2.com>.
Hi All,
    I would like to call upon a code freeze as far as new features and 
functionality is concerned.
    I propose that we do this freeze form next Monday 02nd April 2007.

    We have to do some more stuff such as binary compatibility and 
release numbering changes. Apart form that, I propose that we stick to 
bug fixing changes to svn head form Monday onwards.

Thanks,
Samisa...


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Re: Axis2/C 1.0.0 RC1

Posted by Samisa Abeysinghe <sa...@wso2.com>.
Samisa Abeysinghe wrote:
> Hi All,
>    I have packaged and hosted 1.0.0 RC1 at 
> http://people.apache.org/~samisa/release/1.0.0/
>
>    The main purpose of this RC1 release is to set the platform for 
> functional testing for 1.0.0 release.
>    There are some document updates and bug fixes pending. Still I hope 
> this RC1 packaging would be useful to test the API and samples.
>
>    Please download, test and send in your feedback.
Please note that this RC1 packages were cut against Axis2/C svn revision 
525435.
Also, plaese note that the svn head is still frozen for new features.

Thanks,
Samisa...


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


RE: axis2_apache_module:

Posted by Jim Seipp <Ji...@avid.com>.
Hi Samisa,

Would it be possible for you to VNC into my server computer and see what
is wrong?

If so I will give you the IP address and password.

Thanks,

Jim

-----Original Message-----
From: Samisa Abeysinghe [mailto:samisa@wso2.com] 
Sent: Thursday, April 19, 2007 10:18 PM
To: Apache AXIS C Developers List
Subject: Re: axis2_apache_module:

Jim Seipp wrote:
> Hi,
>
> I noticed that the Echo.exe sample program is using 9090.
>
> My Apache server is configured to "ServerName thunder-hd2.avid.com:80"
>
> Can you please tell me how I should configure it?
>   
You can just run the client by giving the endpoint:

echo.exe  http://localhost:80/axis2/services/echo

Samisa...

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Re: axis2_apache_module:

Posted by Samisa Abeysinghe <sa...@wso2.com>.
Jim Seipp wrote:
> Hi,
>
> I noticed that the Echo.exe sample program is using 9090.
>
> My Apache server is configured to "ServerName thunder-hd2.avid.com:80"
>
> Can you please tell me how I should configure it?
>   
You can just run the client by giving the endpoint:

echo.exe  http://localhost:80/axis2/services/echo

Samisa...

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


RE: axis2_apache_module:

Posted by Jim Seipp <Ji...@avid.com>.
Hi,

I noticed that the Echo.exe sample program is using 9090.

My Apache server is configured to "ServerName thunder-hd2.avid.com:80"

Can you please tell me how I should configure it?

Thanks,

Jim


-----Original Message-----
From: Supun Kamburugamuva [mailto:supun06@gmail.com] 
Sent: Thursday, April 19, 2007 1:58 PM
To: Apache AXIS C Developers List
Subject: Re: axis2_apache_module:

Hi,

I'm refering to the root directory of Apache Web Server installation.

APACHE_BIN_DIR = C:\Program Files\Apache Software Foundation\Apache2.2

Above is a sample line which specifies the HTTPD installation
directory from the confguration file (confgure.in). Here I have
installed Apache web server to the above folder.

Supun.

On 4/19/07, Jim Seipp <Ji...@avid.com> wrote:
> Hi Supun,
>
> I am not sure what HTTPD directory you are referring to.
>
> Thanks,
>
> Jim
>
>
> -----Original Message-----
> From: Supun Kamburugamuva [mailto:supun06@gmail.com]
> Sent: Friday, April 13, 2007 10:26 PM
> To: Apache AXIS C Developers List
> Subject: Re: axis2_apache_module:
>
> Hi,
>
> Did you include the HTTPD installation directory in the configuration
> file?
>
> Supun..
>
> On 4/13/07, Jim Seipp <Ji...@avid.com> wrote:
> > Hi,
> >
> > I downloaded the latest files from SVN and built the sources
> > successfully.
> >
> > I attempted to build axis2_apache_module: and got the following
> errors.
> >
> > It cannot find the file "httpd.h"
> >
> > Thanks,
> >
> > Jim
> >
> >        if not exist .\int.msvc\apache_module mkdir
> > .\int.msvc\apache_module
> > apache2_out_transport_info.c
> > c:\Download\Apachee Access
> >
>
2\axis2c-Updates\modules\core\transport\http\server\apache2\axis2_apache
> > 2_out_transport_info.h(32) : fatal error C1083: Cannot open include
> > file: 'httpd.h': No such file or directory
> > apache2_stream.c
> > c:\Download\Apachee Access
> >
>
2\axis2c-Updates\modules\core\transport\http\server\apache2\apache2_stre
> > am.h(24) : fatal error C1083: Cannot open include file: 'httpd.h':
No
> > such file or directory
> > apache2_worker.c
> > c:\Download\Apachee Access
> >
>
2\axis2c-Updates\modules\core\transport\http\server\apache2\apache2_stre
> > am.h(24) : fatal error C1083: Cannot open include file: 'httpd.h':
No
> > such file or directory
> > mod_axis2.c
> > ..\..\modules\core\transport\http\server\apache2\mod_axis2.c(19) :
> fatal
> > error C1083: Cannot open include file: 'httpd.h': No such file or
> > directory
> > Generating Code...
> >
> >
---------------------------------------------------------------------
> > To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
> > For additional commands, e-mail: axis-c-dev-help@ws.apache.org
> >
> >
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
> For additional commands, e-mail: axis-c-dev-help@ws.apache.org
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
> For additional commands, e-mail: axis-c-dev-help@ws.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Re: axis2_apache_module:

Posted by Supun Kamburugamuva <su...@gmail.com>.
Hi,

I'm refering to the root directory of Apache Web Server installation.

APACHE_BIN_DIR = C:\Program Files\Apache Software Foundation\Apache2.2

Above is a sample line which specifies the HTTPD installation
directory from the confguration file (confgure.in). Here I have
installed Apache web server to the above folder.

Supun.

On 4/19/07, Jim Seipp <Ji...@avid.com> wrote:
> Hi Supun,
>
> I am not sure what HTTPD directory you are referring to.
>
> Thanks,
>
> Jim
>
>
> -----Original Message-----
> From: Supun Kamburugamuva [mailto:supun06@gmail.com]
> Sent: Friday, April 13, 2007 10:26 PM
> To: Apache AXIS C Developers List
> Subject: Re: axis2_apache_module:
>
> Hi,
>
> Did you include the HTTPD installation directory in the configuration
> file?
>
> Supun..
>
> On 4/13/07, Jim Seipp <Ji...@avid.com> wrote:
> > Hi,
> >
> > I downloaded the latest files from SVN and built the sources
> > successfully.
> >
> > I attempted to build axis2_apache_module: and got the following
> errors.
> >
> > It cannot find the file "httpd.h"
> >
> > Thanks,
> >
> > Jim
> >
> >        if not exist .\int.msvc\apache_module mkdir
> > .\int.msvc\apache_module
> > apache2_out_transport_info.c
> > c:\Download\Apachee Access
> >
> 2\axis2c-Updates\modules\core\transport\http\server\apache2\axis2_apache
> > 2_out_transport_info.h(32) : fatal error C1083: Cannot open include
> > file: 'httpd.h': No such file or directory
> > apache2_stream.c
> > c:\Download\Apachee Access
> >
> 2\axis2c-Updates\modules\core\transport\http\server\apache2\apache2_stre
> > am.h(24) : fatal error C1083: Cannot open include file: 'httpd.h': No
> > such file or directory
> > apache2_worker.c
> > c:\Download\Apachee Access
> >
> 2\axis2c-Updates\modules\core\transport\http\server\apache2\apache2_stre
> > am.h(24) : fatal error C1083: Cannot open include file: 'httpd.h': No
> > such file or directory
> > mod_axis2.c
> > ..\..\modules\core\transport\http\server\apache2\mod_axis2.c(19) :
> fatal
> > error C1083: Cannot open include file: 'httpd.h': No such file or
> > directory
> > Generating Code...
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
> > For additional commands, e-mail: axis-c-dev-help@ws.apache.org
> >
> >
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
> For additional commands, e-mail: axis-c-dev-help@ws.apache.org
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
> For additional commands, e-mail: axis-c-dev-help@ws.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


RE: axis2_apache_module:

Posted by Jim Seipp <Ji...@avid.com>.
Hi Supun,

I am not sure what HTTPD directory you are referring to.

Thanks,

Jim


-----Original Message-----
From: Supun Kamburugamuva [mailto:supun06@gmail.com] 
Sent: Friday, April 13, 2007 10:26 PM
To: Apache AXIS C Developers List
Subject: Re: axis2_apache_module:

Hi,

Did you include the HTTPD installation directory in the configuration
file?

Supun..

On 4/13/07, Jim Seipp <Ji...@avid.com> wrote:
> Hi,
>
> I downloaded the latest files from SVN and built the sources
> successfully.
>
> I attempted to build axis2_apache_module: and got the following
errors.
>
> It cannot find the file "httpd.h"
>
> Thanks,
>
> Jim
>
>        if not exist .\int.msvc\apache_module mkdir
> .\int.msvc\apache_module
> apache2_out_transport_info.c
> c:\Download\Apachee Access
>
2\axis2c-Updates\modules\core\transport\http\server\apache2\axis2_apache
> 2_out_transport_info.h(32) : fatal error C1083: Cannot open include
> file: 'httpd.h': No such file or directory
> apache2_stream.c
> c:\Download\Apachee Access
>
2\axis2c-Updates\modules\core\transport\http\server\apache2\apache2_stre
> am.h(24) : fatal error C1083: Cannot open include file: 'httpd.h': No
> such file or directory
> apache2_worker.c
> c:\Download\Apachee Access
>
2\axis2c-Updates\modules\core\transport\http\server\apache2\apache2_stre
> am.h(24) : fatal error C1083: Cannot open include file: 'httpd.h': No
> such file or directory
> mod_axis2.c
> ..\..\modules\core\transport\http\server\apache2\mod_axis2.c(19) :
fatal
> error C1083: Cannot open include file: 'httpd.h': No such file or
> directory
> Generating Code...
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
> For additional commands, e-mail: axis-c-dev-help@ws.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Re: axis2_apache_module:

Posted by Supun Kamburugamuva <su...@gmail.com>.
Hi,

Did you include the HTTPD installation directory in the configuration file?

Supun..

On 4/13/07, Jim Seipp <Ji...@avid.com> wrote:
> Hi,
>
> I downloaded the latest files from SVN and built the sources
> successfully.
>
> I attempted to build axis2_apache_module: and got the following errors.
>
> It cannot find the file "httpd.h"
>
> Thanks,
>
> Jim
>
>        if not exist .\int.msvc\apache_module mkdir
> .\int.msvc\apache_module
> apache2_out_transport_info.c
> c:\Download\Apachee Access
> 2\axis2c-Updates\modules\core\transport\http\server\apache2\axis2_apache
> 2_out_transport_info.h(32) : fatal error C1083: Cannot open include
> file: 'httpd.h': No such file or directory
> apache2_stream.c
> c:\Download\Apachee Access
> 2\axis2c-Updates\modules\core\transport\http\server\apache2\apache2_stre
> am.h(24) : fatal error C1083: Cannot open include file: 'httpd.h': No
> such file or directory
> apache2_worker.c
> c:\Download\Apachee Access
> 2\axis2c-Updates\modules\core\transport\http\server\apache2\apache2_stre
> am.h(24) : fatal error C1083: Cannot open include file: 'httpd.h': No
> such file or directory
> mod_axis2.c
> ..\..\modules\core\transport\http\server\apache2\mod_axis2.c(19) : fatal
> error C1083: Cannot open include file: 'httpd.h': No such file or
> directory
> Generating Code...
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
> For additional commands, e-mail: axis-c-dev-help@ws.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Re: Axis2/C 1.0.0 RC1

Posted by Samisa Abeysinghe <sa...@wso2.com>.
>            *AUTHORS file and Project Team in maven , We have couple of
>             new committers in better mention them too. 
>  
>
Updated AUTHORS and project.xml - please review to see if I have missed 
anyone.

NOTE: sorted lists by second name (surname)

Samisa..


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Re: Axis2/C 1.0.0 RC1

Posted by Samisa Abeysinghe <sa...@wso2.com>.
Many thanks for the detailed feedback. I will take all these into 
account before doing RC2.

Samisa...

Dinesh Premalal wrote:

>Hi, 
>
>I stated some of the minor issues that I would like to raise
>regarding RC1.They might not be real issues ,if so feel free to ignore.
>
>1.Package Name.
>           For RC1 release , package name should have RC version
>           somewhere. 
>           For Ex: axis2c-src-1.0.0-RC1
>
>2.Date of Maven generated site.
>           It mention that, generated for 0.96. It should updated for
>           1.0.0
>
>3.Documents updating.
>            *Download link and Feature list still pointing to 0.96.
>  
>            *in INSTALL file it is mention 0.96 , here and there.
>            (I would suggest to make INSTALL file version free. We can
>            give it as axis2c-xxx or what ever appropiate way. Version
>            specific things can be metioned in seperate section.)
>           
> 
>            *AUTHORS file and Project Team in maven , We have couple of
>             new committers in better mention them too. 
>
>4.axis2c-1.0.0/test directory
>            For a Release, Do we have any purpose have it there ?
>            Under that directory there is another empty directory in
>            name "tool", better if we can remove it.In "wsdl"
>            directory there is only one test.
>
>            If we going to include those tests in 1.0 release , I
>            would suggest to make sure to get all of those test
>            working. Oterwise we can remove them.
>            
>5."target" directory in "tools"
> 
>            In tools directory , there is a directory called "target"
>            which carries generated docs. I think all genereted
>            documents should go under "docs" directory.
>
>            In tools directory, we have directory called "bin", For me
>            its quite aberrant to see "bin" directory , with source
>            distribution. Better get oters input too.
>
>
>thanks,
>Dinesh           
>  
>



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Re: Axis2/C 1.0.0 RC1

Posted by Samisa Abeysinghe <sa...@wso2.com>.
Dinesh Premalal wrote:

>Hi, 
>
>I stated some of the minor issues that I would like to raise
>regarding RC1.They might not be real issues ,if so feel free to ignore.
>
>1.Package Name.
>           For RC1 release , package name should have RC version
>           somewhere. 
>           For Ex: axis2c-src-1.0.0-RC1
>  
>
Would be fixed for RC2, but I would still keep the extract folder to be 
1.0.0 because I would like to test the 1.0.0 situation with RC2.

>2.Date of Maven generated site.
>           It mention that, generated for 0.96. It should updated for
>           1.0.0
>  
>
Was fixed.

>3.Documents updating.
>            *Download link and Feature list still pointing to 0.96.
>  
>            *in INSTALL file it is mention 0.96 , here and there.
>            (I would suggest to make INSTALL file version free. We can
>            give it as axis2c-xxx or what ever appropiate way. Version
>            specific things can be metioned in seperate section.)
>           
> 
>            *AUTHORS file and Project Team in maven , We have couple of
>             new committers in better mention them too. 
>  
>
Fixed.

>4.axis2c-1.0.0/test directory
>            For a Release, Do we have any purpose have it there ?
>            Under that directory there is another empty directory in
>            name "tool", better if we can remove it.In "wsdl"
>            directory there is only one test.
>
>            If we going to include those tests in 1.0 release , I
>            would suggest to make sure to get all of those test
>            working. Oterwise we can remove them.
>  
>
Dropped tools and wsdl folders. However, I kept the test folder there 
because some may find tests useful.

>            
>5."target" directory in "tools"
> 
>            In tools directory , there is a directory called "target"
>            which carries generated docs. I think all genereted
>            documents should go under "docs" directory.
>
>            In tools directory, we have directory called "bin", For me
>            its quite aberrant to see "bin" directory , with source
>            distribution. Better get oters input too.
>  
>
Fixed.

Samisa...



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


axis2_apache_module:

Posted by Jim Seipp <Ji...@avid.com>.
Hi,

I downloaded the latest files from SVN and built the sources
successfully.

I attempted to build axis2_apache_module: and got the following errors.

It cannot find the file "httpd.h"

Thanks,

Jim

	if not exist .\int.msvc\apache_module mkdir
.\int.msvc\apache_module
apache2_out_transport_info.c
c:\Download\Apachee Access
2\axis2c-Updates\modules\core\transport\http\server\apache2\axis2_apache
2_out_transport_info.h(32) : fatal error C1083: Cannot open include
file: 'httpd.h': No such file or directory
apache2_stream.c
c:\Download\Apachee Access
2\axis2c-Updates\modules\core\transport\http\server\apache2\apache2_stre
am.h(24) : fatal error C1083: Cannot open include file: 'httpd.h': No
such file or directory
apache2_worker.c
c:\Download\Apachee Access
2\axis2c-Updates\modules\core\transport\http\server\apache2\apache2_stre
am.h(24) : fatal error C1083: Cannot open include file: 'httpd.h': No
such file or directory
mod_axis2.c
..\..\modules\core\transport\http\server\apache2\mod_axis2.c(19) : fatal
error C1083: Cannot open include file: 'httpd.h': No such file or
directory
Generating Code...

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Re: Axis2/C 1.0.0 RC1

Posted by Dinesh Premalal <xy...@gmail.com>.
Hi, 

I stated some of the minor issues that I would like to raise
regarding RC1.They might not be real issues ,if so feel free to ignore.

1.Package Name.
           For RC1 release , package name should have RC version
           somewhere. 
           For Ex: axis2c-src-1.0.0-RC1

2.Date of Maven generated site.
           It mention that, generated for 0.96. It should updated for
           1.0.0

3.Documents updating.
            *Download link and Feature list still pointing to 0.96.
  
            *in INSTALL file it is mention 0.96 , here and there.
            (I would suggest to make INSTALL file version free. We can
            give it as axis2c-xxx or what ever appropiate way. Version
            specific things can be metioned in seperate section.)
           
 
            *AUTHORS file and Project Team in maven , We have couple of
             new committers in better mention them too. 

4.axis2c-1.0.0/test directory
            For a Release, Do we have any purpose have it there ?
            Under that directory there is another empty directory in
            name "tool", better if we can remove it.In "wsdl"
            directory there is only one test.

            If we going to include those tests in 1.0 release , I
            would suggest to make sure to get all of those test
            working. Oterwise we can remove them.
            
5."target" directory in "tools"
 
            In tools directory , there is a directory called "target"
            which carries generated docs. I think all genereted
            documents should go under "docs" directory.

            In tools directory, we have directory called "bin", For me
            its quite aberrant to see "bin" directory , with source
            distribution. Better get oters input too.


thanks,
Dinesh           
-- 
Dinesh Premalal
dinesh@wso2.com
WSO2, Inc.; http://www.wso2.com/
GPG Key ID : A255955C
GPG Key Finger Print : C481 E5D4 C27E DC34 9257  0229 4F44 266E A255 955C

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Re: Axis2/C 1.0.0 RC1

Posted by Samisa Abeysinghe <sa...@wso2.com>.
Dinesh Premalal wrote:
> Samisa Abeysinghe <sa...@wso2.com> writes:
>   
>>> I think you need to enable tests when you're running the configure
>>> script before creating the distribution.
>>>       
>> Many thanks for the quick response. I have re-posted the Linux source
>> package with revision 525472.
>>     
>  cd . && /bin/sh /home/dinesh/axis2c/missing --run automake-1.9 --gnu 
> configure.ac:321: required file `test/itest/whitemesa/Makefile.in' not found
> configure.ac:321: required file `test/itest/whitemesa/round1/Makefile.in' not found
> configure.ac:321: required file `test/itest/whitemesa/round2/Makefile.in' not found
> make: *** [Makefile.in] Error 1
>
> I'm getting the above error, while trying to build the source.
>   
Again many thanks for the quick feedback.

Looks like we had 'make dist' somewhat broken. Fixed and re-posted again.

Thanks,
Samisa...


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Re: Axis2/C 1.0.0 RC1

Posted by Dinesh Premalal <xy...@gmail.com>.
Samisa Abeysinghe <sa...@wso2.com> writes:
>>
>> I think you need to enable tests when you're running the configure
>> script before creating the distribution.
> Many thanks for the quick response. I have re-posted the Linux source
> package with revision 525472.
 cd . && /bin/sh /home/dinesh/axis2c/missing --run automake-1.9 --gnu 
configure.ac:321: required file `test/itest/whitemesa/Makefile.in' not found
configure.ac:321: required file `test/itest/whitemesa/round1/Makefile.in' not found
configure.ac:321: required file `test/itest/whitemesa/round2/Makefile.in' not found
make: *** [Makefile.in] Error 1

I'm getting the above error, while trying to build the source.


thanks,
Dinesh

-- 
Dinesh Premalal
dinesh@wso2.com
WSO2, Inc.; http://www.wso2.com/
GPG Key ID : A255955C
GPG Key Finger Print : C481 E5D4 C27E DC34 9257  0229 4F44 266E A255 955C

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Re: Axis2/C 1.0.0 RC1

Posted by Samisa Abeysinghe <sa...@wso2.com>.
Sanjaya Ratnaweera wrote:
> Hi,
>
> Source distribution for linux is not compiling. The error message is
>
> config.status: error: cannot find input file: test/Makefile.in
>
> I think you need to enable tests when you're running the configure 
> script before creating the distribution.
Many thanks for the quick response. I have re-posted the Linux source 
package with revision 525472.

Please check now.

Thanks,
Samisa...


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Re: Axis2/C 1.0.0 RC1

Posted by Sanjaya Ratnaweera <sa...@wso2.com>.
Hi,

Source distribution for linux is not compiling. The error message is

config.status: error: cannot find input file: test/Makefile.in

I think you need to enable tests when you're running the configure 
script before creating the distribution.
Following commands list works for me when I create a source distribution.

./autogen.sh
./configure --prefix=`pwd`/deploy --enable-tests=yes --with-apche2=<path 
to apache2 includes directory>
make
make dist

Thanks

    ~sanjaya

Samisa Abeysinghe wrote:


> Hi All,
>    I have packaged and hosted 1.0.0 RC1 at 
> http://people.apache.org/~samisa/release/1.0.0/
>
>    The main purpose of this RC1 release is to set the platform for 
> functional testing for 1.0.0 release.
>    There are some document updates and bug fixes pending. Still I hope 
> this RC1 packaging would be useful to test the API and samples.
>
>    Please download, test and send in your feedback.
>
> Thanks,
> Samisa...
>


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Re: Axis2/C 1.0.0 RC2 Released

Posted by Samisa Abeysinghe <sa...@wso2.com>.
Dushshantha Chandradasa wrote:
> Hi,
>
> Don't we need to pack NEWS and NOTICE files with binary destribution?
We do. There was a bug in makefile for Win32.  Fixed now.

Thanks,
Samisa...

>
> Dushshantha
>
> On 4/16/07, *Samisa Abeysinghe* < samisa@wso2.com 
> <ma...@wso2.com>> wrote:
>
>     Hi All,
>        I have packaged and uploaded 1.0.0 RC2 at
>     http://people.apache.org/~samisa/release/1.0.0/RC2/
>     <http://people.apache.org/%7Esamisa/release/1.0.0/RC2/>
>
>        This 1.0.0 RC2 release is far more stable than RC1 and far more
>     close
>     to 1.0.0 final release.
>        I have updated all the documents and text files to reflect latest
>     structure and API changes.  Minor API changes were also done to
>     improve
>     usability.
>
>        Please download, test and send in your feedback.
>
>     Thanks,
>     Samisa...
>
>     ---------------------------------------------------------------------
>     To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
>     <ma...@ws.apache.org>
>     For additional commands, e-mail: axis-c-dev-help@ws.apache.org
>     <ma...@ws.apache.org>
>
>


-- 
Samisa Abeysinghe : http://www.wso2.org/ (WSO2 Oxygen Tank - Web Services Developers' Portal)


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Re: Axis2/C 1.0.0 RC2 Released

Posted by Dushshantha Chandradasa <du...@gmail.com>.
Hi,

Don't we need to pack NEWS and NOTICE files with binary destribution?

Dushshantha

On 4/16/07, Samisa Abeysinghe <sa...@wso2.com> wrote:
>
> Hi All,
>    I have packaged and uploaded 1.0.0 RC2 at
> http://people.apache.org/~samisa/release/1.0.0/RC2/
>
>    This 1.0.0 RC2 release is far more stable than RC1 and far more close
> to 1.0.0 final release.
>    I have updated all the documents and text files to reflect latest
> structure and API changes.  Minor API changes were also done to improve
> usability.
>
>    Please download, test and send in your feedback.
>
> Thanks,
> Samisa...
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
> For additional commands, e-mail: axis-c-dev-help@ws.apache.org
>
>

Re: Axis2/C 1.0.0 RC2 Released

Posted by Samisa Abeysinghe <sa...@wso2.com>.
>> 4. I would like to suggest some changes in site.
>>
>>           i. Now we have only single line in "issue_tracking"
>>           page. Shall we bring this issu_tracking link under "mailling
>>           list" page.
>>               There we can add issue_tracking under seperate heading.
>>
>>           ii. I think , "Check out source code" page better place
>>           under "Get involved" tag.
>>           If everyone agrees I would like to help with this change.
>>
>>   
> +1. Please go ahead with the changes.
>
When you do the above, could you also think of a proper place to include 
a note on the versioning policies? We agreed to adhere to 
http://apr.apache.org/versioning.html. We have to have some note on that 
and include the link.

Tanks,
Samisa...

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Move Anjuta Project to Scratch Area (was Re: Axis2/C 1.0.0 RC2 Released)

Posted by Dinesh Premalal <xy...@gmail.com>.
Hi,
Samisa Abeysinghe <sa...@wso2.com> writes:

>> 1. Does any body confirm about anjuta project. Under ides directory
>> there is anjuta project. We need to keep it up to date , else worth to
>> remove.
>>   
> Anjuta project is not up to date.  I think we will have the source
> more or less stable from now on. So if we could update it now to a
> working state, we can ship it. Else we have to remove it.
I don't think with we will able to update this (Anjuta Project) before
Axis2/C 1.0. I'm planning to move it to scratch area , later we can
make it upto date and take back to trunk.

>> 4. I would like to suggest some changes in site.
>>
>>           i. Now we have only single line in "issue_tracking"
>>           page. Shall we bring this issu_tracking link under "mailling
>>           list" page.
>>               There we can add issue_tracking under seperate heading.
>>
>>           ii. I think , "Check out source code" page better place
>>           under "Get involved" tag. 
>>
>>           If everyone agrees I would like to help with this change.
>>
>>   
> +1. Please go ahead with the changes.
I'm doing those changes, Please give me some time. Ill be able to do
them by today.

thanks,
Dinesh

-- 
Dinesh Premalal
dinesh@wso2.com
WSO2, Inc.; http://www.wso2.com/
GPG Key ID : A255955C
GPG Key Finger Print : C481 E5D4 C27E DC34 9257  0229 4F44 266E A255 955C

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Re: Axis2/C 1.0.0 RC2 Released

Posted by Samisa Abeysinghe <sa...@wso2.com>.
Dinesh Premalal wrote:
> Hi,
>  I came across very trivial points regarding RC2 (source distribution). Please note that
>  those suggestions are small enough to ignore :)
>
> 1. Does any body confirm about anjuta project. Under ides directory
> there is anjuta project. We need to keep it up to date , else worth to
> remove.
>   
Anjuta project is not up to date.  I think we will have the source more 
or less stable from now on. So if we could update it now to a working 
state, we can ship it. Else we have to remove it.
> 2. Under samples/server directory there is axis2.log file. My feeling
> is there is no point of shipping it.
>   
+1.
> 3. samples/usr_guide/clients has binaries. In source distribution , we
> need to remove them. 
>   
+1. This is a bug in make bindist
> 4. I would like to suggest some changes in site.
>
>           i. Now we have only single line in "issue_tracking"
>           page. Shall we bring this issu_tracking link under "mailling
>           list" page.
>               There we can add issue_tracking under seperate heading.
>
>           ii. I think , "Check out source code" page better place
>           under "Get involved" tag. 
>
>           If everyone agrees I would like to help with this change.
>
>   
+1. Please go ahead with the changes.

Thanks,
Samisa...


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Re: Axis2/C 1.0.0 RC2 Released

Posted by Dinesh Premalal <xy...@gmail.com>.
Hi,
 I came across very trivial points regarding RC2 (source distribution). Please note that
 those suggestions are small enough to ignore :)

1. Does any body confirm about anjuta project. Under ides directory
there is anjuta project. We need to keep it up to date , else worth to
remove.

2. Under samples/server directory there is axis2.log file. My feeling
is there is no point of shipping it.

3. samples/usr_guide/clients has binaries. In source distribution , we
need to remove them. 

4. I would like to suggest some changes in site.

          i. Now we have only single line in "issue_tracking"
          page. Shall we bring this issu_tracking link under "mailling
          list" page.
              There we can add issue_tracking under seperate heading.

          ii. I think , "Check out source code" page better place
          under "Get involved" tag. 

          If everyone agrees I would like to help with this change.


-- 
Dinesh Premalal
dinesh@wso2.com
WSO2, Inc.; http://www.wso2.com/
GPG Key ID : A255955C
GPG Key Finger Print : C481 E5D4 C27E DC34 9257  0229 4F44 266E A255 955C

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Re: Axis2/C 1.0.0 RC2 Released

Posted by Samisa Abeysinghe <sa...@wso2.com>.
Dushshantha Chandradasa wrote:
> Hi,
>
> RC2 windows source and binary destributions do not include source code 
> and the dll for IIS module. 
This again is a bug in build system - this needs to be fixed.
> And also, I propose that it is better if we can add the IIS module 
> installation details in Axis2c manual. Currently, that information is 
> in a README file inside core\transport\http\server\IIS folder in SVN.
Big +1.

Samisa...


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Re: Axis2/C 1.0.0 RC2 Released

Posted by Dushshantha Chandradasa <du...@gmail.com>.
Hi,

RC2 windows source and binary destributions do not include source code and
the dll for IIS module. We have to ship those things in this release. And
also, I propose that it is better if we can add the IIS module installation
details in Axis2c manual. Currently, that information is in a README file
inside core\transport\http\server\IIS folder in SVN.

Regards,
Dushshantha

On 4/16/07, Samisa Abeysinghe <sa...@wso2.com> wrote:
>
> Hi All,
>    I have packaged and uploaded 1.0.0 RC2 at
> http://people.apache.org/~samisa/release/1.0.0/RC2/
>
>    This 1.0.0 RC2 release is far more stable than RC1 and far more close
> to 1.0.0 final release.
>    I have updated all the documents and text files to reflect latest
> structure and API changes.  Minor API changes were also done to improve
> usability.
>
>    Please download, test and send in your feedback.
>
> Thanks,
> Samisa...
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
> For additional commands, e-mail: axis-c-dev-help@ws.apache.org
>
>

Re: apache axis2 deploy

Posted by Dinesh Premalal <xy...@gmail.com>.
I also tested on my machine, It works fine with both with "/" and
without cases.

thanks,
Dinesh

-- 
Dinesh Premalal
dinesh@wso2.com
WSO2, Inc.; http://www.wso2.com/
GPG Key ID : A255955C
GPG Key Finger Print : C481 E5D4 C27E DC34 9257  0229 4F44 266E A255 955C

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


RE: apache axis2 deploy

Posted by Jim Seipp <Ji...@avid.com>.
I am using Apache2.2.4
I installed it from the Apache web site
I used the configuration file, changing only the AXIS2C parameters
I am attaching the config file

Thanks,

Jim



-----Original Message-----
From: Samisa Abeysinghe [mailto:samisa@wso2.com] 
Sent: Sunday, April 29, 2007 9:18 AM
To: Apache AXIS C Developers List
Subject: Re: apache axis2 deploy

Jim Seipp wrote:

>Hi Supun,
>
>The issue was that echo.exe http://localhost:80/axis2/services/echo
>Did not work when using Apache deploy but did work for
>http_axis2_serve.exe
>Adding a "/" to the end of the http path made it work for Apache2
deploy
>
>http://localhost:80/axis2/services/echo/
>  
>
I tested on my machine with Apache2 and it works for both with and 
without '/' in the endpoint uri.
So it has to be some setting on your machine's Apache2 installation. Are

you using a an already installed Apache2 instance or an installation 
done by you?

Samisa...


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Re: apache axis2 deploy

Posted by Samisa Abeysinghe <sa...@wso2.com>.
Jim Seipp wrote:

>Hi Supun,
>
>The issue was that echo.exe http://localhost:80/axis2/services/echo
>Did not work when using Apache deploy but did work for
>http_axis2_serve.exe
>Adding a "/" to the end of the http path made it work for Apache2 deploy
>
>http://localhost:80/axis2/services/echo/
>  
>
I tested on my machine with Apache2 and it works for both with and 
without '/' in the endpoint uri.
So it has to be some setting on your machine's Apache2 installation. Are 
you using a an already installed Apache2 instance or an installation 
done by you?

Samisa...


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


RE: apache axis2 deploy

Posted by Jim Seipp <Ji...@avid.com>.
Hi Supun,

The issue was that echo.exe http://localhost:80/axis2/services/echo
Did not work when using Apache deploy but did work for
http_axis2_serve.exe
Adding a "/" to the end of the http path made it work for Apache2 deploy

http://localhost:80/axis2/services/echo/

Thanks,

JIm


-----Original Message-----
From: Supun Kamburugamuva [mailto:supun06@gmail.com] 
Sent: Saturday, April 28, 2007 5:35 PM
To: Apache AXIS C Developers List
Subject: Re: apache axis2 deploy

Hi,

By default clients use the 9090 port for the end point reference but
Apache runs on 80. There are two solutions.
1. Changing Apache to run on 9090
2. When running tests give the proper address(with 80 port) as a
command line argument.
for example for echo client
echo.exe http://localhost:80/axis2/services/echo

Supun.


On 4/26/07, Jim Seipp <Ji...@avid.com> wrote:
>
>
>
>
>
> It looks like the Apache server is seeing the services that are
supplied by
> AXIS2C.
>
>
>
> But I cannot seem to get the client to successfully run any of the
test
> programs.
>
> I am trying echo.exe and math.exe
>
> They work with the axis2_http_Server.exe
>
> Also from the client I can web browse the server and see the deploy
> information for the services.
>
>
>
> Any ideas?
>
>
>
> Is there any tests I can run or data I can send you?
>
>
>
> Thanks,
>
>
>
> Jim
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Re: apache axis2 deploy

Posted by Supun Kamburugamuva <su...@gmail.com>.
Hi,

By default clients use the 9090 port for the end point reference but
Apache runs on 80. There are two solutions.
1. Changing Apache to run on 9090
2. When running tests give the proper address(with 80 port) as a
command line argument.
for example for echo client
echo.exe http://localhost:80/axis2/services/echo

Supun.


On 4/26/07, Jim Seipp <Ji...@avid.com> wrote:
>
>
>
>
>
> It looks like the Apache server is seeing the services that are supplied by
> AXIS2C.
>
>
>
> But I cannot seem to get the client to successfully run any of the test
> programs.
>
> I am trying echo.exe and math.exe
>
> They work with the axis2_http_Server.exe
>
> Also from the client I can web browse the server and see the deploy
> information for the services.
>
>
>
> Any ideas?
>
>
>
> Is there any tests I can run or data I can send you?
>
>
>
> Thanks,
>
>
>
> Jim
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


RE: deploy

Posted by Jim Seipp <Ji...@avid.com>.
I cannot email you?? This is a test

-----Original Message-----
From: Samisa Abeysinghe [mailto:samisa@wso2.com] 
Sent: Thursday, April 26, 2007 10:08 PM
To: Apache AXIS C Developers List
Subject: Re: deploy

Jim Seipp wrote:
>
> Hi,
>
>  
>
> I am sending the command from the client:
>
>  
>
> Math add 10 20 http://thunder-hd2:9090/axis2/services/math
>
>  
>
> I am seeing the following message from the server:
>
>  
>
> 10.8.3.21 - - [26/Apr/2007:18:33:06 -0400] "POST /axis2/services/math 
> HTTP/1.1" 301 252
>
>  
>
> But the client gets no response.
>
>  
>
> Please help,
>
Client log file and server log file would be useful to identify the
problem.

Samisa...

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


RE: deploy

Posted by Jim Seipp <Ji...@avid.com>.
I am running Apache2.2.4 
The only changes I made to the configuration file were to use the Axis2C
module

Thanks,

Jim

-----Original Message-----
From: Dumindu Pallewela [mailto:dumindu@wso2.com] 
Sent: Saturday, April 28, 2007 2:02 AM
To: Apache AXIS C Developers List
Subject: Re: deploy

Samisa Abeysinghe wrote:

>> Adding the "/" to the end of the http address fixed the issue.
>>   
> This looks a bug to me :(

My _guess_ is that it is something to do with Jim's apache2
configuration. The last time I tested, RC3 worked fine in windows,
without a "/" trailing the url.

Regards,
Dumindu.

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Re: deploy

Posted by Dumindu Pallewela <du...@wso2.com>.
Samisa Abeysinghe wrote:

>> Adding the "/" to the end of the http address fixed the issue.
>>   
> This looks a bug to me :(

My _guess_ is that it is something to do with Jim's apache2
configuration. The last time I tested, RC3 worked fine in windows,
without a "/" trailing the url.

Regards,
Dumindu.

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Re: deploy

Posted by Samisa Abeysinghe <sa...@wso2.com>.
Jim Seipp wrote:
> Hi,
>
> I finally figured out the problem.
>   
Great news :)
> The test application showed the sample:
>
> http://thunder-hd2:9090/axis2/services/math
>
> This worked when using the axis2_http_server.exe
>
> The Apache server was looking for:
>
> http://thunder-hd2:9090/axis2/services/math/
>
> Adding the "/" to the end of the http address fixed the issue.
>   
This looks a bug to me :(
> Thanks for your help,
>
> Jim
>
> PS I am still seeing handle and memory leaks, maybe they are fixed in
> the next RC?
>   

I have fixed handler problem on the svn head.

Samisa...


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


RE: deploy

Posted by Jim Seipp <Ji...@avid.com>.
Hi,

I finally figured out the problem.

The test application showed the sample:

http://thunder-hd2:9090/axis2/services/math

This worked when using the axis2_http_server.exe

The Apache server was looking for:

http://thunder-hd2:9090/axis2/services/math/

Adding the "/" to the end of the http address fixed the issue.

Thanks for your help,

Jim

PS I am still seeing handle and memory leaks, maybe they are fixed in
the next RC?


-----Original Message-----
From: Dumindu Pallewela [mailto:dumindu@wso2.com] 
Sent: Friday, April 27, 2007 5:01 PM
To: Apache AXIS C Developers List
Subject: Re: deploy

Hi Jim,

According to the logs that you have attached, all that I can think of is

that the axis2 handler doesn't get the request that you send. In access 
log, you can see that a 301 response is sent to the client. (this could 
happen due to mod_rewrite, for example)

Maybe you should start with a *minimal* configuration of apache2 and 
modify it for the axis2 module, if you haven't already done so.

Keep us posted of the outcome.

Regards,
Dumindu.

Jim Seipp wrote:
> Hi,
> 
> I am adding the client and server logs to this email.
> 
> Thanks for your help.
> 
> Jim
> 

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Re: deploy

Posted by Dumindu Pallewela <du...@wso2.com>.
Hi Jim,

According to the logs that you have attached, all that I can think of is 
that the axis2 handler doesn't get the request that you send. In access 
log, you can see that a 301 response is sent to the client. (this could 
happen due to mod_rewrite, for example)

Maybe you should start with a *minimal* configuration of apache2 and 
modify it for the axis2 module, if you haven't already done so.

Keep us posted of the outcome.

Regards,
Dumindu.

Jim Seipp wrote:
> Hi,
> 
> I am adding the client and server logs to this email.
> 
> Thanks for your help.
> 
> Jim
> 

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


RE: deploy

Posted by Jim Seipp <Ji...@avid.com>.
Hi,

I am adding the client and server logs to this email.

Thanks for your help.

Jim

**************** Axis2.log **********************************
[Thu Apr 26 18:32:55 2007] [info]  Starting log with log level 4
[Thu Apr 26 18:32:55 2007] [debug] ..\..\src\core\engine\phase.c(113)
axis2_handler_t *request_uri_based_dispatcher added to the index 0 of
the phase Transport
[Thu Apr 26 18:32:55 2007] [debug] ..\..\src\core\engine\phase.c(113)
axis2_handler_t *soap_message_body_based_dispatcher added to the index 0
of the phase Dispatch
[Thu Apr 26 18:32:55 2007] [debug] ..\..\src\core\engine\phase.c(113)
axis2_handler_t *addressing_based_dispatcher added to the index 1 of the
phase Dispatch
[Thu Apr 26 18:32:55 2007] [debug] ..\..\src\core\engine\phase.c(113)
axis2_handler_t *soap_action_based_dispatcher added to the index 2 of
the phase Dispatch
[Thu Apr 26 18:32:55 2007] [debug] ..\..\src\core\engine\phase.c(113)
axis2_handler_t *dispatch_post_conditions_evaluator added to the index 0
of the phase PostDispatch
[Thu Apr 26 18:32:55 2007] [debug] ..\..\src\core\engine\phase.c(113)
axis2_handler_t *context_handler added to the index 1 of the phase
PostDispatch
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\deployment\conf_builder.c(220) no custom dispatching
order             found continue with default dispatcing order
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\deployment\conf_builder.c(327) module addressing found in
axis2.xml
[Thu Apr 26 18:32:55 2007] [debug] ..\..\util\src\class_loader.c(152)
Object loaded successfully
[Thu Apr 26 18:32:55 2007] [debug] ..\..\util\src\class_loader.c(152)
Object loaded successfully
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\deployment\dep_engine.c(1051)
axis2_dep_engine_load_module_dll; dll path is :
C:/Axis2c/build/deploy/modules/addressing/axis2_mod_addr.dll
[Thu Apr 26 18:32:55 2007] [debug] ..\..\util\src\class_loader.c(152)
Object loaded successfully
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\deployment\svc_builder.c(286) dll path is :
C:/Axis2c/build/deploy/services/Calculator/Calculator.dll
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_resolver.c(117) svc name
is:Calculator
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\deployment\svc_builder.c(286) dll path is :
C:/Axis2c/build/deploy/services/echo/echo.dll
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_resolver.c(117) svc name is:echo
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\deployment\svc_builder.c(286) dll path is :
C:/Axis2c/build/deploy/services/math/math.dll
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_resolver.c(117) svc name is:math
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\deployment\svc_builder.c(286) dll path is :
C:/Axis2c/build/deploy/services/mtom/mtom.dll
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_resolver.c(117) svc name is:mtom
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\deployment\svc_builder.c(286) dll path is :
C:/Axis2c/build/deploy/services/notify/notify.dll
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_resolver.c(117) svc name is:notify
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\deployment\svc_builder.c(286) dll path is :
C:/Axis2c/build/deploy/services/sg_math/add.dll
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\deployment\svc_builder.c(286) dll path is :
C:/Axis2c/build/deploy/services/sg_math/sub.dll
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\deployment\svc_builder.c(286) dll path is :
C:/Axis2c/build/deploy/services/sg_math/mul.dll
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\deployment\svc_builder.c(286) dll path is :
C:/Axis2c/build/deploy/services/sg_math/div.dll
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_resolver.c(117) svc name is:add
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_resolver.c(117) svc name is:sub
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_resolver.c(117) svc name is:mul
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_resolver.c(117) svc name is:div
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_holder.c(129) Add handler
AddressingInHandler to phase PreDispatch
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_resolver.c(887) svc name is:div
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_resolver.c(117) svc name is:div
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_resolver.c(954) op name is:div
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_holder.c(129) Add handler
AddressingOutHandler to phase MessageOut
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_holder.c(129) Add handler
AddressingOutHandler to phase MessageOut
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_resolver.c(887) svc name is:add
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_resolver.c(117) svc name is:add
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_resolver.c(954) op name is:add
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_holder.c(129) Add handler
AddressingOutHandler to phase MessageOut
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_holder.c(129) Add handler
AddressingOutHandler to phase MessageOut
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_resolver.c(887) svc name is:sub
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_resolver.c(117) svc name is:sub
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_resolver.c(954) op name is:sub
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_holder.c(129) Add handler
AddressingOutHandler to phase MessageOut
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_holder.c(129) Add handler
AddressingOutHandler to phase MessageOut
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_resolver.c(887) svc name is:mul
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_resolver.c(117) svc name is:mul
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_resolver.c(954) op name is:mul
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_holder.c(129) Add handler
AddressingOutHandler to phase MessageOut
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_holder.c(129) Add handler
AddressingOutHandler to phase MessageOut
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_resolver.c(887) svc name is:notify
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_resolver.c(117) svc name is:notify
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_resolver.c(954) op name is:notify
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_holder.c(129) Add handler
AddressingOutHandler to phase MessageOut
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_holder.c(129) Add handler
AddressingOutHandler to phase MessageOut
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_resolver.c(887) svc name
is:Calculator
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_resolver.c(117) svc name
is:Calculator
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_resolver.c(954) op name is:div
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_holder.c(129) Add handler
AddressingOutHandler to phase MessageOut
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_holder.c(129) Add handler
AddressingOutHandler to phase MessageOut
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_resolver.c(954) op name is:add
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_holder.c(129) Add handler
AddressingOutHandler to phase MessageOut
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_holder.c(129) Add handler
AddressingOutHandler to phase MessageOut
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_resolver.c(954) op name is:sub
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_holder.c(129) Add handler
AddressingOutHandler to phase MessageOut
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_holder.c(129) Add handler
AddressingOutHandler to phase MessageOut
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_resolver.c(954) op name is:mul
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_holder.c(129) Add handler
AddressingOutHandler to phase MessageOut
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_holder.c(129) Add handler
AddressingOutHandler to phase MessageOut
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_resolver.c(887) svc name is:math
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_resolver.c(117) svc name is:math
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_resolver.c(954) op name is:div
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_holder.c(129) Add handler
AddressingOutHandler to phase MessageOut
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_holder.c(129) Add handler
AddressingOutHandler to phase MessageOut
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_resolver.c(954) op name is:add
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_holder.c(129) Add handler
AddressingOutHandler to phase MessageOut
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_holder.c(129) Add handler
AddressingOutHandler to phase MessageOut
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_resolver.c(954) op name is:sub
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_holder.c(129) Add handler
AddressingOutHandler to phase MessageOut
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_holder.c(129) Add handler
AddressingOutHandler to phase MessageOut
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_resolver.c(954) op name is:mul
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_holder.c(129) Add handler
AddressingOutHandler to phase MessageOut
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_holder.c(129) Add handler
AddressingOutHandler to phase MessageOut
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_resolver.c(887) svc name is:mtom
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_resolver.c(117) svc name is:mtom
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_resolver.c(954) op name is:mtomSample
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_holder.c(129) Add handler
AddressingOutHandler to phase MessageOut
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_holder.c(129) Add handler
AddressingOutHandler to phase MessageOut
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_resolver.c(887) svc name is:echo
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_resolver.c(117) svc name is:echo
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_resolver.c(954) op name is:echoString
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_holder.c(129) Add handler
AddressingOutHandler to phase MessageOut
[Thu Apr 26 18:32:55 2007] [debug]
..\..\src\core\phaseresolver\phase_holder.c(129) Add handler
AddressingOutHandler to phase MessageOut
**************************************************************

**************** access.log **********************************
10.8.3.21 - - [26/Apr/2007:18:33:06 -0400] "POST /axis2/services/math
HTTP/1.1" 301 252
**************************************************************


**************** error.log **********************************
[Thu Apr 26 18:32:54 2007] [notice] Apache/2.2.4 (Win32) configured --
resuming normal operations
[Thu Apr 26 18:32:54 2007] [notice] Server built: Jan  9 2007 23:17:20
[Thu Apr 26 18:32:54 2007] [notice] Parent: Created child process 2384
[Thu Apr 26 18:32:55 2007] [notice] Child 2384: Child process is running
[Thu Apr 26 18:32:55 2007] [notice] Child 2384: Acquired the start
mutex.
[Thu Apr 26 18:32:55 2007] [notice] Child 2384: Starting 250 worker
threads.
[Thu Apr 26 18:32:55 2007] [notice] Child 2384: Starting thread to
listen on port 9090.
[Thu Apr 26 18:32:55 2007] [notice] Child 2384: Starting thread to
listen on port 80.
[Fri Apr 27 07:57:22 2007] [notice] Parent: Received shutdown signal --
Shutting down the server.
[Fri Apr 27 07:57:22 2007] [notice] Child 2384: Exit event signaled.
Child process is ending.
[Fri Apr 27 07:57:23 2007] [notice] Child 2384: Released the start mutex
[Fri Apr 27 07:57:24 2007] [notice] Child 2384: Waiting for 250 worker
threads to exit.
[Fri Apr 27 07:57:24 2007] [notice] Child 2384: All worker threads have
exited.
[Fri Apr 27 07:57:24 2007] [notice] Child 2384: Child process is exiting
[Fri Apr 27 07:57:24 2007] [notice] Parent: Child process exited
successfully.
**************************************************************


**************** Client_Math_Blocking.log
**********************************
[Fri Apr 27 08:21:00 2007] [debug]
..\..\samples\client\math\math_client.c(170) 
Sending OM node in XML : <ns1:add
xmlns:ns1="http://ws.apache.org/axis2/c/samplesmath"><param1>12</param1>
<param2>23</param2></ns1:add> 

[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\engine\phase.c(280) axis2_handler_t
*request_uri_based_dispatcher added to the index 0 of the phase
TransportIn
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\engine\phase.c(280) axis2_handler_t
*addressing_based_dispatcher added to the index 0 of the phase Dispatch
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\engine\phase.c(280) axis2_handler_t
*request_uri_based_dispatcher added to the index 1 of the phase Dispatch
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\engine\phase.c(280) axis2_handler_t
*soap_action_based_dispatcher added to the index 2 of the phase Dispatch
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\engine\phase.c(280) axis2_handler_t
*soap_message_body_based_dispatcher added to the index 3 of the phase
Dispatch
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\engine\phase.c(280) axis2_handler_t
*dispatch_post_conditions_evaluator added to the index 0 of the phase
PostDispatch
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\engine\phase.c(280) axis2_handler_t *context_handler
added to the index 1 of the phase PostDispatch
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\deployment\conf_builder.c(285) no custom dispatching
order                 found continue with default dispatcing order
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\deployment\conf_builder.c(378) module addressing
found in axis2.xml
[Fri Apr 27 08:21:00 2007] [debug] ..\..\util\src\class_loader.c(218)
transport sender loaded successfully
[Fri Apr 27 08:21:00 2007] [debug] ..\..\util\src\class_loader.c(201)
transport receiver loaded successfully
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\deployment\dep_engine.c(1284)
axis2_dep_engine_load_module_dll; dll path is :
C:\axis2c-0.96/modules/addressing/axis2_mod_addr.dll
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\deployment\dep_engine.c(1284)
axis2_dep_engine_load_module_dll; dll path is :
C:\axis2c-0.96/modules/logging/axis2_mod_log.dll
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\deployment\svc_builder.c(344) dll path is :
C:\axis2c-0.96/services/Xena/Xena.dll
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_resolver.c(218) svc name is:Xena
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\deployment\svc_builder.c(344) dll path is :
C:\axis2c-0.96/services/echo/echo.dll
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_resolver.c(218) svc name is:echo
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\deployment\svc_builder.c(344) dll path is :
C:\axis2c-0.96/services/math/math.dll
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_resolver.c(218) svc name is:math
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_holder.c(199) Add handler
AddressingInHandler to phase PreDispatch
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_resolver.c(1054) svc name is:math
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_resolver.c(218) svc name is:math
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_resolver.c(1128) op name is:div
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_holder.c(199) Add handler
AddressingOutHandler to phase MessageOut
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_holder.c(199) Add handler
AddressingOutHandler to phase MessageOut
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_resolver.c(1128) op name is:add
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_holder.c(199) Add handler
AddressingOutHandler to phase MessageOut
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_holder.c(199) Add handler
AddressingOutHandler to phase MessageOut
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_resolver.c(1128) op name is:sub
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_holder.c(199) Add handler
AddressingOutHandler to phase MessageOut
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_holder.c(199) Add handler
AddressingOutHandler to phase MessageOut
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_resolver.c(1128) op name is:mul
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_holder.c(199) Add handler
AddressingOutHandler to phase MessageOut
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_holder.c(199) Add handler
AddressingOutHandler to phase MessageOut
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_resolver.c(1054) svc name is:Xena
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_resolver.c(218) svc name is:Xena
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_resolver.c(1128) op name is:abort
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_holder.c(199) Add handler
AddressingOutHandler to phase MessageOut
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_holder.c(199) Add handler
AddressingOutHandler to phase MessageOut
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_resolver.c(1128) op name is:cue
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_holder.c(199) Add handler
AddressingOutHandler to phase MessageOut
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_holder.c(199) Add handler
AddressingOutHandler to phase MessageOut
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_resolver.c(1054) svc name is:echo
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_resolver.c(218) svc name is:echo
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_resolver.c(1128) op name
is:echoString
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_holder.c(199) Add handler
AddressingOutHandler to phase MessageOut
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_holder.c(199) Add handler
AddressingOutHandler to phase MessageOut
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_resolver.c(218) svc name
is:__ANONYMOUS_SERVICE__
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_resolver.c(355) module name
is:addressing
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_resolver.c(453) This handler is
trying to added to system pre defined phases , but those
handlers are already added to global chain which run
irrespective of the service
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_resolver.c(355) module name
is:addressing
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_holder.c(199) Add handler
AddressingOutHandler to phase MessageOut
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_resolver.c(355) module name
is:addressing
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_resolver.c(355) module name
is:addressing
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_holder.c(199) Add handler
AddressingOutHandler to phase MessageOut
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_resolver.c(355) module name
is:addressing
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_resolver.c(453) This handler is
trying to added to system pre defined phases , but those
handlers are already added to global chain which run
irrespective of the service
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_resolver.c(355) module name
is:addressing
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_holder.c(199) Add handler
AddressingOutHandler to phase MessageOut
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_resolver.c(355) module name
is:addressing
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_resolver.c(355) module name
is:addressing
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_holder.c(199) Add handler
AddressingOutHandler to phase MessageOut
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_resolver.c(355) module name
is:addressing
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_resolver.c(453) This handler is
trying to added to system pre defined phases , but those
handlers are already added to global chain which run
irrespective of the service
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_resolver.c(355) module name
is:addressing
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_holder.c(199) Add handler
AddressingOutHandler to phase MessageOut
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_resolver.c(355) module name
is:addressing
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_resolver.c(355) module name
is:addressing
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_holder.c(199) Add handler
AddressingOutHandler to phase MessageOut
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_holder.c(199) Add handler
AddressingInHandler to phase PreDispatch
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_resolver.c(1599) Handler
inclusion failed for MessageOut phase
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_holder.c(199) Add handler
AddressingInHandler to phase PreDispatch
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_resolver.c(1599) Handler
inclusion failed for MessageOut phase
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_holder.c(199) Add handler
AddressingInHandler to phase PreDispatch
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_resolver.c(1599) Handler
inclusion failed for MessageOut phase
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_holder.c(199) Add handler
AddressingInHandler to phase PreDispatch
[Fri Apr 27 08:21:00 2007] [debug]
..\..\modules\core\phaseresolver\phase_resolver.c(1599) Handler
inclusion failed for MessageOut phase
[Fri Apr 27 08:21:05 2007] [debug]
..\..\modules\core\engine\engine.c(341) Axis2 engine send successful
[Fri Apr 27 08:21:05 2007] [error]
..\..\samples\client\math\math_client.c(117) Stub invoke FAILED: Error
code: 3 :: Blocking invocation expects response
**************************************************************





-----Original Message-----
From: Kaushalye Kapuruge [mailto:kaushalye@wso2.com] 
Sent: Friday, April 27, 2007 9:05 AM
To: Apache AXIS C Developers List
Subject: Re: deploy

Hmm... may be you can copy both logs and paste it in the mail body. 
Delete logs(logs/axis2.log, echo.log) ,then start the server and run the

client once. This would minimize the size of the log.
Cheers,
Kaushalye

Jim Seipp wrote:
> Hi Samisa,
>
> Every time I try to send you an email with an attachment I get an
error.
>
> Your message did not reach some or all of the intended recipients.
>
>       Subject:	RE: deploy
>       Sent:	4/27/2007 8:49 AM
>
> The following recipient(s) could not be reached:
>
>       'Apache AXIS C Developers List' on 4/27/2007 8:49 AM
>             There was a SMTP communication problem with the
recipient's
> email server.  Please contact your system administrator.
>             <mailgw2.pinnaclesys.com #5.5.0 smtp;552 Message rejected
as
> it is spam (body)>
>
>
> Thanks,
>
> Jim
>
> -----Original Message-----
> From: Samisa Abeysinghe [mailto:samisa@wso2.com] 
> Sent: Thursday, April 26, 2007 10:08 PM
> To: Apache AXIS C Developers List
> Subject: Re: deploy
>
> Jim Seipp wrote:
>   
>> Hi,
>>
>>  
>>
>> I am sending the command from the client:
>>
>>  
>>
>> Math add 10 20 http://thunder-hd2:9090/axis2/services/math
>>
>>  
>>
>> I am seeing the following message from the server:
>>
>>  
>>
>> 10.8.3.21 - - [26/Apr/2007:18:33:06 -0400] "POST /axis2/services/math

>> HTTP/1.1" 301 252
>>
>>  
>>
>> But the client gets no response.
>>
>>  
>>
>> Please help,
>>
>>     
> Client log file and server log file would be useful to identify the
> problem.
>
> Samisa...
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
> For additional commands, e-mail: axis-c-dev-help@ws.apache.org
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
> For additional commands, e-mail: axis-c-dev-help@ws.apache.org
>
>
>   


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Re: retrieve wsdl

Posted by Dinesh Premalal <xy...@gmail.com>.
Hi Jim, 
"Jim Seipp" <Ji...@avid.com> writes:

> Hi,
>
> When I enter "http://localhost:9090/axis2/services/math/?wsdl"

Axis2/C provide only static wsdl serving only. In order to retrieve
, service should host wsdl somewhere and should point to it it
service.xml file.

service.xml entry should be like.
<parameter name="wsdl_path">path to wsdl<parameter/>

then

http://localhost:9090/axis2/services/echo?wsdl

like request will retrieve wsdl.


thanks,
Dinesh

-- 
Dinesh Premalal
dinesh@wso2.com
WSO2, Inc.; http://www.wso2.com/
GPG Key ID : A255955C
GPG Key Finger Print : C481 E5D4 C27E DC34 9257  0229 4F44 266E A255 955C

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


retrieve wsdl

Posted by Jim Seipp <Ji...@avid.com>.
Hi,

When I enter "http://localhost:9090/axis2/services/math/?wsdl"

I get the error message:

"Unable to retreive wsdl for this service"

Can someone please tell me how to retrieve wsdl information?

Thanks,

Jim

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Re: deploy

Posted by Kaushalye Kapuruge <ka...@wso2.com>.
Hmm... may be you can copy both logs and paste it in the mail body. 
Delete logs(logs/axis2.log, echo.log) ,then start the server and run the 
client once. This would minimize the size of the log.
Cheers,
Kaushalye

Jim Seipp wrote:
> Hi Samisa,
>
> Every time I try to send you an email with an attachment I get an error.
>
> Your message did not reach some or all of the intended recipients.
>
>       Subject:	RE: deploy
>       Sent:	4/27/2007 8:49 AM
>
> The following recipient(s) could not be reached:
>
>       'Apache AXIS C Developers List' on 4/27/2007 8:49 AM
>             There was a SMTP communication problem with the recipient's
> email server.  Please contact your system administrator.
>             <mailgw2.pinnaclesys.com #5.5.0 smtp;552 Message rejected as
> it is spam (body)>
>
>
> Thanks,
>
> Jim
>
> -----Original Message-----
> From: Samisa Abeysinghe [mailto:samisa@wso2.com] 
> Sent: Thursday, April 26, 2007 10:08 PM
> To: Apache AXIS C Developers List
> Subject: Re: deploy
>
> Jim Seipp wrote:
>   
>> Hi,
>>
>>  
>>
>> I am sending the command from the client:
>>
>>  
>>
>> Math add 10 20 http://thunder-hd2:9090/axis2/services/math
>>
>>  
>>
>> I am seeing the following message from the server:
>>
>>  
>>
>> 10.8.3.21 - - [26/Apr/2007:18:33:06 -0400] "POST /axis2/services/math 
>> HTTP/1.1" 301 252
>>
>>  
>>
>> But the client gets no response.
>>
>>  
>>
>> Please help,
>>
>>     
> Client log file and server log file would be useful to identify the
> problem.
>
> Samisa...
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
> For additional commands, e-mail: axis-c-dev-help@ws.apache.org
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
> For additional commands, e-mail: axis-c-dev-help@ws.apache.org
>
>
>   


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


RE: deploy

Posted by Jim Seipp <Ji...@avid.com>.
Hi Samisa,

Every time I try to send you an email with an attachment I get an error.

Your message did not reach some or all of the intended recipients.

      Subject:	RE: deploy
      Sent:	4/27/2007 8:49 AM

The following recipient(s) could not be reached:

      'Apache AXIS C Developers List' on 4/27/2007 8:49 AM
            There was a SMTP communication problem with the recipient's
email server.  Please contact your system administrator.
            <mailgw2.pinnaclesys.com #5.5.0 smtp;552 Message rejected as
it is spam (body)>


Thanks,

Jim

-----Original Message-----
From: Samisa Abeysinghe [mailto:samisa@wso2.com] 
Sent: Thursday, April 26, 2007 10:08 PM
To: Apache AXIS C Developers List
Subject: Re: deploy

Jim Seipp wrote:
>
> Hi,
>
>  
>
> I am sending the command from the client:
>
>  
>
> Math add 10 20 http://thunder-hd2:9090/axis2/services/math
>
>  
>
> I am seeing the following message from the server:
>
>  
>
> 10.8.3.21 - - [26/Apr/2007:18:33:06 -0400] "POST /axis2/services/math 
> HTTP/1.1" 301 252
>
>  
>
> But the client gets no response.
>
>  
>
> Please help,
>
Client log file and server log file would be useful to identify the
problem.

Samisa...

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Re: deploy

Posted by Samisa Abeysinghe <sa...@wso2.com>.
Jim Seipp wrote:
>
> Hi,
>
>  
>
> I am sending the command from the client:
>
>  
>
> Math add 10 20 http://thunder-hd2:9090/axis2/services/math
>
>  
>
> I am seeing the following message from the server:
>
>  
>
> 10.8.3.21 - - [26/Apr/2007:18:33:06 -0400] "POST /axis2/services/math 
> HTTP/1.1" 301 252
>
>  
>
> But the client gets no response.
>
>  
>
> Please help,
>
Client log file and server log file would be useful to identify the problem.

Samisa...

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


deploy

Posted by Jim Seipp <Ji...@avid.com>.
Hi,
 
I am sending the command from the client:
 
Math add 10 20 http://thunder-hd2:9090/axis2/services/math
 
I am seeing the following message from the server:
 
10.8.3.21 - - [26/Apr/2007:18:33:06 -0400] "POST /axis2/services/math
HTTP/1.1" 301 252
 
But the client gets no response.
 
Please help,
 
Thanks,
 
Jim

apache axis2 deploy

Posted by Jim Seipp <Ji...@avid.com>.
 
It looks like the Apache server is seeing the services that are supplied
by AXIS2C.
 
But I cannot seem to get the client to successfully run any of the test
programs.
I am trying echo.exe and math.exe
They work with the axis2_http_Server.exe
Also from the client I can web browse the server and see the deploy
information for the services.
 
Any ideas?
 
Is there any tests I can run or data I can send you?
 
Thanks,
 
Jim
 

Re: Axis2/C 1.0.0 RC3 Released

Posted by Sanjaya Ratnaweera <sa...@wso2.com>.
Dushshantha Chandradasa wrote:
> Hi,
>
> In the source destribution, module.xml file is missing in 
> axis2c-src-1.0.0\docs\docs\mod_log folder. This breaks a link in the 
> axis2c_manual.

Fixed

Thanks

    ~sanjaya

>
> Regards,
> Dushshantha
>
> On 4/20/07, *Sanjaya Ratnaweera* <sanjaya@wso2.com 
> <ma...@wso2.com>> wrote:
>
>     Dushshantha Chandradasa wrote:
>>     Hi,
>>
>>     makefiles in the samples\user_guide\clients are missing in both
>>     source and bin destributions for win32. We have have to pack
>>     these files to help the user to build samples easily on windows.
>     Fixed.
>
>     Thanks
>
>          ~sanjaya
>
>
>
>>
>>     regards,
>>     Dushshantha
>>
>>     On 4/20/07, *Samisa Abeysinghe* <samisa@wso2.com
>>     <ma...@wso2.com> > wrote:
>>
>>         Apache Axis2/C Team is pleased to announce the release of
>>         Apache Axis2/C
>>         version 1.0.0-RC3
>>         You can download this release from
>>         http://ws.apache.org/axis2/c/download.cgi
>>         <http://ws.apache.org/axis2/c/download.cgi>
>>
>>         Please test this and send in your feedback.
>>
>>         Key Features
>>
>>            1. Support for one-way messaging (In-Only) and request
>>         response
>>         messaging (In-Out)
>>            2. Client APIs: Easy to use service client API and more
>>         advanced
>>         operation client API
>>            3. Transports supported: HTTP
>>                  a. Inbuilt HTTP server called simple axis server
>>                  b. Apache2 httpd module called mod_axis2 for server side
>>                  c. IIS module for server side
>>                  d. Client transport with ability to enable SSL support
>>                  e. libcurl based client transport
>>            4. Module architecture, mechanism to extend the SOAP
>>         processing model
>>            5. WS-Addressing support, both the submission (2004/08)
>>         and final
>>         (2005/08) versions, implemented as a module
>>            6. MTOM/XOP support
>>            7. AXIOM, an XML object model optimized for SOAP 1.1/1.2
>>         messages;
>>         This has complete XML infoset support
>>            8. XML parser abstraction
>>                  a. Libxml2 wrapper
>>                  b. Guththila pull parser support
>>            9. Both directory based and archive based deployment
>>         models for
>>         deploying services and modules
>>           10. Description hierarchy providing access to static data
>>         of Axis2/C
>>         runtime (configuration, service groups, services, operations
>>         and messages)
>>           11. Context hierarchy providing access to dynamic Axis2/C
>>         runtime
>>         information(corresponding contexts to map to each level of
>>         description
>>         hierarchy)
>>           12. Message receiver abstraction
>>                  a. Inbuilt raw XML message receiver
>>           13. Code generation tool for stub and skeleton generation
>>         for a given
>>         WSDL (based on Java tool)
>>                  a. Axis Data Binding (ADB) support
>>           14. Transport proxy support
>>           15. REST support (more POX like) using both HTTP POST and GET
>>           16. Comprehensive documentation
>>                  a. Axis2/C Manual
>>
>>         Major Changes Since Last Release
>>
>>            1. Many Bug Fixes
>>            2. IIS module for server side
>>            3. libcurl based client transport
>>            4. Improvements to overall API to make it more user
>>         friendly, stable
>>         and binary compatible
>>            5. Transport proxy support
>>            6. Memory leak fixes
>>
>>         We welcome your early feedback on this implementation.
>>         Thanks for your interest in Axis2/C
>>
>>         -- Apache Axis2/C Team --
>>
>>
>>         ---------------------------------------------------------------------
>>         To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
>>         <ma...@ws.apache.org>
>>         For additional commands, e-mail:
>>         axis-c-dev-help@ws.apache.org
>>         <ma...@ws.apache.org>
>>
>>
>
>


Re: Axis2/C 1.0.0 RC3 Released

Posted by Dushshantha Chandradasa <du...@gmail.com>.
Hi,

In the source destribution, module.xml file is missing in
axis2c-src-1.0.0\docs\docs\mod_log folder. This breaks a link in the
axis2c_manual.

Regards,
Dushshantha

On 4/20/07, Sanjaya Ratnaweera <sa...@wso2.com> wrote:
>
>  Dushshantha Chandradasa wrote:
>
> Hi,
>
> makefiles in the samples\user_guide\clients are missing in both source and
> bin destributions for win32. We have have to pack these files to help the
> user to build samples easily on windows.
>
> Fixed.
>
> Thanks
>
>      ~sanjaya
>
>
>
> regards,
> Dushshantha
>
> On 4/20/07, Samisa Abeysinghe <sa...@wso2.com> wrote:
> >
> > Apache Axis2/C Team is pleased to announce the release of Apache Axis2/C
> > version 1.0.0-RC3
> > You can download this release from
> > http://ws.apache.org/axis2/c/download.cgi
> >
> > Please test this and send in your feedback.
> >
> > Key Features
> >
> >    1. Support for one-way messaging (In-Only) and request response
> > messaging (In-Out)
> >    2. Client APIs: Easy to use service client API and more advanced
> > operation client API
> >    3. Transports supported: HTTP
> >          a. Inbuilt HTTP server called simple axis server
> >          b. Apache2 httpd module called mod_axis2 for server side
> >          c. IIS module for server side
> >          d. Client transport with ability to enable SSL support
> >          e. libcurl based client transport
> >    4. Module architecture, mechanism to extend the SOAP processing model
> >    5. WS-Addressing support, both the submission (2004/08) and final
> > (2005/08) versions, implemented as a module
> >    6. MTOM/XOP support
> >    7. AXIOM, an XML object model optimized for SOAP 1.1/1.2 messages;
> > This has complete XML infoset support
> >    8. XML parser abstraction
> >          a. Libxml2 wrapper
> >          b. Guththila pull parser support
> >    9. Both directory based and archive based deployment models for
> > deploying services and modules
> >   10. Description hierarchy providing access to static data of Axis2/C
> > runtime (configuration, service groups, services, operations and
> > messages)
> >   11. Context hierarchy providing access to dynamic Axis2/C runtime
> > information(corresponding contexts to map to each level of description
> > hierarchy)
> >   12. Message receiver abstraction
> >          a. Inbuilt raw XML message receiver
> >   13. Code generation tool for stub and skeleton generation for a given
> > WSDL (based on Java tool)
> >          a. Axis Data Binding (ADB) support
> >   14. Transport proxy support
> >   15. REST support (more POX like) using both HTTP POST and GET
> >   16. Comprehensive documentation
> >          a. Axis2/C Manual
> >
> > Major Changes Since Last Release
> >
> >    1. Many Bug Fixes
> >    2. IIS module for server side
> >    3. libcurl based client transport
> >    4. Improvements to overall API to make it more user friendly, stable
> > and binary compatible
> >    5. Transport proxy support
> >    6. Memory leak fixes
> >
> > We welcome your early feedback on this implementation.
> > Thanks for your interest in Axis2/C
> >
> > -- Apache Axis2/C Team --
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
> > For additional commands, e-mail: axis-c-dev-help@ws.apache.org
> >
> >
>
>

Re: Axis2/C 1.0.0 RC3 Released

Posted by Sanjaya Ratnaweera <sa...@wso2.com>.
Dushshantha Chandradasa wrote:
> Hi,
>
> makefiles in the samples\user_guide\clients are missing in both source 
> and bin destributions for win32. We have have to pack these files to 
> help the user to build samples easily on windows.
Fixed.

Thanks

     ~sanjaya


>
> regards,
> Dushshantha
>
> On 4/20/07, *Samisa Abeysinghe* <samisa@wso2.com 
> <ma...@wso2.com>> wrote:
>
>     Apache Axis2/C Team is pleased to announce the release of Apache
>     Axis2/C
>     version 1.0.0-RC3
>     You can download this release from
>     http://ws.apache.org/axis2/c/download.cgi
>     <http://ws.apache.org/axis2/c/download.cgi>
>
>     Please test this and send in your feedback.
>
>     Key Features
>
>        1. Support for one-way messaging (In-Only) and request response
>     messaging (In-Out)
>        2. Client APIs: Easy to use service client API and more advanced
>     operation client API
>        3. Transports supported: HTTP
>              a. Inbuilt HTTP server called simple axis server
>              b. Apache2 httpd module called mod_axis2 for server side
>              c. IIS module for server side
>              d. Client transport with ability to enable SSL support
>              e. libcurl based client transport
>        4. Module architecture, mechanism to extend the SOAP processing
>     model
>        5. WS-Addressing support, both the submission (2004/08) and final
>     (2005/08) versions, implemented as a module
>        6. MTOM/XOP support
>        7. AXIOM, an XML object model optimized for SOAP 1.1/1.2 messages;
>     This has complete XML infoset support
>        8. XML parser abstraction
>              a. Libxml2 wrapper
>              b. Guththila pull parser support
>        9. Both directory based and archive based deployment models for
>     deploying services and modules
>       10. Description hierarchy providing access to static data of
>     Axis2/C
>     runtime (configuration, service groups, services, operations and
>     messages)
>       11. Context hierarchy providing access to dynamic Axis2/C runtime
>     information(corresponding contexts to map to each level of
>     description
>     hierarchy)
>       12. Message receiver abstraction
>              a. Inbuilt raw XML message receiver
>       13. Code generation tool for stub and skeleton generation for a
>     given
>     WSDL (based on Java tool)
>              a. Axis Data Binding (ADB) support
>       14. Transport proxy support
>       15. REST support (more POX like) using both HTTP POST and GET
>       16. Comprehensive documentation
>              a. Axis2/C Manual
>
>     Major Changes Since Last Release
>
>        1. Many Bug Fixes
>        2. IIS module for server side
>        3. libcurl based client transport
>        4. Improvements to overall API to make it more user friendly,
>     stable
>     and binary compatible
>        5. Transport proxy support
>        6. Memory leak fixes
>
>     We welcome your early feedback on this implementation.
>     Thanks for your interest in Axis2/C
>
>     -- Apache Axis2/C Team --
>
>
>     ---------------------------------------------------------------------
>     To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
>     <ma...@ws.apache.org>
>     For additional commands, e-mail: axis-c-dev-help@ws.apache.org
>     <ma...@ws.apache.org>
>
>


Re: Axis2/C 1.0.0 RC3 Released

Posted by Dushshantha Chandradasa <du...@gmail.com>.
Hi,

makefiles in the samples\user_guide\clients are missing in both source and
bin destributions for win32. We have have to pack these files to help the
user to build samples easily on windows.

regards,
Dushshantha

On 4/20/07, Samisa Abeysinghe <sa...@wso2.com> wrote:
>
> Apache Axis2/C Team is pleased to announce the release of Apache Axis2/C
> version 1.0.0-RC3
> You can download this release from
> http://ws.apache.org/axis2/c/download.cgi
>
> Please test this and send in your feedback.
>
> Key Features
>
>    1. Support for one-way messaging (In-Only) and request response
> messaging (In-Out)
>    2. Client APIs: Easy to use service client API and more advanced
> operation client API
>    3. Transports supported: HTTP
>          a. Inbuilt HTTP server called simple axis server
>          b. Apache2 httpd module called mod_axis2 for server side
>          c. IIS module for server side
>          d. Client transport with ability to enable SSL support
>          e. libcurl based client transport
>    4. Module architecture, mechanism to extend the SOAP processing model
>    5. WS-Addressing support, both the submission (2004/08) and final
> (2005/08) versions, implemented as a module
>    6. MTOM/XOP support
>    7. AXIOM, an XML object model optimized for SOAP 1.1/1.2 messages;
> This has complete XML infoset support
>    8. XML parser abstraction
>          a. Libxml2 wrapper
>          b. Guththila pull parser support
>    9. Both directory based and archive based deployment models for
> deploying services and modules
>   10. Description hierarchy providing access to static data of Axis2/C
> runtime (configuration, service groups, services, operations and messages)
>   11. Context hierarchy providing access to dynamic Axis2/C runtime
> information(corresponding contexts to map to each level of description
> hierarchy)
>   12. Message receiver abstraction
>          a. Inbuilt raw XML message receiver
>   13. Code generation tool for stub and skeleton generation for a given
> WSDL (based on Java tool)
>          a. Axis Data Binding (ADB) support
>   14. Transport proxy support
>   15. REST support (more POX like) using both HTTP POST and GET
>   16. Comprehensive documentation
>          a. Axis2/C Manual
>
> Major Changes Since Last Release
>
>    1. Many Bug Fixes
>    2. IIS module for server side
>    3. libcurl based client transport
>    4. Improvements to overall API to make it more user friendly, stable
> and binary compatible
>    5. Transport proxy support
>    6. Memory leak fixes
>
> We welcome your early feedback on this implementation.
> Thanks for your interest in Axis2/C
>
> -- Apache Axis2/C Team --
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
> For additional commands, e-mail: axis-c-dev-help@ws.apache.org
>
>

Re: Axis2/C 1.0.0 RC3 Released

Posted by Samisa Abeysinghe <sa...@wso2.com>.
Dinesh Premalal wrote:
> Hi,
>
>   seems in RC3, axiom/test/resources directory missing. Please have a
>   look.
>   
Fixed.

Samisa...

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Re: release

Posted by Dinesh Premalal <xy...@gmail.com>.
"Jim Seipp" <Ji...@avid.com> writes:

> Hi,
>
> Can you please tell me when RC4 or the final release of Axis2C 1.0 is
> available?

Initially It was planned to release (Axis2 1.0) around April 30th,
2007. But there can be little differences. Later the release date,more
stable the code ;)

thanks,
Dinesh

-- 
Dinesh Premalal
dinesh@wso2.com
WSO2, Inc.; http://www.wso2.com/
GPG Key ID : A255955C
GPG Key Finger Print : C481 E5D4 C27E DC34 9257  0229 4F44 266E A255 955C

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


release

Posted by Jim Seipp <Ji...@avid.com>.
Hi,

Can you please tell me when RC4 or the final release of Axis2C 1.0 is
available?

Thanks,

Jim


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Re: Axis2/C 1.0.0 RC3 Released

Posted by Dinesh Premalal <xy...@gmail.com>.
Hi,

  seems in RC3, axiom/test/resources directory missing. Please have a
  look.

thanks,
Dinesh
        
Samisa Abeysinghe <sa...@wso2.com> writes:

> Apache Axis2/C Team is pleased to announce the release of Apache
> Axis2/C version 1.0.0-RC3
> You can download this release from
> http://ws.apache.org/axis2/c/download.cgi
>
> Please test this and send in your feedback.
>
> Key Features
>
>   1. Support for one-way messaging (In-Only) and request response
> messaging (In-Out)
>   2. Client APIs: Easy to use service client API and more advanced
> operation client API
>   3. Transports supported: HTTP
>         a. Inbuilt HTTP server called simple axis server
>         b. Apache2 httpd module called mod_axis2 for server side
>         c. IIS module for server side
>         d. Client transport with ability to enable SSL support
>         e. libcurl based client transport
>   4. Module architecture, mechanism to extend the SOAP processing model
>   5. WS-Addressing support, both the submission (2004/08) and final
> (2005/08) versions, implemented as a module
>   6. MTOM/XOP support
>   7. AXIOM, an XML object model optimized for SOAP 1.1/1.2 messages;
> This has complete XML infoset support
>   8. XML parser abstraction
>         a. Libxml2 wrapper
>         b. Guththila pull parser support
>   9. Both directory based and archive based deployment models for
> deploying services and modules
>  10. Description hierarchy providing access to static data of Axis2/C
> runtime (configuration, service groups, services, operations and
> messages)
>  11. Context hierarchy providing access to dynamic Axis2/C runtime
> information(corresponding contexts to map to each level of description
> hierarchy)
>  12. Message receiver abstraction
>         a. Inbuilt raw XML message receiver
>  13. Code generation tool for stub and skeleton generation for a given
> WSDL (based on Java tool)
>         a. Axis Data Binding (ADB) support
>  14. Transport proxy support
>  15. REST support (more POX like) using both HTTP POST and GET
>  16. Comprehensive documentation
>         a. Axis2/C Manual
>
> Major Changes Since Last Release
>
>   1. Many Bug Fixes
>   2. IIS module for server side
>   3. libcurl based client transport
>   4. Improvements to overall API to make it more user friendly, stable
> and binary compatible
>   5. Transport proxy support
>   6. Memory leak fixes  
>
> We welcome your early feedback on this implementation.
> Thanks for your interest in Axis2/C
>
> -- Apache Axis2/C Team --
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
> For additional commands, e-mail: axis-c-dev-help@ws.apache.org
>

-- 
Dinesh Premalal
dinesh@wso2.com
WSO2, Inc.; http://www.wso2.com/
GPG Key ID : A255955C
GPG Key Finger Print : C481 E5D4 C27E DC34 9257  0229 4F44 266E A255 955C

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Re: Axis2/C 1.0.0 RC3 Released

Posted by Samisa Abeysinghe <sa...@wso2.com>.
Download link is http://people.apache.org/~samisa/release/1.0.0/RC3/

Thanks,
Samisa...

Samisa Abeysinghe wrote:
> Apache Axis2/C Team is pleased to announce the release of Apache 
> Axis2/C version 1.0.0-RC3
> You can download this release from
> http://ws.apache.org/axis2/c/download.cgi
>
> Please test this and send in your feedback.
>
> Key Features
>
>   1. Support for one-way messaging (In-Only) and request response 
> messaging (In-Out)
>   2. Client APIs: Easy to use service client API and more advanced 
> operation client API
>   3. Transports supported: HTTP
>         a. Inbuilt HTTP server called simple axis server
>         b. Apache2 httpd module called mod_axis2 for server side
>         c. IIS module for server side
>         d. Client transport with ability to enable SSL support
>         e. libcurl based client transport
>   4. Module architecture, mechanism to extend the SOAP processing model
>   5. WS-Addressing support, both the submission (2004/08) and final 
> (2005/08) versions, implemented as a module
>   6. MTOM/XOP support
>   7. AXIOM, an XML object model optimized for SOAP 1.1/1.2 messages; 
> This has complete XML infoset support
>   8. XML parser abstraction
>         a. Libxml2 wrapper
>         b. Guththila pull parser support
>   9. Both directory based and archive based deployment models for 
> deploying services and modules
>  10. Description hierarchy providing access to static data of Axis2/C 
> runtime (configuration, service groups, services, operations and 
> messages)
>  11. Context hierarchy providing access to dynamic Axis2/C runtime 
> information(corresponding contexts to map to each level of description 
> hierarchy)
>  12. Message receiver abstraction
>         a. Inbuilt raw XML message receiver
>  13. Code generation tool for stub and skeleton generation for a given 
> WSDL (based on Java tool)
>         a. Axis Data Binding (ADB) support
>  14. Transport proxy support
>  15. REST support (more POX like) using both HTTP POST and GET
>  16. Comprehensive documentation
>         a. Axis2/C Manual
>
> Major Changes Since Last Release
>
>   1. Many Bug Fixes
>   2. IIS module for server side
>   3. libcurl based client transport
>   4. Improvements to overall API to make it more user friendly, stable 
> and binary compatible
>   5. Transport proxy support
>   6. Memory leak fixes 
> We welcome your early feedback on this implementation.
> Thanks for your interest in Axis2/C
>
> -- Apache Axis2/C Team --
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: axis-c-user-unsubscribe@ws.apache.org
> For additional commands, e-mail: axis-c-user-help@ws.apache.org
>
>


-- 
Samisa Abeysinghe : http://www.wso2.org/ (WSO2 Oxygen Tank - Web Services Developers' Portal)


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-user-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-user-help@ws.apache.org


Re: Axis2/C 1.0.0 RC3 Released

Posted by Samisa Abeysinghe <sa...@wso2.com>.
Download link is http://people.apache.org/~samisa/release/1.0.0/RC3/

Thanks,
Samisa...

Samisa Abeysinghe wrote:
> Apache Axis2/C Team is pleased to announce the release of Apache 
> Axis2/C version 1.0.0-RC3
> You can download this release from
> http://ws.apache.org/axis2/c/download.cgi
>
> Please test this and send in your feedback.
>
> Key Features
>
>   1. Support for one-way messaging (In-Only) and request response 
> messaging (In-Out)
>   2. Client APIs: Easy to use service client API and more advanced 
> operation client API
>   3. Transports supported: HTTP
>         a. Inbuilt HTTP server called simple axis server
>         b. Apache2 httpd module called mod_axis2 for server side
>         c. IIS module for server side
>         d. Client transport with ability to enable SSL support
>         e. libcurl based client transport
>   4. Module architecture, mechanism to extend the SOAP processing model
>   5. WS-Addressing support, both the submission (2004/08) and final 
> (2005/08) versions, implemented as a module
>   6. MTOM/XOP support
>   7. AXIOM, an XML object model optimized for SOAP 1.1/1.2 messages; 
> This has complete XML infoset support
>   8. XML parser abstraction
>         a. Libxml2 wrapper
>         b. Guththila pull parser support
>   9. Both directory based and archive based deployment models for 
> deploying services and modules
>  10. Description hierarchy providing access to static data of Axis2/C 
> runtime (configuration, service groups, services, operations and 
> messages)
>  11. Context hierarchy providing access to dynamic Axis2/C runtime 
> information(corresponding contexts to map to each level of description 
> hierarchy)
>  12. Message receiver abstraction
>         a. Inbuilt raw XML message receiver
>  13. Code generation tool for stub and skeleton generation for a given 
> WSDL (based on Java tool)
>         a. Axis Data Binding (ADB) support
>  14. Transport proxy support
>  15. REST support (more POX like) using both HTTP POST and GET
>  16. Comprehensive documentation
>         a. Axis2/C Manual
>
> Major Changes Since Last Release
>
>   1. Many Bug Fixes
>   2. IIS module for server side
>   3. libcurl based client transport
>   4. Improvements to overall API to make it more user friendly, stable 
> and binary compatible
>   5. Transport proxy support
>   6. Memory leak fixes 
> We welcome your early feedback on this implementation.
> Thanks for your interest in Axis2/C
>
> -- Apache Axis2/C Team --
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: axis-c-user-unsubscribe@ws.apache.org
> For additional commands, e-mail: axis-c-user-help@ws.apache.org
>
>


-- 
Samisa Abeysinghe : http://www.wso2.org/ (WSO2 Oxygen Tank - Web Services Developers' Portal)


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Axis2/C 1.0.0 RC3 Released

Posted by Samisa Abeysinghe <sa...@wso2.com>.
Apache Axis2/C Team is pleased to announce the release of Apache Axis2/C 
version 1.0.0-RC3
You can download this release from
http://ws.apache.org/axis2/c/download.cgi

Please test this and send in your feedback.

Key Features

   1. Support for one-way messaging (In-Only) and request response 
messaging (In-Out)
   2. Client APIs: Easy to use service client API and more advanced 
operation client API
   3. Transports supported: HTTP
         a. Inbuilt HTTP server called simple axis server
         b. Apache2 httpd module called mod_axis2 for server side
         c. IIS module for server side
         d. Client transport with ability to enable SSL support
         e. libcurl based client transport
   4. Module architecture, mechanism to extend the SOAP processing model
   5. WS-Addressing support, both the submission (2004/08) and final 
(2005/08) versions, implemented as a module
   6. MTOM/XOP support
   7. AXIOM, an XML object model optimized for SOAP 1.1/1.2 messages; 
This has complete XML infoset support
   8. XML parser abstraction
         a. Libxml2 wrapper
         b. Guththila pull parser support
   9. Both directory based and archive based deployment models for 
deploying services and modules
  10. Description hierarchy providing access to static data of Axis2/C 
runtime (configuration, service groups, services, operations and messages)
  11. Context hierarchy providing access to dynamic Axis2/C runtime 
information(corresponding contexts to map to each level of description 
hierarchy)
  12. Message receiver abstraction
         a. Inbuilt raw XML message receiver
  13. Code generation tool for stub and skeleton generation for a given 
WSDL (based on Java tool)
         a. Axis Data Binding (ADB) support
  14. Transport proxy support
  15. REST support (more POX like) using both HTTP POST and GET
  16. Comprehensive documentation
         a. Axis2/C Manual

Major Changes Since Last Release

   1. Many Bug Fixes
   2. IIS module for server side
   3. libcurl based client transport
   4. Improvements to overall API to make it more user friendly, stable 
and binary compatible
   5. Transport proxy support
   6. Memory leak fixes  

We welcome your early feedback on this implementation.
Thanks for your interest in Axis2/C

-- Apache Axis2/C Team --


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-user-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-user-help@ws.apache.org


Re: Axis2/C 1.0.0 RC2 Released

Posted by Samisa Abeysinghe <sa...@wso2.com>.
Dumindu Pallewela wrote:
> On a second thought, including ssl transport in the binary 
> distribution leads
> to a dependency on  openssl, even if the user does not need ssl 
> transport support.
>
> So I think it is best to leave it for the user to build from the 
> source if he needs ssl.
+1 for SSL only with source.

Samisa...

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Re: Axis2/C 1.0.0 RC2 Released

Posted by Dumindu Pallewela <du...@wso2.com>.
On a second thought, including ssl transport in the binary distribution 
leads
to a dependency on  openssl, even if the user does not need ssl 
transport support.

So I think it is best to leave it for the user to build from the source 
if he needs ssl.

Thanks,
Dumindu.

Dumindu Pallewela wrote:
> Hi,
>
> I think since we have a working ssl transport, we can have it included 
> in the bin distribution.
>
> Dumindu.
>
> Samisa Abeysinghe wrote:
>> Hi All,
>>   I have packaged and uploaded 1.0.0 RC2 at 
>> http://people.apache.org/~samisa/release/1.0.0/RC2/
>>
>>   This 1.0.0 RC2 release is far more stable than RC1 and far more 
>> close to 1.0.0 final release.
>>   I have updated all the documents and text files to reflect latest 
>> structure and API changes.  Minor API changes were also done to 
>> improve usability.
>>     Please download, test and send in your feedback.
>>
>> Thanks,
>> Samisa...
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
>> For additional commands, e-mail: axis-c-dev-help@ws.apache.org
>>
>>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
> For additional commands, e-mail: axis-c-dev-help@ws.apache.org
>
>


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Re: Axis2/C 1.0.0 RC2 Released

Posted by Dumindu Pallewela <du...@wso2.com>.
Hi,

I think since we have a working ssl transport, we can have it included 
in the bin distribution.

Dumindu.

Samisa Abeysinghe wrote:
> Hi All,
>   I have packaged and uploaded 1.0.0 RC2 at 
> http://people.apache.org/~samisa/release/1.0.0/RC2/
>
>   This 1.0.0 RC2 release is far more stable than RC1 and far more 
> close to 1.0.0 final release.
>   I have updated all the documents and text files to reflect latest 
> structure and API changes.  Minor API changes were also done to 
> improve usability.
>     Please download, test and send in your feedback.
>
> Thanks,
> Samisa...
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
> For additional commands, e-mail: axis-c-dev-help@ws.apache.org
>
>


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Re: Axis2/C 1.0.0 RC2 Released

Posted by Samisa Abeysinghe <sa...@wso2.com>.
Dushshantha Chandradasa wrote:
> Hi,
>
> TCPMon tool is not packed with binary destribution of RC2. We have to 
> pack this as well.
There was a bug in Win32 makefile. Many thanks for pointing this out. I 
have fixed in now in the SVN.

Samisa...


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Re: Axis2/C 1.0.0 RC2 Released

Posted by Dushshantha Chandradasa <du...@gmail.com>.
Hi,

TCPMon tool is not packed with binary destribution of RC2. We have to pack
this as well.

Dushshantha

On 4/16/07, Samisa Abeysinghe <sa...@wso2.com> wrote:
>
> Hi All,
>    I have packaged and uploaded 1.0.0 RC2 at
> http://people.apache.org/~samisa/release/1.0.0/RC2/
>
>    This 1.0.0 RC2 release is far more stable than RC1 and far more close
> to 1.0.0 final release.
>    I have updated all the documents and text files to reflect latest
> structure and API changes.  Minor API changes were also done to improve
> usability.
>
>    Please download, test and send in your feedback.
>
> Thanks,
> Samisa...
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
> For additional commands, e-mail: axis-c-dev-help@ws.apache.org
>
>

Axis2/C 1.0.0 RC3 Released

Posted by Samisa Abeysinghe <sa...@wso2.com>.
Apache Axis2/C Team is pleased to announce the release of Apache Axis2/C 
version 1.0.0-RC3
You can download this release from
http://ws.apache.org/axis2/c/download.cgi

Please test this and send in your feedback.

Key Features

   1. Support for one-way messaging (In-Only) and request response 
messaging (In-Out)
   2. Client APIs: Easy to use service client API and more advanced 
operation client API
   3. Transports supported: HTTP
         a. Inbuilt HTTP server called simple axis server
         b. Apache2 httpd module called mod_axis2 for server side
         c. IIS module for server side
         d. Client transport with ability to enable SSL support
         e. libcurl based client transport
   4. Module architecture, mechanism to extend the SOAP processing model
   5. WS-Addressing support, both the submission (2004/08) and final 
(2005/08) versions, implemented as a module
   6. MTOM/XOP support
   7. AXIOM, an XML object model optimized for SOAP 1.1/1.2 messages; 
This has complete XML infoset support
   8. XML parser abstraction
         a. Libxml2 wrapper
         b. Guththila pull parser support
   9. Both directory based and archive based deployment models for 
deploying services and modules
  10. Description hierarchy providing access to static data of Axis2/C 
runtime (configuration, service groups, services, operations and messages)
  11. Context hierarchy providing access to dynamic Axis2/C runtime 
information(corresponding contexts to map to each level of description 
hierarchy)
  12. Message receiver abstraction
         a. Inbuilt raw XML message receiver
  13. Code generation tool for stub and skeleton generation for a given 
WSDL (based on Java tool)
         a. Axis Data Binding (ADB) support
  14. Transport proxy support
  15. REST support (more POX like) using both HTTP POST and GET
  16. Comprehensive documentation
         a. Axis2/C Manual

Major Changes Since Last Release

   1. Many Bug Fixes
   2. IIS module for server side
   3. libcurl based client transport
   4. Improvements to overall API to make it more user friendly, stable 
and binary compatible
   5. Transport proxy support
   6. Memory leak fixes  

We welcome your early feedback on this implementation.
Thanks for your interest in Axis2/C

-- Apache Axis2/C Team --


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Axis2/C 1.0.0 RC2 Released

Posted by Samisa Abeysinghe <sa...@wso2.com>.
Hi All,
   I have packaged and uploaded 1.0.0 RC2 at 
http://people.apache.org/~samisa/release/1.0.0/RC2/

   This 1.0.0 RC2 release is far more stable than RC1 and far more close 
to 1.0.0 final release.
   I have updated all the documents and text files to reflect latest 
structure and API changes.  Minor API changes were also done to improve 
usability.
   
   Please download, test and send in your feedback.

Thanks,
Samisa...

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Axis2/C 1.0.0 RC1

Posted by Samisa Abeysinghe <sa...@wso2.com>.
Hi All,
    I have packaged and hosted 1.0.0 RC1 at 
http://people.apache.org/~samisa/release/1.0.0/

    The main purpose of this RC1 release is to set the platform for 
functional testing for 1.0.0 release.
    There are some document updates and bug fixes pending. Still I hope 
this RC1 packaging would be useful to test the API and samples.

    Please download, test and send in your feedback.

Thanks,
Samisa...

-- 
Samisa Abeysinghe : http://www.wso2.org/ (WSO2 Oxygen Tank - Web Services Developers' Portal)


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Re: echo client in java

Posted by Kaushalye Kapuruge <ka...@wso2.com>.
Hi,
Following tutorial would do. :)
"Hello World with Apache Axis2" - http://wso2.org/library/95
Cheers,
Kau

Dinesh Premalal wrote:
> Hi Jim,
>
> "Jim Seipp" <Ji...@avid.com> writes:
>
>   
>> Hi Dinish,
>>
>> I have the Echo Test Server program compiled in Axis/C
>>
>> I can test it using the Echo Client program compiled in Axis/C
>>
>> Is there an example or can you send me a simple Java program that does
>> exactly what the Axis/C Echo client does so that I can test if the SOAP
>> interface is working in java also?
>>     
> My sense is , there is nothing much to do to write a Java client. IIRC
> there was a echo example. But I don't remember where it was.
> You will be able to find it somewhere in here [1].
>
> thanks,
> Dinesh
>
> [1].http://ws.apache.org/axis2/index.html
>
>   


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Re: makefile

Posted by Samisa Abeysinghe <sa...@wso2.com>.
Jim Seipp wrote:

>Hi Dinesh,
>
>Can you please tell me where I find the files to download and reference
>in the build makefile? I am not sure where these files originate.
>
>OPENSSL_BIN_DIR = E:\OpenSSL
>LIBCURL_BIN_DIR = E:\libcurl-7.15.1-msvc-win32-ssl-0.9.8a-zlib-1.2.3
>  
>
OpenSSL and libcurl are optional. You do not need them to build the 
basic default setup.

Samisa...


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


makefile

Posted by Jim Seipp <Ji...@avid.com>.
Hi Dinesh,

Can you please tell me where I find the files to download and reference
in the build makefile? I am not sure where these files originate.

OPENSSL_BIN_DIR = E:\OpenSSL
LIBCURL_BIN_DIR = E:\libcurl-7.15.1-msvc-win32-ssl-0.9.8a-zlib-1.2.3

Thanks,

Jim

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Re: trying to build the Axis2/c using the buils win32 makefile

Posted by Samisa Abeysinghe <sa...@wso2.com>.
Jim Seipp wrote:

>Hi Samisa,
>
>I cannot locate the file "vcvars32.bat" anywhere.
>Where do I locate this batch file? What is it user for?
>
>cl.exe is version 14.00.40310.39 for IA-64 (Microsoft compiler)
>  
>
It is a Microsoft Visual Studio tool for setting environment varibles on 
command line to help use command line tools.

I have is in "C:\Program Files\Microsoft Visual Studio 8\VC\bin" on my 
machine.
Based your installation, you should have this VC\bi filder of the 
installation directory.

Samisa...



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


RE: trying to build the Axis2/c using the buils win32 makefile

Posted by Jim Seipp <Ji...@avid.com>.
Hi Samisa,

I cannot locate the file "vcvars32.bat" anywhere.
Where do I locate this batch file? What is it user for?

cl.exe is version 14.00.40310.39 for IA-64 (Microsoft compiler)

Thanks,

Jim

-----Original Message-----
From: Samisa Abeysinghe [mailto:samisa@wso2.com] 
Sent: Thursday, April 05, 2007 7:18 PM
To: Apache AXIS C Developers List
Subject: Re: trying to build the Axis2/c using the buils win32 makefile

Jim Seipp wrote:

>Hi,
>
>I am attempting to build the Axis2/C library files using the build
win32
>makefile and I am getting unresolved external variable errors from the
>linker.
>
>Any ideas?
>  
>
What is the version you are trying to build? What is the VC version? And

I hope you ran vcvars32.bat before running nmake.

Samisa...



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Re: trying to build the Axis2/c using the buils win32 makefile

Posted by Samisa Abeysinghe <sa...@wso2.com>.
Jim Seipp wrote:

>Hi,
>
>I am attempting to build the Axis2/C library files using the build win32
>makefile and I am getting unresolved external variable errors from the
>linker.
>
>Any ideas?
>  
>
What is the version you are trying to build? What is the VC version? And 
I hope you ran vcvars32.bat before running nmake.

Samisa...



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


trying to build the Axis2/c using the buils win32 makefile

Posted by Jim Seipp <Ji...@avid.com>.
Hi,

I am attempting to build the Axis2/C library files using the build win32
makefile and I am getting unresolved external variable errors from the
linker.

Any ideas?

Here are a few of the errors:

unzip.obj : error LNK2001: unresolved external symbol .malloc
allocator.obj : error LNK2019: unresolved external symbol .malloc
referenced in function .axis2_allocator_init
archive_extract.obj : error LNK2001: unresolved external symbol .malloc
dir_windows.obj : error LNK2001: unresolved external symbol .malloc
iowin32.obj : error LNK2001: unresolved external symbol .malloc
allocator.obj : error LNK2019: unresolved external symbol .realloc
referenced in function .axis2_allocator_realloc_impl
dir_windows.obj : error LNK2001: unresolved external symbol .realloc
unzip.obj : error LNK2001: unresolved external symbol .free
allocator.obj : error LNK2019: unresolved external symbol .free
referenced in function .axis2_allocator_free_impl

Thanks,

Jim

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


RE: echo client in java

Posted by Jim Seipp <Ji...@avid.com>.
Hi Dinesh,

I am getting errors trying to compile the source files you sent me for
the codegen.zip

Most of the files compile but
axis2_skel_WSDLInteropTestDocLitService.c 
and 
axis2_svc_skel_WSDLInteropTestDocLitService.c
get compile errors.
I am using Visual studio 7

Any Ideas?

Thanks,

Jim

------ Rebuild All started: Project: XenaWS, Configuration: Debug Win32
------

Deleting intermediate files and output files for project 'XenaWS',
configuration 'Debug|Win32'.
Compiling...
axis2_skel_WSDLInteropTestDocLitService.c
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(39) : error C2146: syntax error : missing ')' before identifier
'param0'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(39) : error C2144: syntax error : '<Unknown>' should be
preceded by '<Unknown>'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(39) : error C2144: syntax error : '<Unknown>' should be
preceded by '<Unknown>'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(39) : error C2143: syntax error : missing ')' before
'identifier'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(39) : error C2081: 'echoVoid' : name in formal parameter list
illegal
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(39) : error C2061: syntax error : identifier 'param0'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(39) : error C2059: syntax error : ';'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(39) : error C2059: syntax error : ')'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(50) : error C2146: syntax error : missing ')' before identifier
'param2'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(50) : error C2144: syntax error : '<Unknown>' should be
preceded by '<Unknown>'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(50) : error C2144: syntax error : '<Unknown>' should be
preceded by '<Unknown>'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(50) : error C2143: syntax error : missing ')' before
'identifier'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(50) : error C2081: 'echoStringArray' : name in formal parameter
list illegal
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(50) : error C2061: syntax error : identifier 'param2'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(50) : error C2059: syntax error : ';'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(50) : error C2059: syntax error : ')'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(61) : error C2146: syntax error : missing ')' before identifier
'param4'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(61) : error C2144: syntax error : '<Unknown>' should be
preceded by '<Unknown>'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(61) : error C2144: syntax error : '<Unknown>' should be
preceded by '<Unknown>'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(61) : error C2143: syntax error : missing ')' before
'identifier'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(61) : error C2081: 'echoStruct' : name in formal parameter list
illegal
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(61) : error C2061: syntax error : identifier 'param4'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(61) : error C2059: syntax error : ';'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(61) : error C2059: syntax error : ')'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(72) : error C2146: syntax error : missing ')' before identifier
'param6'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(72) : error C2144: syntax error : '<Unknown>' should be
preceded by '<Unknown>'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(72) : error C2144: syntax error : '<Unknown>' should be
preceded by '<Unknown>'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(72) : error C2143: syntax error : missing ')' before
'identifier'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(72) : error C2081: 'echoString' : name in formal parameter list
illegal
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(72) : error C2061: syntax error : identifier 'param6'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(72) : error C2059: syntax error : ';'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(72) : error C2059: syntax error : ')'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.c(23) : error C2146: syntax error : missing ')' before identifier
'param0'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.c(23) : error C2144: syntax error : '<Unknown>' should be
preceded by '<Unknown>'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.c(23) : error C2144: syntax error : '<Unknown>' should be
preceded by '<Unknown>'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.c(23) : error C2143: syntax error : missing ')' before
'identifier'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.c(23) : error C2081: 'echoVoid' : name in formal parameter list
illegal
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.c(23) : error C2061: syntax error : identifier 'param0'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.c(23) : error C2059: syntax error : ';'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.c(23) : error C2059: syntax error : ')'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.c(24) : error C2449: found '{' at file scope (missing function
header?)
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.c(27) : error C2059: syntax error : '}'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.c(52) : error C2146: syntax error : missing ')' before identifier
'param4'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.c(52) : error C2144: syntax error : '<Unknown>' should be
preceded by '<Unknown>'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.c(52) : error C2144: syntax error : '<Unknown>' should be
preceded by '<Unknown>'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.c(52) : error C2143: syntax error : missing ')' before
'identifier'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.c(52) : error C2081: 'echoStruct' : name in formal parameter list
illegal
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.c(52) : error C2061: syntax error : identifier 'param4'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.c(52) : error C2059: syntax error : ';'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.c(52) : error C2059: syntax error : ')'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.c(53) : error C2449: found '{' at file scope (missing function
header?)
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.c(56) : error C2059: syntax error : '}'
axis2_svc_skel_WSDLInteropTestDocLitService.c
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(39) : error C2146: syntax error : missing ')' before identifier
'param0'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(39) : error C2144: syntax error : '<Unknown>' should be
preceded by '<Unknown>'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(39) : error C2144: syntax error : '<Unknown>' should be
preceded by '<Unknown>'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(39) : error C2143: syntax error : missing ')' before
'identifier'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(39) : error C2081: 'echoVoid' : name in formal parameter list
illegal
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(39) : error C2061: syntax error : identifier 'param0'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(39) : error C2059: syntax error : ';'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(39) : error C2059: syntax error : ')'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(50) : error C2146: syntax error : missing ')' before identifier
'param2'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(50) : error C2144: syntax error : '<Unknown>' should be
preceded by '<Unknown>'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(50) : error C2144: syntax error : '<Unknown>' should be
preceded by '<Unknown>'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(50) : error C2143: syntax error : missing ')' before
'identifier'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(50) : error C2081: 'echoStringArray' : name in formal parameter
list illegal
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(50) : error C2061: syntax error : identifier 'param2'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(50) : error C2059: syntax error : ';'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(50) : error C2059: syntax error : ')'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(61) : error C2146: syntax error : missing ')' before identifier
'param4'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(61) : error C2144: syntax error : '<Unknown>' should be
preceded by '<Unknown>'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(61) : error C2144: syntax error : '<Unknown>' should be
preceded by '<Unknown>'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(61) : error C2143: syntax error : missing ')' before
'identifier'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(61) : error C2081: 'echoStruct' : name in formal parameter list
illegal
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(61) : error C2061: syntax error : identifier 'param4'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(61) : error C2059: syntax error : ';'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(61) : error C2059: syntax error : ')'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(72) : error C2146: syntax error : missing ')' before identifier
'param6'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(72) : error C2144: syntax error : '<Unknown>' should be
preceded by '<Unknown>'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(72) : error C2144: syntax error : '<Unknown>' should be
preceded by '<Unknown>'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(72) : error C2143: syntax error : missing ')' before
'identifier'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(72) : error C2081: 'echoString' : name in formal parameter list
illegal
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(72) : error C2061: syntax error : identifier 'param6'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(72) : error C2059: syntax error : ';'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_skel_WSDLInteropTestDocLitS
ervice.h(72) : error C2059: syntax error : ')'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_svc_skel_WSDLInteropTestDoc
LitService.c(134) : error C2065: 'echoVoid' : undeclared identifier
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_svc_skel_WSDLInteropTestDoc
LitService.c(134) : error C2146: syntax error : missing ';' before
identifier 'input_val1_1'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_svc_skel_WSDLInteropTestDoc
LitService.c(134) : error C2144: syntax error : '<Unknown>' should be
preceded by '<Unknown>'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_svc_skel_WSDLInteropTestDoc
LitService.c(134) : error C2144: syntax error : '<Unknown>' should be
preceded by '<Unknown>'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_svc_skel_WSDLInteropTestDoc
LitService.c(134) : error C2143: syntax error : missing ';' before
'identifier'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_svc_skel_WSDLInteropTestDoc
LitService.c(134) : error C2065: 'input_val1_1' : undeclared identifier
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_svc_skel_WSDLInteropTestDoc
LitService.c(136) : error C2275: 'axis2_echoStringArrayResponse_t' :
illegal use of this type as an expression
        c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_echoStringArrayResponse.h(3
2) : see declaration of 'axis2_echoStringArrayResponse_t'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_svc_skel_WSDLInteropTestDoc
LitService.c(136) : error C2065: 'ret_val2' : undeclared identifier
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_svc_skel_WSDLInteropTestDoc
LitService.c(137) : error C2065: 'echoStringArray' : undeclared
identifier
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_svc_skel_WSDLInteropTestDoc
LitService.c(137) : error C2146: syntax error : missing ';' before
identifier 'input_val2_1'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_svc_skel_WSDLInteropTestDoc
LitService.c(137) : error C2144: syntax error : '<Unknown>' should be
preceded by '<Unknown>'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_svc_skel_WSDLInteropTestDoc
LitService.c(137) : error C2144: syntax error : '<Unknown>' should be
preceded by '<Unknown>'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_svc_skel_WSDLInteropTestDoc
LitService.c(137) : error C2143: syntax error : missing ';' before
'identifier'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_svc_skel_WSDLInteropTestDoc
LitService.c(137) : error C2065: 'input_val2_1' : undeclared identifier
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_svc_skel_WSDLInteropTestDoc
LitService.c(139) : error C2275: 'axis2_echoStructResponse_t' : illegal
use of this type as an expression
        c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_echoStructResponse.h(32) :
see declaration of 'axis2_echoStructResponse_t'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_svc_skel_WSDLInteropTestDoc
LitService.c(139) : error C2065: 'ret_val3' : undeclared identifier
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_svc_skel_WSDLInteropTestDoc
LitService.c(140) : error C2065: 'echoStruct' : undeclared identifier
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_svc_skel_WSDLInteropTestDoc
LitService.c(140) : error C2146: syntax error : missing ';' before
identifier 'input_val3_1'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_svc_skel_WSDLInteropTestDoc
LitService.c(140) : error C2144: syntax error : '<Unknown>' should be
preceded by '<Unknown>'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_svc_skel_WSDLInteropTestDoc
LitService.c(140) : error C2144: syntax error : '<Unknown>' should be
preceded by '<Unknown>'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_svc_skel_WSDLInteropTestDoc
LitService.c(140) : error C2143: syntax error : missing ';' before
'identifier'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_svc_skel_WSDLInteropTestDoc
LitService.c(140) : error C2065: 'input_val3_1' : undeclared identifier
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_svc_skel_WSDLInteropTestDoc
LitService.c(142) : error C2275: 'axis2_echoStringResponse_t' : illegal
use of this type as an expression
        c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_echoStringResponse.h(30) :
see declaration of 'axis2_echoStringResponse_t'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_svc_skel_WSDLInteropTestDoc
LitService.c(142) : error C2065: 'ret_val4' : undeclared identifier
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_svc_skel_WSDLInteropTestDoc
LitService.c(143) : error C2065: 'echoString' : undeclared identifier
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_svc_skel_WSDLInteropTestDoc
LitService.c(143) : error C2146: syntax error : missing ';' before
identifier 'input_val4_1'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_svc_skel_WSDLInteropTestDoc
LitService.c(143) : error C2144: syntax error : '<Unknown>' should be
preceded by '<Unknown>'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_svc_skel_WSDLInteropTestDoc
LitService.c(143) : error C2144: syntax error : '<Unknown>' should be
preceded by '<Unknown>'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_svc_skel_WSDLInteropTestDoc
LitService.c(143) : error C2143: syntax error : missing ';' before
'identifier'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_svc_skel_WSDLInteropTestDoc
LitService.c(143) : error C2065: 'input_val4_1' : undeclared identifier
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_svc_skel_WSDLInteropTestDoc
LitService.c(160) : warning C4047: '=' : 'int' differs in levels of
indirection from 'axiom_node_t *'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_svc_skel_WSDLInteropTestDoc
LitService.c(161) : warning C4013:
'axis2_skel_WSDLInteropTestDocLitService_echoVoid' undefined; assuming
extern returning int
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_svc_skel_WSDLInteropTestDoc
LitService.c(162) : warning C4047: '=' : 'axis2_echoVoidResponse_t *'
differs in levels of indirection from 'int'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_svc_skel_WSDLInteropTestDoc
LitService.c(170) : warning C4133: '=' : incompatible types - from
'axis2_echoVoidResponse_t *' to 'axiom_node_t *'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_svc_skel_WSDLInteropTestDoc
LitService.c(183) : warning C4047: '=' : 'int' differs in levels of
indirection from 'axiom_node_t *'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_svc_skel_WSDLInteropTestDoc
LitService.c(184) : warning C4013:
'axis2_skel_WSDLInteropTestDocLitService_echoStringArray' undefined;
assuming extern returning int
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_svc_skel_WSDLInteropTestDoc
LitService.c(186) : warning C4047: '==' : 'void *' differs in levels of
indirection from 'int'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_svc_skel_WSDLInteropTestDoc
LitService.c(193) : warning C4047: '=' : 'axiom_node_t *' differs in
levels of indirection from 'int'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_svc_skel_WSDLInteropTestDoc
LitService.c(206) : warning C4047: '=' : 'int' differs in levels of
indirection from 'axiom_node_t *'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_svc_skel_WSDLInteropTestDoc
LitService.c(207) : warning C4013:
'axis2_skel_WSDLInteropTestDocLitService_echoStruct' undefined; assuming
extern returning int
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_svc_skel_WSDLInteropTestDoc
LitService.c(209) : warning C4047: '==' : 'void *' differs in levels of
indirection from 'int'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_svc_skel_WSDLInteropTestDoc
LitService.c(216) : warning C4047: '=' : 'axiom_node_t *' differs in
levels of indirection from 'int'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_svc_skel_WSDLInteropTestDoc
LitService.c(229) : warning C4047: '=' : 'int' differs in levels of
indirection from 'axiom_node_t *'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_svc_skel_WSDLInteropTestDoc
LitService.c(230) : warning C4013:
'axis2_skel_WSDLInteropTestDocLitService_echoString' undefined; assuming
extern returning int
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_svc_skel_WSDLInteropTestDoc
LitService.c(232) : warning C4047: '==' : 'void *' differs in levels of
indirection from 'int'
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_svc_skel_WSDLInteropTestDoc
LitService.c(239) : warning C4047: '=' : 'axiom_node_t *' differs in
levels of indirection from 'int'
axis2_SOAPStruct.c
c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\axis2_SOAPStruct.c(272) : warning
C4244: 'function' : conversion from 'double' to 'float', possible loss
of data
axis2_echoVoidResponse.c
axis2_echoVoid.c
axis2_echoStructResponse.c
axis2_echoStruct.c
axis2_echoStringResponse.c
axis2_echoStringArrayResponse.c
axis2_echoStringArray.c
axis2_echoString.c
axis2_ArrayOfstring_literal.c
Generating Code...

Build log was saved at "file://c:\Download\Apachee Access
2\Dinesh\codegen\codegen\XenaWS\XenaWS\Debug\BuildLog.htm"
XenaWS - 114 error(s), 17 warning(s)


---------------------- Done ----------------------

    Rebuild All: 0 succeeded, 1 failed, 0 skipped



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Re: deploy

Posted by Dumindu Pallewela <du...@wso2.com>.
Hi Jim,

It would be a great help for us to understand your problem if you be a
bit more verbose about the error occurred. IIUC, your echo client works
with the simple_axis_server but not when the server is deployed with 
apache2.
I'd list down a few obvious questions that comes right into my mind:

did you double check each step with what is given in the axis2 manual?
what is the output of the echo.exe?
what does the axis2 logs say?
what is the environment that you are running the server on? (eg. 
64-bit?, windows version, etc.)

Regards,
Dumindu.


Jim Seipp wrote:

> I am able to get the interface working from the client computer to the
> server computer if I use the "axis_"http_server.exe"
> If I try to deploy using Apache2 service on the server computer I cannot
> get these same test programs to run.
> These are the test programs supplied by AXIS2C (IE. echo.exe)
>
> Thanks,
>
> Jim


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


RE: deploy

Posted by Jim Seipp <Ji...@avid.com>.
I am able to get the interface working from the client computer to the
server computer if I use the "axis_"http_server.exe"
If I try to deploy using Apache2 service on the server computer I cannot
get these same test programs to run.
These are the test programs supplied by AXIS2C (IE. echo.exe)

Thanks,

Jim

-----Original Message-----
From: Supun Kamburugamuva [mailto:supun06@gmail.com] 
Sent: Friday, April 13, 2007 10:31 PM
To: Apache AXIS C Developers List
Subject: Re: deploy

Hi,
I'm not clear about your problem. Did you add the AXIS2C_HOME
environment variable and Axis2c lib directory to the PATH environment
variable.

Supun..

On 4/13/07, Jim Seipp <Ji...@avid.com> wrote:
> Hi,
>
> I am not able to deploy the AXIS2C sample DLLs
> Should this be working?
> What port should I be using?
> Is there any diagnostics I can use to determine what is occurring?
>
> Thanks,
>
> Jim
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
> For additional commands, e-mail: axis-c-dev-help@ws.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Re: deploy

Posted by Supun Kamburugamuva <su...@gmail.com>.
Hi,
I'm not clear about your problem. Did you add the AXIS2C_HOME
environment variable and Axis2c lib directory to the PATH environment
variable.

Supun..

On 4/13/07, Jim Seipp <Ji...@avid.com> wrote:
> Hi,
>
> I am not able to deploy the AXIS2C sample DLLs
> Should this be working?
> What port should I be using?
> Is there any diagnostics I can use to determine what is occurring?
>
> Thanks,
>
> Jim
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
> For additional commands, e-mail: axis-c-dev-help@ws.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Re: tomcat

Posted by Samisa Abeysinghe <sa...@wso2.com>.
Jim Seipp wrote:

>Hi Samisa,
>
>Can you send me the instructions on the Apache 2 Module?
>  
>
http://ws.apache.org/axis2/c/docs/axis2c_manual.html#apa_mod

Samisa...



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


RE: tomcat

Posted by Jim Seipp <Ji...@avid.com>.
Hi Samisa,

Can you send me the instructions on the Apache 2 Module?

Thanks,

Jim

-----Original Message-----
From: Samisa Abeysinghe [mailto:samisa@wso2.com] 
Sent: Tuesday, April 10, 2007 5:51 PM
To: Apache AXIS C Developers List
Subject: Re: tomcat

Jim Seipp wrote:

>Hi,
>
>Instead of using the "axis2_http_server.exe" server is it possible to
>use the TomCat server?
>If so can please you tell me how to set up the server to use the Axis2C
>with TomCat?
>  
>
We do  not have support to dploy with Tomcat. However we have an Apache 
2 Module.

Samisa...



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Re: tomcat

Posted by Samisa Abeysinghe <sa...@wso2.com>.
Jim Seipp wrote:

>Can you please tell me how to deploy with Apache 2?
>  
>
http://ws.apache.org/axis2/c/docs/axis2c_manual.html#apa_mod

Samisa...



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


RE: tomcat

Posted by Jim Seipp <Ji...@avid.com>.
Can you please tell me how to deploy with Apache 2?

Thanks,

Jim

-----Original Message-----
From: Samisa Abeysinghe [mailto:samisa@wso2.com] 
Sent: Tuesday, April 10, 2007 5:51 PM
To: Apache AXIS C Developers List
Subject: Re: tomcat

Jim Seipp wrote:

>Hi,
>
>Instead of using the "axis2_http_server.exe" server is it possible to
>use the TomCat server?
>If so can please you tell me how to set up the server to use the Axis2C
>with TomCat?
>  
>
We do  not have support to dploy with Tomcat. However we have an Apache 
2 Module.

Samisa...



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Re: tomcat

Posted by Samisa Abeysinghe <sa...@wso2.com>.
Jim Seipp wrote:

>Hi,
>
>Instead of using the "axis2_http_server.exe" server is it possible to
>use the TomCat server?
>If so can please you tell me how to set up the server to use the Axis2C
>with TomCat?
>  
>
We do  not have support to dploy with Tomcat. However we have an Apache 
2 Module.

Samisa...



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


tomcat

Posted by Jim Seipp <Ji...@avid.com>.
Hi,

Instead of using the "axis2_http_server.exe" server is it possible to
use the TomCat server?
If so can please you tell me how to set up the server to use the Axis2C
with TomCat?

Thanks,

Jim

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


deploy

Posted by Jim Seipp <Ji...@avid.com>.
Hi,

I am not able to deploy the AXIS2C sample DLLs
Should this be working?
What port should I be using?
Is there any diagnostics I can use to determine what is occurring?

Thanks,

Jim



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Re: libxslt.dll

Posted by Dimuthu Gamage <di...@gmail.com>.
Hi Jim,
WSDL2C.java is in
http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/

you may use the WSDL2C.sh/ .bat in the
'http://svn.apache.org/viewvc/webservices/axis2/trunk/c/tools/bin' to
run the tool

Regards
Dimuthu

On 4/11/07, Jim Seipp <Ji...@avid.com> wrote:
> Hi Samisa,
>
> I have browsed through the
>
> http://svn.apache.org/viewvc/webservices/axis2/trunk/java/
>
> and I cannot locate WSDL2C.java
>
> Can you please point me to the location for this?
>
> Thanks,
>
> Jim
>
> -----Original Message-----
> From: Samisa Abeysinghe [mailto:samisa@wso2.com]
> Sent: Tuesday, April 10, 2007 8:33 PM
> To: Apache AXIS C Developers List
> Subject: Re: libxslt.dll
>
> Jim Seipp wrote:
>
> >Can you please tell me where I may find the JAVA tool WSDL2C
> >
> >
> http://ws.apache.org/axis2/c/docs/userguide.html#WSDL2C_tool
>
> Samisa...
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
> For additional commands, e-mail: axis-c-dev-help@ws.apache.org
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
> For additional commands, e-mail: axis-c-dev-help@ws.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


RE: libxslt.dll

Posted by Jim Seipp <Ji...@avid.com>.
Hi Samisa,

I have browsed through the 

http://svn.apache.org/viewvc/webservices/axis2/trunk/java/

and I cannot locate WSDL2C.java

Can you please point me to the location for this?

Thanks,

Jim

-----Original Message-----
From: Samisa Abeysinghe [mailto:samisa@wso2.com] 
Sent: Tuesday, April 10, 2007 8:33 PM
To: Apache AXIS C Developers List
Subject: Re: libxslt.dll

Jim Seipp wrote:

>Can you please tell me where I may find the JAVA tool WSDL2C
>  
>
http://ws.apache.org/axis2/c/docs/userguide.html#WSDL2C_tool

Samisa...


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Re: libxslt.dll

Posted by Samisa Abeysinghe <sa...@wso2.com>.
Jim Seipp wrote:

>Can you please tell me where I may find the JAVA tool WSDL2C
>  
>
http://ws.apache.org/axis2/c/docs/userguide.html#WSDL2C_tool

Samisa...


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


RE: libxslt.dll

Posted by Jim Seipp <Ji...@avid.com>.
Can you please tell me where I may find the JAVA tool WSDL2C

Thanks,

Jim

-----Original Message-----
From: Samisa Abeysinghe [mailto:samisa@wso2.com] 
Sent: Monday, April 09, 2007 8:40 PM
To: Apache AXIS C Developers List
Subject: Re: libxslt.dll

Jim Seipp wrote:

>Hi,
>
>I am attempting to run "wsdl2code.exe"
>
>And I get the error message "cannot find "libxslt.dll".
>I cannot find this DLL anywhere?
>
>Can someone please tell me where to find this?
>  
>
You can download it from : http://xmlsoft.org/XSLT/

Hoeever, it is advisable to use the Java too to generate C code - C tool

lags behind Java tool in terms of fatures and bug fixes.

Samisa...



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Re: releasing handles

Posted by Samisa Abeysinghe <sa...@wso2.com>.
Jim Seipp wrote:

>Hi,
>
>I noticed that if I run the Math.exe test continually, the "handle
>count", monitored from the Windows Task Monitor, increases about 10
>handles per call to math.exe
>Eventually this causes a memory issue.
>Is this a known bug?
>  
>
Please file a bug on this in Jira - this needs to be looked into.

Samisa...



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


RE: releasing handles

Posted by Jim Seipp <Ji...@avid.com>.
Hi Nadir,

I am using Visual Studio 7.1 and I have not been successful in building
from the source tree. Is anyone else having problems building the
sources?
I am using the library files from the bin release 0.96
The handles I am referring to are displayed in the Task Monitor that is
supplied with Windows XP.
If you look at "Performance/Totals/Handles, the count continues top
increase on the server after each Math.exe call.
How do I get the current SVN snap shot?

Thanks,

Jim

-----Original Message-----
From: Nadir Amra [mailto:amra@us.ibm.com] 
Sent: Tuesday, April 10, 2007 8:21 PM
To: Apache AXIS C Developers List
Subject: Re: releasing handles

Jim,

Not sure what handles you are talking about....but there was some
problems 
with the transport that have been fixed.  You will need to build the
code 
from the latest SVN snapshot.

Nadir K. Amra


"Jim Seipp" <Ji...@avid.com> wrote on 04/10/2007 08:01:40 AM:

> Hi,
> 
> I noticed that if I run the Math.exe test continually, the "handle
> count", monitored from the Windows Task Monitor, increases about 10
> handles per call to math.exe
> Eventually this causes a memory issue.
> Is this a known bug?
> 
> Thanks,
> 
> Jim
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
> For additional commands, e-mail: axis-c-dev-help@ws.apache.org
> 


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Re: releasing handles

Posted by Nadir Amra <am...@us.ibm.com>.
Jim,

Not sure what handles you are talking about....but there was some problems 
with the transport that have been fixed.  You will need to build the code 
from the latest SVN snapshot.

Nadir K. Amra


"Jim Seipp" <Ji...@avid.com> wrote on 04/10/2007 08:01:40 AM:

> Hi,
> 
> I noticed that if I run the Math.exe test continually, the "handle
> count", monitored from the Windows Task Monitor, increases about 10
> handles per call to math.exe
> Eventually this causes a memory issue.
> Is this a known bug?
> 
> Thanks,
> 
> Jim
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
> For additional commands, e-mail: axis-c-dev-help@ws.apache.org
> 


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


releasing handles

Posted by Jim Seipp <Ji...@avid.com>.
Hi,

I noticed that if I run the Math.exe test continually, the "handle
count", monitored from the Windows Task Monitor, increases about 10
handles per call to math.exe
Eventually this causes a memory issue.
Is this a known bug?

Thanks,

Jim


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


RE: libxslt.dll

Posted by Jim Seipp <Ji...@avid.com>.
Thanks..

-----Original Message-----
From: Samisa Abeysinghe [mailto:samisa@wso2.com] 
Sent: Monday, April 09, 2007 8:40 PM
To: Apache AXIS C Developers List
Subject: Re: libxslt.dll

Jim Seipp wrote:

>Hi,
>
>I am attempting to run "wsdl2code.exe"
>
>And I get the error message "cannot find "libxslt.dll".
>I cannot find this DLL anywhere?
>
>Can someone please tell me where to find this?
>  
>
You can download it from : http://xmlsoft.org/XSLT/

Hoeever, it is advisable to use the Java too to generate C code - C tool

lags behind Java tool in terms of fatures and bug fixes.

Samisa...



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


msjava.dll

Posted by Jim Seipp <Ji...@avid.com>.
Hi,

I want to use Axis2/C with the Apache Tom Cat. 
Can someone tell me how to do this?
Do I need msjava.dll and what is this dll for and where do I find it?

Thanks,

Jim


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Re: next release

Posted by Samisa Abeysinghe <sa...@wso2.com>.
Jim Seipp wrote:

>Hi,
>
>Is there any schedule for the next/final release of Axis2?
>  
>
We hope to release 1.0.0 by the end of this month. We will have release 
candidate out hopefully by end of this week.
Anyway, I do not think 1.0.0 would be the final release - there would be 
many improvements to follow :)

Samisa...



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


next release

Posted by Jim Seipp <Ji...@avid.com>.
Hi,

Is there any schedule for the next/final release of Axis2?

Thanks,

Jim


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Re: libxslt.dll

Posted by Samisa Abeysinghe <sa...@wso2.com>.
Jim Seipp wrote:

>Hi,
>
>I am attempting to run "wsdl2code.exe"
>
>And I get the error message "cannot find "libxslt.dll".
>I cannot find this DLL anywhere?
>
>Can someone please tell me where to find this?
>  
>
You can download it from : http://xmlsoft.org/XSLT/

Hoeever, it is advisable to use the Java too to generate C code - C tool 
lags behind Java tool in terms of fatures and bug fixes.

Samisa...



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


libxslt.dll

Posted by Jim Seipp <Ji...@avid.com>.
Hi,

I am attempting to run "wsdl2code.exe"

And I get the error message "cannot find "libxslt.dll".
I cannot find this DLL anywhere?

Can someone please tell me where to find this?

Thanks,

Jim



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Re: echo client in java

Posted by Dinesh Premalal <xy...@gmail.com>.
Hi Jim,

"Jim Seipp" <Ji...@avid.com> writes:

> Hi Dinish,
>
> I have the Echo Test Server program compiled in Axis/C
>
> I can test it using the Echo Client program compiled in Axis/C
>
> Is there an example or can you send me a simple Java program that does
> exactly what the Axis/C Echo client does so that I can test if the SOAP
> interface is working in java also?
My sense is , there is nothing much to do to write a Java client. IIRC
there was a echo example. But I don't remember where it was.
You will be able to find it somewhere in here [1].

thanks,
Dinesh

[1].http://ws.apache.org/axis2/index.html

-- 
Dinesh Premalal
dinesh@wso2.com
WSO2, Inc.; http://www.wso2.com/
GPG Key ID : A255955C
GPG Key Finger Print : C481 E5D4 C27E DC34 9257  0229 4F44 266E A255 955C

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


echo client in java

Posted by Jim Seipp <Ji...@avid.com>.
Hi Dinish,

I have the Echo Test Server program compiled in Axis/C

I can test it using the Echo Client program compiled in Axis/C

Is there an example or can you send me a simple Java program that does
exactly what the Axis/C Echo client does so that I can test if the SOAP
interface is working in java also?

Thanks,

Jim




---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


[Axis2] Moving Woden and XMLSchema to scratch

Posted by Samisa Abeysinghe <sa...@wso2.com>.
A while ago we discusses over this list that we would not ship Woden and 
XMLSchema with 1.0 release.

So I am going to move them to scratch area for the time being.

Thanks,
Samisa...


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


RE: axis2_echoStruct_t"?

Posted by Jim Seipp <Ji...@avid.com>.
Thanks


-----Original Message-----
From: Dinesh Premalal [mailto:xydinesh@gmail.com] 
Sent: Saturday, March 31, 2007 4:37 PM
To: axis-c-dev@ws.apache.org
Subject: Re: axis2_echoStruct_t"?

Hi Jim,
       Uploaded, ZIP of generated codes.

http://people.apache.org/~dinesh/codegen.zip

thanks,
Dinesh
-- 
Dinesh Premalal
dinesh@wso2.com
WSO2, Inc.; http://www.wso2.com/
GPG Key ID : A255955C
GPG Key Finger Print : C481 E5D4 C27E DC34 9257  0229 4F44 266E A255
955C

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Re: axis2_echoStruct_t"?

Posted by Dinesh Premalal <xy...@gmail.com>.
Hi Jim,
       Uploaded, ZIP of generated codes.

http://people.apache.org/~dinesh/codegen.zip

thanks,
Dinesh
-- 
Dinesh Premalal
dinesh@wso2.com
WSO2, Inc.; http://www.wso2.com/
GPG Key ID : A255955C
GPG Key Finger Print : C481 E5D4 C27E DC34 9257  0229 4F44 266E A255 955C

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


RE: axis2_echoStruct_t"?

Posted by Jim Seipp <Ji...@avid.com>.
Hi Dinesh,

Can you please put this data in a ZIP folder?
I am developing on a windows platform using Axts2/c

Thanks,

Jim

-----Original Message-----
From: Dinesh Premalal [mailto:xydinesh@gmail.com] 
Sent: Saturday, March 31, 2007 8:51 AM
To: axis-c-dev@ws.apache.org
Subject: Re: axis2_echoStruct_t"?

Hi Jim,
      I generated code for interoptestdoclitparameters.wsdl , you can
      find it at [1]. That generated code contains definition for both
      axis2_echoStruct_t and AXIS2_SOAPSTRUCT_GET_FLOAT ().
      HTH.

thanks,
Dinesh

[1]. http://people.apache.org/~dinesh/codegen.tar.gz

-- 
Dinesh Premalal
dinesh@wso2.com
WSO2, Inc.; http://www.wso2.com/
GPG Key ID : A255955C
GPG Key Finger Print : C481 E5D4 C27E DC34 9257  0229 4F44 266E A255
955C

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Re: axis2_echoStruct_t"?

Posted by Dinesh Premalal <xy...@gmail.com>.
Hi Jim,
      I generated code for interoptestdoclitparameters.wsdl , you can
      find it at [1]. That generated code contains definition for both
      axis2_echoStruct_t and AXIS2_SOAPSTRUCT_GET_FLOAT ().
      HTH.

thanks,
Dinesh

[1]. http://people.apache.org/~dinesh/codegen.tar.gz

-- 
Dinesh Premalal
dinesh@wso2.com
WSO2, Inc.; http://www.wso2.com/
GPG Key ID : A255955C
GPG Key Finger Print : C481 E5D4 C27E DC34 9257  0229 4F44 266E A255 955C

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


RE: axis2_echoStruct_t"?

Posted by Jim Seipp <Ji...@avid.com>.
Hi Dinesh,
 
I found this definition in the Axis2/C user's guide.
 
http://ws.apache.org/axis2/c/docs/userguide.html#echoStruct
 
Thanks,
 
Jim
 
________________________________

From: Dinesh Premalal [mailto:xydinesh@gmail.com] 
Sent: Friday, March 30, 2007 3:45 AM
To: Apache AXIS C Developers List
Subject: Re: axis2_echoStruct_t"?
 
Hi Jim,

Where did you came across this definition. I was unable to find it :(

thanks,
Dinesh
On 3/30/07, Jim Seipp < Jim_Seipp@avid.com <ma...@avid.com> >
wrote:
Hi Dinesh,

Thanks for responding.

Do you know where I can find the definition of 

AXIS2_SOAPSTRUCT_GET_FLOAT()

Thanks,

Jim

-----Original Message-----
From: Dinesh Premalal [mailto:xydinesh@gmail.com]
Sent: Thursday, March 29, 2007 1:22 PM 
To: axis-c-dev@ws.apache.org
Subject: Re: axis2_echoStruct_t"?

Hi Jim,

"Jim Seipp" <Jim_Seipp@avid.com > writes:

> Hi,
>
> Does anyone know where I can find the definition for
> "axis2_echoStruct_t"?
This is not a standard structure. Its definition should come
with generated code. 

thanks,
Dinesh

--
Dinesh Premalal
dinesh@wso2.com
WSO2, Inc.; http://www.wso2.com/
GPG Key ID : A255955C
GPG Key Finger Print : C481 E5D4 C27E DC34 9257  0229 4F44 266E A255 
955C

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org



-- 
Dinesh Premalal 
dinesh@wso2.com
WSO2, Inc.; http://www.wso2.com/
GPG Key ID : A255955C
GPG Key Finger Print : C481 E5D4 C27E DC34 9257  0229 4F44 266E A255
955C 

Re: axis2_echoStruct_t"?

Posted by Dinesh Premalal <xy...@gmail.com>.
Hi Jim,

Where did you came across this definition. I was unable to find it :(

thanks,
Dinesh

On 3/30/07, Jim Seipp <Ji...@avid.com> wrote:
>
> Hi Dinesh,
>
> Thanks for responding.
>
> Do you know where I can find the definition of
>
> AXIS2_SOAPSTRUCT_GET_FLOAT()
>
> Thanks,
>
> Jim
>
> -----Original Message-----
> From: Dinesh Premalal [mailto:xydinesh@gmail.com]
> Sent: Thursday, March 29, 2007 1:22 PM
> To: axis-c-dev@ws.apache.org
> Subject: Re: axis2_echoStruct_t"?
>
> Hi Jim,
>
> "Jim Seipp" <Ji...@avid.com> writes:
>
> > Hi,
> >
> > Does anyone know where I can find the definition for
> > "axis2_echoStruct_t"?
> This is not a standard structure. Its definition should come
> with generated code.
>
> thanks,
> Dinesh
>
> --
> Dinesh Premalal
> dinesh@wso2.com
> WSO2, Inc.; http://www.wso2.com/
> GPG Key ID : A255955C
> GPG Key Finger Print : C481 E5D4 C27E DC34 9257  0229 4F44 266E A255
> 955C
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
> For additional commands, e-mail: axis-c-dev-help@ws.apache.org
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
> For additional commands, e-mail: axis-c-dev-help@ws.apache.org
>
>


-- 
Dinesh Premalal
dinesh@wso2.com
WSO2, Inc.; http://www.wso2.com/
GPG Key ID : A255955C
GPG Key Finger Print : C481 E5D4 C27E DC34 9257  0229 4F44 266E A255 955C

RE: axis2_echoStruct_t"?

Posted by Jim Seipp <Ji...@avid.com>.
Hi Dinesh,

Thanks for responding.

Do you know where I can find the definition of 

AXIS2_SOAPSTRUCT_GET_FLOAT()

Thanks,

Jim

-----Original Message-----
From: Dinesh Premalal [mailto:xydinesh@gmail.com] 
Sent: Thursday, March 29, 2007 1:22 PM
To: axis-c-dev@ws.apache.org
Subject: Re: axis2_echoStruct_t"?

Hi Jim,
 
"Jim Seipp" <Ji...@avid.com> writes:

> Hi,
>
> Does anyone know where I can find the definition for
> "axis2_echoStruct_t"?
This is not a standard structure. Its definition should come
with generated code.

thanks,
Dinesh

-- 
Dinesh Premalal
dinesh@wso2.com
WSO2, Inc.; http://www.wso2.com/
GPG Key ID : A255955C
GPG Key Finger Print : C481 E5D4 C27E DC34 9257  0229 4F44 266E A255
955C

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


Re: axis2_echoStruct_t"?

Posted by Dinesh Premalal <xy...@gmail.com>.
Hi Jim,
 
"Jim Seipp" <Ji...@avid.com> writes:

> Hi,
>
> Does anyone know where I can find the definition for
> "axis2_echoStruct_t"?
This is not a standard structure. Its definition should come
with generated code.

thanks,
Dinesh

-- 
Dinesh Premalal
dinesh@wso2.com
WSO2, Inc.; http://www.wso2.com/
GPG Key ID : A255955C
GPG Key Finger Print : C481 E5D4 C27E DC34 9257  0229 4F44 266E A255 955C

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


axis2_echoStruct_t"?

Posted by Jim Seipp <Ji...@avid.com>.
Hi,

Does anyone know where I can find the definition for
"axis2_echoStruct_t"?
This is referenced in the sample documentation but I cannot find the
corresponding definition.

Thanks,

Jim

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


[jira] Commented: (AXIS2C-410) custom URL prefixes not allowed

Posted by "Chris Darroch (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/AXIS2C-410?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12484958 ] 

Chris Darroch commented on AXIS2C-410:
--------------------------------------

Sure ... alas, I'm completely swamped for the next few months ... but then I'll get back into the swing of things!  Sorry, and thanks.

> custom URL prefixes not allowed
> -------------------------------
>
>                 Key: AXIS2C-410
>                 URL: https://issues.apache.org/jira/browse/AXIS2C-410
>             Project: Axis2-C
>          Issue Type: Bug
>          Components: core/context, core/engine, util
>    Affects Versions: 0.95
>            Reporter: Chris Darroch
>         Assigned To: Dinesh Premalal
>             Fix For: 1.0.0
>
>         Attachments: axis2c-410.patch
>
>
> In AXIS2C-380 I mentioned that although Apache httpd and mod_axis2 allow you to
> customize the URL location where Web Services will be provided, in Axis2/C itself
> this URL prefix is hard-coded.  For example, with mod_axis2 you might do, in httpd.conf:
>     <Location /my/services/here>
>         SetHandler axis2_module
>     </Location>
> There are several problems here.  The main one is that several files in modules/core/engine
> call the single function in util/src/utils.c and to "parse" the request's URL.  However, this
> function just scans for the hard-coded string "/services" -- so it's going to fail in this case
> because the "/services" in httpd's <Location> will match "too early".  If the <Location> is
> something like /foo, it won't match at all.
> Also, even if the <Location> is for /axis2/services, if the incoming request is for the URL
> /axis2//services//foo//bar, the extra slashes mean it won't match.
> The attached patch attempts to take care of all these issues by centralizing a lot of the
> parse code into modules/core/context/msg_ctx.c and by rewriting util/src/utils.c to use
> the axis2_uri_t functions.  A new parameter in axis2.xml is introduced, "requestURLPrefix",
> which the administrator should set to whatever matches their httpd <Location>.
> This still isn't ideal because really we should match against only what is in the
> <Location> directive, and if multiple <Location>s were defined with the axis2_module
> handler, they should all work.  Having just a single matching parameter in axis2.xml
> won't fix this.  But, it's a start, I think, and if someone can improve it, go for it!  Thanks!

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


[jira] Resolved: (AXIS2C-410) custom URL prefixes not allowed

Posted by "Samisa Abeysinghe (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/AXIS2C-410?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Samisa Abeysinghe resolved AXIS2C-410.
--------------------------------------

       Resolution: Fixed
    Fix Version/s: 1.1.0
         Assignee: Samisa Abeysinghe  (was: Dinesh Premalal)

I solved this, not the way proposed, and not applying the given patch. But I hope we can live with the solution given.

At the moment we can support: http://localhost:port//any/url/here/services/service_name 
This is with following config

<Location /any/url/here>
    SetHandler axis2_module
</Location>

Now we can support: http://localhost:port//any/url/here/any_prefix/sub_prefix/service_name 
with the following config

<Location /any/url/here>
    SetHandler axis2_module
</Location>
Axis2ServiceURLPrefix any_prefix/sub_prefix

> custom URL prefixes not allowed
> -------------------------------
>
>                 Key: AXIS2C-410
>                 URL: https://issues.apache.org/jira/browse/AXIS2C-410
>             Project: Axis2-C
>          Issue Type: Bug
>          Components: core/context, core/engine, util
>    Affects Versions: 0.95
>            Reporter: Chris Darroch
>            Assignee: Samisa Abeysinghe
>             Fix For: 1.1.0
>
>         Attachments: axis2c-410.patch
>
>
> In AXIS2C-380 I mentioned that although Apache httpd and mod_axis2 allow you to
> customize the URL location where Web Services will be provided, in Axis2/C itself
> this URL prefix is hard-coded.  For example, with mod_axis2 you might do, in httpd.conf:
>     <Location /my/services/here>
>         SetHandler axis2_module
>     </Location>
> There are several problems here.  The main one is that several files in modules/core/engine
> call the single function in util/src/utils.c and to "parse" the request's URL.  However, this
> function just scans for the hard-coded string "/services" -- so it's going to fail in this case
> because the "/services" in httpd's <Location> will match "too early".  If the <Location> is
> something like /foo, it won't match at all.
> Also, even if the <Location> is for /axis2/services, if the incoming request is for the URL
> /axis2//services//foo//bar, the extra slashes mean it won't match.
> The attached patch attempts to take care of all these issues by centralizing a lot of the
> parse code into modules/core/context/msg_ctx.c and by rewriting util/src/utils.c to use
> the axis2_uri_t functions.  A new parameter in axis2.xml is introduced, "requestURLPrefix",
> which the administrator should set to whatever matches their httpd <Location>.
> This still isn't ideal because really we should match against only what is in the
> <Location> directive, and if multiple <Location>s were defined with the axis2_module
> handler, they should all work.  Having just a single matching parameter in axis2.xml
> won't fix this.  But, it's a start, I think, and if someone can improve it, go for it!  Thanks!

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


[jira] Updated: (AXIS2C-410) custom URL prefixes not allowed

Posted by "Dinesh Premalal (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/AXIS2C-410?page=all ]

Dinesh Premalal updated AXIS2C-410:
-----------------------------------

    Fix Version/s: 0.96
         Assignee: Dinesh Premalal

> custom URL prefixes not allowed
> -------------------------------
>
>                 Key: AXIS2C-410
>                 URL: http://issues.apache.org/jira/browse/AXIS2C-410
>             Project: Axis2-C
>          Issue Type: Bug
>          Components: core/context, core/engine, util
>    Affects Versions: 0.95
>            Reporter: Chris Darroch
>         Assigned To: Dinesh Premalal
>             Fix For: 0.96
>
>         Attachments: axis2c-410.patch
>
>
> In AXIS2C-380 I mentioned that although Apache httpd and mod_axis2 allow you to
> customize the URL location where Web Services will be provided, in Axis2/C itself
> this URL prefix is hard-coded.  For example, with mod_axis2 you might do, in httpd.conf:
>     <Location /my/services/here>
>         SetHandler axis2_module
>     </Location>
> There are several problems here.  The main one is that several files in modules/core/engine
> call the single function in util/src/utils.c and to "parse" the request's URL.  However, this
> function just scans for the hard-coded string "/services" -- so it's going to fail in this case
> because the "/services" in httpd's <Location> will match "too early".  If the <Location> is
> something like /foo, it won't match at all.
> Also, even if the <Location> is for /axis2/services, if the incoming request is for the URL
> /axis2//services//foo//bar, the extra slashes mean it won't match.
> The attached patch attempts to take care of all these issues by centralizing a lot of the
> parse code into modules/core/context/msg_ctx.c and by rewriting util/src/utils.c to use
> the axis2_uri_t functions.  A new parameter in axis2.xml is introduced, "requestURLPrefix",
> which the administrator should set to whatever matches their httpd <Location>.
> This still isn't ideal because really we should match against only what is in the
> <Location> directive, and if multiple <Location>s were defined with the axis2_module
> handler, they should all work.  Having just a single matching parameter in axis2.xml
> won't fix this.  But, it's a start, I think, and if someone can improve it, go for it!  Thanks!

-- 
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
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


[jira] Commented: (AXIS2C-410) custom URL prefixes not allowed

Posted by "Dinesh Premalal (JIRA)" <ji...@apache.org>.
    [ http://issues.apache.org/jira/browse/AXIS2C-410?page=comments#action_12457181 ] 
            
Dinesh Premalal commented on AXIS2C-410:
----------------------------------------

Chris,
        While I tried to apply the patch that you have  provided I got following error. 

addr_disp.c: In function 'axis2_addr_disp_find_svc':
addr_disp.c:119: error: 'url_tokens' undeclared (first use in this function)
addr_disp.c:119: error: (Each undeclared identifier is reported only once
addr_disp.c:119: error: for each function it appears in.)

Is there any newer version of this patch. BTW Ill try to figure out what happen there.


> custom URL prefixes not allowed
> -------------------------------
>
>                 Key: AXIS2C-410
>                 URL: http://issues.apache.org/jira/browse/AXIS2C-410
>             Project: Axis2-C
>          Issue Type: Bug
>          Components: util, core/context, core/engine
>    Affects Versions: 0.95
>            Reporter: Chris Darroch
>         Assigned To: Dinesh Premalal
>             Fix For: 0.96
>
>         Attachments: axis2c-410.patch
>
>
> In AXIS2C-380 I mentioned that although Apache httpd and mod_axis2 allow you to
> customize the URL location where Web Services will be provided, in Axis2/C itself
> this URL prefix is hard-coded.  For example, with mod_axis2 you might do, in httpd.conf:
>     <Location /my/services/here>
>         SetHandler axis2_module
>     </Location>
> There are several problems here.  The main one is that several files in modules/core/engine
> call the single function in util/src/utils.c and to "parse" the request's URL.  However, this
> function just scans for the hard-coded string "/services" -- so it's going to fail in this case
> because the "/services" in httpd's <Location> will match "too early".  If the <Location> is
> something like /foo, it won't match at all.
> Also, even if the <Location> is for /axis2/services, if the incoming request is for the URL
> /axis2//services//foo//bar, the extra slashes mean it won't match.
> The attached patch attempts to take care of all these issues by centralizing a lot of the
> parse code into modules/core/context/msg_ctx.c and by rewriting util/src/utils.c to use
> the axis2_uri_t functions.  A new parameter in axis2.xml is introduced, "requestURLPrefix",
> which the administrator should set to whatever matches their httpd <Location>.
> This still isn't ideal because really we should match against only what is in the
> <Location> directive, and if multiple <Location>s were defined with the axis2_module
> handler, they should all work.  Having just a single matching parameter in axis2.xml
> won't fix this.  But, it's a start, I think, and if someone can improve it, go for it!  Thanks!

-- 
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
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


[jira] Commented: (AXIS2C-410) custom URL prefixes not allowed

Posted by "Dinesh Premalal (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/AXIS2C-410?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12484784 ] 

Dinesh Premalal commented on AXIS2C-410:
----------------------------------------

I'm not sure whether we will be able to resolve this issue before Axis2/C 1.0 release. Shall we mark this issue, as post 1.0 issue?

> custom URL prefixes not allowed
> -------------------------------
>
>                 Key: AXIS2C-410
>                 URL: https://issues.apache.org/jira/browse/AXIS2C-410
>             Project: Axis2-C
>          Issue Type: Bug
>          Components: core/context, core/engine, util
>    Affects Versions: 0.95
>            Reporter: Chris Darroch
>         Assigned To: Dinesh Premalal
>             Fix For: 1.0.0
>
>         Attachments: axis2c-410.patch
>
>
> In AXIS2C-380 I mentioned that although Apache httpd and mod_axis2 allow you to
> customize the URL location where Web Services will be provided, in Axis2/C itself
> this URL prefix is hard-coded.  For example, with mod_axis2 you might do, in httpd.conf:
>     <Location /my/services/here>
>         SetHandler axis2_module
>     </Location>
> There are several problems here.  The main one is that several files in modules/core/engine
> call the single function in util/src/utils.c and to "parse" the request's URL.  However, this
> function just scans for the hard-coded string "/services" -- so it's going to fail in this case
> because the "/services" in httpd's <Location> will match "too early".  If the <Location> is
> something like /foo, it won't match at all.
> Also, even if the <Location> is for /axis2/services, if the incoming request is for the URL
> /axis2//services//foo//bar, the extra slashes mean it won't match.
> The attached patch attempts to take care of all these issues by centralizing a lot of the
> parse code into modules/core/context/msg_ctx.c and by rewriting util/src/utils.c to use
> the axis2_uri_t functions.  A new parameter in axis2.xml is introduced, "requestURLPrefix",
> which the administrator should set to whatever matches their httpd <Location>.
> This still isn't ideal because really we should match against only what is in the
> <Location> directive, and if multiple <Location>s were defined with the axis2_module
> handler, they should all work.  Having just a single matching parameter in axis2.xml
> won't fix this.  But, it's a start, I think, and if someone can improve it, go for it!  Thanks!

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org