[ 
https://issues.apache.org/jira/browse/AXISCPP-1084?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13170936#comment-13170936
 ] 

VijayaKumar S commented on AXISCPP-1084:
----------------------------------------

Hi ,

While building the source code in AIX 6.1 where are getting below error :
[cc] export XL_BACKEND=/usr/vac/exe/xlCcode
       [cc] export XL_LINKER=/bin/ld
       [cc] /usr/vac/exe/xlCcode -qalias=ansi -qthreaded -qstaticinline 
/tmp/xlcW0ih3jaa /tmp/xlcW1ih3jab BasicNode.o /tmp/xlcLNh3jdKB.lst 
/tmp/xlcW2ih3jac
       [cc] rm /tmp/xlcASNh3jdJ
       [cc] rm /tmp/xlcLNh3jdK
       [cc] export XL_ASMOBJFILES=/tmp/xlcASNT3jdL
       [cc] export "XL_DIS=/usr/vac/exe/dis -o "IDREF.s" "IDREF.o""
       [cc] 
/usr5/citisafe/users/eid60272/lalitha/DEC12/svn_trunk/src_code/src/soap/xsd/IDREF.cpp:
       [cc] /usr/vacpp/exe/xlCentry -qosvar=aix.6.1 -qalias=ansi -D_AIX 
-D_AIX32 -D_AIX41 -D_AIX43 -D_AIX50 -D_AIX51 -D_AIX52 -D_AIX53 -D_AIX61 
-D_IBMR2 -D_POWER -q32 -qthreaded -qstaticinline -DHAVE_CONFIG_H -DAIX 
-I/usr5/citisafe/users/eid60272/lalitha/DEC12/svn_trunk/src_code/include 
-qasm_as=/bin/as -qcpp_stdinc=/usr/vacpp/include:/usr/include 
-qc_stdinc=/usr/vac/include:/usr/include -oIDREF.o 
/usr5/citisafe/users/eid60272/lalitha/DEC12/svn_trunk/src_code/src/soap/xsd/IDREF.cpp
 /tmp/xlcW0ih3jaa /tmp/xlcW1ih3jab /dev/null /tmp/xlcLNT3jdMF.lst /dev/null 
/tmp/xlcW2ih3jac
       [cc] export XL_BACKEND=/usr/vac/exe/xlCcode
       [cc] export XL_LINKER=/bin/ld
       [cc] /usr/vac/exe/xlCcode -qalias=ansi -qthreaded -qstaticinline 
/tmp/xlcW0ih3jaa /tmp/xlcW1ih3jab IDREF.o /tmp/xlcLNT3jdMB.lst /tmp/xlcW2ih3jac
       [cc] rm /tmp/xlcASNT3jdL
       [cc] rm /tmp/xlcLNT3jdM
       [cc] rm /tmp/xlcW0ih3jaa
       [cc] rm /tmp/xlcW1ih3jab
       [cc] rm /tmp/xlcW2ih3jac
       [cc] Starting link
       [cc] ld: 0711-317 ERROR: Undefined symbol: 
.axiscpp::PlatformLanguage::toWchar(const char*,int)
       [cc] ld: 0711-317 ERROR: Undefined symbol: 
.axiscpp::PlatformLanguage::toChar(const wchar_t*,int)
       [cc] ld: 0711-345 Use the -bloadmap or -bnoquiet option to obtain more 
information.

BUILD FAILED
/usr5/citisafe/users/eid60272/lalitha/DEC12/svn_trunk/src_code/build.xml:245: 
The following error occurred while executing this line:
/usr5/citisafe/users/eid60272/lalitha/DEC12/svn_trunk/src_code/build.xml:236: 
The following error occurred while executing this line:
/usr5/citisafe/users/eid60272/lalitha/DEC12/svn_trunk/src_code/build.xml:114: 
The following error occurred while executing this line:
/usr5/citisafe/users/eid60272/lalitha/DEC12/svn_trunk/src_code/build/buildServerEngine.xml:60:
 xlC failed with return code 8

Total time: 2 minutes 44 seconds


Also attached the build.xml for referance.

regard's
Vijay
                
>  AxisException: HTTPTransportException:Input streaming error while getting 
> data Timed out waiting for HTTP header message.
> --------------------------------------------------------------------------------------------------------------------------
>
>                 Key: AXISCPP-1084
>                 URL: https://issues.apache.org/jira/browse/AXISCPP-1084
>             Project: Axis-C++
>          Issue Type: Bug
>    Affects Versions:  1.6 Final
>         Environment: AIX 6.1 
>            Reporter: VijayaKumar S
>              Labels: patch
>             Fix For: 1.6 Alpha
>
>   Original Estimate: 48h
>  Remaining Estimate: 48h
>
> We are using Axis CPP tool (WSDL2Ws) to generate and use the client code.
> Problem description:
>       When the program does not receive any requests for more than 60 
> seconds, we get below exception:
> AxisException: HTTPTransportException:Input streaming error while getting 
> data Timed out waiting for HTTP header message.
> Design approach:
> 1> C++ stubs are generated from the WSDL. Stubs contain the code for 
> functionality like Authentication, change password etc.
> 2> A library is generated with the generated stub code.
> 3> Stand-alone program links the generated library to use the functionality 
> provided in the WSDL.
> Sample program:
> Assumption: All the required variables are declared and necessary headers 
> included
> int main()
> {
>        CitiSAMLServiceSoap * ws = new CitiSAMLServiceSoap(str,eProtocol);
>        try    
>        {
>                 UserAuthenticationResponse * response;
>                 response = ws->UserAuthentication(id1,pwd1,URL);
>       cout<<response->getmessage()<<endl;
>                 sleep(70);
>                 response = ws->UserAuthentication(id2,pwd2,URL);
>       cout<<response->getmessage()<<endl;
>         }
>         catch(AxisException &e)
>         {
>                 cout<<"AxisException:"<<e.what()<<endl;
>         }
>         delete ws;
>         return 0;
> }
> Output:
> 1. Able to Authenticate with policy server 1st time successfully 
> 2. After 60 sec , we tried to authenticate it's through exception like : 
> AxisException: HTTPTransportException:Input streaming error while getting 
> data Timed out waiting for HTTP header message.
> Please let us know if there are any project implementations with similar way. 
> Any suggestions/inputs are welcome.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

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

Reply via email to