Hi Experts, I have a server written in C++, Client is in JAVA and middle-ware is CORBA, now we are planing to replace CORBA by web Service(SOAP or REST). we don't want to make any changes in our business logic just want to replace CORBA by web service. Can anyone give some idea how do i approach. since I googled a lot, how to write a REST or SOAP service in C++ but didn't get any lead. Please do let me know if you seek any further info Thanks in advance RYK
VC_RYK
Posts
-
how to migrate CORBA to Web Service in C++ -
Error while declaring a cursorHi All, I am Newbie to Database and want to have all tables name and then columns of respective tables using following lines. DECLARE CURSOR TEMPCURSOR is Select table_name from all_tables where owner='FSS_ADMIN' order by TABLE_NAME; begin open TEMPCURSOR; for P in TEMPCURSOR loop select COLUMN_NAME from user_tab_columns where table_name= p.table_name; end loop; end; But while executing above lines, following error is occuring Error starting at line 1 in command: DECLARE CURSOR TEMPCURSOR is Select table_name from all_tables where owner='FSS_ADMIN' order by TABLE_NAME; begin open TEMPCURSOR; for P in TEMPCURSOR loop select COLUMN_NAME from user_tab_columns where table_name= p.table_name; end loop; end; Error report: ORA-06550: line 5, column 5: PLS-00428: an INTO clause is expected in this SELECT statement 06550. 00000 - "line %s, column %s:\n%s" *Cause: Usually a PL/SQL compilation error. *Action: I googled to understand the issue but could not get so I request you all to help me out and I will be very thankful for your support. With regards R e h a n
-
WM_COMMAND is not getiing firedDear All, I have a main modeless dialogbox created by CreateDialog and have another child model dialog box created by DialogBox and on this child window I have many button but when I am clicking on any button WM_COMMAND is not getting fired in winproc of child dialog. I will be very thankful for your support. With regards RYK
-
Secure ,Portable char array functions ?I reposted "here" because i did not get any response "there" even after 2 days.
-
Secure ,Portable char array functions ?HI, Is there a standard/Portable equivalent functions for MSVC++ functions like : strncpy_s(), strcpy_s(), _stricmp(), strcat_s(), sprintf_s(), fopen_s() etc. I am porting a VC6 application to VC8, and getting tones of warnings regarding non-secure functions. I want to replace the non-secure functions with secure ones. But, till now i have not been able to find a portable solutions. I want a portable solution as some part of my app. connects with unix while others with windows. Thanks in advance.
-
Where to get VC8 Debug CRT 8.0.50727.4053 [Moved]HI all, I have recently installed the "Service Pack 1 Redistributable Package ATL Security Update" update. Now i have the x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.4053_x-ww_e6967989 in my "c:\window\WinSxS\" folder. But, i dont have the corresponding Debug version. Now, when i build the application in VS2005, the debug manifest of my application refers to the 8.0.50727.4053. Now, I am unable to debug my application as it fails to find the debug version of 8.0.50727.4053. How can i Solve this? Thanks in advance. Bibin Varghese
modified on Friday, August 20, 2010 12:31 PM
-
Enum IssueThanks Ash, I have searched through the entire MS site, went through the "Major Changes from Visual C++ 6.0 to Visual C++ .NET" document [http://msdn.microsoft.com/en-us/library/2byy0fh6%28v=VS.71%29.aspx[^]]. No info about this.
-
Enum IssueHi Experts I am migrating one project from Vc 6.0 to Vc 8.0. I found one compilation Error regarding Enum. In Vc 6.0 they have declared an enum in a class and again the same enum they are using in other class with scope resolution and have changed the enum value. It is compiling fine on Vc 6.0 but throwing an error while compiling in Vc 8.0. Example code. class CTest { public: enum TestEnum {NA=0, First}; }; class CTest1 { public: enum CTest::TestEnum {Second, Third}; }; It is working fine in Vc 6.0 but throwing error in Vc 8.0 Error is:- error C2911: 'CTest::TestEnum' : cannot be declared or defined in the current scope
-
Get status of Remote windows serviceHi Experts I have to know the status(stop/start) of windows service which is on remote server. Thanks in advance R Y K
-
Migration from VC 6.0 to Visual studio 2005Hi experts I have to migrate some projects from VC 6.0 to visual studio 2005. Is Anything required to achieve it and what waht kind of problem i can face? As far as my knowledge is concerned, All upper version products automatically converts the project from older version to new one. With regards R Y K
-
How to use at for STL listThanks Dear..
-
How to use at for STL listThanks a lot.... It is working......
-
How to use at for STL listHi Experts I need at() feature in my STL List. can anyone help me out? With Regards R e h a n
-
Chnage backgrounf color of a formand i am using VS 2005
-
Chnage backgrounf color of a formThere is no any option bcakgroungimage that is what i was asking
-
Chnage backgrounf color of a formNo No, i want to set a image file
-
Chnage backgrounf color of a formHi All I am very new to C#,and i have to set background color of my form, i am trying to do like Assembly myAssembly = Assembly.GetExecutingAssembly(); Stream testImage= myAssembly.GetManifestResourceStream("Test.jpg"); but here it crashing. can anybody help me out thanks in advance RYK
-
How to read a complete row.Hi Experts I am accessing the database using VC++ and want to read a row at a time. Is there any API to read a row? Thanks in advance RYK
-
Reading larg File IssueBut Dear i m not using MFC or SDK
-
Reading larg File IssueHi Experts I am reading a 7GB File line by line and i need to write some of it's contantants into two files of 9MB and 6MB in a function, for reading and writing i am using a while loop,but my application is not writing the complete OUT-PUT Files. it seems my application is not able to read the complete In-Put File. My System has only 256MB of RAM and hardly 8 GB Free space in my Hard disk. so can anybody tell me what could be the reason? Thanks in advance RYK