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/10/06 06:26:22 UTC

[jira] Created: (AXIS2C-325) svc_skel variables missing numbers

svc_skel variables missing numbers
----------------------------------

                 Key: AXIS2C-325
                 URL: http://issues.apache.org/jira/browse/AXIS2C-325
             Project: Axis2-C
          Issue Type: Bug
          Components: wsdl2c tool
    Affects Versions: 0.94
            Reporter: Chris Darroch


Thanks for the wsdl2c tool -- it came in really handy on a tight deadline!

I noticed that when I ran it using some WSDL with multiple operations defined, each
operation's handling code in the axis2_svc_skel_foo.c file looked like this:

                        input_val1_1 = content_node;
                        ret_val1 =  axis2_skel_foo_Foo(env,
                                                   input_val1_1 );
                        if ( NULL == ret_val1 )
                        {
                            AXIS2_LOG_ERROR( env->log, AXIS2_LOG_SI, "NULL returnted from the business logic from Foo "
                                                " %d :: %s", env->error->error_number,
                                                AXIS2_ERROR_GET_MESSAGE(env->error));
                            return axis2_svc_skel_foo_on_fault( svc_skeleton, env, NULL);
                        }
                        ret_node = ret_val;
                        return ret_node;

which is OK, except for the "ret_node = ret_val" line -- that should be ret_val1, not ret_val.

-- 
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


Re: [jira] Created: (AXIS2C-325) svc_skel variables missing numbers

Posted by Dimuthu Chathuranga <di...@gmail.com>.
This issue seems come up after the update of templates for support adb
binding.
I corrected the template and now it is fixed. Thanks for showing the error.

Regards
Dimuthu

On 10/6/06, Chris Darroch (JIRA) <ji...@apache.org> wrote:
>
> svc_skel variables missing numbers
> ----------------------------------
>
>                  Key: AXIS2C-325
>                  URL: http://issues.apache.org/jira/browse/AXIS2C-325
>              Project: Axis2-C
>           Issue Type: Bug
>           Components: wsdl2c tool
>     Affects Versions: 0.94
>             Reporter: Chris Darroch
>
>
> Thanks for the wsdl2c tool -- it came in really handy on a tight deadline!
>
> I noticed that when I ran it using some WSDL with multiple operations
> defined, each
> operation's handling code in the axis2_svc_skel_foo.c file looked like
> this:
>
>                         input_val1_1 = content_node;
>                         ret_val1 =  axis2_skel_foo_Foo(env,
>                                                    input_val1_1 );
>                         if ( NULL == ret_val1 )
>                         {
>                             AXIS2_LOG_ERROR( env->log, AXIS2_LOG_SI, "NULL
> returnted from the business logic from Foo "
>                                                 " %d :: %s",
> env->error->error_number,
>
>                                                 AXIS2_ERROR_GET_MESSAGE(env->error));
>                             return axis2_svc_skel_foo_on_fault(
> svc_skeleton, env, NULL);
>                         }
>                         ret_node = ret_val;
>                         return ret_node;
>
> which is OK, except for the "ret_node = ret_val" line -- that should be
> ret_val1, not ret_val.
>
> --
> 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] Resolved: (AXIS2C-325) svc_skel variables missing numbers

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

Dinesh Premalal resolved AXIS2C-325.
------------------------------------

    Fix Version/s: 0.95
       Resolution: Fixed

> svc_skel variables missing numbers
> ----------------------------------
>
>                 Key: AXIS2C-325
>                 URL: http://issues.apache.org/jira/browse/AXIS2C-325
>             Project: Axis2-C
>          Issue Type: Bug
>          Components: wsdl2c tool
>    Affects Versions: 0.94
>            Reporter: Chris Darroch
>             Fix For: 0.95
>
>
> Thanks for the wsdl2c tool -- it came in really handy on a tight deadline!
> I noticed that when I ran it using some WSDL with multiple operations defined, each
> operation's handling code in the axis2_svc_skel_foo.c file looked like this:
>                         input_val1_1 = content_node;
>                         ret_val1 =  axis2_skel_foo_Foo(env,
>                                                    input_val1_1 );
>                         if ( NULL == ret_val1 )
>                         {
>                             AXIS2_LOG_ERROR( env->log, AXIS2_LOG_SI, "NULL returnted from the business logic from Foo "
>                                                 " %d :: %s", env->error->error_number,
>                                                 AXIS2_ERROR_GET_MESSAGE(env->error));
>                             return axis2_svc_skel_foo_on_fault( svc_skeleton, env, NULL);
>                         }
>                         ret_node = ret_val;
>                         return ret_node;
> which is OK, except for the "ret_node = ret_val" line -- that should be ret_val1, not ret_val.

-- 
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-325) svc_skel variables missing numbers

Posted by "Dimuthu Chathuranga (JIRA)" <ji...@apache.org>.
    [ http://issues.apache.org/jira/browse/AXIS2C-325?page=comments#action_12442485 ] 
            
Dimuthu Chathuranga commented on AXIS2C-325:
--------------------------------------------

This issue seems come up after the update of templates for support adb binding.

I corrected the template and now it is fixed. Thanks for showing the error.

> svc_skel variables missing numbers
> ----------------------------------
>
>                 Key: AXIS2C-325
>                 URL: http://issues.apache.org/jira/browse/AXIS2C-325
>             Project: Axis2-C
>          Issue Type: Bug
>          Components: wsdl2c tool
>    Affects Versions: 0.94
>            Reporter: Chris Darroch
>
> Thanks for the wsdl2c tool -- it came in really handy on a tight deadline!
> I noticed that when I ran it using some WSDL with multiple operations defined, each
> operation's handling code in the axis2_svc_skel_foo.c file looked like this:
>                         input_val1_1 = content_node;
>                         ret_val1 =  axis2_skel_foo_Foo(env,
>                                                    input_val1_1 );
>                         if ( NULL == ret_val1 )
>                         {
>                             AXIS2_LOG_ERROR( env->log, AXIS2_LOG_SI, "NULL returnted from the business logic from Foo "
>                                                 " %d :: %s", env->error->error_number,
>                                                 AXIS2_ERROR_GET_MESSAGE(env->error));
>                             return axis2_svc_skel_foo_on_fault( svc_skeleton, env, NULL);
>                         }
>                         ret_node = ret_val;
>                         return ret_node;
> which is OK, except for the "ret_node = ret_val" line -- that should be ret_val1, not ret_val.

-- 
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